Class EnemyFactory

java.lang.Object
com.csse3200.game.entities.factories.EnemyFactory

public class EnemyFactory extends Object
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 Details

    • dialogueBox

      public static DialogueBox dialogueBox
    • enemiesList

      public static List<Entity> enemiesList
  • Method Details

    • createEnemy

      public static Entity createEnemy(EnemyType type, EnemyBehaviour behaviour)
      Creates an enemy - using the default config as defined by the type and behaviour
      Parameters:
      type - - enemy type
      behaviour - - Targeting behaviour of enemy
      Returns:
      new enemy entity
    • createEnemy

      public static Entity createEnemy(EnemyConfig config)
      Creates a melee enemy entity.
      Parameters:
      config - - config file to replicate entity from
      Returns:
      entity also helps in triggering sound
    • targetSet

      public static void targetSet(Entity target, short enemylayer, AITaskComponent aiTaskComponent)
    • getEnemyList

      public static List<Entity> getEnemyList()