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

138 lines
4 KiB
Java

package com.eloraam.redpower.machine;
import java.util.List;
import com.eloraam.redpower.core.IHandleGuiEvent;
import com.eloraam.redpower.core.PacketGuiEvent;
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 ContainerAssemble extends Container implements IHandleGuiEvent {
private TileAssemble tileAssemble;
public int mode = 0;
public int select = 0;
public int skipSlots = 0;
public ContainerAssemble(IInventory inv, TileAssemble tf) {
this.tileAssemble = tf;
for(int i = 0; i < 2; ++i) {
for(int j = 0; j < 8; ++j) {
this.addSlotToContainer(new Slot(tf, j + i * 8, 8 + j * 18, 18 + i * 18));
}
}
for(int i = 0; i < 2; ++i) {
for(int j = 0; j < 9; ++j) {
this.addSlotToContainer(new Slot(tf, j + i * 9 + 16, 8 + j * 18, 63 + 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, 113 + i * 18));
}
}
for(int i = 0; i < 9; ++i) {
this.addSlotToContainer(new Slot(inv, i, 8 + i * 18, 171));
}
}
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.tileAssemble.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 < 34) {
if (!this.mergeItemStack(itemstack1, 34, 70, true)) {
return null;
}
} else if (!this.mergeItemStack(itemstack1, 16, 34, false)) {
return null;
}
if (itemstack1.stackSize == 0) {
slot.putStack(null);
} else {
slot.onSlotChanged();
}
if (itemstack1.stackSize == itemstack.stackSize) {
return null;
}
slot.onPickupFromSlot(player, itemstack1);
}
return itemstack;
}
public void detectAndSendChanges() {
super.detectAndSendChanges();
for(ICrafting ic : (List<ICrafting>)super.crafters) {
if (this.mode != this.tileAssemble.mode) {
ic.sendProgressBarUpdate(this, 0, this.tileAssemble.mode);
}
if (this.select != this.tileAssemble.select) {
ic.sendProgressBarUpdate(this, 1, this.tileAssemble.select);
}
if (this.skipSlots != this.tileAssemble.skipSlots) {
ic.sendProgressBarUpdate(this, 2, this.tileAssemble.skipSlots);
}
}
this.mode = this.tileAssemble.mode;
this.select = this.tileAssemble.select;
this.skipSlots = this.tileAssemble.skipSlots;
}
public void updateProgressBar(int i, int j) {
switch(i) {
case 0:
this.tileAssemble.mode = (byte)j;
break;
case 1:
this.tileAssemble.select = (byte)j;
break;
case 2:
this.tileAssemble.skipSlots = j;
}
}
@Override
public void handleGuiEvent(PacketGuiEvent.GuiMessageEvent message) {
try {
switch(message.eventId) {
case 1:
this.tileAssemble.mode = message.parameters[0];
this.tileAssemble.updateBlockChange();
break;
case 2:
this.tileAssemble.skipSlots = message.parameters[0];
this.tileAssemble.markDirty();
}
} catch (Throwable var3) {
}
}
}