Class MerchantInventory

java.lang.Object
net.minecraft.village.MerchantInventory
All Implemented Interfaces:
Inventory, Clearable

public class MerchantInventory extends Object implements Inventory
Mappings:
Namespace Name
named net/minecraft/village/MerchantInventory
intermediary net/minecraft/class_1725
official cre
  • Field Details

    • merchant

      private final Merchant merchant
      Mappings:
      Namespace Name Mixin selector
      named merchant Lnet/minecraft/village/MerchantInventory;merchant:Lnet/minecraft/village/Merchant;
      intermediary field_7844 Lnet/minecraft/class_1725;field_7844:Lnet/minecraft/class_1915;
      official b Lcre;b:Ldax;
    • inventory

      private final DefaultedList<ItemStack> inventory
      Mappings:
      Namespace Name Mixin selector
      named inventory Lnet/minecraft/village/MerchantInventory;inventory:Lnet/minecraft/util/collection/DefaultedList;
      intermediary field_7845 Lnet/minecraft/class_1725;field_7845:Lnet/minecraft/class_2371;
      official c Lcre;c:Ljr;
    • tradeOffer

      @Nullable private @Nullable TradeOffer tradeOffer
      Mappings:
      Namespace Name Mixin selector
      named tradeOffer Lnet/minecraft/village/MerchantInventory;tradeOffer:Lnet/minecraft/village/TradeOffer;
      intermediary field_7843 Lnet/minecraft/class_1725;field_7843:Lnet/minecraft/class_1914;
      official d Lcre;d:Lday;
    • offerIndex

      private int offerIndex
      Mappings:
      Namespace Name Mixin selector
      named offerIndex Lnet/minecraft/village/MerchantInventory;offerIndex:I
      intermediary field_7842 Lnet/minecraft/class_1725;field_7842:I
      official e Lcre;e:I
    • merchantRewardedExperience

      private int merchantRewardedExperience
      Mappings:
      Namespace Name Mixin selector
      named merchantRewardedExperience Lnet/minecraft/village/MerchantInventory;merchantRewardedExperience:I
      intermediary field_18668 Lnet/minecraft/class_1725;field_18668:I
      official f Lcre;f:I
  • Constructor Details

    • MerchantInventory

      public MerchantInventory(Merchant merchant)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/village/MerchantInventory;<init>(Lnet/minecraft/village/Merchant;)V
      intermediary <init> Lnet/minecraft/class_1725;<init>(Lnet/minecraft/class_1915;)V
      official <init> Lcre;<init>(Ldax;)V
  • Method Details

    • size

      public int size()
      Returns the size of the inventory.

      The inventory should support the slot ID from 0 to size() - 1. This should remain constant throughout the inventory's lifetime.

      Specified by:
      size in interface Inventory
      Returns:
      the size of the inventory
      Mappings:
      Namespace Name Mixin selector
      named size Lnet/minecraft/inventory/Inventory;size()I
      intermediary method_5439 Lnet/minecraft/class_1263;method_5439()I
      official b Lbqp;b()I
    • isEmpty

      public boolean isEmpty()
      Returns whether the inventory consists entirely of empty item stacks.
      Specified by:
      isEmpty in interface Inventory
      Returns:
      whether the inventory consists entirely of empty item stacks
      Mappings:
      Namespace Name Mixin selector
      named isEmpty Lnet/minecraft/inventory/Inventory;isEmpty()Z
      intermediary method_5442 Lnet/minecraft/class_1263;method_5442()Z
      official c Lbqp;c()Z
    • getStack

      public ItemStack getStack(int slot)
      Returns the stack currently stored at slot.

      If the slot is empty, or is outside the bounds of this inventory, this returns ItemStack.EMPTY.

      Specified by:
      getStack in interface Inventory
      Returns:
      the stack currently stored at slot
      Mappings:
      Namespace Name Mixin selector
      named getStack Lnet/minecraft/inventory/Inventory;getStack(I)Lnet/minecraft/item/ItemStack;
      intermediary method_5438 Lnet/minecraft/class_1263;method_5438(I)Lnet/minecraft/class_1799;
      official a Lbqp;a(I)Lcur;
    • removeStack

      public ItemStack removeStack(int slot, int amount)
      Removes a specific number of items from slot.
      Specified by:
      removeStack in interface Inventory
      Returns:
      the removed items as a stack
      Mappings:
      Namespace Name Mixin selector
      named removeStack Lnet/minecraft/inventory/Inventory;removeStack(II)Lnet/minecraft/item/ItemStack;
      intermediary method_5434 Lnet/minecraft/class_1263;method_5434(II)Lnet/minecraft/class_1799;
      official a Lbqp;a(II)Lcur;
    • needsOfferUpdate

      private boolean needsOfferUpdate(int slot)
      Mappings:
      Namespace Name Mixin selector
      named needsOfferUpdate Lnet/minecraft/village/MerchantInventory;needsOfferUpdate(I)Z
      intermediary method_7644 Lnet/minecraft/class_1725;method_7644(I)Z
      official d Lcre;d(I)Z
    • removeStack

      public ItemStack removeStack(int slot)
      Removes the stack currently stored at slot.
      Specified by:
      removeStack in interface Inventory
      Returns:
      the stack previously stored at the indicated slot
      Mappings:
      Namespace Name Mixin selector
      named removeStack Lnet/minecraft/inventory/Inventory;removeStack(I)Lnet/minecraft/item/ItemStack;
      intermediary method_5441 Lnet/minecraft/class_1263;method_5441(I)Lnet/minecraft/class_1799;
      official b Lbqp;b(I)Lcur;
    • setStack

      public void setStack(int slot, ItemStack stack)
      Sets the stack stored at slot to stack.
      Specified by:
      setStack in interface Inventory
      Mappings:
      Namespace Name Mixin selector
      named setStack Lnet/minecraft/inventory/Inventory;setStack(ILnet/minecraft/item/ItemStack;)V
      intermediary method_5447 Lnet/minecraft/class_1263;method_5447(ILnet/minecraft/class_1799;)V
      official a Lbqp;a(ILcur;)V
    • canPlayerUse

      public boolean canPlayerUse(PlayerEntity player)
      Specified by:
      canPlayerUse in interface Inventory
      Returns:
      whether player can use this inventory
      See Also:
      API Note:
      Implementations should check the distance between the inventory holder and player. For convenience, this interface offers two methods used by block entities to implement this check.
      Mappings:
      Namespace Name Mixin selector
      named canPlayerUse Lnet/minecraft/inventory/Inventory;canPlayerUse(Lnet/minecraft/entity/player/PlayerEntity;)Z
      intermediary method_5443 Lnet/minecraft/class_1263;method_5443(Lnet/minecraft/class_1657;)Z
      official a Lbqp;a(Lcmz;)Z
    • markDirty

      public void markDirty()
      Marks the inventory as modified. Implementations should call this method every time the inventory is changed in any way.
      Specified by:
      markDirty in interface Inventory
      See Also:
      API Note:
      Implementations should mark the inventory for synchronization or saving in this method. Since this is called frequently, it is not recommended to synchronize or save the inventory directly in this method. If this inventory is implemented in a block entity, then it should always call super.markDirty(); to ensure the block entity gets saved.
      Mappings:
      Namespace Name Mixin selector
      named markDirty Lnet/minecraft/inventory/Inventory;markDirty()V
      intermediary method_5431 Lnet/minecraft/class_1263;method_5431()V
      official e Lbqp;e()V
    • updateOffers

      public void updateOffers()
      Mappings:
      Namespace Name Mixin selector
      named updateOffers Lnet/minecraft/village/MerchantInventory;updateOffers()V
      intermediary method_7645 Lnet/minecraft/class_1725;method_7645()V
      official f Lcre;f()V
    • getTradeOffer

      @Nullable public @Nullable TradeOffer getTradeOffer()
      Mappings:
      Namespace Name Mixin selector
      named getTradeOffer Lnet/minecraft/village/MerchantInventory;getTradeOffer()Lnet/minecraft/village/TradeOffer;
      intermediary method_7642 Lnet/minecraft/class_1725;method_7642()Lnet/minecraft/class_1914;
      official g Lcre;g()Lday;
    • setOfferIndex

      public void setOfferIndex(int index)
      Mappings:
      Namespace Name Mixin selector
      named setOfferIndex Lnet/minecraft/village/MerchantInventory;setOfferIndex(I)V
      intermediary method_7643 Lnet/minecraft/class_1725;method_7643(I)V
      official c Lcre;c(I)V
    • clear

      public void clear()
      Specified by:
      clear in interface Clearable
      Mappings:
      Namespace Name Mixin selector
      named clear Lnet/minecraft/util/Clearable;clear()V
      intermediary method_5448 Lnet/minecraft/class_3829;method_5448()V
      official a Lbqn;a()V
    • getMerchantRewardedExperience

      public int getMerchantRewardedExperience()
      Mappings:
      Namespace Name Mixin selector
      named getMerchantRewardedExperience Lnet/minecraft/village/MerchantInventory;getMerchantRewardedExperience()I
      intermediary method_19252 Lnet/minecraft/class_1725;method_19252()I
      official h Lcre;h()I