Class ResourceDisplay

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

public class ResourceDisplay extends UIComponent
A ui component for displaying resources in the bottom right corner of the screen.
  • Constructor Details

    • ResourceDisplay

      public ResourceDisplay(int scale, int steps, int maxResource)
      Constructor for the ResourceDisplay. Initializes the table and maps used for storing resource bar data.
  • Method Details

    • create

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

      public void update()
      Description copied from class: Component
      Called once per frame of the game, and should be used for most component logic. Not called if component is disabled.
      Overrides:
      update in class Component
    • withResource

      public ResourceDisplay withResource(Resource resource)
      Adds a resource type to the display.
      Parameters:
      resource - The type of resource to add.
      Returns:
      Returns the updated ResourceDisplay object.
    • draw

      public void draw(com.badlogic.gdx.graphics.g2d.SpriteBatch batch)
      Draws the resource bars on the screen. The drawing is managed by the stage.
      Specified by:
      draw in class RenderComponent
      Parameters:
      batch - The SpriteBatch used for drawing.