Class RealmsLongRunningMcoTaskScreen

All Implemented Interfaces:
Drawable, Element, ParentElement, TickableElement, Errable

@Environment(CLIENT)
public class RealmsLongRunningMcoTaskScreen
extends RealmsScreen
implements Errable
  • Field Details

    • LOGGER

      private static final Logger LOGGER
    • symbols

      public static final String[] symbols
    • parent

      private final Screen parent
    • title

      private volatile Text title
    • errorMessage

      @Nullable private volatile Text errorMessage
    • aborted

      private volatile boolean aborted
    • animTicks

      private int animTicks
    • task

      private final LongRunningTask task
    • buttonLength

      private final int buttonLength
      See Also:
      Constant Field Values
  • Constructor Details

    • RealmsLongRunningMcoTaskScreen

      public RealmsLongRunningMcoTaskScreen​(Screen parent, LongRunningTask task)
  • Method Details

    • tick

      public void tick()
      Specified by:
      tick in interface TickableElement
      Overrides:
      tick in class RealmsScreen
    • 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)
    • 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
    • cancelOrBackButtonClicked

      private void cancelOrBackButtonClicked()
    • render

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

      public void error​(Text text)
      Specified by:
      error in interface Errable
    • onError

      private void onError()
    • setTitle

      public void setTitle​(Text text)
    • aborted

      public boolean aborted()