Class ShipActions

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.ships.ShipActions

public class ShipActions extends Component
Action component for interacting with the player. Ship events should be initialised in create() and when triggered should call methods within this class.
  • Constructor Details

    • ShipActions

      public ShipActions(int health, int fuel, int acceleration)
      Initialize the health, fuel and acceleration of the ship
      Parameters:
      health -
      fuel -
      acceleration -
  • Method Details

    • create

      public void create()
      Initialize animation and physics of the ship
      Overrides:
      create in class Component
    • update

      public void update()
      Called each render call. Updates the speed of the ship
      Overrides:
      update in class Component
    • setFuel

      public void setFuel(int fuel)
      Changes the max available fuel for the ship
      Parameters:
      fuel -
    • setHealth

      public void setHealth(int health)
      Changes the max health of the ship
      Parameters:
      health -
    • getMaxFuel

      public int getMaxFuel()
      get the amount of fuel
      Returns:
      maxFuel
    • getMaxHealth

      public int getMaxHealth()
      get the amount of health
      Returns:
      maxHealth
    • updatedHealth

      public void updatedHealth()
      Inform ShipStatsDisplay about new health value
    • updatedFuel

      public void updatedFuel()
      Inform ShipStatsDisplay about new fuel value