Class AbstractCommandBlockScreen

All Implemented Interfaces:
Drawable, Element, ParentElement, TickableElement
Direct Known Subclasses:
CommandBlockScreen, MinecartCommandBlockScreen

@Environment(CLIENT)
public abstract class AbstractCommandBlockScreen
extends Screen
  • Field Details

    • field_26556

      private static final Text field_26556
    • field_26557

      private static final Text field_26557
    • field_26558

      private static final Text field_26558
    • consoleCommandTextField

      protected TextFieldWidget consoleCommandTextField
    • previousOutputTextField

      protected TextFieldWidget previousOutputTextField
    • doneButton

      protected ButtonWidget doneButton
    • cancelButton

      protected ButtonWidget cancelButton
    • toggleTrackingOutputButton

      protected ButtonWidget toggleTrackingOutputButton
    • trackingOutput

      protected boolean trackingOutput
    • commandSuggestor

      private CommandSuggestor commandSuggestor
  • Constructor Details

    • AbstractCommandBlockScreen

      public AbstractCommandBlockScreen()
  • Method Details

    • tick

      public void tick()
      Specified by:
      tick in interface TickableElement
      Overrides:
      tick in class Screen
    • getCommandExecutor

      abstract CommandBlockExecutor getCommandExecutor()
    • getTrackOutputButtonHeight

      abstract int getTrackOutputButtonHeight()
    • 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
    • resize

      public void resize​(MinecraftClient client, int width, int height)
      Overrides:
      resize in class Screen
    • updateTrackedOutput

      protected void updateTrackedOutput()
    • commitAndClose

      protected void commitAndClose()
    • removed

      public void removed()
      Overrides:
      removed in class Screen
    • syncSettingsToServer

      protected abstract void syncSettingsToServer​(CommandBlockExecutor commandExecutor)
    • onClose

      public void onClose()
      Overrides:
      onClose in class Screen
    • onCommandChanged

      private void onCommandChanged​(String text)
    • 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 {@linkplain https://www.glfw.org/docs/3.3/group__mods.html 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)
    • 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:
      Mouse.onMouseScroll(long, double, double)
    • 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:
      Mouse.onMouseButton(long, int, int, int), GLFW.GLFW_MOUSE_BUTTON_1
    • render

      public void render​(MatrixStack matrices, int mouseX, int mouseY, float delta)
      Specified by:
      render in interface Drawable
      Overrides:
      render in class Screen