Class EnemyFactory
java.lang.Object
com.csse3200.game.entities.factories.EnemyFactory
Factory to create non-playable enemies entities with predefined components.
Each NPC entity type should have a creation method that returns a corresponding entity. Predefined entity properties can be loaded from configs stored as json files which are defined in "NPCConfigs".
If needed, this factory can be separated into more specific factories for entities with similar characteristics.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic Entity
createEnemy
(EnemyConfig config) Creates a melee enemy entity.static Entity
createEnemy
(EnemyType type, EnemyBehaviour behaviour) Creates an enemy - using the default config as defined by the type and behaviourstatic void
targetSet
(Entity target, short enemylayer, AITaskComponent aiTaskComponent)
-
Field Details
-
dialogueBox
-
enemiesList
-
-
Method Details
-
createEnemy
Creates an enemy - using the default config as defined by the type and behaviour- Parameters:
type
- - enemy typebehaviour
- - Targeting behaviour of enemy- Returns:
- new enemy entity
-
createEnemy
Creates a melee enemy entity.- Parameters:
config
- - config file to replicate entity from- Returns:
- entity also helps in triggering sound
-
targetSet
-
getEnemyList
-