Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2014
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 4.71 KB | None | 0 0
  1. import cpw.mods.fml.common.Optional;
  2. import li.cil.oc.api.network.Arguments;
  3. import li.cil.oc.api.network.Callback;
  4. import li.cil.oc.api.network.Context;
  5. import li.cil.oc.api.network.SimpleComponent;
  6. import net.minecraft.entity.player.EntityPlayer;
  7. import net.minecraft.inventory.IInventory;
  8. import net.minecraft.item.ItemStack;
  9. import net.minecraft.nbt.NBTTagCompound;
  10. import net.minecraft.nbt.NBTTagList;
  11. import net.minecraft.tileentity.TileEntity;
  12.  
  13. public class InventoryTileEntity extends TileEntity implements IInventory,SimpleComponent {
  14.       private ItemStack[] inv;
  15.  
  16.       public InventoryTileEntity(){
  17.               inv = new ItemStack[9];
  18.       }
  19.      
  20.       @Override
  21.       public int getSizeInventory() {
  22.               return inv.length;
  23.       }
  24.  
  25.       @Override
  26.       public ItemStack getStackInSlot(int slot) {
  27.               return inv[slot];
  28.       }
  29.      
  30.       @Override
  31.       public void setInventorySlotContents(int slot, ItemStack stack) {
  32.               inv[slot] = stack;
  33.               if (stack != null && stack.stackSize > getInventoryStackLimit()) {
  34.                       stack.stackSize = getInventoryStackLimit();
  35.               }              
  36.       }
  37.  
  38.       @Override
  39.       public ItemStack decrStackSize(int slot, int amt) {
  40.               ItemStack stack = getStackInSlot(slot);
  41.               if (stack != null) {
  42.                       if (stack.stackSize <= amt) {
  43.                               setInventorySlotContents(slot, null);
  44.                       } else {
  45.                               ItemStack retstack = stack.splitStack(amt);
  46.                               if (stack.stackSize == 0) {
  47.                                       setInventorySlotContents(slot, null);
  48.                               }
  49.                               stack = retstack;
  50.                       }
  51.               }
  52.               return stack;
  53.       }
  54.  
  55.       @Override
  56.       public ItemStack getStackInSlotOnClosing(int slot) {
  57.               ItemStack stack = getStackInSlot(slot);
  58.               if (stack != null) {
  59.                       setInventorySlotContents(slot, null);
  60.               }
  61.               return stack;
  62.       }
  63.      
  64.       @Override
  65.       public int getInventoryStackLimit() {
  66.               return 64;
  67.       }
  68.  
  69.       @Override
  70.       public boolean isUseableByPlayer(EntityPlayer player) {
  71.               return worldObj.getBlockTileEntity(xCoord, yCoord, zCoord) == this &&
  72.               player.getDistanceSq(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5) < 64;
  73.       }
  74.  
  75.       @Override
  76.       public void openChest() {}
  77.  
  78.       @Override
  79.       public void closeChest() {}
  80.      
  81.       @Override
  82.       public void readFromNBT(NBTTagCompound tagCompound) {
  83.               super.readFromNBT(tagCompound);
  84.              
  85.               NBTTagList tagList = tagCompound.getTagList("Inventory");
  86.               for (int i = 0; i < tagList.tagCount(); i++) {
  87.                       NBTTagCompound tag = (NBTTagCompound) tagList.tagAt(i);
  88.                       byte slot = tag.getByte("Slot");
  89.                       if (slot >= 0 && slot < inv.length) {
  90.                               inv[slot] = ItemStack.loadItemStackFromNBT(tag);
  91.                       }
  92.               }
  93.       }
  94.  
  95.       @Override
  96.       public void writeToNBT(NBTTagCompound tagCompound) {
  97.               super.writeToNBT(tagCompound);
  98.                              
  99.               NBTTagList itemList = new NBTTagList();
  100.               for (int i = 0; i < inv.length; i++) {
  101.                       ItemStack stack = inv[i];
  102.                       if (stack != null) {
  103.                               NBTTagCompound tag = new NBTTagCompound();
  104.                               tag.setByte("Slot", (byte) i);
  105.                               stack.writeToNBT(tag);
  106.                               itemList.appendTag(tag);
  107.                       }
  108.               }
  109.               tagCompound.setTag("Inventory", itemList);
  110.       }
  111.  
  112.               @Override
  113.               public String getInvName() {
  114.                       return "openinventory.inventorytileentity";
  115.               }
  116.  
  117.             @Override
  118.             public boolean isInvNameLocalized() {
  119.                 // TODO Auto-generated method stub
  120.                 return false;
  121.             }
  122.  
  123.             @Override
  124.             public boolean isItemValidForSlot(int i, ItemStack itemstack) {
  125.                 // TODO Auto-generated method stub
  126.                 return true;
  127.             }
  128.  
  129.             @Override
  130.             public String getComponentName() {
  131.                 return "computerizedInventory";
  132.             }
  133.            
  134.             @Callback
  135.             public Object[] greet(Context context, Arguments args) {
  136.                 return new Object[]{String.format("Hello, %s!", args.checkString(0))};
  137.             }
  138.            
  139.             @Callback
  140.             public Object[] GetInventory(Context context, Arguments args) {
  141.                 return null;
  142.             }
  143. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement