2015-04-19 01:50:02 +02:00
|
|
|
package ellpeck.actuallyadditions.tile;
|
|
|
|
|
2015-04-24 19:22:03 +02:00
|
|
|
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
|
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.minecraft.util.ChunkCoordinates;
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
public class TileEntityGreenhouseGlass extends TileEntityBase{
|
|
|
|
|
2015-04-24 19:22:03 +02:00
|
|
|
private int timeUntilNextFertToSet = ConfigIntValues.GLASS_TIME_NEEDED.getValue();
|
2015-04-19 01:50:02 +02:00
|
|
|
|
|
|
|
private int timeUntilNextFert;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
|
|
|
if(!worldObj.isRemote){
|
|
|
|
if(worldObj.canBlockSeeTheSky(xCoord, yCoord, zCoord) && worldObj.isDaytime()){
|
|
|
|
ChunkCoordinates blockToFert = this.blockToFertilize();
|
|
|
|
if(blockToFert != null){
|
|
|
|
if(this.timeUntilNextFert > 0){
|
|
|
|
this.timeUntilNextFert--;
|
|
|
|
if(timeUntilNextFert <= 0){
|
2015-06-06 01:25:53 +02:00
|
|
|
worldObj.getBlock(blockToFert.posX, blockToFert.posY, blockToFert.posZ).updateTick(worldObj, blockToFert.posX, blockToFert.posY, blockToFert.posZ, worldObj.rand);
|
|
|
|
worldObj.playAuxSFX(2005, blockToFert.posX, blockToFert.posY, blockToFert.posZ, 0);
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
}
|
2015-06-06 01:25:53 +02:00
|
|
|
else this.timeUntilNextFert = this.timeUntilNextFertToSet+new Random().nextInt(this.timeUntilNextFertToSet);
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public ChunkCoordinates blockToFertilize(){
|
|
|
|
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))){
|
2015-04-19 01:50:02 +02:00
|
|
|
if(block instanceof IGrowable && !(block instanceof BlockGrass)){
|
|
|
|
return new ChunkCoordinates(xCoord, i, zCoord);
|
|
|
|
}
|
|
|
|
else return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|