Package com.csse3200.game.areas
Class MapGameArea
java.lang.Object
com.csse3200.game.areas.GameArea
com.csse3200.game.areas.MapGameArea
- All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable
A Base Game Area for any level.
Details of map can be defined in a config file to be passed to the constructor
-
Field Summary
Fields inherited from class com.csse3200.game.areas.GameArea
areaEntities, companion, entityPlacementService, player, structurePlacementService, targetables, terrain
-
Constructor Summary
ConstructorsConstructorDescriptionMapGameArea
(String configPath, TerrainFactory terrainFactory, GdxGame game, int playerLives) -
Method Summary
Modifier and TypeMethodDescriptionvoid
create()
Create the game areavoid
dispose()
Dispose of all internal entities in the areastatic Entity
static float
protected void
Loads all assets listed in the config filestatic void
removeItemOnMap
(Entity entityToRemove) protected void
Unloads all assets from config fileMethods inherited from class com.csse3200.game.areas.GameArea
getAreaEntities, getCompanion, getTerrain, placeEntityAt, registerEntityPlacementService, registerStructurePlacementService, spawnEntity, spawnEntityAt, spawnEntityAtVector, spawnExtractor, spawnPlayer
-
Constructor Details
-
MapGameArea
-
-
Method Details
-
getSpeedMult
public static float getSpeedMult() -
create
public void create()Create the game area -
loadAssets
protected void loadAssets()Loads all assets listed in the config file -
removeItemOnMap
-
getPlayer
-
dispose
public void dispose()Description copied from class:GameArea
Dispose of all internal entities in the area -
unloadAssets
protected void unloadAssets()Unloads all assets from config file
-