package com.hbm.gui; import com.hbm.blocks.TileEntityFusionMultiblock; import com.hbm.blocks.TileEntityReactorMultiblock; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.Container; import net.minecraft.inventory.ICrafting; import net.minecraft.inventory.Slot; import net.minecraft.item.ItemStack; public class ContainerFusionMultiblock extends Container { private TileEntityFusionMultiblock diFurnace; private int water; private int deut; private int power; private int trit; private boolean isRunning; public ContainerFusionMultiblock(InventoryPlayer invPlayer, TileEntityFusionMultiblock tedf) { diFurnace = tedf; this.addSlotToContainer(new Slot(tedf, 0, 8, 108)); this.addSlotToContainer(new Slot(tedf, 1, 26, 108)); this.addSlotToContainer(new Slot(tedf, 2, 134, 108)); this.addSlotToContainer(new Slot(tedf, 3, 152, 108)); this.addSlotToContainer(new Slot(tedf, 4, 53, 45)); this.addSlotToContainer(new Slot(tedf, 5, 107, 45)); this.addSlotToContainer(new Slot(tedf, 6, 53, 81)); this.addSlotToContainer(new Slot(tedf, 7, 107, 81)); this.addSlotToContainer(new Slot(tedf, 8, 80, 63)); for(int i = 0; i < 3; i++) { for(int j = 0; j < 9; j++) { this.addSlotToContainer(new Slot(invPlayer, j + i * 9 + 9, 8 + j * 18, 84 + i * 18 + 56)); } } for(int i = 0; i < 9; i++) { this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 142 + 56)); } } @Override public void addCraftingToCrafters(ICrafting crafting) { super.addCraftingToCrafters(crafting); crafting.sendProgressBarUpdate(this, 0, this.diFurnace.water); crafting.sendProgressBarUpdate(this, 1, this.diFurnace.deut); crafting.sendProgressBarUpdate(this, 2, this.diFurnace.power); crafting.sendProgressBarUpdate(this, 3, this.diFurnace.trit); crafting.sendProgressBarUpdate(this, 4, isRunning ? 1 : 0); } @Override public ItemStack transferStackInSlot(EntityPlayer p_82846_1_, int p_82846_2_) { return null; } @Override public boolean canInteractWith(EntityPlayer player) { return diFurnace.isUseableByPlayer(player); } @Override public void detectAndSendChanges() { super.detectAndSendChanges(); for(int i = 0; i < this.crafters.size(); i++) { ICrafting par1 = (ICrafting)this.crafters.get(i); if(this.water != this.diFurnace.water) { par1.sendProgressBarUpdate(this, 0, this.diFurnace.water); } if(this.deut != this.diFurnace.deut) { par1.sendProgressBarUpdate(this, 1, this.diFurnace.deut); } if(this.power != this.diFurnace.power) { par1.sendProgressBarUpdate(this, 2, this.diFurnace.power); } if(this.trit != this.diFurnace.trit) { par1.sendProgressBarUpdate(this, 3, this.diFurnace.trit); } if(this.isRunning != this.diFurnace.isRunning()) { par1.sendProgressBarUpdate(this, 4, this.diFurnace.isRunning() ? 1 : 0); } } this.water = this.diFurnace.water; this.deut = this.diFurnace.deut; this.power = this.diFurnace.power; this.trit = this.diFurnace.trit; this.isRunning = this.diFurnace.isRunning(); } @Override public void updateProgressBar(int i, int j) { if(i == 0) { diFurnace.water = j; } if(i == 1) { diFurnace.deut = j; } if(i == 2) { diFurnace.power = j; } if(i == 3) { diFurnace.trit = j; } if(i == 4) { if(j == 0) { diFurnace.emptyPlasma(); } else { diFurnace.fillPlasma(); } } } }