Class ChatScreen

All Implemented Interfaces:
Drawable, Element, ParentElement
Direct Known Subclasses:
SleepingChatScreen

@Environment(CLIENT) public class ChatScreen extends Screen
Mappings:
Namespace Name
official dzm
intermediary net/minecraft/class_408
named net/minecraft/client/gui/screen/ChatScreen
  • Field Details

    • field_32237

      public static final int field_32237
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Ldzm;a:I
      intermediary field_32237 Lnet/minecraft/class_408;field_32237:I
      named field_32237 Lnet/minecraft/client/gui/screen/ChatScreen;field_32237:I
    • field_33953

      private static final Text field_33953
      Mappings:
      Namespace Name Mixin selector
      official c Ldzm;c:Los;
      intermediary field_33953 Lnet/minecraft/class_408;field_33953:Lnet/minecraft/class_2561;
      named field_33953 Lnet/minecraft/client/gui/screen/ChatScreen;field_33953:Lnet/minecraft/text/Text;
    • chatLastMessage

      private String chatLastMessage
      Mappings:
      Namespace Name Mixin selector
      official n Ldzm;n:Ljava/lang/String;
      intermediary field_2389 Lnet/minecraft/class_408;field_2389:Ljava/lang/String;
      named chatLastMessage Lnet/minecraft/client/gui/screen/ChatScreen;chatLastMessage:Ljava/lang/String;
    • messageHistorySize

      private int messageHistorySize
      Mappings:
      Namespace Name Mixin selector
      official o Ldzm;o:I
      intermediary field_2387 Lnet/minecraft/class_408;field_2387:I
      named messageHistorySize Lnet/minecraft/client/gui/screen/ChatScreen;messageHistorySize:I
    • chatField

      protected TextFieldWidget chatField
      Mappings:
      Namespace Name Mixin selector
      official b Ldzm;b:Ldxh;
      intermediary field_2382 Lnet/minecraft/class_408;field_2382:Lnet/minecraft/class_342;
      named chatField Lnet/minecraft/client/gui/screen/ChatScreen;chatField:Lnet/minecraft/client/gui/widget/TextFieldWidget;
    • originalChatText

      private final String originalChatText
      Mappings:
      Namespace Name Mixin selector
      official p Ldzm;p:Ljava/lang/String;
      intermediary field_18973 Lnet/minecraft/class_408;field_18973:Ljava/lang/String;
      named originalChatText Lnet/minecraft/client/gui/screen/ChatScreen;originalChatText:Ljava/lang/String;
    • commandSuggestor

      CommandSuggestor commandSuggestor
      Mappings:
      Namespace Name Mixin selector
      official q Ldzm;q:Ldxc;
      intermediary field_21616 Lnet/minecraft/class_408;field_21616:Lnet/minecraft/class_4717;
      named commandSuggestor Lnet/minecraft/client/gui/screen/ChatScreen;commandSuggestor:Lnet/minecraft/client/gui/screen/CommandSuggestor;
  • Constructor Details

    • ChatScreen

      public ChatScreen(String originalChatText)
      Mappings:
      Namespace Name Mixin selector
      official <init> Ldzm;<init>(Ljava/lang/String;)V
      intermediary <init> Lnet/minecraft/class_408;<init>(Ljava/lang/String;)V
      named <init> Lnet/minecraft/client/gui/screen/ChatScreen;<init>(Ljava/lang/String;)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 Screen
      Mappings:
      Namespace Name Mixin selector
      official b Leap;b()V
      intermediary method_25426 Lnet/minecraft/class_437;method_25426()V
      named init Lnet/minecraft/client/gui/screen/Screen;init()V
    • resize

      public void resize(MinecraftClient client, int width, int height)
      Overrides:
      resize in class Screen
      Mappings:
      Namespace Name Mixin selector
      official a Leap;a(Ldvo;II)V
      intermediary method_25410 Lnet/minecraft/class_437;method_25410(Lnet/minecraft/class_310;II)V
      named resize Lnet/minecraft/client/gui/screen/Screen;resize(Lnet/minecraft/client/MinecraftClient;II)V
    • removed

      public void removed()
      Overrides:
      removed in class Screen
      Mappings:
      Namespace Name Mixin selector
      official e Leap;e()V
      intermediary method_25432 Lnet/minecraft/class_437;method_25432()V
      named removed Lnet/minecraft/client/gui/screen/Screen;removed()V
    • tick

      public void tick()
      Overrides:
      tick in class Screen
      Mappings:
      Namespace Name Mixin selector
      official d Leap;d()V
      intermediary method_25393 Lnet/minecraft/class_437;method_25393()V
      named tick Lnet/minecraft/client/gui/screen/Screen;tick()V
    • onChatFieldUpdate

      private void onChatFieldUpdate(String chatText)
      Mappings:
      Namespace Name Mixin selector
      official b Ldzm;b(Ljava/lang/String;)V
      intermediary method_23945 Lnet/minecraft/class_408;method_23945(Ljava/lang/String;)V
      named onChatFieldUpdate Lnet/minecraft/client/gui/screen/ChatScreen;onChatFieldUpdate(Ljava/lang/String;)V
    • keyPressed

      public boolean keyPressed(int keyCode, int scanCode, int modifiers)
      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 Screen
      Parameters:
      keyCode - the named key code of the event as described in the GLFW class
      scanCode - the unique/platform-specific scan code of the keyboard input
      modifiers - a GLFW bitfield describing the modifier keys that are held down (see GLFW Modifier key flags)
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Ldxx;a(III)Z
      intermediary method_25404 Lnet/minecraft/class_364;method_25404(III)Z
      named keyPressed Lnet/minecraft/client/gui/Element;keyPressed(III)Z
    • mouseScrolled

      public boolean mouseScrolled(double mouseX, double mouseY, double amount)
      Callback for when a mouse button scroll event has been captured.
      Parameters:
      mouseX - the X coordinate of the mouse
      mouseY - the Y coordinate of the mouse
      amount - value is > 1 if scrolled down, < 1 if scrolled up
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Ldxx;a(DDD)Z
      intermediary method_25401 Lnet/minecraft/class_364;method_25401(DDD)Z
      named mouseScrolled Lnet/minecraft/client/gui/Element;mouseScrolled(DDD)Z
    • mouseClicked

      public boolean mouseClicked(double mouseX, double mouseY, int button)
      Callback for when a mouse button down event has been captured. The button number is identified by the constants in GLFW class.
      Parameters:
      mouseX - the X coordinate of the mouse
      mouseY - the Y coordinate of the mouse
      button - the mouse button number
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Ldxx;a(DDI)Z
      intermediary method_25402 Lnet/minecraft/class_364;method_25402(DDI)Z
      named mouseClicked Lnet/minecraft/client/gui/Element;mouseClicked(DDI)Z
    • insertText

      protected void insertText(String text, boolean override)
      Overrides:
      insertText in class Screen
      Mappings:
      Namespace Name Mixin selector
      official a Leap;a(Ljava/lang/String;Z)V
      intermediary method_25415 Lnet/minecraft/class_437;method_25415(Ljava/lang/String;Z)V
      named insertText Lnet/minecraft/client/gui/screen/Screen;insertText(Ljava/lang/String;Z)V
    • setChatFromHistory

      public void setChatFromHistory(int int2)
      Mappings:
      Namespace Name Mixin selector
      official a Ldzm;a(I)V
      intermediary method_2114 Lnet/minecraft/class_408;method_2114(I)V
      named setChatFromHistory Lnet/minecraft/client/gui/screen/ChatScreen;setChatFromHistory(I)V
    • render

      public void render(MatrixStack matrices, int mouseX, int mouseY, float delta)
      Specified by:
      render in interface Drawable
      Overrides:
      render in class Screen
      Mappings:
      Namespace Name Mixin selector
      official a Ldxu;a(Ldqk;IIF)V
      intermediary method_25394 Lnet/minecraft/class_4068;method_25394(Lnet/minecraft/class_4587;IIF)V
      named render Lnet/minecraft/client/gui/Drawable;render(Lnet/minecraft/client/util/math/MatrixStack;IIF)V
    • isPauseScreen

      public boolean isPauseScreen()
      Overrides:
      isPauseScreen in class Screen
      Mappings:
      Namespace Name Mixin selector
      official ai_ Leap;ai_()Z
      intermediary method_25421 Lnet/minecraft/class_437;method_25421()Z
      named isPauseScreen Lnet/minecraft/client/gui/screen/Screen;isPauseScreen()Z
    • setText

      private void setText(String text)
      Mappings:
      Namespace Name Mixin selector
      official c Ldzm;c(Ljava/lang/String;)V
      intermediary method_2108 Lnet/minecraft/class_408;method_2108(Ljava/lang/String;)V
      named setText Lnet/minecraft/client/gui/screen/ChatScreen;setText(Ljava/lang/String;)V
    • addScreenNarrations

      protected void addScreenNarrations(NarrationMessageBuilder builder)
      Overrides:
      addScreenNarrations in class Screen
      Mappings:
      Namespace Name Mixin selector
      official a Leap;a(Ldzc;)V
      intermediary method_37062 Lnet/minecraft/class_437;method_37062(Lnet/minecraft/class_6382;)V
      named addScreenNarrations Lnet/minecraft/client/gui/screen/Screen;addScreenNarrations(Lnet/minecraft/client/gui/screen/narration/NarrationMessageBuilder;)V