ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/tile/TileEntityGreenhouseGlass.java

53 lines
2.1 KiB
Java
Raw Normal View History

2015-04-19 01:50:02 +02:00
package ellpeck.actuallyadditions.tile;
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
import ellpeck.actuallyadditions.util.WorldPos;
2015-04-19 01:50:02 +02:00
import net.minecraft.block.Block;
import net.minecraft.block.BlockGrass;
import net.minecraft.block.IGrowable;
import net.minecraftforge.common.IPlantable;
2015-04-19 01:50:02 +02:00
import java.util.Random;
public class TileEntityGreenhouseGlass extends TileEntityBase{
private int timeUntilNextFert;
@Override
public void updateEntity(){
if(!worldObj.isRemote){
if(worldObj.canBlockSeeTheSky(xCoord, yCoord, zCoord) && worldObj.isDaytime()){
WorldPos blockToFert = this.blockToFertilize();
2015-04-19 01:50:02 +02:00
if(blockToFert != null){
if(this.timeUntilNextFert > 0){
this.timeUntilNextFert--;
if(timeUntilNextFert <= 0){
int metaBefore = blockToFert.getMetadata();
worldObj.getBlock(blockToFert.getX(), blockToFert.getY(), blockToFert.getZ()).updateTick(worldObj, blockToFert.getX(), blockToFert.getY(), blockToFert.getZ(), worldObj.rand);
if(blockToFert.getMetadata() != metaBefore){
worldObj.playAuxSFX(2005, blockToFert.getX(), blockToFert.getY(), blockToFert.getZ(), 0);
}
2015-04-19 01:50:02 +02:00
}
}
2015-08-15 20:41:45 +02:00
else this.timeUntilNextFert = ConfigIntValues.GLASS_TIME_NEEDED.getValue()+new Random().nextInt(ConfigIntValues.GLASS_TIME_NEEDED.getValue());
2015-04-19 01:50:02 +02:00
}
}
}
}
public WorldPos blockToFertilize(){
2015-04-19 01:50:02 +02:00
for(int i = yCoord-1; i > 0; i--){
Block block = worldObj.getBlock(xCoord, i, zCoord);
2015-06-18 13:14:57 +02:00
if(block != null && !(worldObj.isAirBlock(xCoord, i, zCoord))){
if((block instanceof IGrowable || block instanceof IPlantable) && !(block instanceof BlockGrass)){
2015-07-07 11:56:38 +02:00
return new WorldPos(worldObj, xCoord, i, zCoord);
2015-04-19 01:50:02 +02:00
}
else return null;
}
}
return null;
}
}