package com.projectreddog.machinemod.tileentities;
import java.util.List;
import com.projectreddog.machinemod.iface.IFuelContainer;
import com.projectreddog.machinemod.init.ModItems;
import com.projectreddog.machinemod.reference.Reference;
import net.minecraft.entity.Entity;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Items;
import net.minecraft.inventory.ISidedInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.ITickable;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.text.ITextComponent;
public class TileEntityCentrifuge extends TileEntity implements ITickable, ISidedInventory, IFuelContainer {
protected ItemStack[] inventory;
private static int[] bottomSlots = new int[] { 1 };
private static int[] topSlots = new int[] { 0 };
public final int maxFuelStorage = 5000; // store up to 10k (can fill all 9 cans & have room for one more
public int fuelStorage = 0;
public AxisAlignedBB boundingBox;
public int coolDownAmount = 60;
public int timeTillCoolDown = 0;
public final int BlastedStoneOreMultiplier = 3;
public final int VanillaOreMultiplier = 2;
public final int BlastedStoneCoalMultiplier = 3;
public final int BlastedStoneGemMultiplier = 2;
public final int BlastedStoneLapisMultiplier = 12;
public final int BlastedStoneRedstoneMultiplier = 8;
public TileEntityCentrifuge() {
inventory = new ItemStack[2];
}
@Override
public void update() {
if (!worldObj.isRemote) {
if (timeTillCoolDown > 0) {
timeTillCoolDown--;
ItemStack item = this.getStackInSlot(0);
if (item != null) {
if (item.getItem() != null) {
if (item.getItem() == Items.CLAY_BALL) {
if (fuelStorage > 0) {
fuelStorage = fuelStorage - 1;
}
}
}
}
return;
}
timeTillCoolDown = coolDownAmount;
ItemStack item = this.getStackInSlot(0);
if (item != null) {
if (item.getItem() != null) {
if (item.getItem() == Items.CLAY_BALL) {
if (fuelStorage > 0) {
// fuelStorage = fuelStorage - 1;
if (this.getStackInSlot(1) != null) {
if (this.getStackInSlot(1).stackSize < this.getStackInSlot(1).getMaxStackSize()) {
// TODO Create asphalt item
this.decrStackSize(0, 1);
this.getStackInSlot(1).stackSize++;
return;
}
} else {
this.setInventorySlotContents(1, new ItemStack(ModItems.rawasphalt, 1));
this.decrStackSize(0, 1);
// fuelStorage = fuelStorage - 1;
return;
}
}
}
}
}
}
}
private void processEntitiesInList(List par1List) {
for (int i = 0; i < par1List.size(); ++i) {
Entity entity = (Entity) par1List.get(i);
if (entity != null) {
if (entity instanceof EntityItem) {
ItemStack is = ((EntityItem) entity).getEntityItem();
is.setItemDamage(((EntityItem) entity).getEntityItem().getItemDamage());
if (!entity.isDead) {
if (is.stackSize > 0) {
ItemStack is1 = addToinventory(is);
if (is1 != null && is1.stackSize != 0) {
((EntityItem) entity).setEntityItemStack(is1);
} else {
entity.setDead();
}
}
}
}
// entity.setPosition(entity.getPosition().getX() + 0.1d, entity.getPosition().getY(), entity.getPosition().getZ());
}
}
}
protected ItemStack addToinventory(ItemStack is) {
int i = getSizeInventory();
for (int j = 0; j < i && is != null && is.stackSize > 0; ++j) {
if (is != null) {
if (getStackInSlot(j) != null) {
if (getStackInSlot(j).getItem() == is.getItem() && getStackInSlot(j).getItemDamage() == is.getItemDamage()) {
// same item remove from is put into slot any amt not to
// excede stack max
if (getStackInSlot(j).stackSize < getStackInSlot(j).getMaxStackSize()) {
// we have room to add to this stack
if (is.stackSize <= getStackInSlot(j).getMaxStackSize() - getStackInSlot(j).stackSize) {
// /all of the stack will fit in this slot do
// so.
setInventorySlotContents(j, new ItemStack(getStackInSlot(j).getItem(), getStackInSlot(j).stackSize + is.stackSize, is.getItemDamage()));
is = null;
} else {
// we have more
int countRemain = is.stackSize - (getStackInSlot(j).getMaxStackSize() - getStackInSlot(j).stackSize);
setInventorySlotContents(j, new ItemStack(is.getItem(), getStackInSlot(j).getMaxStackSize(), is.getItemDamage()));
is.stackSize = countRemain;
}
}
}
} else {
// nothign in slot so set contents
setInventorySlotContents(j, new ItemStack(is.getItem(), is.stackSize, is.getItemDamage()));
is = null;
}
}
}
return is;
}
@Override
public void readFromNBT(NBTTagCompound compound) {
super.readFromNBT(compound);
timeTillCoolDown = compound.getInteger(Reference.MACHINE_MOD_NBT_PREFIX + "COOLDOWN");
fuelStorage = compound.getInteger(Reference.MACHINE_MOD_NBT_PREFIX + "FUEL");
// inventory
NBTTagList tagList = compound.getTagList(Reference.MACHINE_MOD_NBT_PREFIX + "Inventory", compound.getId());
for (int i = 0; i < tagList.tagCount(); i++) {
NBTTagCompound tag = (NBTTagCompound) tagList.getCompoundTagAt(i);
byte slot = tag.getByte("Slot");
if (slot >= 0 && slot < inventory.length) {
inventory[slot] = ItemStack.loadItemStackFromNBT(tag);
}
}
}
@Override
public NBTTagCompound writeToNBT(NBTTagCompound compound) {
super.writeToNBT(compound);
compound.setInteger(Reference.MACHINE_MOD_NBT_PREFIX + "COOLDOWN", timeTillCoolDown);
compound.setInteger(Reference.MACHINE_MOD_NBT_PREFIX + "FUEL", fuelStorage);
// inventory
NBTTagList itemList = new NBTTagList();
for (int i = 0; i < inventory.length; i++) {
ItemStack stack = inventory[i];
if (stack != null) {
NBTTagCompound tag = new NBTTagCompound();
tag.setByte("Slot", (byte) i);
stack.writeToNBT(tag);
itemList.appendTag(tag);
}
}
compound.setTag(Reference.MACHINE_MOD_NBT_PREFIX + "Inventory", itemList);
return compound;
}
@Override
public String getName() {
// TODO Auto-generated method stub
return null;
}
@Override
public boolean hasCustomName() {
// TODO Auto-generated method stub
return false;
}
@Override
public ITextComponent getDisplayName() {
// TODO Auto-generated method stub
return null;
}
@Override
public int getSizeInventory() {
return inventory.length;
}
@Override
public ItemStack getStackInSlot(int slot) {
return inventory[slot];
}
@Override
public ItemStack decrStackSize(int slot, int amt) {
ItemStack stack = getStackInSlot(slot);
if (stack != null) {
if (stack.stackSize <= amt) {
setInventorySlotContents(slot, null);
} else {
stack = stack.splitStack(amt);
if (stack.stackSize == 0) {
setInventorySlotContents(slot, null);
}
}
}
return stack;
}
@Override
public ItemStack removeStackFromSlot(int slot) {
ItemStack stack = getStackInSlot(slot);
if (stack != null) {
setInventorySlotContents(slot, null);
}
return stack;
}
@Override
public void setInventorySlotContents(int slot, ItemStack stack) {
inventory[slot] = stack;
if (stack != null && stack.stackSize > getInventoryStackLimit()) {
stack.stackSize = getInventoryStackLimit();
}
}
@Override
public int getInventoryStackLimit() {
return 64;
}
@Override
public boolean isUseableByPlayer(EntityPlayer playerIn) {
return playerIn.getDistanceSq(this.getPos().getX(), this.getPos().getY(), this.getPos().getZ()) < 64;
}
@Override
public void openInventory(EntityPlayer playerIn) {
}
@Override
public void closeInventory(EntityPlayer playerIn) {
}
@Override
public boolean isItemValidForSlot(int index, ItemStack stack) {
return true;
}
@Override
public int getField(int id) {
switch (id) {
case 0:
return this.fuelStorage;
default:
break;
}
return 0;
}
public void setField(int id, int value) {
switch (id) {
case 0:
this.fuelStorage = value;
break;
default:
break;
}
}
@Override
public int getFieldCount() {
return 1;
}
@Override
public void clear() {
for (int i = 0; i < inventory.length; ++i) {
inventory[i] = null;
}
}
@Override
public int[] getSlotsForFace(EnumFacing side) {
if (side == EnumFacing.DOWN) {
return bottomSlots;
} else if (side == EnumFacing.UP) {
return topSlots;
}
// int[] topSlots2 = new int[] { 0 };
return null;
}
@Override
public boolean canInsertItem(int slot, ItemStack itemStackIn, EnumFacing direction) {
if (slot < 54 && direction == EnumFacing.UP) {
return true;
}
return false;
}
@Override
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing direction) {
if (slot < 54 && direction == EnumFacing.DOWN) {
return true;
}
return false;
}
public int addFluid(int amount) {
int returnAmount;
if (canAcceptFluid()) {
if (fuelStorage + amount > maxFuelStorage) {
// fill to brim return amount left over
returnAmount = (fuelStorage + amount - maxFuelStorage);
fuelStorage = maxFuelStorage;
} else {
// not going to return any this container can hold all of the fuel
fuelStorage = fuelStorage + amount;
returnAmount = 0;
}
} else {
returnAmount = amount;
}
return returnAmount;
}
public boolean canAcceptFluid() {
if (fuelStorage < maxFuelStorage) {
return true;
} else {
return false;
}
}
@Override
public EnumFacing outputDirection() {
// TODO Auto-generated method stub
return null;
}
}