Class VanillaInventoryCodeHooks

java.lang.Object
net.minecraftforge.items.VanillaInventoryCodeHooks

public class VanillaInventoryCodeHooks extends Object
  • Constructor Details

    • VanillaInventoryCodeHooks

      public VanillaInventoryCodeHooks()
  • Method Details

    • extractHook

      @Nullable public static Boolean extractHook(IHopper dest)
      Copied from TileEntityHopper#captureDroppedItems and added capability support
      Returns:
      Null if we did nothing {no IItemHandler}, True if we moved an item, False if we moved no items
    • dropperInsertHook

      public static boolean dropperInsertHook(World world, BlockPos pos, DispenserTileEntity dropper, int slot, @Nonnull ItemStack stack)
      Copied from BlockDropper#dispense and added capability support
    • insertHook

      public static boolean insertHook(HopperTileEntity hopper)
      Copied from TileEntityHopper#transferItemsOut and added capability support
    • putStackInInventoryAllSlots

      private static ItemStack putStackInInventoryAllSlots(TileEntity source, Object destination, IItemHandler destInventory, ItemStack stack)
    • insertStack

      private static ItemStack insertStack(TileEntity source, Object destination, IItemHandler destInventory, ItemStack stack, int slot)
      Copied from TileEntityHopper#insertStack and added capability support
    • getItemHandler

      private static Optional<org.apache.commons.lang3.tuple.Pair<IItemHandler,Object>> getItemHandler(IHopper hopper, Direction hopperFacing)
    • isFull

      private static boolean isFull(IItemHandler itemHandler)
    • isEmpty

      private static boolean isEmpty(IItemHandler itemHandler)
    • getItemHandler

      public static Optional<org.apache.commons.lang3.tuple.Pair<IItemHandler,Object>> getItemHandler(World worldIn, double x, double y, double z, Direction side)