Class WinScreen

All Implemented Interfaces:
ContainerEventHandler, GuiEventListener, Renderable, TabOrderedElement

public class WinScreen extends Screen
  • Field Details

    • LOGGER

      private static final org.slf4j.Logger LOGGER
    • VIGNETTE_LOCATION

      private static final ResourceLocation VIGNETTE_LOCATION
    • SECTION_HEADING

      private static final Component SECTION_HEADING
    • NAME_PREFIX

      private static final String NAME_PREFIX
      See Also:
    • OBFUSCATE_TOKEN

      private static final String OBFUSCATE_TOKEN
    • SPEEDUP_FACTOR

      private static final float SPEEDUP_FACTOR
      See Also:
    • SPEEDUP_FACTOR_FAST

      private static final float SPEEDUP_FACTOR_FAST
      See Also:
    • END_POEM_LOCATION

      private static final ResourceLocation END_POEM_LOCATION
    • CREDITS_LOCATION

      private static final ResourceLocation CREDITS_LOCATION
    • POSTCREDITS_LOCATION

      private static final ResourceLocation POSTCREDITS_LOCATION
    • poem

      private final boolean poem
    • onFinished

      private final Runnable onFinished
    • scroll

      private float scroll
    • lines

      private List<FormattedCharSequence> lines
    • centeredLines

      private it.unimi.dsi.fastutil.ints.IntSet centeredLines
    • totalScrollLength

      private int totalScrollLength
    • speedupActive

      private boolean speedupActive
    • speedupModifiers

      private final it.unimi.dsi.fastutil.ints.IntSet speedupModifiers
    • scrollSpeed

      private float scrollSpeed
    • unmodifiedScrollSpeed

      private final float unmodifiedScrollSpeed
    • direction

      private int direction
    • logoRenderer

      private final LogoRenderer logoRenderer
  • Constructor Details

    • WinScreen

      public WinScreen(boolean pPoem, Runnable pOnFinished)
  • Method Details

    • calculateScrollSpeed

      private float calculateScrollSpeed()
    • tick

      public void tick()
      Overrides:
      tick in class Screen
    • keyPressed

      public boolean keyPressed(int pKeyCode, int pScanCode, int pModifiers)
      Called when a keyboard key is pressed within the GUI element.

      Specified by:
      keyPressed in interface ContainerEventHandler
      Specified by:
      keyPressed in interface GuiEventListener
      Overrides:
      keyPressed in class Screen
      Parameters:
      pKeyCode - the key code of the pressed key.
      pScanCode - the scan code of the pressed key.
      pModifiers - the keyboard modifiers.
      Returns:
      true if the event is consumed, false otherwise.
    • keyReleased

      public boolean keyReleased(int pKeyCode, int pScanCode, int pModifiers)
      Called when a keyboard key is released within the GUI element.

      Parameters:
      pKeyCode - the key code of the released key.
      pScanCode - the scan code of the released key.
      pModifiers - the keyboard modifiers.
      Returns:
      true if the event is consumed, false otherwise.
    • onClose

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

      private void respawn()
    • init

      protected void init()
      Overrides:
      init in class Screen
    • wrapCreditsIO

      private void wrapCreditsIO(ResourceLocation pLocation, WinScreen.CreditsReader pReader)
    • addPoemFile

      private void addPoemFile(Reader p_232818_) throws IOException
      Throws:
      IOException
    • addCreditsFile

      private void addCreditsFile(Reader p_232820_)
    • addEmptyLine

      private void addEmptyLine()
    • addPoemLines

      private void addPoemLines(String pText)
    • addCreditsLine

      private void addCreditsLine(Component pCreditsLine, boolean pCentered)
    • render

      public void render(GuiGraphics pGuiGraphics, int pMouseX, int pMouseY, float pPartialTick)
      Renders the graphical user interface (GUI) element.
      Specified by:
      render in interface Renderable
      Overrides:
      render in class Screen
      Parameters:
      pGuiGraphics - the GuiGraphics object used for rendering.
      pMouseX - the x-coordinate of the mouse cursor.
      pMouseY - the y-coordinate of the mouse cursor.
      pPartialTick - the partial tick time.
    • renderVignette

      private void renderVignette(GuiGraphics pGuiGraphics)
    • renderBackground

      public void renderBackground(GuiGraphics pGuiGraphics, int pMouseX, int pMouseY, float pPartialTick)
      Overrides:
      renderBackground in class Screen
    • renderMenuBackground

      protected void renderMenuBackground(GuiGraphics pGuiGraphics, int pX, int pY, int pWidth, int pHeight)
      Overrides:
      renderMenuBackground in class Screen
    • isPauseScreen

      public boolean isPauseScreen()
      Overrides:
      isPauseScreen in class Screen
    • removed

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

      public Music getBackgroundMusic()
      Overrides:
      getBackgroundMusic in class Screen