93 lines
3.2 KiB
Java
93 lines
3.2 KiB
Java
package net.minecraft.world.level.block;
|
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
import com.google.common.collect.Maps;
|
|
import com.mojang.serialization.MapCodec;
|
|
import com.mojang.serialization.codecs.RecordCodecBuilder;
|
|
import java.util.Map;
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.core.Direction;
|
|
import net.minecraft.world.item.context.BlockPlaceContext;
|
|
import net.minecraft.world.level.BlockGetter;
|
|
import net.minecraft.world.level.block.state.BlockBehaviour;
|
|
import net.minecraft.world.level.block.state.BlockState;
|
|
import net.minecraft.world.level.block.state.StateDefinition;
|
|
import net.minecraft.world.level.block.state.properties.DirectionProperty;
|
|
import net.minecraft.world.phys.shapes.CollisionContext;
|
|
import net.minecraft.world.phys.shapes.VoxelShape;
|
|
|
|
public class WallSkullBlock extends AbstractSkullBlock {
|
|
public static final MapCodec<WallSkullBlock> CODEC = RecordCodecBuilder.mapCodec(
|
|
instance -> instance.group(SkullBlock.Type.CODEC.fieldOf("kind").forGetter(AbstractSkullBlock::getType), propertiesCodec())
|
|
.apply(instance, WallSkullBlock::new)
|
|
);
|
|
public static final DirectionProperty FACING = HorizontalDirectionalBlock.FACING;
|
|
private static final Map<Direction, VoxelShape> AABBS = Maps.newEnumMap(
|
|
ImmutableMap.of(
|
|
Direction.NORTH,
|
|
Block.box(4.0, 4.0, 8.0, 12.0, 12.0, 16.0),
|
|
Direction.SOUTH,
|
|
Block.box(4.0, 4.0, 0.0, 12.0, 12.0, 8.0),
|
|
Direction.EAST,
|
|
Block.box(0.0, 4.0, 4.0, 8.0, 12.0, 12.0),
|
|
Direction.WEST,
|
|
Block.box(8.0, 4.0, 4.0, 16.0, 12.0, 12.0)
|
|
)
|
|
);
|
|
|
|
@Override
|
|
public MapCodec<? extends WallSkullBlock> codec() {
|
|
return CODEC;
|
|
}
|
|
|
|
protected WallSkullBlock(SkullBlock.Type type, BlockBehaviour.Properties properties) {
|
|
super(type, properties);
|
|
this.registerDefaultState(this.defaultBlockState().setValue(FACING, Direction.NORTH));
|
|
}
|
|
|
|
@Override
|
|
public String getDescriptionId() {
|
|
return this.asItem().getDescriptionId();
|
|
}
|
|
|
|
@Override
|
|
protected VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) {
|
|
return (VoxelShape)AABBS.get(state.getValue(FACING));
|
|
}
|
|
|
|
@Override
|
|
public BlockState getStateForPlacement(BlockPlaceContext context) {
|
|
BlockState blockState = super.getStateForPlacement(context);
|
|
BlockGetter blockGetter = context.getLevel();
|
|
BlockPos blockPos = context.getClickedPos();
|
|
Direction[] directions = context.getNearestLookingDirections();
|
|
|
|
for (Direction direction : directions) {
|
|
if (direction.getAxis().isHorizontal()) {
|
|
Direction direction2 = direction.getOpposite();
|
|
blockState = blockState.setValue(FACING, direction2);
|
|
if (!blockGetter.getBlockState(blockPos.relative(direction)).canBeReplaced(context)) {
|
|
return blockState;
|
|
}
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
protected BlockState rotate(BlockState state, Rotation rotation) {
|
|
return state.setValue(FACING, rotation.rotate(state.getValue(FACING)));
|
|
}
|
|
|
|
@Override
|
|
protected BlockState mirror(BlockState state, Mirror mirror) {
|
|
return state.rotate(mirror.getRotation(state.getValue(FACING)));
|
|
}
|
|
|
|
@Override
|
|
protected void createBlockStateDefinition(StateDefinition.Builder<Block, BlockState> builder) {
|
|
super.createBlockStateDefinition(builder);
|
|
builder.add(FACING);
|
|
}
|
|
}
|