HTML5 shell class reference
Projects exported for the Web expose the Engine
class to the JavaScript environment, that allows fine control over the engine’s start-up process.
This API is built in an asynchronous manner and requires basic understanding of Promises.
Engine
The Engine
class provides methods for loading and starting exported projects on the Web. For default export settings, this is already part of the exported HTML page. To understand practical use of the Engine
class, see Custom HTML page for Web export.
Static Methods
Promise | Engine.load ( string basePath ) |
void | Engine.unload ( ) |
boolean | Engine.isWebGLAvailable ( [ number majorVersion=1 ] ) |
void | Engine.setWebAssemblyFilenameExtension ( string extension ) |
Instance Properties
Emscripten Module | engine.rtenv |
Instance Methods
Engine | Engine ( ) |
Promise | engine.init ( [ string basePath ] ) |
Promise | engine.preloadFile ( string|ArrayBuffer file [, string path ] ) |
Promise | engine.start ( [ string arg1, string arg2, … ] ) |
Promise | engine.startGame ( string execName, string mainPack ) |
void | engine.setUnloadAfterInit ( boolean enabled ) |
void | engine.setCanvas ( HTMLCanvasElement canvasElem ) |
void | engine.setCanvasResizedOnStart ( boolean enabled ) |
void | engine.setLocale ( string locale ) |
void | engine.setExecutableName ( string execName ) |
void | engine.setProgressFunc ( function callback ) |
void | engine.setStdoutFunc ( function callback ) |
void | engine.setStderrFunc ( function callback ) |
Static Method Descriptions
Engine.``load
(basePath)
Load the engine from the specified base path.
Arguments: |
|
---|---|
Returns: | Promise which resolves once the engine is loaded. |
Engine.``unload
()
Unload the engine to free memory.
This method is called automatically once the engine is started unless explicitly disabled using engine.setUnloadAfterInit()
.
Engine.``isWebGLAvailable
([majorVersion = 1])
Check whether WebGL is available. Optionally, specify a particular version of WebGL to check for.
Arguments: |
|
---|---|
Returns: |
|
Engine.``setWebAssemblyFilenameExtension
(extension)
Set an alternative filename extension for the WebAssembly module. By default it is assumed to be wasm
.
Arguments: |
|
---|
Instance Property Descriptions
engine.``rtenv
The runtime environment provided by Emscripten’s Module
. For more information refer to the official documentation on Emscripten.
Instance Method Descriptions
class Engine
()
Create a new instance of the Engine
class.
engine.``init
([basePath])
Initialize the engine instance. Optionally, pass the base path to the engine to load it, if it hasn’t been loaded yet. See Engine.load()
.
Arguments: |
|
---|---|
Returns: | Promise that resolves once the engine is loaded and initialized. |
engine.``preloadFile
(file[, path])
Load a file so it is available in the instance’s file system once it runs. Must be called before starting the instance.
Arguments: |
|
---|---|
Returns: | Promise that resolves once the file is loaded. |
engine.``start
([arg1, arg2, …])
Start the instance of the engine, using the passed strings as command line arguments. engine.startGame()
can be used in typical cases instead.
This will initialize the instance if it is not initialized. For manual initialization, see engine.init()
. The engine must be loaded beforehand.
Fails if a canvas cannot be found on the page.
Arguments: |
|
---|---|
Returns: | Promise that resolves once the engine started. |
engine.``startGame
(execName, mainPack)
Start the game instance using the given executable URL and main pack URL.
This will initialize the instance if it is not initialized. For manual initialization, see engine.init()
.
This will load the engine if it is not loaded. The base path of the executable URL will be used as the engine base path.
Arguments: |
|
---|---|
Returns: | Promise that resolves once the game started. |
engine.``setUnloadAfterInit
(enabled)
Specify whether the engine will be unloaded automatically after the instance is initialized. Enabled by default.
Arguments: |
|
---|
engine.``setCanvas
(canvasElem)
Specify a canvas HTML element to use. By default, the first canvas element on the page is used for rendering.
Arguments: |
|
---|
engine.``setCanvasResizedOnStart
(enabled)
Specifies whether the canvas will be resized to the width and height specified in the project settings on start. Enabled by default.
Arguments: |
|
---|
engine.``setLocale
(locale)
Specify a language code to select the proper localization for the game.
See also
Complete list of supported locales.
Arguments: |
|
---|
engine.``setExecutableName
(execName)
Specify the virtual filename of the executable. By default, the base name of the loaded engine files is used.
This affects the output of OS.get_executable_path() and sets the automatically started main pack to *ExecutableName*.pck
.
Arguments: |
|
---|
engine.``setProgressFunc
(callback)
Specify a callback function for displaying download progress. The callback function is called once per frame, so that the usage of requestAnimationFrame()
is not necessary.
If the callback function receives a total amount of bytes as 0, this means that it is impossible to calculate. Possible reasons include:
- Files are delivered with server-side chunked compression
- Files are delivered with server-side compression on Chromium
- Not all file downloads have started yet (usually on servers without multi-threading)
Arguments: |
|
---|
engine.``setStdoutFunc
(callback)
Specify a callback function for handling the standard output stream. This method should usually only be used in debug pages. By default, console.log()
is used.
Arguments: |
|
---|
engine.``setStderrFunc
(callback)
Specify a callback function for handling the standard error stream. This method should usually only be used in debug pages. By default, console.warn()
is used.
Arguments: |
|
---|