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

77 lines
2.8 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("TileEntityGreenhouseGlass.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-04-19 01:50:02 +02:00
package ellpeck.actuallyadditions.tile;
2015-11-22 18:58:23 +01:00
import ellpeck.actuallyadditions.util.Util;
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.minecraft.nbt.NBTTagCompound;
import net.minecraftforge.common.IPlantable;
2015-04-19 01:50:02 +02:00
public class TileEntityGreenhouseGlass extends TileEntityBase{
private int timeUntilNextFert;
@Override
public void updateEntity(){
super.updateEntity();
2015-04-19 01:50:02 +02:00
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();
2015-11-22 18:58:23 +01:00
worldObj.getBlock(blockToFert.getX(), blockToFert.getY(), blockToFert.getZ()).updateTick(worldObj, blockToFert.getX(), blockToFert.getY(), blockToFert.getZ(), Util.RANDOM);
if(blockToFert.getMetadata() != metaBefore){
worldObj.playAuxSFX(2005, blockToFert.getX(), blockToFert.getY(), blockToFert.getZ(), 0);
}
2015-04-19 01:50:02 +02:00
}
}
2015-10-02 16:48:01 +02:00
else{
int time = 300;
this.timeUntilNextFert = time+Util.RANDOM.nextInt(time);
2015-10-02 16:48:01 +02:00
}
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
}
2015-10-02 16:48:01 +02:00
else{
return null;
}
2015-04-19 01:50:02 +02:00
}
}
return null;
}
@Override
2015-10-18 15:31:01 +02:00
public void writeSyncableNBT(NBTTagCompound compound, boolean isForSync){
this.timeUntilNextFert = compound.getInteger("Time");
}
@Override
2015-10-18 15:31:01 +02:00
public void readSyncableNBT(NBTTagCompound compound, boolean isForSync){
compound.setInteger("Time", this.timeUntilNextFert);
}
2015-04-19 01:50:02 +02:00
}