Class FilteredFluidExtractable
java.lang.Object
alexiil.mc.lib.attributes.fluid.impl.FilteredFluidExtractable
- All Implemented Interfaces:
FluidExtractable
public final class FilteredFluidExtractable extends java.lang.Object implements FluidExtractable
-
Field Summary
Fields Modifier and Type Field Description FluidFilterfilter -
Constructor Summary
Constructors Constructor Description FilteredFluidExtractable(FluidExtractable real, FluidFilter filter) -
Method Summary
Modifier and Type Method Description FluidVolumeattemptExtraction(FluidFilter filter, FluidAmount maxAmount, Simulation simulation)FluidExtractablefiltered(FluidFilter filter)Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface alexiil.mc.lib.attributes.fluid.FluidExtractable
attemptAnyExtraction, attemptAnyExtraction, attemptExtraction, couldExtractAnything, extract, extract, extract, extract, extract, extract, getPureExtractable
-
Field Details
-
Constructor Details
-
Method Details
-
attemptExtraction
public FluidVolume attemptExtraction(FluidFilter filter, FluidAmount maxAmount, Simulation simulation)Description copied from interface:FluidExtractable- Specified by:
attemptExtractionin interfaceFluidExtractablemaxAmount- The maximum amount of fluid that can be extracted. Negative numbers throw an exception.simulation- IfSimulation.SIMULATEthen this should return the same result that the exact same call withSimulation.ACTIONwould do, except that the filter can be made more specific between calls if the previously simulated extracted fluid is used as a filter.For example the following code snippet should never throw an exception:
FluidExtractablefrom = // Some extractable
FluidVolumeattempted = from.attemptAnyExtraction(Integer.MAX_VALUE,Simulation.SIMULATE);
if (attempted.isEmpty()) return;
FluidVolumeextracted = from.extract(attempted.getFluidKey(), attempted.getAmount());
assert !extracted.isEmpty;
assert attempted.getAmount()== extracted.getAmount();
assert attempted.getFluidKet()== extracted.getFluidKet();
assert attempted.equals(extracted);- Returns:
- A new, independent
FluidVolumethat was extracted.
-
filtered
- Specified by:
filteredin interfaceFluidExtractable- Returns:
- A new
FluidExtractablethat has an additional filter applied to limit the fluid extracted from it.
-