StorageDevice provides three key/value stores

  • Persistent: Things saved here will remain here, even after the player leaves the page. This currently uses the HTML5 persistent storage API, which has a limit of 5 MB.
  • Session: Things saved here will remain as the player moves among levels, but will be discarded when the player exits/refreshes the browser.
  • Level: Things saved here will remain only until the player moves to another level.

Note that Session and Level can story any data type. Persistent can only store strings, so you'll need JSON serialization for fancy stuff.

Constructors

Methods

  • Clear the level storage

    Returns void

  • Look up a value from the level storage

    Parameters

    • key: string

      The key with which the value was previously saved

    Returns any

  • Look up a value from the persistent storage

    Parameters

    • key: string

      The key with which the value was previously saved

    Returns undefined | string

  • Look up a value from the session storage

    Parameters

    • key: string

      The key with which the value was previously saved

    Returns any

  • Save something to the level storage

    Parameters

    • key: string

      The key by which to remember the data being saved

    • value: any

      The value to store with the provided key

    Returns void

  • Save something to the persistent storage

    Parameters

    • key: string

      The key by which to remember the data being saved

    • value: string

      The value to store with the provided key

    Returns void

  • Save something to the session storage

    Parameters

    • key: string

      The key by which to remember the data being saved

    • value: any

      The value to store with the provided key

    Returns void