Class DifferenceFluidIngredient
java.lang.Object
net.neoforged.neoforge.fluids.crafting.FluidIngredient
net.neoforged.neoforge.fluids.crafting.DifferenceFluidIngredient
- All Implemented Interfaces:
Predicate<FluidStack>
Fluid ingredient that matches the difference of two provided fluid ingredients, i.e.
anything contained in
base
that is not in subtracted
.- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprivate final FluidIngredient
static final com.mojang.serialization.MapCodec
<DifferenceFluidIngredient> private final FluidIngredient
Fields inherited from class net.neoforged.neoforge.fluids.crafting.FluidIngredient
CODEC_NON_EMPTY, LIST_CODEC, LIST_CODEC_NON_EMPTY, MAP_CODEC_NONEMPTY, STREAM_CODEC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbase()
boolean
Generates a stream of all fluid stacks this ingredient matches against.getType()
Returns The type of this fluid ingredient..int
hashCode()
boolean
isSimple()
Returns whether this fluid ingredient always requires direct stack testing.static FluidIngredient
of
(FluidIngredient base, FluidIngredient subtracted) Gets the difference of the two fluid ingredientsboolean
test
(FluidStack stack) Checks if a given fluid stack matches this ingredient.Methods inherited from class net.neoforged.neoforge.fluids.crafting.FluidIngredient
empty, getStacks, hasNoFluids, isEmpty, of, of, of, single, single, single, tag
-
Field Details
-
CODEC
-
base
-
subtracted
-
-
Constructor Details
-
DifferenceFluidIngredient
-
-
Method Details
-
generateStacks
Description copied from class:FluidIngredient
Generates a stream of all fluid stacks this ingredient matches against.For compatibility reasons, implementations should follow the same guidelines as for custom item ingredients, i.e.:
- These stacks are generally used for display purposes, and need not be exhaustive or perfectly accurate.
- An exception is ingredients that are simple,
for which it is important that the returned stacks correspond exactly to all the accepted
Fluid
s. - At least one stack should always be returned, otherwise the ingredient may be considered accidentally empty.
- The ingredient should try to return at least one stack with each accepted
Fluid
. This allows mods that inspect the ingredient to figure out which stacks it might accept.
- Specified by:
generateStacks
in classFluidIngredient
- Returns:
- a stream of all fluid stacks this ingredient accepts.
Note: No guarantees are made as to the amount of the fluid, as FluidIngredients are generally not meant to match by amount and these stacks are mostly used for display.
- See Also:
-
test
Description copied from class:FluidIngredient
Checks if a given fluid stack matches this ingredient. The stack must not be modified in any way.- Specified by:
test
in interfacePredicate<FluidStack>
- Specified by:
test
in classFluidIngredient
- Parameters:
stack
- the stack to test- Returns:
true
if the stack matches,false
otherwise
-
isSimple
public boolean isSimple()Description copied from class:FluidIngredient
Returns whether this fluid ingredient always requires direct stack testing.- Specified by:
isSimple
in classFluidIngredient
- Returns:
true
if this ingredient ignores NBT data when matching stacks,false
otherwise- See Also:
-
getType
Description copied from class:FluidIngredient
Returns The type of this fluid ingredient..The type must be registered to
NeoForgeRegistries.FLUID_INGREDIENT_TYPES
.- Specified by:
getType
in classFluidIngredient
- Returns:
- The type of this fluid ingredient.
-
of
Gets the difference of the two fluid ingredients- Parameters:
base
- Fluid ingredient that must be matchedsubtracted
- Fluid ingredient that must not be matched- Returns:
- A fluid ingredient that matches anything contained in
base
that is not insubtracted
-
base
-
subtracted
-
hashCode
public int hashCode()- Specified by:
hashCode
in classFluidIngredient
-
equals
- Specified by:
equals
in classFluidIngredient
-