Constructor. Pass an optional 3D GameConfig to the parent class and initialise all 3D-specific aspects of the Game
the optional 3D GameConfig
Audio manager for adding and playing sounds
HTML Canvas
Concrete reference to the current 3D State
Generic mapping of Game Data, useful for storing and retrieving arbitrary global data at Game runtime
Internal-use DebugData for tracking certain game statistics while in Debug Mode
Debug Mode, as potentially set by the GameConfig
Default GameConfig fallback values for various configuration options
Frame time step, calculated during run()
Reference to the potential GameConfig init() method
InputManager
Time of the last frame, set during run()
Renderer
Concrete mapping of 3D States
Concrete mapping of 3D Systems
Concrete 3D Font
Concrete 3D UI
Concrete 3D World
Add a single 3D State to the Game
the 3D State to add
Add a list of 3D States to the Game
Delete some arbitrary generic Game Data by key
the key of the Data to delete
Destroy the game [WIP]
Concrete 3D State end routine, passing the type-correct 3D Game to the State's lifecycle method
Retrieve the value of some arbitrary generic Game Data by key
Throws an error if there's no data by the given key
the type of the Data being retrieved
the key of the Data to retrieve
the retrieved Data
Retrieve a System from the Game
Throws an error if the System is not found to allow type safety + simplistic no-questions consumer calls
the type of the System to retrieve
the name of the System to retrieve
the retrieved System
Check if the Game has a named System
the name of the System to check
whether or not the Game has the named System
Check if the Game has a list of named Systems
the names of the Systems to check
whether or not the Game has all of the named Systems
Concrete 3D State initialization routine, passing the type-correct 3D Game to the State's lifecycle method
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()
the ShaderProgram to register
Remove a single System by name
the name of the System to remove
Remvove a list of Systems by name
the names of the Systems to remove
Set the value of some arbitrary generic Game Data
the key for the Data
the value for the Data
Begin game executon by calling the optional GameConfig init(), switching to the named State, and finally executing the main loop
the name of the State to start with
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
the name of the State to switch to
Concrete frame update routine, passing the type-correct 3D Game to the State's lifecycle method
Just updates all 3D Systems and the current 3D State
Concrete 3D Game, setting out the 3D-specific properties and behavior for the operation of 3D Games