Options
All
  • Public
  • Public/Protected
  • All
Menu

Class WorldManager<Config>

Abstract WorldManager; an EntityManager implementing core functionality for Aura's World, including Camera and Game object management

Broken down into concrete 2D and 3D variants, providing domain-specific behavior and type safety for Aura2D and Aura3D Games respectively

Type parameters

  • Config: WorldConfig2D | WorldConfig

    the specific 2D or 3D World configuration object type

Hierarchy

Index

Constructors

  • new WorldManager<Config>(config: Config): WorldManager<Config>
  • Constructor. Pass a type-correct 2D or 3D WorldConfig to the parent class

    Type parameters

    Parameters

    • config: Config

      the type-correct 2D or 3D World Config

    Returns WorldManager<Config>

Properties

activeCamera: Camera | Camera

Abstract 2D or 3D active Camera; to be type narrowed by the subclass

cameras: Map<string, Camera | Camera>

Abstract mapping of named 2D or 3D Cameras; to be type narrowed by the subclass

config: Config & { name: string }

Accessors

  • Abstract 2D or 3D World dimensions getter; to be implemented and type narrowed by the subclass

    Returns Vec3 | Vec2

  • get entityCount(): number
  • Retrieve the number of Entities in play

    Returns number

    the number of active Entities

Methods

  • addCamera(camera: Camera | Camera): void
  • Abstract 2D or 3D Camera addition; to be implemented and type narrowed by the subclass

    Parameters

    • camera: Camera | Camera

      the 2D or 3D Camera to add

    Returns void

  • addEntities(...entities: Entity[]): void
  • Prepare a list of Entities to be added to the Game on the next frame

    Parameters

    • Rest ...entities: Entity[]

      the Entities to add

    Returns void

  • addEntity(entity: Entity): void
  • Prepare an Entity to be added to the Game on the next frame

    Parameters

    • entity: Entity

      the Entity to add

    Returns void

  • clearEntities(): void
  • Purge all active Entities immediately

    Returns void

  • filterEntitiesByComponentName(component: string): Entity[]
  • Filter the active Entities by a given Component name. Filter results are cached to optimise frame-to-frame filters

    Parameters

    • component: string

      the name of the Component to filter by

    Returns Entity[]

    the list of Entities with the Component

  • filterEntitiesByComponentNameFromSource(source: Entity[], filterId: string, component: string): Entity[]
  • Filter Entities from a given source by a given Component name. Filter results are cached to optimise frame-to-frame filters

    Parameters

    • source: Entity[]

      the Entity list to treat as the filter source

    • filterId: string

      an identifier for the filter result, used to avoid conflicts for similar filters across disparate sources

    • component: string

    Returns Entity[]

    the list of Entities from the source with the Component

  • filterEntitiesByComponentNames(...components: string[]): Entity[]
  • Filter the active Entities by a given list of Component names. Filter results are cached to optimise frame-to-frame filters

    Parameters

    • Rest ...components: string[]

      the names of the Components to filter by

    Returns Entity[]

    the list of Entities with the Components

  • filterEntitiesByComponentNamesFromSource(source: Entity[], filterId: string, ...components: string[]): Entity[]
  • Filter the Entities from a given source by a given list of Component names. Filter results are cached to optimise frame-to-frame filters

    Parameters

    • source: Entity[]

      the Entity list to treat as the filter source

    • filterId: string

      an identifier for the filter result, used to avoid conflicts for similar filters across disparate sources

    • Rest ...components: string[]

      the names of the Components to filter by

    Returns Entity[]

    the list of Entities from the source with the Components

  • filterEntitiesByTag(tag: string): Entity[]
  • Filter the active Entities by a given tag. Filter results are cached to optimise frame-to-frame filters

    Parameters

    • tag: string

      the tag to filter by

    Returns Entity[]

    the list of Entities with the tag

  • filterEntitiesByTags(...tags: string[]): Entity[]
  • Filter the active Entities by a given list of tags. Filter results are cached to optimise frame-to-frame filters

    Parameters

    • Rest ...tags: string[]

      the tags to filter by

    Returns Entity[]

    the list of Entities with the tags

  • getCamera(name: string): Camera | Camera
  • Abstract 2D or 3D Camera retrieval; to be implemented and type narrowed by the subclass

    Parameters

    • name: string

      the name of the Camera to retrieve

    Returns Camera | Camera

    the named Camera

  • removeCamera(name: string): void
  • Remove a Camera by name

    Parameters

    • name: string

      the name of the Camera to remove

    Returns void

  • removeEntities(...entities: Entity[]): void
  • Prepare a list of Entities to be removed from the Game on the next frame

    Parameters

    • Rest ...entities: Entity[]

      the Entities to remove

    Returns void

  • removeEntity(entity: Entity): void
  • Prepare an Entity to be removed from the Game on the next frame

    Parameters

    • entity: Entity

      the Entity to remove

    Returns void

  • render(): void
  • Frame render method. Render all active and renderable Entities.

    Processes Entities grouped by shader+model combinations so as to reduce the amount of GL buffering required and render in batches

    Returns void

  • switchToCamera(name: string): void
  • Switch to the named Camera

    Throws an error if the desired Camera is not found for runtime safety

    Parameters

    • name: string

      the name of the Camera to switch to

    Returns void

  • tick(game: GameBase, frameDelta: number): void
  • Frame update method. Process the Entity addList and removeList, then run all active Entities' frame update methods

    Parameters

    • game: GameBase

      the Game the EntityManager is running within

    • frameDelta: number

      the frame delta as calculated by the Game

    Returns void