The EntityManager manages the entities and components.
It provides the necessary methods for reading and writing entities and components.

Constructors

Methods

  • Adds a component to the entity

    Type Parameters

    Parameters

    • entity: number

      The Entity to which the component will be added

    • componentType: ComponentType<T>

      The class of the component

    Returns T

    The instance of the component

    const spriteRenderer = entityManager.addComponent(entity, SpriteRenderer);
    
  • Adds an instance of a component to an entity

    Type Parameters

    Parameters

    • entity: number

      The Entity to which the component will be added

    • component: T

      The instance of the component

    Returns T

    The instance of the component

    const spriteRenderer = new SpriteRenderer();
    entityManager.addComponent(entity, spriteRenderer);
  • Creates multiple entities based on an array of component collections

    Parameters

    • componentsList: (Component | ComponentType)[][]

      An array of collections of component instances and component classes

    Returns number[]

    An array with the created entities, in the same order of the collections of components

    const player =  [
    new Transform({position: new Vector2(100, 100)}),
    SpriteRenderer,
    Player
    ];

    const enemy = [
    new Transform({position: new Vector2(-100, 100)}),
    SpriteRenderer,
    Enemy
    ];

    const entities = entityManager.createEntities([player, enemy]);
  • Creates an entity without component

    Returns number

    The created Entity

    const entity = entityManager.createEntity();
    
  • Creates an Entity based on an Archetype

    Parameters

    • archetype: Archetype

      The Archetype to create the Entity

    Returns number

    The created Entity

    // Using ArchetypeComponent to define components
    const entity = entityManager.createEntity({
    components: [
    {type: Transform, data: {position: new Vector2(100, 100)}},
    {type: SpriteRenderer, data: {image: "images/player.png"}},
    {type: Player},
    ],
    children: [
    {
    components: [
    {type: Transform, data: {position: new Vector2(8, 0)}},
    {type: SpriteRenderer, data: {image: "images/sword.png"}},
    {type: Weapon, data: {damage: 10}},
    ],
    },
    {
    components: [
    {type: Transform, data: {position: new Vector2(-8, 0)}},
    {type: SpriteRenderer, data: {image: "images/shield.png"}},
    {type: Shield, data: {defense: 5}, enabled: false},
    ],
    },
    {
    components: [
    {type: Transform, data: {position: new Vector2(8, 0)}},
    {type: SpriteRenderer, data: {image: "images/staf.png"}},
    {type: Staff, data: {mana: 5}},
    ],
    enabled: false,
    }
    ]
    });
    // Using Component instances as templates
    const entity = entityManager.createEntity({
    components: [
    new Transform({position: new Vector2(100, 100)}),
    new SpriteRenderer({image: "images/player.png"}),
    new Player(),
    ],
    children: [
    {
    components: [
    new Transform({position: new Vector2(8, 0)}),
    new SpriteRenderer({image: "images/sword.png"}),
    new Weapon({damage: 10}),
    ],
    },
    {
    components: [
    new Transform({position: new Vector2(-8, 0)}),
    new SpriteRenderer({image: "images/shield.png"}),
    new Shield({defense: 5}),
    ],
    },
    {
    components: [
    new Transform({position: new Vector2(8, 0)}),
    new SpriteRenderer({image: "images/staf.png"}),
    new Staff({mana: 5}),
    ],
    enabled: false,
    }
    ]
    });
  • Creates an Entity based on a collection of Component instances and ComponentTypes

    Parameters

    • components: (Component | ComponentType)[]

      A collection of component instances and component classes

    • Optionalparent: number

    Returns number

    The created Entity

    const entity = entityManager.createEntity([
    new Transform({position: new Vector2(100, 100)}),
    SpriteRenderer
    ]);
  • Disables a component instance

    Parameters

    Returns void

    entityManager.disableComponent(spriteRenderer);
    
  • Disables a component by its entity and type

    Type Parameters

    Parameters

    • entity: number

      The target entity

    • componentType: ComponentType<T>

      The component class

    Returns void

    entityManager.disableComponent(entity, SpriteRenderer);
    
  • Disable all Entities that have a component of the given type

    Parameters

    Returns void

    entityManager.disableEntitiesByComponent(SpriteRenderer);
    
  • Disables an entity.
    The entity's components will not be included in the search results
    and therefore will not be processed by their respective systems
    (the engine built-in systems use the search method to retrieve the entities). If the entity has children, they will also be disabled.

    Parameters

    • entity: number

      The entity to be disabled

    Returns void

    entityManager.disableEntity(entity);
    
  • Enables a component instance

    Parameters

    Returns void

    entityManager.enableComponent(spriteRenderer);
    
  • Enables a component by its entity and type

    Type Parameters

    Parameters

    • entity: number

      The target entity

    • componentType: ComponentType<T>

      The component class

    Returns void

    entityManager.enableComponent(entity, SpriteRenderer);
    
  • Enable all Entities that have a component of the given type

    Parameters

    Returns void

    entityManager.enableEntitiesByComponent(SpriteRenderer);
    
  • Enables an Entity.
    The entity's components will be included in the search results
    and therefore will be processed by their respective systems
    (the engine built-in systems use the search method to retrieve the entities). If the entity has children, they will also be enabled, except for those that have been manually disabled.

    Parameters

    • entity: number

      The entity to be enabled

    Returns void

    entityManager.enableEntity(entity);
    
  • Returns all child entities of the parent entity

    Parameters

    • parent: number

    Returns number[]

    A collection of child entities

    const children = entityManager.getChildren(parent);
    
  • Returns the component of the given type belonging to the entity

    Type Parameters

    Parameters

    • entity: number

      The entity

    • componentType: ComponentType<T>

      The class of the component

    Returns T

    The instance of the component

    const spriteRenderer = entityManager.getComponent(entity, SpriteRenderer);
    
  • Returns the component of a parent entity, if it exists.

    Type Parameters

    Parameters

    • parent: number

      The parent entity

    • componentType: ComponentType<T>

      The component class to search

    Returns T

    The instance of the component

    const spriteRenderer = entityManager.getComponentFromParent(parent, SpriteRenderer);
    
  • Returns all the component belonging to the entity

    Parameters

    • entity: number

      The entity

    Returns Component[]

    A collection of component instances

    const components = entityManager.getComponents(entity);
    
  • Searches for and returns an entity for the component instance

    Parameters

    Returns number

    The found Entity

    const entity = entityManager.getEntityForComponent(spriteRenderer);
    
  • Returns the parent entity of the child entity

    Parameters

    • child: number

    Returns number

    The parent entity

    const parent = entityManager.getParent(child);
    
  • Returns TRUE if the Entity has a component of the given type, otherwise it returns FALSE.

    Parameters

    • entity: number

      The entity to verify

    • componentType: ComponentType

      The class of the component

    Returns boolean

    boolean

    const hasSpriteRenderer = entityManager.hasComponent(entity, SpriteRenderer);
    
  • Returns TRUE if the component is enabled, otherwise it returns FALSE

    Parameters

    Returns boolean

    boolean

    entityManager.isComponentEnabled(spriteRenderer)
    
  • Returns TRUE if the component is enabled, otherwise it returns FALSE

    Type Parameters

    Parameters

    • entity: number

      The target entity

    • componentType: ComponentType<T>

      The component class

    Returns boolean

    boolean

    entityManager.isComponentEnabled(entity, SpriteRenderer)
    
  • If the Entity exists, returns TRUE, otherwise it returns FALSE

    Parameters

    • entity: number

    Returns boolean

    boolean

    const isEntity = entityManager.isEntity(entity);
    
  • If the Entity is enabled, returns TRUE, otherwise it returns FALSE

    Parameters

    • entity: number

      The entity to verify

    Returns boolean

    boolean

    const entityEnabled = entityManager.isEntityEnabled(entity);
    
  • Removes all Entities and all their Components

    Returns void

    entityManager.removeAllEntities();
    
  • Removes a child entity from the parent entity

    Parameters

    • parent: number

      The parent entity

    • child: number

      The child entity

    Returns void

    entityManager.removeChild(parent, child);
    
  • Removes the component instance from its Entity

    Parameters

    Returns void

    entityManager.removeComponent(spriteRenderer)
    
  • Removes a component from the entity according to the given type

    Parameters

    • entity: number

      The target entity

    • componentType: ComponentType

      The component class

    Returns void

    entityManager.removeComponent(entity, SriteRenderer)
    
  • Removes an Entity and all its Components

    Parameters

    • entity: number

      The entity to remove

    Returns void

    entityManager.removeEntity(entity);
    
  • Removes the parent-child relationship between two entities

    Parameters

    • child: number

      The child entity

    Returns void

    entityManager.removeParent(child);
    
  • Performs a search for entities given a component type.
    This method returns a collection of objects of type SearchResult, which has the entity found, and the instance of the component.
    This search can be filtered by passing as a second argument an instance of SearchCriteria, which performs a match between the attributes of the component and the given value.
    The third argument determines if disabled entities or components are included in the search result,\its default value is FALSE.

    Type Parameters

    Parameters

    • componentType: ComponentType<T>

      The component class

    • Optionalcriteria: SearchCriteria

      The search criteria

    • OptionalincludeDisabled: boolean

      TRUE to incluide disabled entities and components, FALSE otherwise

    Returns SearchResult<T>[]

    SearchResult

    const searchResult = entityManager.search(SpriteRenderer);
    searchResult.forEach(({component, entity}) => {
    // do something with the component and entity
    })
    const searchResult = entityManager.search(Enemy, {status: "alive"});
    searchResult.forEach(({component, entity}) => {
    // do something with the component and entity
    })
    const searchResult = entityManager.search(Enemy, {status: "dead"}, true);
    searchResult.forEach(({component, entity}) => {
    // do something with the component and entity
    })
  • Performs a search for entities given a component type.
    This method returns a collection of objects of type SearchResult, which has the entity found, and the instance of the component.
    The second argument determines if disabled entities or components are included in the search result,\its default value is FALSE.

    Type Parameters

    Parameters

    • componentType: ComponentType<T>

      The component class

    • OptionalincludeDisabled: boolean

      TRUE to incluide disabled entities and components, FALSE otherwise

    Returns SearchResult<T>[]

    SearchResult

    const searchResult = entityManager.search(SpriteRenderer);
    searchResult.forEach(({component, entity}) => {
    // do something with the component and entity
    })
    const searchResult = entityManager.search(Enemy, true);
    searchResult.forEach(({component, entity}) => {
    // do something with the component and entity
    })
  • Performs an entity search given a collection of component types.
    The entities found must have an instance of all the given component types.
    This method returns a collection of Entities.

    Parameters

    • componentTypes: ComponentType[]

      A collection of component classes

    Returns number[]

    A collection of entities

    const entities = entityManager.searchEntitiesByComponents([Transform, SpriteRenderer, Animator]);
    
  • Performs a search for entities that have a component of the given type and are children of the parent entity.
    This method returns a collection of objects of type SearchResult, which has the entity found, and the instance of the component.
    The third argument determines if disabled entities or components are included in the search result,\its default value is FALSE.

    Type Parameters

    Parameters

    • parent: number

      The parent entity

    • componentType: ComponentType<T>

      The component class

    • includeDisabled: boolean = false

      TRUE to incluide disabled entities and components, FALSE otherwise

    Returns SearchResult<T>[]

    SearchResult

    const searchResult = entityManager.searchInChildren(parent, SpriteRenderer);
    searchResult.forEach(({component, entity}) => {
    // do something with the component and entity
    })
    const searchResult = entityManager.searchInChildren(parent, SpriteRenderer, true);
    searchResult.forEach(({component, entity}) => {
    // do something with the component and entity
    })
  • Sets a parent-child relationship between two entities

    Parameters

    • child: number

      The child entity

    • parent: number

      The parent entity

    Returns void

    entityManager.setParent(child, parent);