mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
84 lines
2.2 KiB
Java
84 lines
2.2 KiB
Java
package com.hbm.inventory.container;
|
|
|
|
import com.hbm.inventory.SlotCraftingOutput;
|
|
import com.hbm.items.ModItems;
|
|
import com.hbm.tileentity.bomb.TileEntityLaunchPadRusted;
|
|
|
|
import api.hbm.item.IDesignatorItem;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import net.minecraft.inventory.Container;
|
|
import net.minecraft.inventory.Slot;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class ContainerLaunchPadRusted extends Container {
|
|
|
|
private TileEntityLaunchPadRusted launchpad;
|
|
|
|
public ContainerLaunchPadRusted(InventoryPlayer invPlayer, TileEntityLaunchPadRusted tedf) {
|
|
this.launchpad = tedf;
|
|
|
|
this.addSlotToContainer(new SlotCraftingOutput(invPlayer.player, tedf, 0, 26, 72));
|
|
this.addSlotToContainer(new Slot(tedf, 1, 116, 45));
|
|
this.addSlotToContainer(new Slot(tedf, 2, 134, 45));
|
|
this.addSlotToContainer(new Slot(tedf, 3, 26, 99));
|
|
|
|
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, 154 + i * 18));
|
|
}
|
|
}
|
|
|
|
for(int i = 0; i < 9; i++) {
|
|
this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 212));
|
|
}
|
|
}
|
|
|
|
@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 <= 3) {
|
|
if(!this.mergeItemStack(var5, 4, this.inventorySlots.size(), true)) {
|
|
return null;
|
|
}
|
|
} else {
|
|
|
|
if(var3.getItem() instanceof IDesignatorItem) {
|
|
if(!this.mergeItemStack(var5, 3, 4, false)) {
|
|
return null;
|
|
}
|
|
} else if(var3.getItem() == ModItems.launch_code) {
|
|
if(!this.mergeItemStack(var5, 1, 2, false)) {
|
|
return null;
|
|
}
|
|
} else if(var3.getItem() == ModItems.launch_key) {
|
|
if(!this.mergeItemStack(var5, 2, 3, false)) {
|
|
return null;
|
|
}
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
if(var5.stackSize == 0) {
|
|
var4.putStack((ItemStack) null);
|
|
} else {
|
|
var4.onSlotChanged();
|
|
}
|
|
}
|
|
|
|
return var3;
|
|
}
|
|
|
|
@Override
|
|
public boolean canInteractWith(EntityPlayer player) {
|
|
return launchpad.isUseableByPlayer(player);
|
|
}
|
|
}
|