Stage is the container for all of the functionality for the playable portion of a game. Stage has several components:

  • The world, where all the action of the game happens
  • The heads-up display (HUD), where the user interface of the game is drawn.
  • The Score object
  • The background music and background color
  • The background and foreground parallax layers
  • The code for building, managing, and dismissing the win/lose/pause/welcome scenes

Stage is effectively a singleton: On any transition from one stage to another in the game, we don't make a new Stage object... instead we clear out the existing one and reuse it.

Stage does not manage transitions between scenes on its own. Instead, it has mechanisms (onScreenChange and endLevel) for resetting itself at the beginning of a stage, and cleaning itself up at the end of a stage.

Constructors

  • Set up the stage. This is the first step in starting a game.

    Parameters

    • config: JetLagGameConfig

      The game-wide configuration object

    • domId: string

      The Id of the DOM element where the game exists

    • builder: ((level) => void)

      A function for building the first visible level of the game

        • (level): void
        • Parameters

          • level: number

          Returns void

    • platform: PlatformDevice

      Platform-specific features

    Returns Stage

Properties

accelerometer: AccelerometerDevice

access to the the device's accelerometer

background: ParallaxSystem

The background layers

backgroundColor: string = "#ffffff"

Background color for the stage being drawn. Defaults to white

The game-wide configuration object

console: ConsoleDevice

A console device, for debug messages

fontScaling: number = 1

Scaling ratio for fonts, relative to PPM4UF

foreground: ParallaxSystem

The foreground layers

gameMusic: undefined | MusicComponent

Background music that doesn't stop when the level changes

gestures: GestureDevice

touch controller, providing gesture inputs

hud: Scene

A heads-up display

imageLibrary: ImageLibraryService

A library of images

keyboard: KeyboardDevice

keyboard controller, providing key event inputs

levelMusic: undefined | MusicComponent

Everything related to music that is controlled on one level at a time

musicLibrary: AudioLibraryService

A library of sound and music files

network: NetworkDevice = ...

Network interface

overlay?: Scene

Any pause, win, or lose scene that supersedes the world and hud

pixelMeterRatio: number = 0

The pixel-meter ratio (dummy value... gets computed early)

platform: PlatformDevice

Platform-specific features

renderer: RendererDevice

rendering support, for drawing to the screen

score: ScoreService = ...

The Score, suitable for use throughout JetLag

screenHeight: number = 0

The screen height (dummy value... gets computed early)

screenWidth: number = 0

The screen width (dummy value... gets computed early)

storage: StorageDevice

Persistent storage + volatile storage for a game session and a level

svgScaling: number = 1

The scaling ratio for SVG coords, relative to PPM4SVG

The tilt system for the stage

world: Scene

The physics world in which all actors exist

Methods

  • Load any images that need to be loaded, then launch the game. This is the last step in starting a game.

    Returns void

  • Remove the current overlay scene, if any

    Returns void

  • Close the window to exit the game

    Returns void

  • This code is called dozens of times per second to update the game's hud's state and re-draw the hud

    Parameters

    • elapsedMs: number

      The time in milliseconds since the previous render

    Returns void

  • Render the overlay if it exists. This code is called dozens of times per second to update the overlay, if it is being drawn.

    Parameters

    • elapsedMs: number

      The time in milliseconds since the previous render

    Returns void

  • This code is called dozens of times per second to update the game's world's state and re-draw the world

    Parameters

    • elapsedMs: number

      The time in milliseconds since the previous render

    Returns void

  • Request that an overlay be put on top of the game. This is not the HUD. It's something that goes on top of everything else, and prevents the game from playing, such as a pause scene, a win/lose scene, or a welcome scene.

    Parameters

    • builder: ((overlay, screenshot?) => void)

      Code for creating the overlay

        • (overlay, screenshot?): void
        • Parameters

          Returns void

    • requestScreenshot: boolean

      Should the overlay delay for a cycle or two, so a screenshot can be taken first?

    Returns void

  • Before we call programmer code to load a new stage, we call this to ensure that everything is in a clean state.

    Parameters

    • builder: ((index, stage) => void)
        • (index, stage): void
        • Parameters

          • index: number
          • stage: Stage

          Returns void

    • index: number

    Returns void