Options
All
  • Public
  • Public/Protected
  • All
Menu

Concrete 2D Game, setting out the 2D-specific properties and behavior for the operation of 2D Games

Hierarchy

Index

Constructors

  • Constructor. Pass an optional 2D GameConfig to the parent class and initialise all 2D-specific aspects of the Game

    Parameters

    • Optional config: GameConfig

      the optional 2D GameConfig

    Returns Game

Properties

audio: AudioManager = ...

Audio manager for adding and playing sounds

canvas: undefined | HTMLCanvasElement

HTML Canvas

currentState: undefined | State

Concrete reference to the current 2D State

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> = ...

Concrete mapping of 2D States

systems: Map<string, System> = ...

Concrete mapping of 2D Systems

text: Text

Concrete 2D Text

ui: UI

Concrete 2D UI

world: World

Concrete 2D World

Methods

  • addState(state: State): void
  • Add a single 2D State to the Game

    Parameters

    • state: State

      the 2D State to add

    Returns void

  • addStates(...states: State[]): void
  • Add a list of 2D States to the Game

    Parameters

    Returns void

  • Add a single 2D System to the Game

    Throws an error if the system already exists so as to prevent accidental replacement

    Parameters

    Returns void

  • Add a list of 2D States to the Game

    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
  • Concrete 2D State end routine, passing the type-correct 2D Game to the State's lifecycle method

    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<T>(name: string): T
  • Retrieve a System from the Game

    Throws an error if the System is not found to allow type safety + simplistic no-questions consumer calls

    Type parameters

    • T: System<T>

      the type of the System to retrieve

    Parameters

    • name: string

      the name of the System to retrieve

    Returns T

    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
  • Concrete 2D State initialization routine, passing the type-correct 2D Game to the State's lifecycle method

    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
  • Concrete frame update routine, passing the type-correct 2D Game to the State's lifecycle method

    Just updates all 2D Systems and the current 2D State

    Returns void