Options
All
  • Public
  • Public/Protected
  • All
Menu

Class GameBase

Abstract core Game; implementing the abstractable behavior for the operation of both 2D and 3D Games

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

Games operate on the Entity-Component-System architecture, and make use of States (analogous to Scenes) for runtime functionality

This abstract Game centralises EntityManagement by weay of the World, Text and UI management utilities, as well as update and rendering

Game execution begins when start() is called upon a Game instance, providing the name of a registered State to switch to

Hierarchy

Index

Constructors

  • Constructor. Take an optional GameConfig, and initialise all generic/abstractable aspects of the Game

    Parameters

    Returns GameBase

Properties

audio: AudioManager = ...

Audio manager for adding and playing sounds

canvas: undefined | HTMLCanvasElement

HTML Canvas

currentState: undefined | State | State

Abstract reference to the current 2D or 3D State, to be type narrowed by the subclass

data: Map<string, unknown> = ...

Generic mapping of Game Data, useful for storing and retrieving arbitrary global data at Game runtime

debugData: { fps: string; frameCount: number } = ...

Internal-use DebugData for tracking certain game statistics while in Debug Mode

Type declaration

  • fps: string
  • frameCount: number
debugMode: undefined | boolean

Debug Mode, as potentially set by the GameConfig

defaults: GameConfigDefaults = ...

Default GameConfig fallback values for various configuration options

frameDelta: number = 0

Frame time step, calculated during run()

init: undefined | (() => void)

Reference to the potential GameConfig init() method

InputManager

lastFrameTime: number = ...

Time of the last frame, set during run()

renderer: Renderer

Renderer

states: Map<string, State | State>

Abstract mapping of 2D or 3D States, to be type narrowed by the subclass

systems: Map<string, System | System>

Abstract mapping of 2D or 3D Systems, to be type narrowed by the subclass

text: Text | Text

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

ui: UI | UI

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

world: World | World

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

Methods

  • addState(state: State | State): void
  • Abstract single 2D or 3D State addition; to be implemented and type narrowed by the subclass

    Parameters

    • state: State | State

      the 2D or 3D State to add

    Returns void

  • addStates(...states: (State | State)[]): void
  • Abstract multi 2D or 3D State addition; to be implemented and type narrowed by the subclass

    Parameters

    • Rest ...states: (State | State)[]

      the 2D or 3D States to add

    Returns void

  • Abstract single 2D or 3D System addition; to be implemented and type narrowed by the subclass

    Parameters

    Returns void

  • Abstract multi 2D or 3D System addition; to be implemented and type narrowed by the subclass

    Parameters

    Returns void

  • deleteData(key: string): void
  • Delete some arbitrary generic Game Data by key

    Parameters

    • key: string

      the key of the Data to delete

    Returns void

  • destroy(): void
  • Destroy the game [WIP]

    Returns void

  • endState(): void
  • Abstract State end routine, to be implemented by the subclass for type safety in State end methods

    Returns void

  • getData<T>(key: string): T
  • Retrieve the value of some arbitrary generic Game Data by key

    Throws an error if there's no data by the given key

    Type parameters

    • T

      the type of the Data being retrieved

    Parameters

    • key: string

      the key of the Data to retrieve

    Returns T

    the retrieved Data

  • getSystem(name: string): System | System
  • Abstract system retrieval method; to be implemented and type narrowed by the subclass

    Parameters

    • name: string

      the name of the system to retrieve

    Returns System | System

    the retrieved system

  • hasSystem(name: string): boolean
  • Check if the Game has a named System

    Parameters

    • name: string

      the name of the System to check

    Returns boolean

    whether or not the Game has the named System

  • hasSystems(...names: string[]): boolean
  • Check if the Game has a list of named Systems

    Parameters

    • Rest ...names: string[]

      the names of the Systems to check

    Returns boolean

    whether or not the Game has all of the named Systems

  • initState(): void
  • Abstract State initialization routine, to be implemented by the subclass for type safety in State initialization methods

    Returns void

  • Create a given ShaderProgram, making it available for use in Entity Shader Components

    All ShaderPrograms to be used by the application should be registered before execution is begun with start()

    Parameters

    Returns void

  • removeSystem(name: string): void
  • Remove a single System by name

    Parameters

    • name: string

      the name of the System to remove

    Returns void

  • removeSystems(...names: string[]): void
  • Remvove a list of Systems by name

    Parameters

    • Rest ...names: string[]

      the names of the Systems to remove

    Returns void

  • setData<T>(key: string, value: T): void
  • Set the value of some arbitrary generic Game Data

    Type parameters

    • T

    Parameters

    • key: string

      the key for the Data

    • value: T

      the value for the Data

    Returns void

  • start(state: string): void
  • Begin game executon by calling the optional GameConfig init(), switching to the named State, and finally executing the main loop

    Parameters

    • state: string

      the name of the State to start with

    Returns void

  • switchToState(name: string): void
  • Switch to the named State

    Ends the current State, then initializes the new State before switching for frame updates

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

    Parameters

    • name: string

      the name of the State to switch to

    Returns void

  • update(): void
  • Abstract frame update routine; to be implemented by the subclass for type safety on core construct update routines

    Returns void