This commit is contained in:
Shadows_of_Fire 2018-09-26 02:59:22 -04:00
parent 1cca640345
commit 1240287b3b

View file

@ -32,74 +32,73 @@ import net.minecraftforge.fml.relauncher.SideOnly;
public class BlockGreenhouseGlass extends BlockBase { public class BlockGreenhouseGlass extends BlockBase {
public BlockGreenhouseGlass(String name) { public BlockGreenhouseGlass(String name) {
super(Material.GLASS, name); super(Material.GLASS, name);
this.setHarvestLevel("pickaxe", 0); this.setHarvestLevel("pickaxe", 0);
this.setHardness(0.5F); this.setHardness(0.5F);
this.setResistance(10.0F); this.setResistance(10.0F);
this.setSoundType(SoundType.GLASS); this.setSoundType(SoundType.GLASS);
this.setTickRandomly(true); this.setTickRandomly(true);
} }
@Override @Override
public boolean isFullCube(IBlockState state) { public boolean isFullCube(IBlockState state) {
return true; return true;
} }
@Override @Override
public boolean isOpaqueCube(IBlockState state) { public boolean isOpaqueCube(IBlockState state) {
return false; return false;
} }
@Override @Override
@Deprecated @Deprecated
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
public boolean shouldSideBeRendered(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side) { public boolean shouldSideBeRendered(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side) {
IBlockState otherState = world.getBlockState(pos.offset(side)); IBlockState otherState = world.getBlockState(pos.offset(side));
Block block = otherState.getBlock(); Block block = otherState.getBlock();
return state != otherState || block != this && super.shouldSideBeRendered(state, world, pos, side); return state != otherState || block != this && super.shouldSideBeRendered(state, world, pos, side);
} }
@Override @Override
public BlockRenderLayer getRenderLayer() { public BlockRenderLayer getRenderLayer() {
return BlockRenderLayer.CUTOUT; return BlockRenderLayer.CUTOUT;
} }
@Override @Override
public EnumRarity getRarity(ItemStack stack) { public EnumRarity getRarity(ItemStack stack) {
return EnumRarity.EPIC; return EnumRarity.EPIC;
} }
@Override @Override
public void updateTick(World world, BlockPos pos, IBlockState state, Random rand) { public void updateTick(World world, BlockPos pos, IBlockState state, Random rand) {
if (world.isRemote) return; if (world.isRemote) return;
if (world.canBlockSeeSky(pos) && world.isDaytime()) { if (world.canBlockSeeSky(pos) && world.isDaytime()) {
Triple<BlockPos, IBlockState, IGrowable> trip = firstBlock(world, pos); Triple<BlockPos, IBlockState, IGrowable> trip = firstBlock(world, pos);
boolean once = false;
for (int i = 0; i < 3; i++) {
IBlockState growState = i == 0 ? trip.getMiddle() : world.getBlockState(trip.getLeft());
if (trip != null && trip.getRight().canGrow(world, trip.getLeft(), growState, false)) {
trip.getRight().grow(world, rand, trip.getLeft(), growState);
once = true;
}
}
if (once) world.playEvent(2005, trip.getMiddle().isOpaqueCube() ? trip.getLeft().up() : trip.getLeft(), 0);
}
}
boolean once = false; public static Triple<BlockPos, IBlockState, IGrowable> firstBlock(World world, BlockPos glassPos) {
BlockPos.MutableBlockPos mut = new BlockPos.MutableBlockPos(glassPos);
for (int i = 0; i < 3; i++) while (true) {
if (trip != null && trip.getRight().canGrow(world, trip.getLeft(), trip.getMiddle(), false)) { mut.setPos(mut.getX(), mut.getY() - 1, mut.getZ());
trip.getRight().grow(world, rand, trip.getLeft(), trip.getMiddle()); IBlockState state = world.getBlockState(mut);
once = true; if (!state.getBlock().isAir(state, world, mut)) {
} if (state.getBlock() instanceof IGrowable) return Triple.of(mut.toImmutable(), state, (IGrowable) state.getBlock());
else return null;
if (once) world.playEvent(2005, trip.getMiddle().isOpaqueCube() ? trip.getLeft().up() : trip.getLeft(), 0); }
} }
} }
public static Triple<BlockPos, IBlockState, IGrowable> firstBlock(World world, BlockPos glassPos) {
BlockPos.MutableBlockPos mut = new BlockPos.MutableBlockPos(glassPos);
while (true) {
mut.setPos(mut.getX(), mut.getY() - 1, mut.getZ());
IBlockState state = world.getBlockState(mut);
if (!state.getBlock().isAir(state, world, mut)) {
if (state.getBlock() instanceof IGrowable) return Triple.of(mut.toImmutable(), state, (IGrowable) state.getBlock());
else return null;
}
}
}
} }