2025-11-24 22:52:51 +03:00

85 lines
3.1 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.mojang.serialization.MapCodec
* org.jspecify.annotations.Nullable
*/
package net.minecraft.world.level.block;
import com.mojang.serialization.MapCodec;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.util.RandomSource;
import net.minecraft.world.item.context.BlockPlaceContext;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.world.level.LevelReader;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.GrowingPlantHeadBlock;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.phys.shapes.CollisionContext;
import net.minecraft.world.phys.shapes.VoxelShape;
import org.jspecify.annotations.Nullable;
public abstract class GrowingPlantBlock
extends Block {
protected final Direction growthDirection;
protected final boolean scheduleFluidTicks;
protected final VoxelShape shape;
protected GrowingPlantBlock(BlockBehaviour.Properties properties, Direction growthDirection, VoxelShape shape, boolean scheduleFluidTicks) {
super(properties);
this.growthDirection = growthDirection;
this.shape = shape;
this.scheduleFluidTicks = scheduleFluidTicks;
}
protected abstract MapCodec<? extends GrowingPlantBlock> codec();
@Override
public @Nullable BlockState getStateForPlacement(BlockPlaceContext context) {
BlockState growthDirectionState = context.getLevel().getBlockState(context.getClickedPos().relative(this.growthDirection));
if (growthDirectionState.is(this.getHeadBlock()) || growthDirectionState.is(this.getBodyBlock())) {
return this.getBodyBlock().defaultBlockState();
}
return this.getStateForPlacement(context.getLevel().random);
}
public BlockState getStateForPlacement(RandomSource random) {
return this.defaultBlockState();
}
@Override
protected boolean canSurvive(BlockState state, LevelReader level, BlockPos pos) {
BlockPos attachedToPos = pos.relative(this.growthDirection.getOpposite());
BlockState attachedToState = level.getBlockState(attachedToPos);
if (!this.canAttachTo(attachedToState)) {
return false;
}
return attachedToState.is(this.getHeadBlock()) || attachedToState.is(this.getBodyBlock()) || attachedToState.isFaceSturdy(level, attachedToPos, this.growthDirection);
}
@Override
protected void tick(BlockState state, ServerLevel level, BlockPos pos, RandomSource random) {
if (!state.canSurvive(level, pos)) {
level.destroyBlock(pos, true);
}
}
protected boolean canAttachTo(BlockState state) {
return true;
}
@Override
protected VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) {
return this.shape;
}
protected abstract GrowingPlantHeadBlock getHeadBlock();
protected abstract Block getBodyBlock();
}