ReFramed/src/main/java/io/github/cottonmc/templates/block/TemplateBlock.java

75 lines
2.9 KiB
Java
Raw Normal View History

2019-06-20 00:29:15 +02:00
package io.github.cottonmc.templates.block;
2023-07-06 05:40:12 +02:00
import com.google.common.base.MoreObjects;
import io.github.cottonmc.templates.api.TemplateInteractionUtil;
import net.minecraft.block.Block;
import net.minecraft.block.BlockEntityProvider;
import net.minecraft.block.BlockState;
2023-07-06 05:40:12 +02:00
import net.minecraft.block.ShapeContext;
import net.minecraft.block.entity.BlockEntity;
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.player.PlayerEntity;
2023-06-15 07:59:48 +02:00
import net.minecraft.item.ItemStack;
2023-07-03 09:35:07 +02:00
import net.minecraft.state.StateManager;
2023-06-15 09:08:20 +02:00
import net.minecraft.util.ActionResult;
import net.minecraft.util.Hand;
import net.minecraft.util.hit.BlockHitResult;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Direction;
2023-07-06 05:40:12 +02:00
import net.minecraft.util.shape.VoxelShape;
import net.minecraft.world.BlockView;
import net.minecraft.world.World;
import org.jetbrains.annotations.Nullable;
2023-06-16 05:09:57 +02:00
public abstract class TemplateBlock extends Block implements BlockEntityProvider {
public TemplateBlock(Settings settings) {
super(settings);
setDefaultState(TemplateInteractionUtil.setDefaultStates(getDefaultState()));
}
2023-06-15 07:59:48 +02:00
@Override
public abstract @Nullable BlockEntity createBlockEntity(BlockPos blockPos, BlockState blockState);
2023-06-15 09:08:20 +02:00
2023-07-03 09:35:07 +02:00
@Override
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {
super.appendProperties(TemplateInteractionUtil.appendProperties(builder));
2023-07-03 09:35:07 +02:00
}
@Override
2023-06-15 09:08:20 +02:00
public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) {
return TemplateInteractionUtil.onUse(state, world, pos, player, hand, hit);
}
2023-06-15 07:59:48 +02:00
@Override
2023-06-15 09:08:20 +02:00
public void onStateReplaced(BlockState state, World world, BlockPos pos, BlockState newState, boolean moved) {
TemplateInteractionUtil.onStateReplaced(state, world, pos, newState, moved);
2023-06-15 09:08:20 +02:00
super.onStateReplaced(state, world, pos, newState, moved);
}
2023-06-15 07:59:48 +02:00
@Override
public void onPlaced(World world, BlockPos pos, BlockState state, @Nullable LivingEntity placer, ItemStack stack) {
TemplateInteractionUtil.onPlaced(world, pos, state, placer, stack);
super.onPlaced(world, pos, state, placer, stack);
}
2023-07-06 05:40:12 +02:00
@Override
public VoxelShape getCollisionShape(BlockState state, BlockView view, BlockPos pos, ShapeContext ctx) {
return MoreObjects.firstNonNull(TemplateInteractionUtil.getCollisionShape(state), super.getCollisionShape(state, view, pos, ctx));
}
@Override
public boolean emitsRedstonePower(BlockState state) {
return TemplateInteractionUtil.emitsRedstonePower(state);
}
2023-06-15 07:59:48 +02:00
@Override
public int getWeakRedstonePower(BlockState state, BlockView view, BlockPos pos, Direction dir) {
return TemplateInteractionUtil.getWeakRedstonePower(state, view, pos, dir);
}
2023-06-15 07:59:48 +02:00
@Override
public int getStrongRedstonePower(BlockState state, BlockView view, BlockPos pos, Direction dir) {
return TemplateInteractionUtil.getStrongRedstonePower(state, view, pos, dir);
2023-06-15 09:08:20 +02:00
}
}