Class IntermediateWallTool


public class IntermediateWallTool extends PlacementTool
A tool which allows the player to place an intermediate wall or upgrade basic walls.
  • Constructor Details

    • IntermediateWallTool

      public IntermediateWallTool(com.badlogic.gdx.utils.ObjectMap<String,Integer> cost)
      Creates a new intermediate wall tool with the given cost.
      Parameters:
      cost - - the cost of an intermediate wall.
  • Method Details

    • interact

      public boolean interact(Entity player, com.badlogic.gdx.math.GridPoint2 position)
      Attempts to place the wall at the given position. If there is an existing structure at the given position, and it is a wall, replaces it with an intermediate wall.
      Overrides:
      interact in class PlacementTool
      Parameters:
      player - - the player interacting with the tool.
      position - - the position to place the structure.
      Returns:
      whether the intermediate wall was successfully placed.
    • createStructure

      public PlaceableEntity createStructure(Entity player)
      Creates an intermediate wall to place.
      Specified by:
      createStructure in class PlacementTool
      Parameters:
      player - - the player placing the structure.
      Returns:
      the intermediate wall to place.