Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. package com.minecolonies.coremod.tileentities;
  2.  
  3. import com.minecolonies.api.util.ItemStackUtils;
  4. import com.minecolonies.blockout.Log;
  5. import com.minecolonies.coremod.blocks.BlockRack;
  6. import com.minecolonies.coremod.entity.ai.item.handling.ItemStorage;
  7. import net.minecraft.item.ItemStack;
  8. import net.minecraft.tileentity.TileEntity;
  9. import net.minecraft.util.EnumFacing;
  10. import net.minecraft.util.math.BlockPos;
  11. import net.minecraftforge.common.capabilities.Capability;
  12. import net.minecraftforge.items.CapabilityItemHandler;
  13. import net.minecraftforge.items.IItemHandler;
  14. import net.minecraftforge.items.IItemHandlerModifiable;
  15. import net.minecraftforge.items.ItemStackHandler;
  16. import net.minecraftforge.items.wrapper.CombinedInvWrapper;
  17.  
  18. import java.util.HashMap;
  19. import java.util.Map;
  20.  
  21. /**
  22. * Tile entity for the warehouse shelves.
  23. */
  24. public class TileEntityRack extends TileEntity
  25. {
  26. /**
  27. * Variable which determines if it is a single or doublechest.
  28. */
  29. private boolean single = true;
  30.  
  31. /**
  32. * Neighbor position of the rack (double chest).
  33. */
  34. private BlockPos neighbor = BlockPos.ORIGIN;
  35.  
  36. /**
  37. * The content of the chest.
  38. */
  39. private final Map<ItemStorage, Integer> content = new HashMap<>();
  40.  
  41. final IItemHandlerModifiable inventory = new ItemStackHandler(27)
  42. {
  43. @Override
  44. protected void onContentsChanged(final int slot)
  45. {
  46. updatItemStorage();
  47. super.onContentsChanged(slot);
  48. }
  49. };
  50.  
  51. /**
  52. * Scans through the whole storage and updates it.
  53. */
  54. private void updatItemStorage()
  55. {
  56. content.clear();
  57. for(int slot = 0; slot < inventory.getSlots(); slot++)
  58. {
  59. final ItemStack stack = inventory.getStackInSlot(slot);
  60.  
  61. if(ItemStackUtils.isEmpty(stack))
  62. {
  63. continue;
  64. }
  65.  
  66. final ItemStorage storage = new ItemStorage(stack.copy());
  67. int amount = ItemStackUtils.getSize(stack);
  68. if(content.containsKey(storage))
  69. {
  70. amount += content.remove(storage);
  71. }
  72. content.put(storage, amount);
  73. }
  74.  
  75. if(content.isEmpty())
  76. {
  77. worldObj.setBlockState(pos, worldObj.getBlockState(pos).withProperty(BlockRack.VARIANT, BlockRack.EnumType.DEFAULT));
  78. }
  79. else
  80. {
  81. worldObj.setBlockState(pos, worldObj.getBlockState(pos).withProperty(BlockRack.VARIANT, BlockRack.EnumType.FULL));
  82. }
  83.  
  84. for(final Map.Entry<ItemStorage, Integer> entry : content.entrySet())
  85. {
  86. Log.getLogger().warn(entry.getKey().getItemStack().getDisplayName() + ": " + entry.getValue());
  87. }
  88. }
  89.  
  90. public void neighborChanged(final BlockPos neighbor)
  91. {
  92.  
  93. }
  94.  
  95. public IItemHandlerModifiable getInventory()
  96. {
  97. return inventory;
  98. }
  99.  
  100. @Override
  101. public boolean hasCapability(final Capability<?> capability, final EnumFacing facing)
  102. {
  103. if (capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY)
  104. {
  105. return true;
  106. }
  107. return super.hasCapability(capability, facing);
  108. }
  109.  
  110. @Override
  111. public <T> T getCapability(final Capability<T> capability, final EnumFacing facing)
  112. {
  113. if (capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY)
  114. {
  115. if(single)
  116. {
  117. return (T) inventory;
  118. }
  119. else
  120. {
  121. return (T) new CombinedInvWrapper(inventory, getOtherChest().inventory);
  122. }
  123. }
  124. return super.getCapability(capability, facing);
  125. }
  126.  
  127. public TileEntityRack getOtherChest()
  128. {
  129. return null;
  130. }
  131.  
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement