Class RealmsCreateRealmScreen

All Implemented Interfaces:
Drawable, Element, ParentElement

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

    • WORLD_NAME_TEXT

      private static final Text WORLD_NAME_TEXT
      Mappings:
      Namespace Name Mixin selector
      official a Ldsy;a:Los;
      intermediary field_26487 Lnet/minecraft/class_4390;field_26487:Lnet/minecraft/class_2561;
      named WORLD_NAME_TEXT Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;WORLD_NAME_TEXT:Lnet/minecraft/text/Text;
    • WORLD_DESCRIPTION_TEXT

      private static final Text WORLD_DESCRIPTION_TEXT
      Mappings:
      Namespace Name Mixin selector
      official b Ldsy;b:Los;
      intermediary field_26488 Lnet/minecraft/class_4390;field_26488:Lnet/minecraft/class_2561;
      named WORLD_DESCRIPTION_TEXT Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;WORLD_DESCRIPTION_TEXT:Lnet/minecraft/text/Text;
    • server

      private final RealmsServer server
      Mappings:
      Namespace Name Mixin selector
      official c Ldsy;c:Ldrp;
      intermediary field_19829 Lnet/minecraft/class_4390;field_19829:Lnet/minecraft/class_4877;
      named server Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;server:Lnet/minecraft/client/realms/dto/RealmsServer;
    • parent

      private final RealmsMainScreen parent
      Mappings:
      Namespace Name Mixin selector
      official R Ldsy;R:Ldqu;
      intermediary field_19830 Lnet/minecraft/class_4390;field_19830:Lnet/minecraft/class_4325;
      named parent Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;parent:Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen;
    • nameBox

      private TextFieldWidget nameBox
      Mappings:
      Namespace Name Mixin selector
      official S Ldsy;S:Ldxh;
      intermediary field_19831 Lnet/minecraft/class_4390;field_19831:Lnet/minecraft/class_342;
      named nameBox Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;nameBox:Lnet/minecraft/client/gui/widget/TextFieldWidget;
    • descriptionBox

      private TextFieldWidget descriptionBox
      Mappings:
      Namespace Name Mixin selector
      official T Ldsy;T:Ldxh;
      intermediary field_19832 Lnet/minecraft/class_4390;field_19832:Lnet/minecraft/class_342;
      named descriptionBox Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;descriptionBox:Lnet/minecraft/client/gui/widget/TextFieldWidget;
    • createButton

      private ButtonWidget createButton
      Mappings:
      Namespace Name Mixin selector
      official U Ldsy;U:Ldwz;
      intermediary field_19833 Lnet/minecraft/class_4390;field_19833:Lnet/minecraft/class_4185;
      named createButton Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;createButton:Lnet/minecraft/client/gui/widget/ButtonWidget;
  • Constructor Details

    • RealmsCreateRealmScreen

      public RealmsCreateRealmScreen(RealmsServer server, RealmsMainScreen parent)
      Mappings:
      Namespace Name Mixin selector
      official <init> Ldsy;<init>(Ldrp;Ldqu;)V
      intermediary <init> Lnet/minecraft/class_4390;<init>(Lnet/minecraft/class_4877;Lnet/minecraft/class_4325;)V
      named <init> Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;<init>(Lnet/minecraft/client/realms/dto/RealmsServer;Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen;)V
  • Method Details

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

      public boolean charTyped(char chr, int modifiers)
      Callback for when a character input has been captured. The key code is identified by the constants in GLFW class.
      Parameters:
      chr - the captured character
      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:
      Keyboard.onChar(long, int, int), GLFW.GLFW_KEY_Q, GLFWKeyCallbackI.invoke(long, int, int, int, int)
      Mappings:
      Namespace Name Mixin selector
      official a Ldxx;a(CI)Z
      intermediary method_25400 Lnet/minecraft/class_364;method_25400(CI)Z
      named charTyped Lnet/minecraft/client/gui/Element;charTyped(CI)Z
    • 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:
      Keyboard.onKey(long, int, int, int, int), GLFW.GLFW_KEY_Q, GLFWKeyCallbackI.invoke(long, int, int, int, int)
      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
    • createWorld

      private void createWorld()
      Mappings:
      Namespace Name Mixin selector
      official h Ldsy;h()V
      intermediary method_21245 Lnet/minecraft/class_4390;method_21245()V
      named createWorld Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;createWorld()V
    • valid

      private boolean valid()
      Mappings:
      Namespace Name Mixin selector
      official w Ldsy;w()Z
      intermediary method_21247 Lnet/minecraft/class_4390;method_21247()Z
      named valid Lnet/minecraft/client/realms/gui/screen/RealmsCreateRealmScreen;valid()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 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