TechReborn/src/main/java/techreborn/client/container/ContainerBlastFurnace.java

82 lines
2.1 KiB
Java
Raw Normal View History

package techreborn.client.container;
import net.minecraft.entity.player.EntityPlayer;
2015-07-20 16:19:23 +02:00
import net.minecraft.inventory.ICrafting;
import net.minecraft.inventory.Slot;
import techreborn.client.SlotOutput;
import techreborn.tiles.TileBlastFurnace;
2015-07-20 16:19:23 +02:00
public class ContainerBlastFurnace extends ContainerCrafting {
2015-04-24 15:20:09 +02:00
EntityPlayer player;
TileBlastFurnace tile;
2015-07-20 16:19:23 +02:00
public int heat;
@Override
2015-04-24 15:20:09 +02:00
public boolean canInteractWith(EntityPlayer player)
{
return true;
}
2015-04-24 15:20:09 +02:00
public int tickTime;
2015-04-24 15:20:09 +02:00
public ContainerBlastFurnace(TileBlastFurnace tileblastfurnace,
EntityPlayer player)
{
2015-07-20 16:19:23 +02:00
super(tileblastfurnace.crafter);
tile = tileblastfurnace;
2015-04-24 15:20:09 +02:00
this.player = player;
// input
2015-05-10 22:39:19 +02:00
this.addSlotToContainer(new Slot(tileblastfurnace.inventory, 0, 40, 25));//Input 1
this.addSlotToContainer(new Slot(tileblastfurnace.inventory, 1, 40, 43));//Input 2
2015-04-24 15:20:09 +02:00
// outputs
2015-05-10 22:39:19 +02:00
this.addSlotToContainer(new SlotOutput(tileblastfurnace.inventory, 2, 100, 35));//Output 1
this.addSlotToContainer(new SlotOutput(tileblastfurnace.inventory, 3, 118, 35));//Output 2
2015-04-24 15:20:09 +02:00
int i;
for (i = 0; i < 3; ++i)
{
for (int j = 0; j < 9; ++j)
{
this.addSlotToContainer(new Slot(player.inventory, j + i * 9
+ 9, 8 + j * 18, 84 + i * 18));
}
}
for (i = 0; i < 9; ++i)
{
this.addSlotToContainer(new Slot(player.inventory, i, 8 + i * 18,
142));
}
}
2015-07-20 16:19:23 +02:00
@Override
public void detectAndSendChanges() {
super.detectAndSendChanges();
for (int i = 0; i < this.crafters.size(); i++) {
ICrafting icrafting = (ICrafting)this.crafters.get(i);
if(this.heat != tile.getHeat()){
icrafting.sendProgressBarUpdate(this, 10, tile.getHeat());
}
}
}
@Override
public void addCraftingToCrafters(ICrafting crafting) {
super.addCraftingToCrafters(crafting);
crafting.sendProgressBarUpdate(this, 10, tile.getHeat());
}
@Override
public void updateProgressBar(int id, int value) {
if(id == 10){
this.heat = value;
}
super.updateProgressBar(id, value);
}
}