2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityCompost.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.tile;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2016-05-20 17:55:33 +02:00
|
|
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
|
|
|
import de.ellpeck.actuallyadditions.api.recipe.CompostRecipe;
|
2017-03-07 20:41:27 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2015-02-09 17:25:05 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
|
2015-02-17 16:15:16 +01:00
|
|
|
public class TileEntityCompost extends TileEntityInventoryBase{
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2015-12-01 19:48:09 +01:00
|
|
|
public int conversionTime;
|
2015-11-28 19:02:01 +01:00
|
|
|
|
2015-02-09 17:25:05 +01:00
|
|
|
public TileEntityCompost(){
|
2015-04-19 01:50:02 +02:00
|
|
|
super(1, "compost");
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|
|
|
|
|
2016-06-01 00:39:35 +02:00
|
|
|
public static CompostRecipe getRecipeForInput(ItemStack input){
|
2016-11-16 20:31:16 +01:00
|
|
|
if(StackUtil.isValid(input)){
|
2016-06-01 00:39:35 +02:00
|
|
|
for(CompostRecipe recipe : ActuallyAdditionsAPI.COMPOST_RECIPES){
|
2017-03-07 20:41:27 +01:00
|
|
|
if(ItemUtil.areItemsEqual(input, recipe.input, true)){
|
2016-06-01 00:39:35 +02:00
|
|
|
return recipe;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.writeSyncableNBT(compound, type);
|
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
|
|
|
compound.setInteger("ConversionTime", this.conversionTime);
|
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean shouldSyncSlots(){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.readSyncableNBT(compound, type);
|
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
|
|
|
this.conversionTime = compound.getInteger("ConversionTime");
|
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2016-11-26 21:32:27 +01:00
|
|
|
if(!this.world.isRemote){
|
2015-03-19 21:27:56 +01:00
|
|
|
boolean theFlag = this.conversionTime > 0;
|
2016-05-20 17:55:33 +02:00
|
|
|
|
2016-12-04 00:10:52 +01:00
|
|
|
if(StackUtil.isValid(this.slots.getStackInSlot(0))){
|
|
|
|
CompostRecipe recipe = getRecipeForInput(this.slots.getStackInSlot(0));
|
|
|
|
if(recipe != null){
|
2016-05-20 17:55:33 +02:00
|
|
|
this.conversionTime++;
|
|
|
|
if(this.conversionTime >= 3000){
|
2016-12-04 00:10:52 +01:00
|
|
|
ItemStack output = recipe.output.copy();
|
|
|
|
this.slots.setStackInSlot(0, StackUtil.setStackSize(output, StackUtil.getStackSize(this.slots.getStackInSlot(0))));
|
2016-05-20 17:55:33 +02:00
|
|
|
this.conversionTime = 0;
|
|
|
|
this.markDirty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2015-02-09 17:25:05 +01:00
|
|
|
this.conversionTime = 0;
|
|
|
|
}
|
|
|
|
}
|
2016-05-20 17:55:33 +02:00
|
|
|
|
2015-03-19 21:27:56 +01:00
|
|
|
if(theFlag != this.conversionTime > 0){
|
|
|
|
this.markDirty();
|
|
|
|
}
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
2016-05-20 17:55:33 +02:00
|
|
|
return getRecipeForInput(stack) != null;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2016-06-03 22:16:23 +02:00
|
|
|
@Override
|
2016-12-04 00:10:52 +01:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack){
|
2016-05-20 17:55:33 +02:00
|
|
|
return getRecipeForInput(stack) == null;
|
|
|
|
}
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|