ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockGreenhouseGlass.java

93 lines
3.7 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("BlockGreenhouseGlass.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks;
2015-04-19 01:50:02 +02:00
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockBase;
2024-03-02 21:23:08 +01:00
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
2024-03-02 21:23:08 +01:00
import net.minecraft.server.level.ServerLevel;
2024-03-03 01:20:53 +01:00
import net.minecraft.util.RandomSource;
2024-03-02 21:23:08 +01:00
import net.minecraft.world.level.BlockGetter;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.BonemealableBlock;
import net.minecraft.world.level.block.RenderShape;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.phys.shapes.CollisionContext;
import net.minecraft.world.phys.shapes.VoxelShape;
import org.apache.commons.lang3.tuple.Triple;
public class BlockGreenhouseGlass extends BlockBase {
public BlockGreenhouseGlass() {
2024-03-02 21:23:08 +01:00
super(ActuallyBlocks.defaultPickProps(0.5F, 10.0F).sound(SoundType.GLASS).randomTicks());
2018-10-28 18:52:26 +01:00
}
@Override
public boolean skipRendering(BlockState state, BlockState adjacentState, Direction side) {
return adjacentState.is(this) ? true : super.skipRendering(state, adjacentState, side);
}
2018-09-26 08:59:22 +02:00
@Override
2024-03-02 21:23:08 +01:00
public RenderShape getRenderShape(BlockState state) {
return RenderShape.MODEL;
2018-09-26 08:59:22 +02:00
}
@Override
2024-03-03 01:20:53 +01:00
public void randomTick(BlockState state, ServerLevel world, BlockPos pos, RandomSource rand) {
if (world.isClientSide) {
return;
}
if (world.canSeeSkyFromBelowWater(pos) && world.isDay()) {
2024-03-02 21:23:08 +01:00
Triple<BlockPos, BlockState, BonemealableBlock> trip = this.firstBlock(world, pos);
2018-09-26 08:59:22 +02:00
boolean once = false;
if (trip != null) {
for (int i = 0; i < 3; i++) {
BlockState growState = i == 0
? trip.getMiddle()
: world.getBlockState(trip.getLeft());
2024-03-04 21:57:36 +01:00
if (growState.getBlock() == trip.getRight() && trip.getRight().isValidBonemealTarget(world, trip.getLeft(), growState)) {
trip.getRight().performBonemeal(world, rand, trip.getLeft(), growState);
once = true;
}
2018-09-26 08:59:22 +02:00
}
}
if (once) {
world.levelEvent(2005, trip.getMiddle().isSolidRender(world, trip.getLeft())
? trip.getLeft().above()
: trip.getLeft(), 0);
}
2018-09-26 08:59:22 +02:00
}
}
2024-03-02 21:23:08 +01:00
public Triple<BlockPos, BlockState, BonemealableBlock> firstBlock(Level world, BlockPos glassPos) {
BlockPos.MutableBlockPos mut = new BlockPos(glassPos).mutable();
2018-09-26 08:59:22 +02:00
while (true) {
mut.set(mut.getX(), mut.getY() - 1, mut.getZ());
if (mut.getY() < 0) {
return null;
}
2021-02-26 22:15:48 +01:00
BlockState state = world.getBlockState(mut);
2024-03-02 21:23:08 +01:00
if (state.isSolidRender(world, mut) || state.getBlock() instanceof BonemealableBlock || state.getBlock() == this) {
if (state.getBlock() instanceof BonemealableBlock) {
return Triple.of(mut.immutable(), state, (BonemealableBlock) state.getBlock());
} else {
return null;
}
2018-09-26 08:59:22 +02:00
}
}
}
2021-03-01 20:14:50 +01:00
@Override
2024-03-02 21:23:08 +01:00
public VoxelShape getShape(BlockState state, BlockGetter worldIn, BlockPos pos, CollisionContext context) {
return VoxelShapes.GLASS_SHAPE;
2021-03-01 20:14:50 +01:00
}
2015-04-19 01:50:02 +02:00
}