Class SingleStackStorage
- All Implemented Interfaces:
SingleSlotStorage<ItemVariant>,Storage<ItemVariant>,StorageView<ItemVariant>,TransactionContext.CloseCallback,TransactionContext.OuterCloseCallback
ItemStack.
Implementors should at least override getStack() and setStack(net.minecraft.item.ItemStack),
and probably SnapshotParticipant.onFinalCommit() as well for markDirty() and similar calls.
canInsert(net.fabricmc.fabric.api.transfer.v1.item.ItemVariant) and canExtract(net.fabricmc.fabric.api.transfer.v1.item.ItemVariant) can be used for more precise control over which items may be inserted or extracted.
If one of these two functions is overridden to always return false, implementors may also wish to override
Storage.supportsInsertion() and/or Storage.supportsExtraction().
getCapacity(ItemVariant) can be overridden to change the maximum capacity depending on the item variant.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected booleancanExtract(ItemVariant itemVariant)Deprecated.Returntrueif the passed non-blank item variant can be extracted,falseotherwise.protected booleancanInsert(ItemVariant itemVariant)Deprecated.Returntrueif the passed non-blank item variant can be inserted,falseotherwise.protected net.minecraft.item.ItemStackDeprecated.Return a new nonnull object containing the current state of this participant.longextract(ItemVariant variant, long maxAmount, TransactionContext transaction)Deprecated.Try to extract up to some amount of a resource from this storage.longDeprecated.longDeprecated.protected intgetCapacity(ItemVariant itemVariant)Deprecated.Return the maximum capacity of this storage for the passed item variant.Deprecated.protected abstract net.minecraft.item.ItemStackgetStack()Deprecated.Return the stack of this storage.longinsert(ItemVariant insertedVariant, long maxAmount, TransactionContext transaction)Deprecated.Try to insert up to some amount of a resource into this storage.booleanDeprecated.protected voidreadSnapshot(net.minecraft.item.ItemStack snapshot)Deprecated.Roll back to a state previously created bySnapshotParticipant.createSnapshot().protected abstract voidsetStack(net.minecraft.item.ItemStack stack)Deprecated.Set the stack of this storage.Methods inherited from class net.fabricmc.fabric.api.transfer.v1.transaction.base.SnapshotParticipant
afterOuterClose, onClose, onFinalCommit, releaseSnapshot, updateSnapshotsMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.fabricmc.fabric.api.transfer.v1.storage.base.SingleSlotStorage
iteratorMethods inherited from interface net.fabricmc.fabric.api.transfer.v1.storage.Storage
exactView, getVersion, iterable, simulateExtract, simulateInsert, supportsExtraction, supportsInsertion
-
Constructor Details
-
SingleStackStorage
public SingleStackStorage()Deprecated.
-
-
Method Details
-
getStack
protected abstract net.minecraft.item.ItemStack getStack()Deprecated.Return the stack of this storage. It will be modified directly sometimes to avoid needless copies. However, any mutation of the stack will directly be followed by a call tosetStack(net.minecraft.item.ItemStack). This means that either returning the backing stack directly or a copy is safe.- Returns:
- The current stack.
-
setStack
protected abstract void setStack(net.minecraft.item.ItemStack stack)Deprecated.Set the stack of this storage. -
canInsert
Deprecated.Returntrueif the passed non-blank item variant can be inserted,falseotherwise. -
canExtract
Deprecated.Returntrueif the passed non-blank item variant can be extracted,falseotherwise. -
getCapacity
Deprecated.Return the maximum capacity of this storage for the passed item variant. If the passed item variant is blank, an estimate should be returned.If the capacity should be limited by the max count of the item, this function must take it into account. For example, a storage with a maximum count of 4, or less for items that have a smaller max count, should override this to return
Math.min(itemVariant.getItem().getMaxCount(), 4);.- Returns:
- The maximum capacity of this storage for the passed item variant.
-
isResourceBlank
public final boolean isResourceBlank()Deprecated.- Specified by:
isResourceBlankin interfaceStorageView<ItemVariant>- Returns:
trueif theStorageView.getResource()contained in this storage view is blank, orfalseotherwise.
-
getResource
Deprecated.- Specified by:
getResourcein interfaceStorageView<ItemVariant>- Returns:
- The resource stored in this view. May not be blank if
StorageView.isResourceBlank()isfalse.
-
getAmount
public final long getAmount()Deprecated.- Specified by:
getAmountin interfaceStorageView<ItemVariant>- Returns:
- The amount of
StorageView.getResource()stored in this view.
-
getCapacity
public final long getCapacity()Deprecated.- Specified by:
getCapacityin interfaceStorageView<ItemVariant>- Returns:
- The total amount of
StorageView.getResource()that could be stored in this view, or an estimate of the number of resources that could be stored if this view has a blank resource.
-
insert
public final long insert(ItemVariant insertedVariant, long maxAmount, TransactionContext transaction)Deprecated.Description copied from interface:StorageTry to insert up to some amount of a resource into this storage.- Specified by:
insertin interfaceStorage<ItemVariant>- Parameters:
insertedVariant- The resource to insert. May not be blank.maxAmount- The maximum amount of resource to insert. May not be negative.transaction- The transaction this operation is part of.- Returns:
- A nonnegative integer not greater than maxAmount: the amount that was inserted.
-
extract
Deprecated.Description copied from interface:StorageTry to extract up to some amount of a resource from this storage.- Specified by:
extractin interfaceStorage<ItemVariant>- Specified by:
extractin interfaceStorageView<ItemVariant>- Parameters:
variant- The resource to extract. May not be blank.maxAmount- The maximum amount of resource to extract. May not be negative.transaction- The transaction this operation is part of.- Returns:
- A nonnegative integer not greater than maxAmount: the amount that was extracted.
-
createSnapshot
protected final net.minecraft.item.ItemStack createSnapshot()Deprecated.Description copied from class:SnapshotParticipantReturn a new nonnull object containing the current state of this participant.nullmay not be returned, or an exception will be thrown!- Specified by:
createSnapshotin classSnapshotParticipant<net.minecraft.item.ItemStack>
-
readSnapshot
protected final void readSnapshot(net.minecraft.item.ItemStack snapshot)Deprecated.Description copied from class:SnapshotParticipantRoll back to a state previously created bySnapshotParticipant.createSnapshot().- Specified by:
readSnapshotin classSnapshotParticipant<net.minecraft.item.ItemStack>
-