mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
127 lines
3.6 KiB
Java
127 lines
3.6 KiB
Java
package com.hbm.items.tool;
|
|
|
|
import com.hbm.inventory.container.ContainerPlasticBag;
|
|
import com.hbm.inventory.gui.GUIPlasticBag;
|
|
import com.hbm.main.MainRegistry;
|
|
import com.hbm.tileentity.IGUIProvider;
|
|
import com.hbm.util.ItemStackUtil;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.gui.GuiScreen;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.inventory.Container;
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.world.World;
|
|
|
|
public class ItemPlasticBag extends Item implements IGUIProvider {
|
|
|
|
public ItemPlasticBag() {
|
|
this.setMaxStackSize(1);
|
|
}
|
|
|
|
@Override
|
|
public int getMaxItemUseDuration(ItemStack stack) {
|
|
return 1;
|
|
}
|
|
|
|
@Override
|
|
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player) {
|
|
|
|
if(!world.isRemote) player.openGui(MainRegistry.instance, 0, world, 0, 0, 0);
|
|
return stack;
|
|
}
|
|
|
|
@Override
|
|
public Container provideContainer(int ID, EntityPlayer player, World world, int x, int y, int z) {
|
|
return new ContainerPlasticBag(player.inventory, new InventoryPlasticBag(player, player.getHeldItem()));
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public GuiScreen provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) {
|
|
return new GUIPlasticBag(player.inventory, new InventoryPlasticBag(player, player.getHeldItem()));
|
|
}
|
|
|
|
public static class InventoryPlasticBag implements IInventory {
|
|
|
|
public final EntityPlayer player;
|
|
public final ItemStack bag;
|
|
public ItemStack[] slots;
|
|
|
|
public InventoryPlasticBag(EntityPlayer player, ItemStack box) {
|
|
this.player = player;
|
|
this.bag = box;
|
|
slots = new ItemStack[this.getSizeInventory()];
|
|
|
|
if(!box.hasTagCompound())
|
|
box.setTagCompound(new NBTTagCompound());
|
|
|
|
ItemStack[] fromNBT = ItemStackUtil.readStacksFromNBT(box, slots.length);
|
|
|
|
if(fromNBT != null) {
|
|
for(int i = 0; i < slots.length; i++) {
|
|
slots[i] = fromNBT[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public ItemStack decrStackSize(int slot, int amount) {
|
|
ItemStack stack = getStackInSlot(slot);
|
|
if (stack != null) {
|
|
if (stack.stackSize > amount) {
|
|
stack = stack.splitStack(amount);
|
|
markDirty();
|
|
} else {
|
|
setInventorySlotContents(slot, null);
|
|
}
|
|
}
|
|
return stack;
|
|
}
|
|
|
|
@Override
|
|
public ItemStack getStackInSlotOnClosing(int slot) {
|
|
ItemStack stack = getStackInSlot(slot);
|
|
setInventorySlotContents(slot, null);
|
|
return stack;
|
|
}
|
|
|
|
@Override
|
|
public void setInventorySlotContents(int slot, ItemStack stack) {
|
|
|
|
if(stack != null) {
|
|
stack.stackSize = Math.min(stack.stackSize, this.getInventoryStackLimit());
|
|
}
|
|
|
|
slots[slot] = stack;
|
|
markDirty();
|
|
}
|
|
|
|
@Override
|
|
public void markDirty() {
|
|
|
|
for(int i = 0; i < getSizeInventory(); ++i) {
|
|
if(getStackInSlot(i) != null && getStackInSlot(i).stackSize == 0) {
|
|
slots[i] = null;
|
|
}
|
|
}
|
|
|
|
ItemStackUtil.addStacksToNBT(bag, slots);
|
|
}
|
|
|
|
@Override public int getSizeInventory() { return 1; }
|
|
@Override public ItemStack getStackInSlot(int slot) { return slots[slot]; }
|
|
@Override public String getInventoryName() { return "container.plasticBag"; }
|
|
@Override public boolean hasCustomInventoryName() { return bag.hasDisplayName(); }
|
|
@Override public int getInventoryStackLimit() { return 1; }
|
|
@Override public boolean isUseableByPlayer(EntityPlayer player) { return true; }
|
|
@Override public void openInventory() { }
|
|
@Override public void closeInventory() { }
|
|
@Override public boolean isItemValidForSlot(int slot, ItemStack stack) { return true; }
|
|
}
|
|
}
|