Package net.minecraft.village
Class MerchantInventory
java.lang.Object
net.minecraft.village.MerchantInventory
- Mappings:
Namespace Name official cfr
intermediary net/minecraft/class_1725
named net/minecraft/village/MerchantInventory
-
Field Summary
Modifier and TypeFieldDescriptionprivate final DefaultedList<ItemStack>
private final Merchant
private int
private int
private @Nullable TradeOffer
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()
int
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.private boolean
needsOfferUpdate
(int slot) removeStack
(int slot) Removes the stack currently stored atslot
.removeStack
(int slot, int amount) Removes a specific number of items fromslot
.void
setOfferIndex
(int index) void
Sets the stack stored atslot
tostack
.int
size()
Returns the size of the inventory.void
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
-
Field Details
-
merchant
- Mappings:
Namespace Name Mixin selector official c
Lcfr;c:Lcos;
intermediary field_7844
Lnet/minecraft/class_1725;field_7844:Lnet/minecraft/class_1915;
named merchant
Lnet/minecraft/village/MerchantInventory;merchant:Lnet/minecraft/village/Merchant;
-
inventory
- Mappings:
Namespace Name Mixin selector official d
Lcfr;d:Lhn;
intermediary field_7845
Lnet/minecraft/class_1725;field_7845:Lnet/minecraft/class_2371;
named inventory
Lnet/minecraft/village/MerchantInventory;inventory:Lnet/minecraft/util/collection/DefaultedList;
-
tradeOffer
- Mappings:
Namespace Name Mixin selector official e
Lcfr;e:Lcot;
intermediary field_7843
Lnet/minecraft/class_1725;field_7843:Lnet/minecraft/class_1914;
named tradeOffer
Lnet/minecraft/village/MerchantInventory;tradeOffer:Lnet/minecraft/village/TradeOffer;
-
offerIndex
private int offerIndex- Mappings:
Namespace Name Mixin selector official f
Lcfr;f:I
intermediary field_7842
Lnet/minecraft/class_1725;field_7842:I
named offerIndex
Lnet/minecraft/village/MerchantInventory;offerIndex:I
-
merchantRewardedExperience
private int merchantRewardedExperience- Mappings:
Namespace Name Mixin selector official g
Lcfr;g:I
intermediary field_18668
Lnet/minecraft/class_1725;field_18668:I
named merchantRewardedExperience
Lnet/minecraft/village/MerchantInventory;merchantRewardedExperience:I
-
-
Constructor Details
-
MerchantInventory
- Mappings:
Namespace Name Mixin selector official <init>
Lcfr;<init>(Lcos;)V
intermediary <init>
Lnet/minecraft/class_1725;<init>(Lnet/minecraft/class_1915;)V
named <init>
Lnet/minecraft/village/MerchantInventory;<init>(Lnet/minecraft/village/Merchant;)V
-
-
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 af_
Lbgr;af_()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
Lbgr;a(I)Lcjf;
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
Lbgr;a(II)Lcjf;
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;
-
needsOfferUpdate
private boolean needsOfferUpdate(int slot) - Mappings:
Namespace Name Mixin selector official d
Lcfr;d(I)Z
intermediary method_7644
Lnet/minecraft/class_1725;method_7644(I)Z
named needsOfferUpdate
Lnet/minecraft/village/MerchantInventory;needsOfferUpdate(I)Z
-
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
Lbgr;b(I)Lcjf;
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
. -
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
Lbgr;a(Lcbu;)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
-
markDirty
public void markDirty()Marks the inventory as modified. Implementations should call this method every time the inventory is changed in any way. -
updateOffers
public void updateOffers()- Mappings:
Namespace Name Mixin selector official f
Lcfr;f()V
intermediary method_7645
Lnet/minecraft/class_1725;method_7645()V
named updateOffers
Lnet/minecraft/village/MerchantInventory;updateOffers()V
-
getTradeOffer
- Mappings:
Namespace Name Mixin selector official g
Lcfr;g()Lcot;
intermediary method_7642
Lnet/minecraft/class_1725;method_7642()Lnet/minecraft/class_1914;
named getTradeOffer
Lnet/minecraft/village/MerchantInventory;getTradeOffer()Lnet/minecraft/village/TradeOffer;
-
setOfferIndex
public void setOfferIndex(int index) - Mappings:
Namespace Name Mixin selector official c
Lcfr;c(I)V
intermediary method_7643
Lnet/minecraft/class_1725;method_7643(I)V
named setOfferIndex
Lnet/minecraft/village/MerchantInventory;setOfferIndex(I)V
-
clear
public void clear() -
getMerchantRewardedExperience
public int getMerchantRewardedExperience()- Mappings:
Namespace Name Mixin selector official h
Lcfr;h()I
intermediary method_19252
Lnet/minecraft/class_1725;method_19252()I
named getMerchantRewardedExperience
Lnet/minecraft/village/MerchantInventory;getMerchantRewardedExperience()I
-