Class IngredientMatcherFluidStack

java.lang.Object
org.cyclops.commoncapabilities.ingredient.IngredientMatcherFluidStack
All Implemented Interfaces:
Comparator<net.neoforged.neoforge.fluids.FluidStack>, IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>

public class IngredientMatcherFluidStack extends Object implements IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
Matcher for FluidStacks.
  • Constructor Details

    • IngredientMatcherFluidStack

      public IngredientMatcherFluidStack()
  • Method Details

    • isInstance

      public boolean isInstance(Object object)
      Description copied from interface: IIngredientMatcher
      If the given object is an instance of the ingredient type.
      Specified by:
      isInstance in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      object - An object.
      Returns:
      If the object is a valid instance of the ingredient component type.
    • getAnyMatchCondition

      public Integer getAnyMatchCondition()
      Specified by:
      getAnyMatchCondition in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Returns:
      The match condition that is used to match any instance based on a prototype.
    • getExactMatchCondition

      public Integer getExactMatchCondition()
      Specified by:
      getExactMatchCondition in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Returns:
      The match condition that is used to match instances exactly based on a prototype.
    • getExactMatchNoQuantityCondition

      public Integer getExactMatchNoQuantityCondition()
      Specified by:
      getExactMatchNoQuantityCondition in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Returns:
      The match condition that is used to match instances exactly based on a prototype, excluding the quantity.
    • withCondition

      public Integer withCondition(Integer matchCondition, Integer with)
      Description copied from interface: IIngredientMatcher
      Create a new match condition based on the given condition that includes the second condition.
      Specified by:
      withCondition in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      matchCondition - The match condition to start from.
      with - The match condition to include.
      Returns:
      A new match condition that is the combination of both.
    • withoutCondition

      public Integer withoutCondition(Integer matchCondition, Integer without)
      Description copied from interface: IIngredientMatcher
      Create a new match condition based on the given condition that excludes the second condition.
      Specified by:
      withoutCondition in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      matchCondition - The match condition to start from.
      without - A match condition to exclude.
      Returns:
      A new match condition that is the first one without the second one.
    • hasCondition

      public boolean hasCondition(Integer matchCondition, Integer searchCondition)
      Description copied from interface: IIngredientMatcher
      Check if the given match condition contains at least the given condition.
      Specified by:
      hasCondition in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      matchCondition - The match condition to start from.
      searchCondition - A match condition to search for.
      Returns:
      If the first condition contains at least the second condition.
    • matches

      public boolean matches(net.neoforged.neoforge.fluids.FluidStack a, net.neoforged.neoforge.fluids.FluidStack b, Integer matchCondition)
      Description copied from interface: IIngredientMatcher
      Check if the two given instances match based on the given match conditions.
      Specified by:
      matches in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      a - A first instance.
      b - A second instance.
      matchCondition - A condition under which the matching should be done.
      Returns:
      If the two given instances match under the given conditions.
    • getEmptyInstance

      public net.neoforged.neoforge.fluids.FluidStack getEmptyInstance()
      Specified by:
      getEmptyInstance in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Returns:
      The instance that acts as an 'empty' instance. For ItemStacks, this would be ItemStack.EMPTY.
    • hash

      public int hash(net.neoforged.neoforge.fluids.FluidStack instance)
      Description copied from interface: IIngredientMatcher
      Hash the given instance. This must be calculated quickly.
      Specified by:
      hash in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      instance - An instance.
      Returns:
      A hashcode for the given instance.
    • copy

      public net.neoforged.neoforge.fluids.FluidStack copy(net.neoforged.neoforge.fluids.FluidStack instance)
      Description copied from interface: IIngredientMatcher
      Create a deep copy of the given instance.
      Specified by:
      copy in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      instance - An instance.
      Returns:
      A copy of the given instance.
    • getQuantity

      public long getQuantity(net.neoforged.neoforge.fluids.FluidStack instance)
      Description copied from interface: IIngredientMatcher
      Get the quantity in the given instance.
      Specified by:
      getQuantity in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      instance - An instance.
      Returns:
      The instance quantity.
    • withQuantity

      public net.neoforged.neoforge.fluids.FluidStack withQuantity(net.neoforged.neoforge.fluids.FluidStack instance, long quantity)
      Description copied from interface: IIngredientMatcher
      Create a copy of the given instance with the given quantity.
      Specified by:
      withQuantity in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      instance - An instance.
      quantity - The new instance quantity.
      Returns:
      The copied instance with the new quantity.
    • getMaximumQuantity

      public long getMaximumQuantity()
      Specified by:
      getMaximumQuantity in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Returns:
      The maximum allowed quantity for instances.
    • conditionCompare

      public int conditionCompare(Integer a, Integer b)
      Description copied from interface: IIngredientMatcher
      Compare two conditions with each other.
      Specified by:
      conditionCompare in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      a - A first condition.
      b - A second condition.
      Returns:
      The comparison result.
    • localize

      public String localize(net.neoforged.neoforge.fluids.FluidStack instance)
      Description copied from interface: IIngredientMatcher
      Return the localized name of the given instance. This should not include the instance quantity. Should only be called client-side!
      Specified by:
      localize in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      instance - An instance.
      Returns:
      The localized name of the given instance.
    • getDisplayName

      public net.minecraft.network.chat.MutableComponent getDisplayName(net.neoforged.neoforge.fluids.FluidStack instance)
      Description copied from interface: IIngredientMatcher
      Return the display name of the given instance. This should not include the instance quantity.
      Specified by:
      getDisplayName in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      instance - An instance.
      Returns:
      The display name of the given instance.
    • toString

      public String toString(net.neoforged.neoforge.fluids.FluidStack instance)
      Description copied from interface: IIngredientMatcher
      Return a stringified version of the given instance. These strings are mainly used for development purposes.
      Specified by:
      toString in interface IIngredientMatcher<net.neoforged.neoforge.fluids.FluidStack,Integer>
      Parameters:
      instance - An instance.
      Returns:
      The string version of the given instance.
    • compare

      public int compare(net.neoforged.neoforge.fluids.FluidStack o1, net.neoforged.neoforge.fluids.FluidStack o2)
      Specified by:
      compare in interface Comparator<net.neoforged.neoforge.fluids.FluidStack>