Class StructureToolPicker

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

public class StructureToolPicker extends UIComponent
This component can be placed onto the player and allows them to select and interact with structure tools.
  • Constructor Details

    • StructureToolPicker

      public StructureToolPicker()
      Creates a new structure tool picker
  • Method Details

    • create

      public void create()
      Adds actors to the stage on creation
      Overrides:
      create in class UIComponent
    • unlockTool

      public void unlockTool(String toolName)
      Unlocks a tool, adding it to the structure picker menu
      Parameters:
      toolName - - the simple name of the tool, e.g. 'Dirt Wall'
    • isToolUnlocked

      public boolean isToolUnlocked(String toolName)
      Returns the unlocked status as a boolean
      Parameters:
      toolName - - the simple name of the tool, e.g. 'Dirt Wall'
      Returns:
      boolean - true if unlocked, false if locked.
    • setSelectedTool

      public void setSelectedTool(Tool tool)
      Sets the given tool to be the selected tool.
      Parameters:
      tool - - the tool to be selected.
    • getSelectedTool

      public Tool getSelectedTool()
      Returns the currently selected tool.
      Returns:
      the selected tool.
    • 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.
    • show

      public void show()
      Shows the tool picker.
    • hide

      public void hide()
      Hides the tool picker.
    • isVisible

      public boolean isVisible()
      Returns whether the tool picker is visible.
      Returns:
      whether the tool picker is visible.
    • interact

      public void interact(com.badlogic.gdx.math.GridPoint2 location)
      Interacts with the currently selected tool.
      Parameters:
      location - - the location being interacted with.