package techreborn.tiles; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.EnumFacing; import reborncore.api.IListInfoProvider; import reborncore.api.power.EnumPowerTier; import reborncore.api.power.IEnergyItemInfo; import reborncore.api.recipe.IRecipeCrafterProvider; import reborncore.api.tile.IInventoryProvider; import reborncore.common.IWrenchable; import reborncore.common.powerSystem.PoweredItem; import reborncore.common.powerSystem.TilePowerAcceptor; import reborncore.common.recipes.RecipeCrafter; import reborncore.common.util.Inventory; import techreborn.api.Reference; import techreborn.client.container.IContainerProvider; import techreborn.client.container.builder.BuiltContainer; import techreborn.client.container.builder.ContainerBuilder; import techreborn.config.ConfigTechReborn; import techreborn.init.ModBlocks; import techreborn.items.DynamicCell; import techreborn.utils.upgrade.UpgradeHandler; import java.util.List; public class TileCentrifuge extends TilePowerAcceptor implements IWrenchable, IInventoryProvider, IListInfoProvider, IRecipeCrafterProvider, IContainerProvider { public int tickTime; public Inventory inventory = new Inventory(11, "TileCentrifuge", 64, this); public UpgradeHandler upgradeHandler; public RecipeCrafter crafter; public int euTick = ConfigTechReborn.CentrifugeInputTick; public TileCentrifuge() { super(2); // Input slots final int[] inputs = new int[] { 0, 1 }; final int[] outputs = new int[4]; outputs[0] = 2; outputs[1] = 3; outputs[2] = 4; outputs[3] = 5; this.crafter = new RecipeCrafter(Reference.centrifugeRecipe, this, 2, 4, this.inventory, inputs, outputs); this.upgradeHandler = new UpgradeHandler(this.crafter, this.inventory, 7, 8, 9, 10); } @Override public void updateEntity() { super.updateEntity(); this.crafter.updateEntity(); this.upgradeHandler.tick(); this.charge(6); if (this.inventory.getStackInSlot(6) != ItemStack.EMPTY) { final ItemStack stack = this.inventory.getStackInSlot(6); if (stack.getItem() instanceof IEnergyItemInfo) { final IEnergyItemInfo item = (IEnergyItemInfo) stack.getItem(); if (item.canProvideEnergy(stack)) { if (this.getEnergy() != this.getMaxPower()) { this.addEnergy(item.getMaxTransfer(stack)); PoweredItem.setEnergy(PoweredItem.getEnergy(stack) - item.getMaxTransfer(stack), stack); } } } } } @Override public boolean wrenchCanSetFacing(final EntityPlayer entityPlayer, final EnumFacing side) { return false; } @Override public EnumFacing getFacing() { return this.getFacingEnum(); } @Override public boolean wrenchCanRemove(final EntityPlayer entityPlayer) { return entityPlayer.isSneaking(); } @Override public float getWrenchDropRate() { return 1.0F; } @Override public ItemStack getWrenchDrop(final EntityPlayer entityPlayer) { return new ItemStack(ModBlocks.INDUSTRIAL_CENTRIFUGE, 1); } public boolean isComplete() { return false; } @Override public void readFromNBT(final NBTTagCompound tagCompound) { super.readFromNBT(tagCompound); this.crafter.readFromNBT(tagCompound); } @Override public NBTTagCompound writeToNBT(final NBTTagCompound tagCompound) { super.writeToNBT(tagCompound); this.crafter.writeToNBT(tagCompound); return tagCompound; } // ISidedInventory @Override public int[] getSlotsForFace(final EnumFacing side) { return side == EnumFacing.DOWN ? new int[] { 0, 1, 2, 3, 4, 5 } : new int[] { 0, 1, 2, 3, 4, 5 }; } @Override public boolean canInsertItem(final int index, final ItemStack itemStackIn, final EnumFacing direction) { return itemStackIn.isItemEqual(DynamicCell.getEmptyCell(1).copy()) ? index == 1 : index == 0; } @Override public boolean canExtractItem(final int slotIndex, final ItemStack itemStack, final EnumFacing side) { return slotIndex >= 2 && slotIndex <= 5; } @Override public void addInfo(final List info, final boolean isRealTile) { super.addInfo(info, isRealTile); info.add("Round and round it goes"); } public int getProgressScaled(final int scale) { if (this.crafter.currentTickTime != 0) { return this.crafter.currentTickTime * scale / this.crafter.currentNeededTicks; } return 0; } @Override public double getMaxPower() { return 10000; } @Override public boolean canAcceptEnergy(final EnumFacing direction) { return true; } @Override public boolean canProvideEnergy(final EnumFacing direction) { return false; } @Override public double getMaxOutput() { return 0; } @Override public double getMaxInput() { return 32; } @Override public EnumPowerTier getTier() { return EnumPowerTier.LOW; } @Override public Inventory getInventory() { return this.inventory; } @Override public RecipeCrafter getRecipeCrafter() { return this.crafter; } @Override public BuiltContainer createContainer(final EntityPlayer player) { return new ContainerBuilder("centrifuge").player(player.inventory).inventory(8, 84).hotbar(8, 142) .addInventory().tile(this).slot(0, 80, 35).slot(1, 50, 5).outputSlot(2, 80, 5).outputSlot(3, 110, 35) .outputSlot(4, 80, 65).outputSlot(5, 50, 35).energySlot(6, 8, 51).upgradeSlot(7, 152, 8) .upgradeSlot(8, 152, 26).upgradeSlot(9, 152, 44).upgradeSlot(10, 152, 62).syncEnergyValue() .syncCrafterValue().addInventory().create(); } }