Class RecipeBookScreen<T extends AbstractRecipeScreenHandler>

All Implemented Interfaces:
Drawable, Element, Navigable, ParentElement, ScreenHandlerProvider<T>, RecipeBookProvider
Direct Known Subclasses:
AbstractFurnaceScreen, CraftingScreen, InventoryScreen

@Environment(CLIENT) public abstract class RecipeBookScreen<T extends AbstractRecipeScreenHandler> extends HandledScreen<T> implements RecipeBookProvider
Mappings:
Namespace Name
named net/minecraft/client/gui/screen/ingame/RecipeBookScreen
intermediary net/minecraft/class_10260
official gns
  • Field Details

    • recipeBook

      private final RecipeBookWidget<?> recipeBook
      Mappings:
      Namespace Name Mixin selector
      named recipeBook Lnet/minecraft/client/gui/screen/ingame/RecipeBookScreen;recipeBook:Lnet/minecraft/client/gui/screen/recipebook/RecipeBookWidget;
      intermediary field_54474 Lnet/minecraft/class_10260;field_54474:Lnet/minecraft/class_507;
      official D Lgns;D:Lgrb;
    • narrow

      private boolean narrow
      Mappings:
      Namespace Name Mixin selector
      named narrow Lnet/minecraft/client/gui/screen/ingame/RecipeBookScreen;narrow:Z
      intermediary field_54475 Lnet/minecraft/class_10260;field_54475:Z
      official E Lgns;E:Z
  • Constructor Details

    • RecipeBookScreen

      public RecipeBookScreen(T handler, RecipeBookWidget<?> recipeBook, PlayerInventory inventory, Text title)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/client/gui/screen/ingame/RecipeBookScreen;<init>(Lnet/minecraft/screen/AbstractRecipeScreenHandler;Lnet/minecraft/client/gui/screen/recipebook/RecipeBookWidget;Lnet/minecraft/entity/player/PlayerInventory;Lnet/minecraft/text/Text;)V
      intermediary <init> Lnet/minecraft/class_10260;<init>(Lnet/minecraft/class_1729;Lnet/minecraft/class_507;Lnet/minecraft/class_1661;Lnet/minecraft/class_2561;)V
      official <init> Lgns;<init>(Ldev;Lgrb;Lczk;Lxx;)V
  • Method Details

    • init

      protected void init()
      Called when a screen should be initialized.

      This method is called when this screen is opened or resized.

      Overrides:
      init in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Mappings:
      Namespace Name Mixin selector
      named init Lnet/minecraft/client/gui/screen/Screen;init()V
      intermediary method_25426 Lnet/minecraft/class_437;method_25426()V
      official bg_ Lgmj;bg_()V
    • getRecipeBookButtonPos

      protected abstract ScreenPos getRecipeBookButtonPos()
      Mappings:
      Namespace Name Mixin selector
      named getRecipeBookButtonPos Lnet/minecraft/client/gui/screen/ingame/RecipeBookScreen;getRecipeBookButtonPos()Lnet/minecraft/client/gui/ScreenPos;
      intermediary method_64509 Lnet/minecraft/class_10260;method_64509()Lnet/minecraft/class_8029;
      official I Lgns;I()Lgjt;
    • addRecipeBook

      private void addRecipeBook()
      Mappings:
      Namespace Name Mixin selector
      named addRecipeBook Lnet/minecraft/client/gui/screen/ingame/RecipeBookScreen;addRecipeBook()V
      intermediary method_64512 Lnet/minecraft/class_10260;method_64512()V
      official M Lgns;M()V
    • onRecipeBookToggled

      protected void onRecipeBookToggled()
      Mappings:
      Namespace Name Mixin selector
      named onRecipeBookToggled Lnet/minecraft/client/gui/screen/ingame/RecipeBookScreen;onRecipeBookToggled()V
      intermediary method_64510 Lnet/minecraft/class_10260;method_64510()V
      official J Lgns;J()V
    • render

      public void render(DrawContext context, int mouseX, int mouseY, float deltaTicks)
      Specified by:
      render in interface Drawable
      Overrides:
      render in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Mappings:
      Namespace Name Mixin selector
      named render Lnet/minecraft/client/gui/Drawable;render(Lnet/minecraft/client/gui/DrawContext;IIF)V
      intermediary method_25394 Lnet/minecraft/class_4068;method_25394(Lnet/minecraft/class_332;IIF)V
      official a Lget;a(Lgdd;IIF)V
    • drawSlots

      protected void drawSlots(DrawContext context)
      Overrides:
      drawSlots in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Mappings:
      Namespace Name Mixin selector
      named drawSlots Lnet/minecraft/client/gui/screen/ingame/HandledScreen;drawSlots(Lnet/minecraft/client/gui/DrawContext;)V
      intermediary method_64508 Lnet/minecraft/class_465;method_64508(Lnet/minecraft/class_332;)V
      official e Lgnq;e(Lgdd;)V
    • shouldAddPaddingToGhostResult

      protected boolean shouldAddPaddingToGhostResult()
      Mappings:
      Namespace Name Mixin selector
      named shouldAddPaddingToGhostResult Lnet/minecraft/client/gui/screen/ingame/RecipeBookScreen;shouldAddPaddingToGhostResult()Z
      intermediary method_64511 Lnet/minecraft/class_10260;method_64511()Z
      official K Lgns;K()Z
    • charTyped

      public boolean charTyped(CharInput input)
      Callback for when a character input has been captured. The key code is identified by the constants in GLFW class.
      Specified by:
      charTyped in interface Element
      Specified by:
      charTyped in interface ParentElement
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named charTyped Lnet/minecraft/client/gui/Element;charTyped(Lnet/minecraft/client/input/CharInput;)Z
      intermediary method_25400 Lnet/minecraft/class_364;method_25400(Lnet/minecraft/class_11905;)Z
      official a Lggw;a(Lgte;)Z
    • keyPressed

      public boolean keyPressed(KeyInput input)
      Callback for when a key down event has been captured. The key code is identified by the constants in GLFW class.
      Specified by:
      keyPressed in interface Element
      Specified by:
      keyPressed in interface ParentElement
      Overrides:
      keyPressed in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named keyPressed Lnet/minecraft/client/gui/Element;keyPressed(Lnet/minecraft/client/input/KeyInput;)Z
      intermediary method_25404 Lnet/minecraft/class_364;method_25404(Lnet/minecraft/class_11908;)Z
      official a Lggw;a(Lgth;)Z
    • mouseClicked

      public boolean mouseClicked(Click click, boolean doubled)
      Callback for when a mouse button down event has been captured. The button number is identified by the constants in GLFW class.
      Specified by:
      mouseClicked in interface Element
      Specified by:
      mouseClicked in interface ParentElement
      Overrides:
      mouseClicked in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named mouseClicked Lnet/minecraft/client/gui/Element;mouseClicked(Lnet/minecraft/client/gui/Click;Z)Z
      intermediary method_25402 Lnet/minecraft/class_364;method_25402(Lnet/minecraft/class_11909;Z)Z
      official a Lggw;a(Lgti;Z)Z
    • mouseDragged

      public boolean mouseDragged(Click click, double offsetX, double offsetY)
      Callback for when a mouse button drag event has been captured. The button number is identified by the constants in GLFW class.
      Specified by:
      mouseDragged in interface Element
      Specified by:
      mouseDragged in interface ParentElement
      Overrides:
      mouseDragged in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named mouseDragged Lnet/minecraft/client/gui/Element;mouseDragged(Lnet/minecraft/client/gui/Click;DD)Z
      intermediary method_25403 Lnet/minecraft/class_364;method_25403(Lnet/minecraft/class_11909;DD)Z
      official a Lggw;a(Lgti;DD)Z
    • isPointWithinBounds

      protected boolean isPointWithinBounds(int x, int y, int width, int height, double pointX, double pointY)
      Overrides:
      isPointWithinBounds in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Mappings:
      Namespace Name Mixin selector
      named isPointWithinBounds Lnet/minecraft/client/gui/screen/ingame/HandledScreen;isPointWithinBounds(IIIIDD)Z
      intermediary method_2378 Lnet/minecraft/class_465;method_2378(IIIIDD)Z
      official a Lgnq;a(IIIIDD)Z
    • isClickOutsideBounds

      protected boolean isClickOutsideBounds(double mouseX, double mouseY, int left, int top)
      Overrides:
      isClickOutsideBounds in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Mappings:
      Namespace Name Mixin selector
      named isClickOutsideBounds Lnet/minecraft/client/gui/screen/ingame/HandledScreen;isClickOutsideBounds(DDII)Z
      intermediary method_2381 Lnet/minecraft/class_465;method_2381(DDII)Z
      official a Lgnq;a(DDII)Z
    • onMouseClick

      protected void onMouseClick(Slot slot, int slotId, int button, SlotActionType actionType)
      Overrides:
      onMouseClick in class HandledScreen<T extends AbstractRecipeScreenHandler>
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named onMouseClick Lnet/minecraft/client/gui/screen/ingame/HandledScreen;onMouseClick(Lnet/minecraft/screen/slot/Slot;IILnet/minecraft/screen/slot/SlotActionType;)V
      intermediary method_2383 Lnet/minecraft/class_465;method_2383(Lnet/minecraft/class_1735;IILnet/minecraft/class_1713;)V
      official a Lgnq;a(Ldfe;IILddr;)V
    • handledScreenTick

      public void handledScreenTick()
      Overrides:
      handledScreenTick in class HandledScreen<T extends AbstractRecipeScreenHandler>
      Mappings:
      Namespace Name Mixin selector
      named handledScreenTick Lnet/minecraft/client/gui/screen/ingame/HandledScreen;handledScreenTick()V
      intermediary method_37432 Lnet/minecraft/class_465;method_37432()V
      official p Lgnq;p()V
    • refreshRecipeBook

      public void refreshRecipeBook()
      Specified by:
      refreshRecipeBook in interface RecipeBookProvider
      Mappings:
      Namespace Name Mixin selector
      named refreshRecipeBook Lnet/minecraft/client/gui/screen/recipebook/RecipeBookProvider;refreshRecipeBook()V
      intermediary method_16891 Lnet/minecraft/class_518;method_16891()V
      official L Lgrg;L()V
    • onCraftFailed

      public void onCraftFailed(RecipeDisplay display)
      Specified by:
      onCraftFailed in interface RecipeBookProvider
      Mappings:
      Namespace Name Mixin selector
      named onCraftFailed Lnet/minecraft/client/gui/screen/recipebook/RecipeBookProvider;onCraftFailed(Lnet/minecraft/recipe/display/RecipeDisplay;)V
      intermediary method_64862 Lnet/minecraft/class_518;method_64862(Lnet/minecraft/class_10295;)V
      official a Lgrg;a(Ldno;)V