Package net.minecraft.inventory
Class CraftingResultInventory
java.lang.Object
net.minecraft.inventory.CraftingResultInventory
- All Implemented Interfaces:
Inventory
,RecipeUnlocker
,Clearable
Represents an inventory for the crafting output slot.
- Mappings:
Namespace Name official cjr
intermediary net/minecraft/class_1731
named net/minecraft/inventory/CraftingResultInventory
-
Field Summary
Modifier and TypeFieldDescriptionprivate @Nullable RecipeEntry<?>
private final DefaultedList<ItemStack>
Fields inherited from interface net.minecraft.inventory.Inventory
field_42619, MAX_COUNT_PER_STACK
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canPlayerUse
(PlayerEntity player) Returns whetherplayer
can use this inventory.void
clear()
getStack
(int slot) Returns the stack currently stored atslot
.boolean
isEmpty()
Returns whether the inventory consists entirely of empty item stacks.void
Marks the inventory as modified.removeStack
(int slot) Removes the stack currently stored atslot
.removeStack
(int slot, int amount) Removes a specific number of items fromslot
.void
setLastRecipe
(@Nullable RecipeEntry<?> recipe) void
Sets the stack stored atslot
tostack
.int
size()
Returns the size of the inventory.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minecraft.inventory.Inventory
canTransferTo, containsAny, containsAny, count, getMaxCountPerStack, isValid, onClose, onOpen
Methods inherited from interface net.minecraft.recipe.RecipeUnlocker
shouldCraftRecipe, unlockLastRecipe
-
Field Details
-
stacks
- Mappings:
Namespace Name Mixin selector official c
Lcjr;c:Liq;
intermediary field_7866
Lnet/minecraft/class_1731;field_7866:Lnet/minecraft/class_2371;
named stacks
Lnet/minecraft/inventory/CraftingResultInventory;stacks:Lnet/minecraft/util/collection/DefaultedList;
-
lastRecipe
- Mappings:
Namespace Name Mixin selector official d
Lcjr;d:Lcqe;
intermediary field_7865
Lnet/minecraft/class_1731;field_7865:Lnet/minecraft/class_8786;
named lastRecipe
Lnet/minecraft/inventory/CraftingResultInventory;lastRecipe:Lnet/minecraft/recipe/RecipeEntry;
-
-
Constructor Details
-
CraftingResultInventory
public CraftingResultInventory()
-
-
Method Details
-
size
public int size()Returns the size of the inventory.The inventory should support the slot ID from
0
tosize() - 1
. This should remain constant throughout the inventory's lifetime. -
isEmpty
public boolean isEmpty()Returns whether the inventory consists entirely of empty item stacks.- Specified by:
isEmpty
in interfaceInventory
- Returns:
- whether the inventory consists entirely of empty item stacks
- Mappings:
Namespace Name Mixin selector official ai_
Lbju;ai_()Z
intermediary method_5442
Lnet/minecraft/class_1263;method_5442()Z
named isEmpty
Lnet/minecraft/inventory/Inventory;isEmpty()Z
-
getStack
Returns the stack currently stored atslot
.If the slot is empty, or is outside the bounds of this inventory, this returns
ItemStack.EMPTY
.- Specified by:
getStack
in interfaceInventory
- Returns:
- the stack currently stored at
slot
- Mappings:
Namespace Name Mixin selector official a
Lbju;a(I)Lcmy;
intermediary method_5438
Lnet/minecraft/class_1263;method_5438(I)Lnet/minecraft/class_1799;
named getStack
Lnet/minecraft/inventory/Inventory;getStack(I)Lnet/minecraft/item/ItemStack;
-
removeStack
Removes a specific number of items fromslot
.- Specified by:
removeStack
in interfaceInventory
- Returns:
- the removed items as a stack
- Mappings:
Namespace Name Mixin selector official a
Lbju;a(II)Lcmy;
intermediary method_5434
Lnet/minecraft/class_1263;method_5434(II)Lnet/minecraft/class_1799;
named removeStack
Lnet/minecraft/inventory/Inventory;removeStack(II)Lnet/minecraft/item/ItemStack;
-
removeStack
Removes the stack currently stored atslot
.- Specified by:
removeStack
in interfaceInventory
- Returns:
- the stack previously stored at the indicated slot
- Mappings:
Namespace Name Mixin selector official b
Lbju;b(I)Lcmy;
intermediary method_5441
Lnet/minecraft/class_1263;method_5441(I)Lnet/minecraft/class_1799;
named removeStack
Lnet/minecraft/inventory/Inventory;removeStack(I)Lnet/minecraft/item/ItemStack;
-
setStack
Sets the stack stored atslot
tostack
. -
markDirty
public void markDirty()Marks the inventory as modified. Implementations should call this method every time the inventory is changed in any way. -
canPlayerUse
Returns whetherplayer
can use this inventory.This is called by
ScreenHandler.canUse(net.minecraft.screen.ScreenHandlerContext, net.minecraft.entity.player.PlayerEntity, net.minecraft.block.Block)
.- Specified by:
canPlayerUse
in interfaceInventory
- Returns:
- whether
player
can use this inventory - See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbju;a(Lcfi;)Z
intermediary method_5443
Lnet/minecraft/class_1263;method_5443(Lnet/minecraft/class_1657;)Z
named canPlayerUse
Lnet/minecraft/inventory/Inventory;canPlayerUse(Lnet/minecraft/entity/player/PlayerEntity;)Z
-
clear
public void clear() -
setLastRecipe
- Specified by:
setLastRecipe
in interfaceRecipeUnlocker
- Mappings:
Namespace Name Mixin selector official a
Lcjq;a(Lcqe;)V
intermediary method_7662
Lnet/minecraft/class_1732;method_7662(Lnet/minecraft/class_8786;)V
named setLastRecipe
Lnet/minecraft/recipe/RecipeUnlocker;setLastRecipe(Lnet/minecraft/recipe/RecipeEntry;)V
-
getLastRecipe
- Specified by:
getLastRecipe
in interfaceRecipeUnlocker
- Mappings:
Namespace Name Mixin selector official d
Lcjq;d()Lcqe;
intermediary method_7663
Lnet/minecraft/class_1732;method_7663()Lnet/minecraft/class_8786;
named getLastRecipe
Lnet/minecraft/recipe/RecipeUnlocker;getLastRecipe()Lnet/minecraft/recipe/RecipeEntry;
-