Class IngredientComponentStorageWrapperHandlerItemStackSlotless.ComponentStorageWrapper

java.lang.Object
org.cyclops.commoncapabilities.ingredient.storage.IngredientComponentStorageWrapperHandlerItemStackSlotless.ComponentStorageWrapper
All Implemented Interfaces:
Iterable<net.minecraft.world.item.ItemStack>, IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
Enclosing class:
IngredientComponentStorageWrapperHandlerItemStackSlotless<C>

public static class IngredientComponentStorageWrapperHandlerItemStackSlotless.ComponentStorageWrapper extends Object implements IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
  • Constructor Summary

    Constructors
    Constructor
    Description
    ComponentStorageWrapper(IngredientComponent<net.minecraft.world.item.ItemStack,Integer> ingredientComponent, ISlotlessItemHandler storage)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    net.minecraft.world.item.ItemStack
    extract(long maxQuantity, net.neoforged.neoforge.transfer.transaction.TransactionContext transaction)
    Extract any ingredient, but the given maximum amount from the storage.
    net.minecraft.world.item.ItemStack
    extract(net.minecraft.world.item.ItemStack prototype, Integer matchFlags, net.neoforged.neoforge.transfer.transaction.TransactionContext transaction)
    Extract an ingredient matching the given prototype from the storage.
    IngredientComponent<net.minecraft.world.item.ItemStack,Integer>
     
    long
     
    net.minecraft.world.item.ItemStack
    insert(net.minecraft.world.item.ItemStack ingredient, net.neoforged.neoforge.transfer.transaction.TransactionContext transaction)
    Inserts an ingredient into the storage and return the remainder.
    Iterator<net.minecraft.world.item.ItemStack>
    Get all ingredients in this storage.
    Iterator<net.minecraft.world.item.ItemStack>
    iterator(net.minecraft.world.item.ItemStack prototype, Integer matchFlags)
    Find all ingredients matching the given prototype from the storage.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.cyclops.commoncapabilities.api.ingredient.storage.IIngredientComponentStorage

    extract, extract, insert

    Methods inherited from interface java.lang.Iterable

    forEach, spliterator
  • Constructor Details

  • Method Details

    • getComponent

      public IngredientComponent<net.minecraft.world.item.ItemStack,Integer> getComponent()
      Specified by:
      getComponent in interface IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
      Returns:
      The ingredient component type this storage applies to.
    • iterator

      public Iterator<net.minecraft.world.item.ItemStack> iterator()
      Description copied from interface: IIngredientComponentStorage
      Get all ingredients in this storage.
      Specified by:
      iterator in interface IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
      Specified by:
      iterator in interface Iterable<net.minecraft.world.item.ItemStack>
      Returns:
      An iterator over all available ingredients in this storage.
    • iterator

      public Iterator<net.minecraft.world.item.ItemStack> iterator(@Nonnull net.minecraft.world.item.ItemStack prototype, Integer matchFlags)
      Description copied from interface: IIngredientComponentStorage
      Find all ingredients matching the given prototype from the storage. Calling this method will not modify the storage in any way. Results from this method MUST NOT be modified.
      Specified by:
      iterator in interface IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
      Parameters:
      prototype - The ingredient to search for.
      matchFlags - The flags to compare the given prototype by according to IngredientComponent.getMatcher().
      Returns:
      An iterator over ingredients that match the given prototype, which may potentially be empty.
    • getMaxQuantity

      public long getMaxQuantity()
      Specified by:
      getMaxQuantity in interface IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
      Returns:
      The maximum allowed quantity over all instances.
    • insert

      public net.minecraft.world.item.ItemStack insert(@Nonnull net.minecraft.world.item.ItemStack ingredient, net.neoforged.neoforge.transfer.transaction.TransactionContext transaction)
      Description copied from interface: IIngredientComponentStorage
      Inserts an ingredient into the storage and return the remainder. The ingredient should not be modified in this function!
      Specified by:
      insert in interface IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
      Parameters:
      ingredient - Ingredient to insert.
      transaction - The transaction context.
      Returns:
      The remaining ingredient that was not inserted (if the entire ingredient is accepted, then return IIngredientMatcher.getEmptyInstance()). May be the same as the input ingredient if unchanged, otherwise a new ingredient.
    • extract

      public net.minecraft.world.item.ItemStack extract(@Nonnull net.minecraft.world.item.ItemStack prototype, Integer matchFlags, net.neoforged.neoforge.transfer.transaction.TransactionContext transaction)
      Description copied from interface: IIngredientComponentStorage
      Extract an ingredient matching the given prototype from the storage. Note that only the extracted ingredient must match the prototype under the given condition. Internally, ingredients can be combined and matched in any way. For example, an exact match could be produced by combining several ingredients. If the primary quantifier (as identified by IngredientComponent.getPrimaryQuantifier()) IS NOT part of the match condition, then the quantity of the given prototype MUST be interpreted as the maximum quantity that must be extracted. If the primary quantifier (as identified by IngredientComponent.getPrimaryQuantifier()) IS part of the match condition, then the quantity of the given prototype MUST be interpreted as the exact quantity that must be extracted. If the storage has a HIGHER OR EQUAL available quantity, then the storage MUST allow the given quantity to be extracted. If the storage on the other hand has a LOWER available quantity, then extraction is not allowed.
      Specified by:
      extract in interface IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
      Parameters:
      prototype - The ingredient to search for.
      matchFlags - The flags to compare the given prototype by according to IngredientComponent.getMatcher().
      transaction - The transaction context.
      Returns:
      Ingredient extracted from the slot, must be IIngredientMatcher.getEmptyInstance(), if nothing can be extracted
    • extract

      public net.minecraft.world.item.ItemStack extract(long maxQuantity, net.neoforged.neoforge.transfer.transaction.TransactionContext transaction)
      Description copied from interface: IIngredientComponentStorage
      Extract any ingredient, but the given maximum amount from the storage.
      Specified by:
      extract in interface IIngredientComponentStorage<net.minecraft.world.item.ItemStack,Integer>
      Parameters:
      maxQuantity - The maximum amount to extract.
      transaction - The transaction context.
      Returns:
      Ingredient extracted from the slot, must be IIngredientMatcher.getEmptyInstance(), if nothing can be extracted