Package com.csse3200.game.areas
Class SpaceGameArea
java.lang.Object
com.csse3200.game.areas.GameArea
com.csse3200.game.areas.SpaceGameArea
- All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable
Forest area for the demo game with trees, a player, and some enemies.
-
Field Summary
Fields inherited from class com.csse3200.game.areas.GameArea
areaEntities, companion, entityPlacementService, player, structurePlacementService, terrain
-
Constructor Summary
ConstructorsConstructorDescriptionSpaceGameArea
(TerrainFactory terrainFactory) Constructor for initializing terrain area -
Method Summary
Modifier and TypeMethodDescriptionstatic float
calculateDistance
(Entity entity1, Entity entity2) Method for calculating distance between two entitiesvoid
create()
Main method for calling all the methods in the obstacle minigame into the SpaceMapScreen classvoid
dispose()
Override method for disposing and unloading assetsgetGoal()
Getter method for goalgetShip()
Getter method for shipMethods inherited from class com.csse3200.game.areas.GameArea
getAreaEntities, getCompanion, getPlayer, getTerrain, placeEntityAt, registerEntityPlacementService, registerStructurePlacementService, spawnEntity, spawnEntityAt, spawnEntityAtVector, spawnExtractor, spawnPlayer
-
Constructor Details
-
SpaceGameArea
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 -
getShip
Getter method for ship- Returns:
- Ship Entity
-
getGoal
Getter method for goal- Returns:
- Goal Entity
-
calculateDistance
Method for calculating distance between two entities- Parameters:
entity1
- Entity 1entity2
- Entity 2- Returns:
- Distance between Entity 1 and Entity 2
-
dispose
public void dispose()Override method for disposing and unloading assets
-