Class RealmsBackupScreen

All Implemented Interfaces:
Drawable, Element, ParentElement, TickableElement

@Environment(CLIENT)
public class RealmsBackupScreen
extends RealmsScreen
  • Field Details

    • LOGGER

      private static final Logger LOGGER
    • field_22686

      private static final Identifier field_22686
    • field_22687

      private static final Identifier field_22687
    • field_26471

      private static final Text field_26471
    • field_26472

      private static final Text field_26472
    • field_26473

      private static final Text field_26473
    • field_26474

      private static final Text field_26474
    • lastScrollPosition

      private static int lastScrollPosition
    • parent

      private final RealmsConfigureWorldScreen parent
    • backups

      private List<Backup> backups
    • toolTip

      @Nullable private Text toolTip
    • backupObjectSelectionList

      private RealmsBackupScreen.BackupObjectSelectionList backupObjectSelectionList
    • selectedBackup

      private int selectedBackup
    • slotId

      private final int slotId
    • downloadButton

      private ButtonWidget downloadButton
    • restoreButton

      private ButtonWidget restoreButton
    • changesButton

      private ButtonWidget changesButton
    • noBackups

      private Boolean noBackups
    • serverData

      private final RealmsServer serverData
    • titleLabel

      private RealmsLabel titleLabel
  • Constructor Details

  • Method Details

    • 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
    • generateChangeList

      private void generateChangeList()
    • addToChangeList

      private void addToChangeList​(Backup backup, String key)
    • updateButtonStates

      private void updateButtonStates()
    • shouldChangesButtonBeVisible

      private boolean shouldChangesButtonBeVisible()
    • shouldRestoreButtonBeVisible

      private boolean shouldRestoreButtonBeVisible()
    • 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)
    • restoreClicked

      private void restoreClicked​(int selectedBackup)
    • downloadClicked

      private void downloadClicked()
    • downloadWorldData

      private void downloadWorldData()
    • restore

      private void restore()
    • render

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

      protected void renderMousehoverTooltip​(MatrixStack matrixStack, @Nullable Text text, int int2, int int3)