Package net.minecraftforge.energy
Class EmptyEnergyStorage
java.lang.Object
net.minecraftforge.energy.EmptyEnergyStorage
- All Implemented Interfaces:
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.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns if this storage can have energy extracted.boolean
Used to determine if this storage can receive energy.int
extractEnergy
(int maxExtract, boolean simulate) Removes energy from the storage.int
Returns the amount of energy currently stored.int
Returns the maximum amount of energy that can be stored.int
receiveEnergy
(int maxReceive, boolean simulate) Adds energy to the storage.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
EmptyEnergyStorage
protected EmptyEnergyStorage()
-
-
Method Details
-
receiveEnergy
public int receiveEnergy(int maxReceive, boolean simulate) Description copied from interface:IEnergyStorage
Adds energy to the storage. Returns quantity of energy that was accepted.- Specified by:
receiveEnergy
in interfaceIEnergyStorage
- Parameters:
maxReceive
- Maximum amount of energy to be inserted.simulate
- If TRUE, the insertion will only be simulated.- Returns:
- Amount of energy that was (or would have been, if simulated) accepted by the storage.
-
extractEnergy
public int extractEnergy(int maxExtract, boolean simulate) Description copied from interface:IEnergyStorage
Removes energy from the storage. Returns quantity of energy that was removed.- Specified by:
extractEnergy
in interfaceIEnergyStorage
- Parameters:
maxExtract
- Maximum amount of energy to be extracted.simulate
- If TRUE, the extraction will only be simulated.- Returns:
- Amount of energy that was (or would have been, if simulated) extracted from the storage.
-
getEnergyStored
public int getEnergyStored()Description copied from interface:IEnergyStorage
Returns the amount of energy currently stored.- Specified by:
getEnergyStored
in interfaceIEnergyStorage
-
getMaxEnergyStored
public int getMaxEnergyStored()Description copied from interface:IEnergyStorage
Returns the maximum amount of energy that can be stored.- Specified by:
getMaxEnergyStored
in interfaceIEnergyStorage
-
canExtract
public boolean canExtract()Description copied from interface:IEnergyStorage
Returns if this storage can have energy extracted. If this is false, then any calls to extractEnergy will return 0.- Specified by:
canExtract
in interfaceIEnergyStorage
-
canReceive
public boolean canReceive()Description copied from interface:IEnergyStorage
Used to determine if this storage can receive energy. If this is false, then any calls to receiveEnergy will return 0.- Specified by:
canReceive
in interfaceIEnergyStorage
-