2014-04-11 13:06:32 +02:00
|
|
|
package com.pahimar.ee3.tileentity;
|
|
|
|
|
2014-07-03 21:54:14 +02:00
|
|
|
import com.pahimar.ee3.item.ItemAlchemicalDust;
|
2014-07-03 22:00:25 +02:00
|
|
|
import com.pahimar.ee3.item.crafting.RecipeAludel;
|
2014-04-30 03:46:59 +02:00
|
|
|
import com.pahimar.ee3.network.PacketHandler;
|
|
|
|
import com.pahimar.ee3.network.message.MessageTileEntityAludel;
|
2014-07-03 22:00:25 +02:00
|
|
|
import com.pahimar.ee3.recipe.RecipesAludel;
|
2014-07-03 21:54:14 +02:00
|
|
|
import com.pahimar.ee3.reference.Names;
|
2014-07-04 22:11:39 +02:00
|
|
|
import cpw.mods.fml.common.network.NetworkRegistry;
|
2014-07-03 22:00:25 +02:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2014-04-11 13:06:32 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.inventory.ISidedInventory;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-07-04 22:11:39 +02:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.nbt.NBTTagList;
|
2014-04-30 03:46:59 +02:00
|
|
|
import net.minecraft.network.Packet;
|
2014-07-03 21:54:14 +02:00
|
|
|
import net.minecraft.tileentity.TileEntityFurnace;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2014-04-11 13:06:32 +02:00
|
|
|
|
2014-04-30 03:46:59 +02:00
|
|
|
public class TileEntityAludel extends TileEntityEE implements ISidedInventory
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
|
|
|
public static final int INVENTORY_SIZE = 4;
|
|
|
|
public static final int FUEL_INVENTORY_INDEX = 0;
|
|
|
|
public static final int INPUT_INVENTORY_INDEX = 1;
|
|
|
|
public static final int DUST_INVENTORY_INDEX = 2;
|
|
|
|
public static final int OUTPUT_INVENTORY_INDEX = 3;
|
2014-07-03 21:54:14 +02:00
|
|
|
|
2014-04-11 13:06:32 +02:00
|
|
|
public int deviceCookTime; // How much longer the Aludel will cook
|
|
|
|
public int fuelBurnTime; // The fuel value for the currently burning fuel
|
|
|
|
public int itemCookTime; // How long the current item has been "cooking"
|
2014-07-03 21:54:14 +02:00
|
|
|
|
2014-04-11 13:06:32 +02:00
|
|
|
public ItemStack outputItemStack;
|
2014-07-03 21:54:14 +02:00
|
|
|
|
2014-04-11 13:06:32 +02:00
|
|
|
public boolean hasGlassBell = false;
|
|
|
|
/**
|
|
|
|
* The ItemStacks that hold the items currently being used in the Aludel
|
|
|
|
*/
|
|
|
|
private ItemStack[] inventory;
|
|
|
|
|
2014-04-30 03:46:59 +02:00
|
|
|
public TileEntityAludel()
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
|
|
|
inventory = new ItemStack[INVENTORY_SIZE];
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-03 21:54:14 +02:00
|
|
|
public int[] getAccessibleSlotsFromSide(int side)
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return side == ForgeDirection.DOWN.ordinal() ? new int[]{FUEL_INVENTORY_INDEX, OUTPUT_INVENTORY_INDEX} : new int[]{INPUT_INVENTORY_INDEX, DUST_INVENTORY_INDEX, OUTPUT_INVENTORY_INDEX};
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-03 21:54:14 +02:00
|
|
|
public boolean canInsertItem(int slotIndex, ItemStack itemStack, int side)
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
2014-07-04 21:18:10 +02:00
|
|
|
if (worldObj.getTileEntity(xCoord, yCoord + 1, zCoord) instanceof TileEntityGlassBell)
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return isItemValidForSlot(slotIndex, itemStack);
|
2014-07-04 21:18:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-03 21:54:14 +02:00
|
|
|
public boolean canExtractItem(int slotIndex, ItemStack itemStack, int side)
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return slotIndex == OUTPUT_INVENTORY_INDEX;
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
2014-07-04 22:11:39 +02:00
|
|
|
@Override
|
|
|
|
public void readFromNBT(NBTTagCompound nbtTagCompound)
|
|
|
|
{
|
|
|
|
super.readFromNBT(nbtTagCompound);
|
|
|
|
|
|
|
|
// Read in the ItemStacks in the inventory from NBT
|
|
|
|
NBTTagList tagList = nbtTagCompound.getTagList("Items", 10);
|
|
|
|
inventory = new ItemStack[this.getSizeInventory()];
|
|
|
|
for (int i = 0; i < tagList.tagCount(); ++i)
|
|
|
|
{
|
|
|
|
NBTTagCompound tagCompound = tagList.getCompoundTagAt(i);
|
|
|
|
byte slotIndex = tagCompound.getByte("Slot");
|
|
|
|
if (slotIndex >= 0 && slotIndex < inventory.length)
|
|
|
|
{
|
|
|
|
inventory[slotIndex] = ItemStack.loadItemStackFromNBT(tagCompound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
deviceCookTime = nbtTagCompound.getInteger("deviceCookTime");
|
|
|
|
fuelBurnTime = nbtTagCompound.getInteger("fuelBurnTime");
|
|
|
|
itemCookTime = nbtTagCompound.getInteger("itemCookTime");
|
|
|
|
hasGlassBell = nbtTagCompound.getBoolean("hasGlassBell");
|
|
|
|
}
|
|
|
|
|
2014-04-11 13:06:32 +02:00
|
|
|
@Override
|
|
|
|
public int getSizeInventory()
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return inventory.length;
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-03 21:54:14 +02:00
|
|
|
public ItemStack getStackInSlot(int slotIndex)
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return inventory[slotIndex];
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-03 21:54:14 +02:00
|
|
|
public ItemStack decrStackSize(int slotIndex, int decrementAmount)
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
ItemStack itemStack = getStackInSlot(slotIndex);
|
2014-07-04 21:18:10 +02:00
|
|
|
if (itemStack != null)
|
|
|
|
{
|
|
|
|
if (itemStack.stackSize <= decrementAmount)
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
setInventorySlotContents(slotIndex, null);
|
2014-07-04 21:18:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
itemStack = itemStack.splitStack(decrementAmount);
|
2014-07-04 21:18:10 +02:00
|
|
|
if (itemStack.stackSize == 0)
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
setInventorySlotContents(slotIndex, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return itemStack;
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-03 21:54:14 +02:00
|
|
|
public ItemStack getStackInSlotOnClosing(int slotIndex)
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
ItemStack itemStack = getStackInSlot(slotIndex);
|
2014-07-04 21:18:10 +02:00
|
|
|
if (itemStack != null)
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
setInventorySlotContents(slotIndex, null);
|
|
|
|
}
|
|
|
|
return itemStack;
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-03 21:54:14 +02:00
|
|
|
public void setInventorySlotContents(int slotIndex, ItemStack itemStack)
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
inventory[slotIndex] = itemStack;
|
2014-07-04 21:18:10 +02:00
|
|
|
if (itemStack != null && itemStack.stackSize > getInventoryStackLimit())
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
itemStack.stackSize = getInventoryStackLimit();
|
|
|
|
}
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getInventoryName()
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return this.hasCustomName() ? this.getCustomName() : Names.Containers.ALUDEL;
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasCustomInventoryName()
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return this.hasCustomName();
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getInventoryStackLimit()
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return 64;
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isUseableByPlayer(EntityPlayer var1)
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return true;
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void openInventory()
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
// NOOP
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void closeInventory()
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
// NOOP
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-03 21:54:14 +02:00
|
|
|
public boolean isItemValidForSlot(int slotIndex, ItemStack itemStack)
|
2014-04-11 13:06:32 +02:00
|
|
|
{
|
2014-07-04 21:18:10 +02:00
|
|
|
switch (slotIndex)
|
|
|
|
{
|
|
|
|
case FUEL_INVENTORY_INDEX:
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return TileEntityFurnace.isItemFuel(itemStack);
|
|
|
|
}
|
2014-07-04 21:18:10 +02:00
|
|
|
case INPUT_INVENTORY_INDEX:
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
2014-07-04 21:18:10 +02:00
|
|
|
case DUST_INVENTORY_INDEX:
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return itemStack.getItem() instanceof ItemAlchemicalDust;
|
|
|
|
}
|
2014-07-04 21:18:10 +02:00
|
|
|
default:
|
|
|
|
{
|
2014-07-03 21:54:14 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|
2014-04-30 03:46:59 +02:00
|
|
|
|
|
|
|
@Override
|
2014-07-04 22:11:39 +02:00
|
|
|
public void writeToNBT(NBTTagCompound nbtTagCompound)
|
2014-04-30 03:46:59 +02:00
|
|
|
{
|
2014-07-04 22:11:39 +02:00
|
|
|
super.writeToNBT(nbtTagCompound);
|
|
|
|
|
|
|
|
// Write the ItemStacks in the inventory to NBT
|
|
|
|
NBTTagList tagList = new NBTTagList();
|
|
|
|
for (int currentIndex = 0; currentIndex < inventory.length; ++currentIndex)
|
|
|
|
{
|
|
|
|
if (inventory[currentIndex] != null)
|
|
|
|
{
|
|
|
|
NBTTagCompound tagCompound = new NBTTagCompound();
|
|
|
|
tagCompound.setByte("Slot", (byte) currentIndex);
|
|
|
|
inventory[currentIndex].writeToNBT(tagCompound);
|
|
|
|
tagList.appendTag(tagCompound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nbtTagCompound.setTag("Items", tagList);
|
|
|
|
nbtTagCompound.setInteger("deviceCookTime", deviceCookTime);
|
|
|
|
nbtTagCompound.setInteger("fuelBurnTime", fuelBurnTime);
|
|
|
|
nbtTagCompound.setInteger("itemCookTime", itemCookTime);
|
|
|
|
nbtTagCompound.setBoolean("hasGlassBell", hasGlassBell);
|
2014-04-30 03:46:59 +02:00
|
|
|
}
|
2014-07-03 22:00:25 +02:00
|
|
|
|
2014-07-04 22:11:39 +02:00
|
|
|
@Override
|
|
|
|
public Packet getDescriptionPacket()
|
2014-07-04 21:18:10 +02:00
|
|
|
{
|
2014-07-04 22:11:39 +02:00
|
|
|
return PacketHandler.INSTANCE.getPacketFrom(new MessageTileEntityAludel(this, null));
|
2014-07-03 22:00:25 +02:00
|
|
|
}
|
|
|
|
|
2014-07-04 22:11:39 +02:00
|
|
|
@Override
|
|
|
|
public void updateEntity()
|
2014-07-04 21:18:10 +02:00
|
|
|
{
|
2014-07-04 22:11:39 +02:00
|
|
|
boolean isBurning = this.deviceCookTime > 0;
|
|
|
|
boolean sendUpdate = false;
|
|
|
|
|
|
|
|
// If the Aludel still has burn time, decrement it
|
|
|
|
if (this.deviceCookTime > 0)
|
2014-07-04 21:18:10 +02:00
|
|
|
{
|
2014-07-04 22:11:39 +02:00
|
|
|
this.deviceCookTime--;
|
2014-07-03 22:00:25 +02:00
|
|
|
}
|
|
|
|
|
2014-07-04 22:11:39 +02:00
|
|
|
if (!this.worldObj.isRemote)
|
2014-07-04 21:18:10 +02:00
|
|
|
{
|
2014-07-04 22:11:39 +02:00
|
|
|
// Start "cooking" a new item, if we can
|
|
|
|
if (this.deviceCookTime == 0 && this.canInfuse())
|
|
|
|
{
|
|
|
|
this.fuelBurnTime = this.deviceCookTime = TileEntityFurnace.getItemBurnTime(this.inventory[FUEL_INVENTORY_INDEX]);
|
2014-07-04 21:18:10 +02:00
|
|
|
|
2014-07-04 22:11:39 +02:00
|
|
|
if (this.deviceCookTime > 0)
|
|
|
|
{
|
|
|
|
sendUpdate = true;
|
|
|
|
|
|
|
|
if (this.inventory[FUEL_INVENTORY_INDEX] != null)
|
|
|
|
{
|
|
|
|
--this.inventory[FUEL_INVENTORY_INDEX].stackSize;
|
|
|
|
|
|
|
|
if (this.inventory[FUEL_INVENTORY_INDEX].stackSize == 0)
|
|
|
|
{
|
|
|
|
this.inventory[FUEL_INVENTORY_INDEX] = this.inventory[FUEL_INVENTORY_INDEX].getItem().getContainerItem(inventory[FUEL_INVENTORY_INDEX]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Continue "cooking" the same item, if we can
|
|
|
|
if (this.deviceCookTime > 0 && this.canInfuse())
|
2014-07-04 21:18:10 +02:00
|
|
|
{
|
2014-07-04 22:11:39 +02:00
|
|
|
this.itemCookTime++;
|
|
|
|
|
|
|
|
if (this.itemCookTime == 200)
|
|
|
|
{
|
|
|
|
this.itemCookTime = 0;
|
|
|
|
this.infuseItem();
|
|
|
|
sendUpdate = true;
|
|
|
|
}
|
2014-07-04 21:18:10 +02:00
|
|
|
}
|
2014-07-04 22:11:39 +02:00
|
|
|
else
|
2014-07-04 21:18:10 +02:00
|
|
|
{
|
2014-07-04 22:11:39 +02:00
|
|
|
this.itemCookTime = 0;
|
2014-07-04 21:18:10 +02:00
|
|
|
}
|
|
|
|
|
2014-07-04 22:11:39 +02:00
|
|
|
// If the state has changed, catch that something changed
|
|
|
|
if (isBurning != this.deviceCookTime > 0)
|
|
|
|
{
|
|
|
|
sendUpdate = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sendUpdate)
|
|
|
|
{
|
|
|
|
this.markDirty();
|
|
|
|
this.state = this.deviceCookTime > 0 ? (byte) 1 : (byte) 0;
|
|
|
|
this.worldObj.addBlockEvent(this.xCoord, this.yCoord, this.zCoord, this.getBlockType(), 1, this.state);
|
|
|
|
PacketHandler.INSTANCE.sendToAllAround(new MessageTileEntityAludel(this, null), new NetworkRegistry.TargetPoint(this.worldObj.provider.dimensionId, (double) this.xCoord, (double) this.yCoord, (double) this.zCoord, 128d));
|
|
|
|
this.worldObj.notifyBlockChange(this.xCoord, this.yCoord, this.zCoord, this.getBlockType());
|
2014-07-04 21:18:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean canInfuse()
|
|
|
|
{
|
|
|
|
if (!hasGlassBell || inventory[INPUT_INVENTORY_INDEX] == null || inventory[DUST_INVENTORY_INDEX] == null)
|
|
|
|
{
|
2014-07-03 22:00:25 +02:00
|
|
|
return false;
|
2014-07-04 21:18:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-03 22:00:25 +02:00
|
|
|
ItemStack infusedItemStack = RecipesAludel.getInstance().getResult(inventory[INPUT_INVENTORY_INDEX], inventory[DUST_INVENTORY_INDEX]);
|
|
|
|
|
2014-07-04 21:18:10 +02:00
|
|
|
if (infusedItemStack == null)
|
|
|
|
{
|
2014-07-03 22:00:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-04 21:18:10 +02:00
|
|
|
if (inventory[OUTPUT_INVENTORY_INDEX] == null)
|
|
|
|
{
|
2014-07-03 22:00:25 +02:00
|
|
|
return true;
|
2014-07-04 21:18:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-03 22:00:25 +02:00
|
|
|
boolean outputEquals = this.inventory[OUTPUT_INVENTORY_INDEX].isItemEqual(infusedItemStack);
|
|
|
|
int mergedOutputStackSize = this.inventory[OUTPUT_INVENTORY_INDEX].stackSize + infusedItemStack.stackSize;
|
|
|
|
|
2014-07-04 21:18:10 +02:00
|
|
|
if (outputEquals)
|
|
|
|
{
|
2014-07-03 22:00:25 +02:00
|
|
|
return mergedOutputStackSize <= getInventoryStackLimit() && mergedOutputStackSize <= infusedItemStack.getMaxStackSize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2014-07-04 22:11:39 +02:00
|
|
|
|
|
|
|
public void infuseItem()
|
|
|
|
{
|
|
|
|
if (this.canInfuse())
|
|
|
|
{
|
|
|
|
RecipeAludel recipe = RecipesAludel.getInstance().getRecipe(inventory[INPUT_INVENTORY_INDEX], inventory[DUST_INVENTORY_INDEX]);
|
|
|
|
|
|
|
|
if (this.inventory[OUTPUT_INVENTORY_INDEX] == null)
|
|
|
|
{
|
|
|
|
this.inventory[OUTPUT_INVENTORY_INDEX] = recipe.getRecipeOutput().copy();
|
|
|
|
}
|
|
|
|
else if (this.inventory[OUTPUT_INVENTORY_INDEX].isItemEqual(recipe.getRecipeOutput()))
|
|
|
|
{
|
|
|
|
inventory[OUTPUT_INVENTORY_INDEX].stackSize += recipe.getRecipeOutput().stackSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
decrStackSize(INPUT_INVENTORY_INDEX, recipe.getRecipeInputs()[0].getStackSize());
|
|
|
|
decrStackSize(DUST_INVENTORY_INDEX, recipe.getRecipeInputs()[1].getStackSize());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getCookProgressScaled(int scale)
|
|
|
|
{
|
|
|
|
return this.itemCookTime * scale / 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getBurnTimeRemainingScaled(int scale)
|
|
|
|
{
|
|
|
|
if (this.fuelBurnTime > 0)
|
|
|
|
{
|
|
|
|
return this.deviceCookTime * scale / this.fuelBurnTime;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2014-04-11 13:06:32 +02:00
|
|
|
}
|