redpower/src/main/java/com/eloraam/redpower/machine/ContainerChargingBench.java
2023-01-09 18:47:48 +01:00

103 lines
2.9 KiB
Java

package com.eloraam.redpower.machine;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.ICrafting;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class ContainerChargingBench extends Container {
private TileChargingBench tileCB;
public int charge;
public int storage;
public ContainerChargingBench(IInventory inv, TileChargingBench tf) {
this.tileCB = tf;
for(int i = 0; i < 4; ++i) {
for(int j = 0; j < 4; ++j) {
this.addSlotToContainer(new Slot(tf, j + i * 4, 80 + j * 18, 18 + i * 18));
}
}
for(int i = 0; i < 3; ++i) {
for(int j = 0; j < 9; ++j) {
this.addSlotToContainer(new Slot(inv, j + i * 9 + 9, 8 + j * 18, 104 + i * 18));
}
}
for(int i = 0; i < 9; ++i) {
this.addSlotToContainer(new Slot(inv, i, 8 + i * 18, 162));
}
}
public ItemStack slotClick(int a, int b, int c, EntityPlayer player) {
return !this.canInteractWith(player) ? null : super.slotClick(a, b, c, player);
}
public boolean canInteractWith(EntityPlayer player) {
return player.worldObj.isRemote || this.tileCB.isUseableByPlayer(player);
}
public ItemStack transferStackInSlot(EntityPlayer player, int i) {
ItemStack itemstack = null;
Slot slot = (Slot)super.inventorySlots.get(i);
if (slot != null && slot.getHasStack()) {
ItemStack itemstack1 = slot.getStack();
itemstack = itemstack1.copy();
if (i < 16) {
if (!this.mergeItemStack(itemstack1, 16, 52, true)) {
return null;
}
} else if (!this.mergeItemStack(itemstack1, 0, 16, false)) {
return null;
}
if (itemstack1.stackSize == 0) {
slot.putStack((ItemStack)null);
} else {
slot.onSlotChanged();
}
if (itemstack1.stackSize == itemstack.stackSize) {
return null;
}
slot.onPickupFromSlot(player, itemstack1);
}
return itemstack;
}
public void detectAndSendChanges() {
super.detectAndSendChanges();
for(int i = 0; i < super.crafters.size(); ++i) {
ICrafting ic = (ICrafting)super.crafters.get(i);
if (this.charge != this.tileCB.cond.Charge) {
ic.sendProgressBarUpdate(this, 0, this.tileCB.cond.Charge);
}
if (this.storage != this.tileCB.Storage) {
ic.sendProgressBarUpdate(this, 1, this.tileCB.Storage);
}
}
this.charge = this.tileCB.cond.Charge;
this.storage = this.tileCB.Storage;
}
public void updateProgressBar(int i, int j) {
switch(i) {
case 0:
this.tileCB.cond.Charge = j;
break;
case 1:
this.tileCB.Storage = j;
}
}
}