Class CompanionStatsDisplay

All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable, Renderable, Comparable<Renderable>

public class CompanionStatsDisplay extends UIComponent
A UI component for displaying Companion stats, e.g., health.
  • Field Details

    • player

      public Entity player
      The player entity associated with this CompanionStatsDisplay.
    • companion

      public Entity companion
    • playerLowHealthLabel

      public com.badlogic.gdx.scenes.scene2d.ui.Label playerLowHealthLabel
      The UI playerLowHealthLabel for displaying the companion's health.
    • companionHealthLabel

      public com.badlogic.gdx.scenes.scene2d.ui.Label companionHealthLabel
    • companionUIHeaderLabel

      public com.badlogic.gdx.scenes.scene2d.ui.Label companionUIHeaderLabel
    • companionModeLabel

      public com.badlogic.gdx.scenes.scene2d.ui.Label companionModeLabel
  • Constructor Details

    • CompanionStatsDisplay

      public CompanionStatsDisplay()
      Default constructor for CompanionStatsDisplay.
  • Method Details

    • create

      public void create()
      Creates reusable UI styles and adds actors to the stage.
      Overrides:
      create in class UIComponent
    • createInventoryButton

      public void createInventoryButton(com.badlogic.gdx.scenes.scene2d.ui.Table statsTable)
    • toggleInvincibility

      public void toggleInvincibility()
      Toggle invincibility for the companion.
    • resetImage

      public void resetImage()
      Reset the companion's image.
    • toggleInfiniteHealth

      public void toggleInfiniteHealth()
      Toggle infinite health for the companion.
    • addAlert

      public void addAlert(int health)
      Add an alert when the player's health is low.
      Parameters:
      health - The current health value.
    • draw

      public void draw(com.badlogic.gdx.graphics.g2d.SpriteBatch batch)
      Description copied from class: RenderComponent
      Draw the renderable. Should be called only by the renderer, not manually.
      Specified by:
      draw in class RenderComponent
      Parameters:
      batch - Batch to render to.
    • updatePlayerHealthUI

      public void updatePlayerHealthUI(int health)
      Update the player's health UI.
      Parameters:
      health - The current health value of the player.
    • updateCompanionHealthUI

      public void updateCompanionHealthUI(int health)
      Updates the companion's health UI.
      Parameters:
      health - The updated health value to display.
    • updateCompanionModeUI

      public void updateCompanionModeUI(String newMode)
      updating the companion UI to include the mode
      Parameters:
      newMode - - the mode sent by the CompanionActions trigger to be put on screen
    • dispose

      public void dispose()
      remove all labels form the screen when disposing
      Specified by:
      dispose in interface com.badlogic.gdx.utils.Disposable
      Overrides:
      dispose in class RenderComponent
    • setDuration

      public void setDuration(long duration)
    • getDuration

      public long getDuration()