Class RealmsInviteScreen

All Implemented Interfaces:
Drawable, Element, ParentElement

@Environment(CLIENT) public class RealmsInviteScreen extends RealmsScreen
Mappings:
Namespace Name
official egw
intermediary net/minecraft/class_4395
named net/minecraft/client/realms/gui/screen/RealmsInviteScreen
  • Field Details

    • LOGGER

      private static final Logger LOGGER
      Mappings:
      Namespace Name Mixin selector
      official a Legw;a:Lorg/slf4j/Logger;
      intermediary field_19878 Lnet/minecraft/class_4395;field_19878:Lorg/slf4j/Logger;
      named LOGGER Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;LOGGER:Lorg/slf4j/Logger;
    • INVITE_PROFILE_NAME_TEXT

      private static final Text INVITE_PROFILE_NAME_TEXT
      Mappings:
      Namespace Name Mixin selector
      official b Legw;b:Lss;
      intermediary field_26489 Lnet/minecraft/class_4395;field_26489:Lnet/minecraft/class_2561;
      named INVITE_PROFILE_NAME_TEXT Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;INVITE_PROFILE_NAME_TEXT:Lnet/minecraft/text/Text;
    • PLAYER_ERROR_TEXT

      private static final Text PLAYER_ERROR_TEXT
      Mappings:
      Namespace Name Mixin selector
      official c Legw;c:Lss;
      intermediary field_26490 Lnet/minecraft/class_4395;field_26490:Lnet/minecraft/class_2561;
      named PLAYER_ERROR_TEXT Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;PLAYER_ERROR_TEXT:Lnet/minecraft/text/Text;
    • nameWidget

      private TextFieldWidget nameWidget
      Mappings:
      Namespace Name Mixin selector
      official I Legw;I:Lelh;
      intermediary field_22696 Lnet/minecraft/class_4395;field_22696:Lnet/minecraft/class_342;
      named nameWidget Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;nameWidget:Lnet/minecraft/client/gui/widget/TextFieldWidget;
    • serverData

      private final RealmsServer serverData
      Mappings:
      Namespace Name Mixin selector
      official J Legw;J:Lefi;
      intermediary field_19880 Lnet/minecraft/class_4395;field_19880:Lnet/minecraft/class_4877;
      named serverData Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;serverData:Lnet/minecraft/client/realms/dto/RealmsServer;
    • configureScreen

      private final RealmsConfigureWorldScreen configureScreen
      Mappings:
      Namespace Name Mixin selector
      official K Legw;K:Legr;
      intermediary field_19881 Lnet/minecraft/class_4395;field_19881:Lnet/minecraft/class_4388;
      named configureScreen Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;configureScreen:Lnet/minecraft/client/realms/gui/screen/RealmsConfigureWorldScreen;
    • parent

      private final Screen parent
      Mappings:
      Namespace Name Mixin selector
      official L Legw;L:Lepb;
      intermediary field_19882 Lnet/minecraft/class_4395;field_19882:Lnet/minecraft/class_437;
      named parent Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;parent:Lnet/minecraft/client/gui/screen/Screen;
    • errorMessage

      @Nullable private @Nullable Text errorMessage
      Mappings:
      Namespace Name Mixin selector
      official M Legw;M:Lss;
      intermediary field_19887 Lnet/minecraft/class_4395;field_19887:Lnet/minecraft/class_2561;
      named errorMessage Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;errorMessage:Lnet/minecraft/text/Text;
  • Constructor Details

    • RealmsInviteScreen

      public RealmsInviteScreen(RealmsConfigureWorldScreen configureScreen, Screen parent, RealmsServer serverData)
      Mappings:
      Namespace Name Mixin selector
      official <init> Legw;<init>(Legr;Lepb;Lefi;)V
      intermediary <init> Lnet/minecraft/class_4395;<init>(Lnet/minecraft/class_4388;Lnet/minecraft/class_437;Lnet/minecraft/class_4877;)V
      named <init> Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;<init>(Lnet/minecraft/client/realms/gui/screen/RealmsConfigureWorldScreen;Lnet/minecraft/client/gui/screen/Screen;Lnet/minecraft/client/realms/dto/RealmsServer;)V
  • Method Details

    • tick

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

      public 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 Lepb;b()V
      intermediary method_25426 Lnet/minecraft/class_437;method_25426()V
      named init Lnet/minecraft/client/gui/screen/Screen;init()V
    • onInvite

      private void onInvite()
      Mappings:
      Namespace Name Mixin selector
      official w Legw;w()V
      intermediary method_21284 Lnet/minecraft/class_4395;method_21284()V
      named onInvite Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;onInvite()V
    • showError

      private void showError(Text errorMessage)
      Mappings:
      Namespace Name Mixin selector
      official a Legw;a(Lss;)V
      intermediary method_21286 Lnet/minecraft/class_4395;method_21286(Lnet/minecraft/class_2561;)V
      named showError Lnet/minecraft/client/realms/gui/screen/RealmsInviteScreen;showError(Lnet/minecraft/text/Text;)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 Lemg;a(III)Z
      intermediary method_25404 Lnet/minecraft/class_364;method_25404(III)Z
      named keyPressed Lnet/minecraft/client/gui/Element;keyPressed(III)Z
    • 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 Lely;a(Leed;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