Class SpaceGameArea

java.lang.Object
com.csse3200.game.areas.GameArea
com.csse3200.game.areas.SpaceGameArea
All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable

public class SpaceGameArea extends GameArea
Forest area for the demo game with trees, a player, and some enemies.
  • Constructor Details

    • SpaceGameArea

      public SpaceGameArea(TerrainFactory terrainFactory)
      Constructor for initializing terrain area
      Parameters:
      terrainFactory - Terrain factory being used in the area
  • Method Details

    • create

      public void create()
      Main method for calling all the methods in the obstacle minigame into the SpaceMapScreen class
      Specified by:
      create in class GameArea
    • getShip

      public Entity getShip()
      Getter method for ship
      Returns:
      Ship Entity
    • getGoal

      public Entity getGoal()
      Getter method for goal
      Returns:
      Goal Entity
    • calculateDistance

      public static float calculateDistance(Entity entity1, Entity entity2)
      Method for calculating distance between two entities
      Parameters:
      entity1 - Entity 1
      entity2 - Entity 2
      Returns:
      Distance between Entity 1 and Entity 2
    • dispose

      public void dispose()
      Override method for disposing and unloading assets
      Specified by:
      dispose in interface com.badlogic.gdx.utils.Disposable
      Overrides:
      dispose in class GameArea