Class AreaEntityConfig

java.lang.Object
com.csse3200.game.areas.mapConfig.AreaEntityConfig

public class AreaEntityConfig extends Object
Class that contains data on all the entities for a given game area
  • Field Details

  • Constructor Details

    • AreaEntityConfig

      public AreaEntityConfig()
  • Method Details

    • getEntities

      public <T extends BaseEntityConfig> List<T> getEntities(Class<T> entityType)
      Returns a list of the type of entity from the game area.
      Type Parameters:
      T - Entity type
      Parameters:
      entityType - Class of entity type to be returned
      Returns:
      List of entities with type T
    • getEntity

      public <T extends BaseEntityConfig> T getEntity(Class<T> entityType)
      Returns an entity of type T from the game area.
      Type Parameters:
      T - Entity type
      Parameters:
      entityType - Class of entity type to be returned
      Returns:
      The entity in the game area of type T or null if the number of entities of that type is not 1.
    • getAllConfigs

      public List<BaseEntityConfig> getAllConfigs()
      Returns a list of all config entities in the game area
    • addEntity

      public <T extends BaseEntityConfig> void addEntity(Entity entity)
      Adds the entity to the config Must have SaveableComponent
      Parameters:
      entity - Entity to be added
    • addEntities

      public <T extends BaseEntityConfig> void addEntities(List<Entity> entities)
      Adds the entities to the config Must have SaveableComponent
      Parameters:
      entities - Entities to be added
    • addEntry

      public void addEntry(Map.Entry<String,List<Object>> entry) throws InvalidConfigException
      Adds an entry to the entities hashmap
      Throws:
      InvalidConfigException - if an entry with the same key already exists
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object