equivalent-exchange-3/ee3_common/com/pahimar/ee3/tileentity/TileAludel.java

148 lines
3.9 KiB
Java
Raw Normal View History

2013-02-18 03:30:11 +01:00
package com.pahimar.ee3.tileentity;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
2013-02-26 22:08:43 +01:00
import com.pahimar.ee3.lib.Strings;
2013-02-18 03:30:11 +01:00
public class TileAludel extends TileEE implements IInventory {
/**
2013-02-19 02:13:24 +01:00
* The ItemStacks that hold the items currently being used in the Aludel
2013-02-18 03:30:11 +01:00
*/
private ItemStack[] inventory;
2013-02-26 22:08:43 +01:00
private final int INVENTORY_SIZE = 4;
public static final int INPUT_INVENTORY_INDEX = 0;
public static final int DUST_INVENTORY_INDEX = 1;
public static final int FUEL_INVENTORY_INDEX = 2;
public static final int OUTPUT_INVENTORY_INDEX = 3;
2013-02-18 03:30:11 +01:00
public TileAludel() {
2013-02-26 22:08:43 +01:00
inventory = new ItemStack[INVENTORY_SIZE];
2013-02-18 03:30:11 +01:00
}
2013-02-26 22:08:43 +01:00
2013-02-18 03:30:11 +01:00
@Override
public int getSizeInventory() {
return this.inventory.length;
}
@Override
public ItemStack getStackInSlot(int slot) {
return this.inventory[slot];
}
@Override
public ItemStack decrStackSize(int slot, int amount) {
ItemStack itemStack = getStackInSlot(slot);
if (itemStack != null) {
if (itemStack.stackSize <= amount) {
setInventorySlotContents(slot, null);
}
else {
itemStack = itemStack.splitStack(amount);
if (itemStack.stackSize == 0) {
setInventorySlotContents(slot, null);
}
}
}
2013-02-26 22:08:43 +01:00
2013-02-18 03:30:11 +01:00
return itemStack;
}
@Override
public ItemStack getStackInSlotOnClosing(int slot) {
ItemStack itemStack = getStackInSlot(slot);
if (itemStack != null) {
setInventorySlotContents(slot, null);
}
return itemStack;
}
@Override
public void setInventorySlotContents(int slot, ItemStack itemStack) {
inventory[slot] = itemStack;
if (itemStack != null && itemStack.stackSize > getInventoryStackLimit()) {
itemStack.stackSize = getInventoryStackLimit();
}
}
@Override
public String getInvName() {
return this.hasCustomName() ? this.getCustomName() : Strings.CONTAINER_ALUDEL_NAME;
2013-02-18 03:30:11 +01:00
}
@Override
public int getInventoryStackLimit() {
return 64;
}
@Override
public void openChest() {
2013-02-26 22:08:43 +01:00
2013-02-18 03:30:11 +01:00
}
@Override
public void closeChest() {
2013-02-26 22:08:43 +01:00
2013-02-18 03:30:11 +01:00
}
2013-02-26 22:08:43 +01:00
2013-02-18 03:30:11 +01:00
public void readFromNBT(NBTTagCompound nbtTagCompound) {
super.readFromNBT(nbtTagCompound);
// Read in the ItemStacks in the inventory from NBT
NBTTagList tagList = nbtTagCompound.getTagList("Items");
this.inventory = new ItemStack[this.getSizeInventory()];
for (int i = 0; i < tagList.tagCount(); ++i) {
NBTTagCompound tagCompound = (NBTTagCompound) tagList.tagAt(i);
byte slot = tagCompound.getByte("Slot");
if (slot >= 0 && slot < this.inventory.length) {
this.inventory[slot] = ItemStack.loadItemStackFromNBT(tagCompound);
}
}
}
public void writeToNBT(NBTTagCompound nbtTagCompound) {
super.writeToNBT(nbtTagCompound);
// Write the ItemStacks in the inventory to NBT
NBTTagList tagList = new NBTTagList();
for (int currentIndex = 0; currentIndex < this.inventory.length; ++currentIndex) {
if (this.inventory[currentIndex] != null) {
NBTTagCompound tagCompound = new NBTTagCompound();
tagCompound.setByte("Slot", (byte) currentIndex);
this.inventory[currentIndex].writeToNBT(tagCompound);
tagList.appendTag(tagCompound);
}
}
nbtTagCompound.setTag("Items", tagList);
}
2013-03-05 04:18:15 +01:00
@Override
// public boolean hasCustomName()
public boolean func_94042_c() {
return this.hasCustomName();
2013-03-05 04:18:15 +01:00
}
@Override
// public boolean canInsertSide(int i, ItemStack itemStack)
public boolean func_94041_b(int i, ItemStack itemstack) {
return true;
}
2013-02-18 03:30:11 +01:00
}