package net.minecraft.world.level.block; import com.mojang.serialization.MapCodec; import com.mojang.serialization.codecs.RecordCodecBuilder; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.util.RandomSource; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.level.LevelReader; import net.minecraft.world.level.ScheduledTickAccess; 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.BlockStateProperties; import net.minecraft.world.level.block.state.properties.IntegerProperty; import net.minecraft.world.level.block.state.properties.RotationSegment; import net.minecraft.world.level.block.state.properties.WoodType; import net.minecraft.world.level.material.FluidState; import net.minecraft.world.level.material.Fluids; public class StandingSignBlock extends SignBlock implements PlainSignBlock { public static final MapCodec CODEC = RecordCodecBuilder.mapCodec( i -> i.group(WoodType.CODEC.fieldOf("wood_type").forGetter(SignBlock::type), propertiesCodec()).apply(i, StandingSignBlock::new) ); public static final IntegerProperty ROTATION = BlockStateProperties.ROTATION_16; @Override public MapCodec codec() { return CODEC; } public StandingSignBlock(final WoodType type, final BlockBehaviour.Properties properties) { super(type, properties.sound(type.soundType())); this.registerDefaultState(this.stateDefinition.any().setValue(ROTATION, 8).setValue(WATERLOGGED, false)); } @Override protected boolean canSurvive(final BlockState state, final LevelReader level, final BlockPos pos) { return level.getBlockState(pos.below()).isSolid(); } @Override public BlockState getStateForPlacement(final BlockPlaceContext context) { FluidState replacedFluidState = context.getLevel().getFluidState(context.getClickedPos()); return this.defaultBlockState() .setValue(ROTATION, RotationSegment.convertToSegment(context.getRotation() + 180.0F)) .setValue(WATERLOGGED, replacedFluidState.is(Fluids.WATER)); } @Override protected BlockState updateShape( final BlockState state, final LevelReader level, final ScheduledTickAccess ticks, final BlockPos pos, final Direction directionToNeighbour, final BlockPos neighbourPos, final BlockState neighbourState, final RandomSource random ) { return directionToNeighbour == Direction.DOWN && !this.canSurvive(state, level, pos) ? Blocks.AIR.defaultBlockState() : super.updateShape(state, level, ticks, pos, directionToNeighbour, neighbourPos, neighbourState, random); } @Override public float getYRotationDegrees(final BlockState state) { return RotationSegment.convertToDegrees((Integer)state.getValue(ROTATION)); } @Override protected BlockState rotate(final BlockState state, final Rotation rotation) { return state.setValue(ROTATION, rotation.rotate((Integer)state.getValue(ROTATION), 16)); } @Override protected BlockState mirror(final BlockState state, final Mirror mirror) { return state.setValue(ROTATION, mirror.mirror((Integer)state.getValue(ROTATION), 16)); } @Override protected void createBlockStateDefinition(final StateDefinition.Builder builder) { builder.add(ROTATION, WATERLOGGED); } @Override public PlainSignBlock.Attachment attachmentPoint(final BlockState state) { return PlainSignBlock.Attachment.GROUND; } }