类 EmptyEnergyStorage

java.lang.Object
net.neoforged.neoforge.energy.EmptyEnergyStorage
所有已实现的接口:
IEnergyStorage

public class EmptyEnergyStorage extends Object implements IEnergyStorage
Implementation of IEnergyStorage that cannot store, receive, or provide energy. Use the INSTANCE, don't instantiate. Example:

 ItemStack stack = ...;
 IEnergyStorage storage = stack.getCapability(ForgeCapabilities.ENERGY).orElse(EmptyEnergyStorage.INSTANCE);
 // Use storage without checking whether it's present.
 
  • 字段详细资料

  • 构造器详细资料

    • EmptyEnergyStorage

      protected EmptyEnergyStorage()
  • 方法详细资料

    • receiveEnergy

      public int receiveEnergy(int maxReceive, boolean simulate)
      从接口复制的说明: IEnergyStorage
      Adds energy to the storage. Returns the amount of energy that was accepted.
      指定者:
      receiveEnergy 在接口中 IEnergyStorage
      参数:
      maxReceive - The amount of energy being received.
      simulate - If true, the insertion will only be simulated, meaning IEnergyStorage.getEnergyStored() will not change.
      返回:
      Amount of energy that was (or would have been, if simulated) accepted by the storage.
    • extractEnergy

      public int extractEnergy(int maxExtract, boolean simulate)
      从接口复制的说明: IEnergyStorage
      Removes energy from the storage. Returns the amount of energy that was removed.
      指定者:
      extractEnergy 在接口中 IEnergyStorage
      参数:
      maxExtract - The amount of energy being extracted.
      simulate - If true, the extraction will only be simulated, meaning IEnergyStorage.getEnergyStored() will not change.
      返回:
      Amount of energy that was (or would have been, if simulated) extracted from the storage.
    • getEnergyStored

      public int getEnergyStored()
      从接口复制的说明: IEnergyStorage
      Returns the amount of energy currently stored.
      指定者:
      getEnergyStored 在接口中 IEnergyStorage
    • getMaxEnergyStored

      public int getMaxEnergyStored()
      从接口复制的说明: IEnergyStorage
      Returns the maximum amount of energy that can be stored.
      指定者:
      getMaxEnergyStored 在接口中 IEnergyStorage
    • canExtract

      public boolean canExtract()
      从接口复制的说明: IEnergyStorage
      Returns if this storage can have energy extracted. If this is false, then any calls to extractEnergy will return 0.
      指定者:
      canExtract 在接口中 IEnergyStorage
    • canReceive

      public boolean canReceive()
      从接口复制的说明: IEnergyStorage
      Used to determine if this storage can receive energy. If this is false, then any calls to receiveEnergy will return 0.
      指定者:
      canReceive 在接口中 IEnergyStorage