Options
All
  • Public
  • Public/Protected
  • All
Menu

JsonManager loads json files (using XMLHttpRequest), using the "json" resources registered in the game resources.

Contrary to audio/fonts, json files are loaded asynchronously, when requested. You should properly handle errors, and give the developer/player a way to know that loading failed.

Hierarchy

  • JsonManager

Implements

Index

Constructors

Methods

  • getLoadedJson(resourceName: string): null | Object
  • Get the object for the given resource that is already loaded (preloaded or loaded with loadJson). If the resource is not loaded, null will be returned.

    Parameters

    • resourceName: string

      The name of the json resource.

    Returns null | Object

    the content of the json resource, if loaded. null otherwise.

  • getResourceKinds(): ResourceKind[]
  • isJsonLoaded(resourceName: string): boolean
  • Check if the given json resource was loaded (preloaded or loaded with loadJson).

    Parameters

    • resourceName: string

      The name of the json resource.

    Returns boolean

    true if the content of the json resource is loaded. false otherwise.

  • Request the json file from the given resource name. This method is asynchronous. When loaded, the callback is called with the error (null if none) and the loaded json (a JS Object).

    Parameters

    • resourceName: string

      The resource pointing to the json file to load.

    • callback: JsonManagerRequestCallback

      The callback function called when json is loaded (or an error occurred).

    Returns void

  • loadJsonAsync(resourceName: string): Promise<null | Object>
  • loadResource(resourceName: string): Promise<void>
  • Request all the json resources to be preloaded (unless they are marked as not preloaded).

    Note that even if a JSON is already loaded, it will be reloaded (useful for hot-reloading, as JSON files can have been modified without the editor knowing).

    Parameters

    • resourceName: string

    Returns Promise<void>

  • processResource(resourceName: string): Promise<void>

Generated using TypeDoc