Class StructureFactory
java.lang.Object
com.csse3200.game.entities.factories.StructureFactory
Factory to create structure entities - such as extractors or ships.
Each obstacle entity type should have a creation method that returns a corresponding entity.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic Entity
createExtinguisher
(TerrainComponent terrain, ExtractorMiniGameArea area) static PlaceableEntity
createExtractor
(int health, Resource producedResource, long tickRate, int tickSize) Creates an extractor entitystatic PlaceableEntity
createExtractor
(ExtractorConfig config) Creates an extractor entitystatic Entity
static Entity
createExtractorFirePart
(TerrainComponent terrain, ExtractorMiniGameArea area) static Entity
createExtractorHolePart
(TerrainComponent terrain, ExtractorMiniGameArea area) static Entity
static Entity
static Entity
createShip
(GdxGame game, List<ResourceCondition> requirements) Creates a ship entity that uses the default packagestatic Entity
createShip
(GdxGame game, List<ResourceCondition> requirements, ShipConfig config) Creates a ship entity that matches the config filestatic Entity
createSpanner
(TerrainComponent terrain, ExtractorMiniGameArea area) static Entity
createSpawner
(SpawnerConfig config) Create an enemy spawner that spawns the desired enemies at a given tick rate and at a given location on the map
-
Field Details
-
defaultShip
-
-
Method Details
-
createExtractor
Creates an extractor entityEach obstacle entity type should have a creation method that returns a corresponding entity.
- Parameters:
config
- Configuration file to match extractor to- Returns:
- a new extractor Entity
-
createExtractorRepair
-
createExtinguisher
-
createSpanner
-
createExtractorFirePart
-
createExtractorHolePart
-
createExtractorBang
-
createExtractor
public static PlaceableEntity createExtractor(int health, Resource producedResource, long tickRate, int tickSize) Creates an extractor entityEach obstacle entity type should have a creation method that returns a corresponding entity.
- Parameters:
health
- the max and initial health of the extractorproducedResource
- the resource type produced by the extractortickRate
- the frequency at which the extractor ticks (produces resources)tickSize
- the amount of the resource produced at each tick- Returns:
- a new extractor Entity
-
createExtractorRepairPart
-
createShip
Creates a ship entity that uses the default package -
createShip
public static Entity createShip(GdxGame game, List<ResourceCondition> requirements, ShipConfig config) Creates a ship entity that matches the config file -
createSpawner
Create an enemy spawner that spawns the desired enemies at a given tick rate and at a given location on the map- Parameters:
config
- the config file to read and select the waves for the spawner to activate- Returns:
-