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-04-24 19:22:03 +02:00
|
|
|
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
|
2015-07-07 11:51:05 +02:00
|
|
|
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;
|
2015-10-18 15:28:06 +02:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-07-25 11:06:10 +02:00
|
|
|
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(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2015-04-19 01:50:02 +02:00
|
|
|
if(!worldObj.isRemote){
|
|
|
|
if(worldObj.canBlockSeeTheSky(xCoord, yCoord, zCoord) && worldObj.isDaytime()){
|
2015-07-07 11:51:05 +02:00
|
|
|
WorldPos blockToFert = this.blockToFertilize();
|
2015-04-19 01:50:02 +02:00
|
|
|
if(blockToFert != null){
|
|
|
|
if(this.timeUntilNextFert > 0){
|
|
|
|
this.timeUntilNextFert--;
|
|
|
|
if(timeUntilNextFert <= 0){
|
2015-07-25 11:06:10 +02:00
|
|
|
int metaBefore = blockToFert.getMetadata();
|
2015-07-07 11:51:05 +02:00
|
|
|
worldObj.getBlock(blockToFert.getX(), blockToFert.getY(), blockToFert.getZ()).updateTick(worldObj, blockToFert.getX(), blockToFert.getY(), blockToFert.getZ(), worldObj.rand);
|
2015-07-25 11:06:10 +02:00
|
|
|
|
|
|
|
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{
|
2015-11-12 21:36:20 +01:00
|
|
|
this.timeUntilNextFert = ConfigIntValues.GLASS_TIME_NEEDED.getValue()+this.worldObj.rand.nextInt(ConfigIntValues.GLASS_TIME_NEEDED.getValue());
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-07 11:51:05 +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))){
|
2015-07-25 11:06:10 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-18 15:28:06 +02:00
|
|
|
@Override
|
2015-10-18 15:31:01 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean isForSync){
|
|
|
|
this.timeUntilNextFert = compound.getInteger("Time");
|
2015-10-18 15:28:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-18 15:31:01 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean isForSync){
|
|
|
|
compound.setInteger("Time", this.timeUntilNextFert);
|
2015-10-18 15:28:06 +02:00
|
|
|
}
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|