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
|
|
|
|
2018-01-04 20:40:58 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockBase;
|
2021-03-01 20:14:50 +01:00
|
|
|
import net.minecraft.block.BlockRenderType;
|
|
|
|
import net.minecraft.block.BlockState;
|
2018-01-04 20:40:58 +01:00
|
|
|
import net.minecraft.block.IGrowable;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.block.SoundType;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
2021-03-01 20:14:50 +01:00
|
|
|
import net.minecraft.util.math.shapes.ISelectionContext;
|
|
|
|
import net.minecraft.util.math.shapes.VoxelShape;
|
|
|
|
import net.minecraft.world.IBlockReader;
|
2015-04-19 01:50:02 +02:00
|
|
|
import net.minecraft.world.World;
|
2021-03-01 20:14:50 +01:00
|
|
|
import net.minecraft.world.server.ServerWorld;
|
2021-02-27 13:24:45 +01:00
|
|
|
import org.apache.commons.lang3.tuple.Triple;
|
|
|
|
|
|
|
|
import java.util.Random;
|
2015-04-19 01:50:02 +02:00
|
|
|
|
2018-01-04 20:40:58 +01:00
|
|
|
public class BlockGreenhouseGlass extends BlockBase {
|
2021-02-27 13:24:45 +01:00
|
|
|
public BlockGreenhouseGlass() {
|
2021-03-01 20:14:50 +01:00
|
|
|
super(ActuallyBlocks.defaultPickProps(0, 0.5F, 10.0F).sound(SoundType.GLASS).tickRandomly());
|
2018-10-28 18:52:26 +01:00
|
|
|
}
|
|
|
|
|
2018-09-26 08:59:22 +02:00
|
|
|
|
2021-03-01 20:14:50 +01:00
|
|
|
// TODO: [port] figure this out
|
|
|
|
// @Override
|
|
|
|
// @Deprecated
|
|
|
|
// @OnlyIn(Dist.CLIENT)
|
|
|
|
// public boolean shouldSideBeRendered(BlockState state, IBlockAccess world, BlockPos pos, Direction side) {
|
|
|
|
// BlockState otherState = world.getBlockState(pos.offset(side));
|
|
|
|
// Block block = otherState.getBlock();
|
|
|
|
//
|
|
|
|
// return state != otherState || block != this && super.shouldSideBeRendered(state, world, pos, side);
|
|
|
|
// }
|
2018-09-26 08:59:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
@Override
|
2021-03-01 20:14:50 +01:00
|
|
|
public BlockRenderType getRenderType(BlockState state) {
|
|
|
|
return BlockRenderType.INVISIBLE;
|
2018-09-26 08:59:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-03-01 20:14:50 +01:00
|
|
|
public void randomTick(BlockState state, ServerWorld world, BlockPos pos, Random rand) {
|
2021-02-27 13:24:45 +01:00
|
|
|
if (world.isRemote) {
|
|
|
|
return;
|
|
|
|
}
|
2018-09-26 08:59:22 +02:00
|
|
|
if (world.canBlockSeeSky(pos) && world.isDaytime()) {
|
2021-02-27 13:24:45 +01:00
|
|
|
Triple<BlockPos, BlockState, IGrowable> trip = this.firstBlock(world, pos);
|
2018-09-26 08:59:22 +02:00
|
|
|
boolean once = false;
|
2021-02-27 13:24:45 +01:00
|
|
|
if (trip != null) {
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
BlockState growState = i == 0
|
|
|
|
? trip.getMiddle()
|
|
|
|
: world.getBlockState(trip.getLeft());
|
|
|
|
if (growState.getBlock() == trip.getRight() && trip.getRight().canGrow(world, trip.getLeft(), growState, false)) {
|
|
|
|
trip.getRight().grow(world, rand, trip.getLeft(), growState);
|
|
|
|
once = true;
|
|
|
|
}
|
2018-09-26 08:59:22 +02:00
|
|
|
}
|
|
|
|
}
|
2021-02-27 13:24:45 +01:00
|
|
|
if (once) {
|
2021-03-01 20:14:50 +01:00
|
|
|
world.playEvent(2005, trip.getMiddle().isOpaqueCube(world, trip.getLeft())
|
2021-02-27 13:24:45 +01:00
|
|
|
? trip.getLeft().up()
|
|
|
|
: trip.getLeft(), 0);
|
|
|
|
}
|
2018-09-26 08:59:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
public Triple<BlockPos, BlockState, IGrowable> firstBlock(World world, BlockPos glassPos) {
|
2021-03-01 20:14:50 +01:00
|
|
|
BlockPos.Mutable mut = new BlockPos(glassPos).toMutable();
|
2018-09-26 08:59:22 +02:00
|
|
|
while (true) {
|
|
|
|
mut.setPos(mut.getX(), mut.getY() - 1, mut.getZ());
|
2021-02-27 13:24:45 +01:00
|
|
|
if (mut.getY() < 0) {
|
|
|
|
return null;
|
|
|
|
}
|
2021-02-26 22:15:48 +01:00
|
|
|
BlockState state = world.getBlockState(mut);
|
2021-03-01 20:14:50 +01:00
|
|
|
if (state.isOpaqueCube(world, mut) || state.getBlock() instanceof IGrowable || state.getBlock() == this) {
|
2021-02-27 13:24:45 +01:00
|
|
|
if (state.getBlock() instanceof IGrowable) {
|
|
|
|
return Triple.of(mut.toImmutable(), state, (IGrowable) state.getBlock());
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2018-09-26 08:59:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 20:14:50 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public VoxelShape getShape(BlockState state, IBlockReader worldIn, BlockPos pos, ISelectionContext context) {
|
|
|
|
return Shapes.GLASS_SHAPE;
|
|
|
|
}
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|