mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
92 lines
2.9 KiB
Java
92 lines
2.9 KiB
Java
package com.hbm.inventory.container;
|
|
|
|
import com.hbm.inventory.SlotTakeOnly;
|
|
import com.hbm.items.machine.ItemSatChip;
|
|
import com.hbm.tileentity.machine.TileEntityMachineSatDock;
|
|
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 ContainerSatDock extends Container {
|
|
|
|
private final TileEntityMachineSatDock tileSatelliteDock;
|
|
|
|
public ContainerSatDock(InventoryPlayer invPlayer, TileEntityMachineSatDock tesd) {
|
|
tileSatelliteDock = tesd;
|
|
|
|
//Storage
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 0, 62, 17));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 1, 80, 17));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 2, 98, 17));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 3, 116, 17));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 4, 134, 17));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 5, 62, 35));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 6, 80, 35));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 7, 98, 35));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 8, 116, 35));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 9, 134, 35));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 10, 62, 53));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 11, 80, 53));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 12, 98, 53));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 13, 116, 53));
|
|
this.addSlotToContainer(new SlotTakeOnly(tesd, 14, 134, 53));
|
|
//Chip
|
|
this.addSlotToContainer(new Slot(tesd, 15, 26, 35) {
|
|
@Override
|
|
public boolean isItemValid(ItemStack stack) {
|
|
return stack.getItem() instanceof ItemSatChip;
|
|
}
|
|
});
|
|
|
|
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));
|
|
}
|
|
}
|
|
|
|
for(int i = 0; i < 9; i++) {
|
|
this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 142));
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void addCraftingToCrafters(ICrafting crafting) {
|
|
super.addCraftingToCrafters(crafting);
|
|
}
|
|
|
|
@Override
|
|
public ItemStack transferStackInSlot(EntityPlayer player, int par2) {
|
|
ItemStack var3 = null;
|
|
Slot var4 = (Slot) this.inventorySlots.get(par2);
|
|
|
|
if (var4 != null && var4.getHasStack()) {
|
|
ItemStack var5 = var4.getStack();
|
|
var3 = var5.copy();
|
|
|
|
if (par2 <= 15) {
|
|
if (!this.mergeItemStack(var5, 16, this.inventorySlots.size(), true)) {
|
|
return null;
|
|
}
|
|
} else if (!this.mergeItemStack(var5, 0, 15, false)) {
|
|
return null;
|
|
}
|
|
|
|
if (var5.stackSize == 0) {
|
|
var4.putStack(null);
|
|
} else {
|
|
var4.onSlotChanged();
|
|
}
|
|
}
|
|
|
|
return var3;
|
|
}
|
|
|
|
@Override
|
|
public boolean canInteractWith(EntityPlayer player) {
|
|
return tileSatelliteDock.isUseableByPlayer(player);
|
|
}
|
|
}
|