Class Tank

java.lang.Object
net.neoforged.neoforge.fluids.capability.templates.FluidTank
org.cyclops.cyclopscore.fluid.Tank
All Implemented Interfaces:
net.neoforged.neoforge.fluids.capability.IFluidHandler, net.neoforged.neoforge.fluids.IFluidTank, IFluidHandlerCapacity, IFluidHandlerMutable
Direct Known Subclasses:
SingleUseTank

public class Tank extends net.neoforged.neoforge.fluids.capability.templates.FluidTank implements IFluidHandlerCapacity, IFluidHandlerMutable
A simple fluid tank. Based on the Buildcraft Tank
  • Nested Class Summary

    Nested classes/interfaces inherited from interface net.neoforged.neoforge.fluids.capability.IFluidHandler

    net.neoforged.neoforge.fluids.capability.IFluidHandler.FluidAction
  • Field Summary

    Fields inherited from class net.neoforged.neoforge.fluids.capability.templates.FluidTank

    capacity, fluid, validator
  • Constructor Summary

    Constructors
    Constructor
    Description
    Tank(int capacity)
    Make a new fluid tank.
  • Method Summary

    Modifier and Type
    Method
    Description
    net.minecraft.world.level.material.Fluid
    Get the fluid that currently occupies this tank, will return null if there is no fluid.
    int
    getTankCapacity(int tank)
     
    boolean
    Check if this tank is empty.
    boolean
    Check if this tank is full; the capacity is reached.
    net.neoforged.neoforge.fluids.capability.templates.FluidTank
    readFromNBT(net.minecraft.nbt.CompoundTag nbt)
     
    net.neoforged.neoforge.fluids.capability.templates.FluidTank
    readFromNBT(net.minecraft.nbt.CompoundTag data, String tag)
     
    void
    readTankFromNBT(net.minecraft.nbt.CompoundTag nbt)
    Read the tank contents from NBT.
    protected boolean
     
    void
    setFluidInTank(int tank, net.neoforged.neoforge.fluids.FluidStack fluidStack)
     
    void
    setTankCapacity(int tank, int capacity)
     
    void
    writeTankToNBT(net.minecraft.nbt.CompoundTag nbt)
    Write the tank contents to NBT.
    net.minecraft.nbt.CompoundTag
    writeToNBT(net.minecraft.nbt.CompoundTag nbt)
     
    net.minecraft.nbt.CompoundTag
    writeToNBT(net.minecraft.nbt.CompoundTag nbt, String tag)
     

    Methods inherited from class net.neoforged.neoforge.fluids.capability.templates.FluidTank

    drain, drain, fill, getCapacity, getFluid, getFluidAmount, getFluidInTank, getSpace, getTanks, isFluidValid, isFluidValid, onContentsChanged, setCapacity, setFluid, setValidator

    Methods inherited from class java.lang.Object

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

    Methods inherited from interface net.neoforged.neoforge.fluids.capability.IFluidHandler

    drain, drain, fill, getFluidInTank, getTanks, isFluidValid
  • Constructor Details

    • Tank

      public Tank(int capacity)
      Make a new fluid tank.
      Parameters:
      capacity - The capacity (mB) for the tank.
  • Method Details

    • isEmpty

      public boolean isEmpty()
      Check if this tank is empty.
      Overrides:
      isEmpty in class net.neoforged.neoforge.fluids.capability.templates.FluidTank
      Returns:
      If the tank is empty; no fluid is inside of it.
    • isFull

      public boolean isFull()
      Check if this tank is full; the capacity is reached.
      Returns:
      If this tank is full.
    • getFluidType

      public net.minecraft.world.level.material.Fluid getFluidType()
      Get the fluid that currently occupies this tank, will return null if there is no fluid.
      Returns:
      The inner fluid.
    • replaceInnerFluid

      protected boolean replaceInnerFluid()
    • writeToNBT

      public net.minecraft.nbt.CompoundTag writeToNBT(net.minecraft.nbt.CompoundTag nbt)
      Overrides:
      writeToNBT in class net.neoforged.neoforge.fluids.capability.templates.FluidTank
    • writeToNBT

      public net.minecraft.nbt.CompoundTag writeToNBT(net.minecraft.nbt.CompoundTag nbt, String tag)
    • readFromNBT

      public net.neoforged.neoforge.fluids.capability.templates.FluidTank readFromNBT(net.minecraft.nbt.CompoundTag nbt)
      Overrides:
      readFromNBT in class net.neoforged.neoforge.fluids.capability.templates.FluidTank
    • readFromNBT

      public net.neoforged.neoforge.fluids.capability.templates.FluidTank readFromNBT(net.minecraft.nbt.CompoundTag data, String tag)
    • writeTankToNBT

      public void writeTankToNBT(net.minecraft.nbt.CompoundTag nbt)
      Write the tank contents to NBT.
      Parameters:
      nbt - The NBT tag to write to.
    • readTankFromNBT

      public void readTankFromNBT(net.minecraft.nbt.CompoundTag nbt)
      Read the tank contents from NBT.
      Parameters:
      nbt - The NBT tag to write from.
    • setFluidInTank

      public void setFluidInTank(int tank, net.neoforged.neoforge.fluids.FluidStack fluidStack)
      Specified by:
      setFluidInTank in interface IFluidHandlerMutable
    • setTankCapacity

      public void setTankCapacity(int tank, int capacity)
      Specified by:
      setTankCapacity in interface IFluidHandlerCapacity
    • getTankCapacity

      public int getTankCapacity(int tank)
      Specified by:
      getTankCapacity in interface net.neoforged.neoforge.fluids.capability.IFluidHandler
      Specified by:
      getTankCapacity in interface IFluidHandlerCapacity
      Overrides:
      getTankCapacity in class net.neoforged.neoforge.fluids.capability.templates.FluidTank