Class AreaEntityConfig
java.lang.Object
com.csse3200.game.areas.mapConfig.AreaEntityConfig
Class that contains data on all the entities for a given game area
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<T extends BaseEntityConfig>
voidaddEntities
(List<Entity> entities) Adds the entities to the config Must have SaveableComponent<T extends BaseEntityConfig>
voidAdds the entity to the config Must have SaveableComponentvoid
Adds an entry to the entities hashmapboolean
Returns a list of all config entities in the game area<T extends BaseEntityConfig>
List<T>getEntities
(Class<T> entityType) Returns a list of the type of entity from the game area.<T extends BaseEntityConfig>
TReturns an entity of type T from the game area.int
hashCode()
-
Field Details
-
entities
-
-
Constructor Details
-
AreaEntityConfig
public AreaEntityConfig()
-
-
Method Details
-
getEntities
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
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
Returns a list of all config entities in the game area -
addEntity
Adds the entity to the config Must have SaveableComponent- Parameters:
entity
- Entity to be added
-
addEntities
Adds the entities to the config Must have SaveableComponent- Parameters:
entities
- Entities to be added
-
addEntry
Adds an entry to the entities hashmap- Throws:
InvalidConfigException
- if an entry with the same key already exists
-
equals
-
hashCode
public int hashCode()
-