Class ReplacementTool

Direct Known Subclasses:
ExtractorTool

public abstract class ReplacementTool extends PlacementTool
An abstract tool which allows the player to place a structure. This class must be inherited and the createEntity method implemented to function.
  • Field Summary

    Fields inherited from class com.csse3200.game.components.structures.tools.PlacementTool

    snapX, snapY

    Fields inherited from class com.csse3200.game.components.structures.tools.Tool

    cost
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    ReplacementTool(com.badlogic.gdx.utils.ObjectMap<String,Integer> cost)
    Creates a new tool which allows the placing of structures with the given cost.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates the structure to be placed.
    boolean
    Checks whether the player has sufficient resources to place the structure.
    boolean
    interact(Entity player, com.badlogic.gdx.math.GridPoint2 position)
    Attempts to place a structure at the specified position.
    boolean
    isPositionValid(com.badlogic.gdx.math.GridPoint2 position, PlaceableEntity structure)
    Checks whether the structure can be placed at the given position.

    Methods inherited from class com.csse3200.game.components.structures.tools.PlacementTool

    getSnapPosition

    Methods inherited from class com.csse3200.game.components.structures.tools.Tool

    getCost

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ReplacementTool

      protected ReplacementTool(com.badlogic.gdx.utils.ObjectMap<String,Integer> cost)
      Creates a new tool which allows the placing of structures with the given cost.
      Parameters:
      cost - - the cost of the entity being placed.
  • Method Details

    • interact

      public boolean interact(Entity player, com.badlogic.gdx.math.GridPoint2 position)
      Attempts to place a structure at the specified position. If the position is already occupied or the player has insufficient resources, does nothing.
      Overrides:
      interact in class PlacementTool
      Parameters:
      player - - the player interacting with the tool.
      position - - the position to place the structure.
      Returns:
      whether the structure was successfully placed.
    • createStructure

      public abstract PlaceableEntity createStructure(Entity player)
      Creates the structure to be placed. This must be implemented in subclasses to function.
      Specified by:
      createStructure in class PlacementTool
      Parameters:
      player - - the player placing the structure.
      Returns:
      the structure to be placed.
    • isPositionValid

      public boolean isPositionValid(com.badlogic.gdx.math.GridPoint2 position, PlaceableEntity structure)
      Checks whether the structure can be placed at the given position. By default, checks if the grid position is empty.
      Overrides:
      isPositionValid in class PlacementTool
      Parameters:
      position - - the position the structure is trying to be placed at.
      Returns:
      whether the structure can be placed at the given position.
    • hasEnoughResources

      public boolean hasEnoughResources()
      Checks whether the player has sufficient resources to place the structure.
      Overrides:
      hasEnoughResources in class PlacementTool
      Returns:
      whether the player has sufficient resources to place the structure.