RenderDevice is a wrapper around the PIXI Application object. It initializes the render loop, which fires at a regular interval to tell the game to advance the simulation by some number of milliseconds. Doing this many times per second is what makes our game work :)

TODO: Pixi prefers when sprites are not removed and re-added to containers on each tick. It also has features like "interaction" that can be disabled. There's a fair bit of optimization opportunity.

Constructors

  • Initialize the renderer.

    Parameters

    • screenWidth: number

      The width of the screen

    • screenHeight: number

      The height of the screen

    • domId: string

      The ID of the DOM element into which we will render

    • debugMode: boolean

      True if debug outlines should be drawn

    Returns RendererDevice

Properties

mostRecentScreenShot?: Sprite

The most recently-taken screenshot

pixi: Application<ICanvas>

The pixi application object is responsible for drawing onto a canvas

screenshotRequested: boolean = false

Is someone requesting that a new screenshot be taken?

Accessors

  • get now(): number
  • The "time" in milliseconds, where 0 is when the game started

    Returns number

Methods

  • Add an actor (physics+image) to the next frame

    Parameters

    Returns void

  • Add a filled sprite (a Pixi Graphic) to the main container

    Parameters

    Returns void

  • Add a filter to the whole container

    Parameters

    Returns void

  • Parameters

    Returns void

  • Add a Picture to the next frame. Note that pictures are never rotated or offset, because we only use this for Parallax pictures (which have no rigid body, and hence no rotation).

    Parameters

    • anchor: {
          cx: number;
          cy: number;
      }
      • cx: number
      • cy: number
    • appearance: AppearanceComponent

      The AppearanceComponent for the actor

    • sprite: Sprite

      The sprite, from appearance

    • camera: CameraService

      The camera that determines which actors to show, and where

    • foreground: boolean

      Should this go in the foreground (true) or background (false)?

    Returns void

  • Add text to the next frame

    Parameters

    • text: TextSprite

      The text object to display

    • body: RigidBodyComponent

      The rigidBody of the actor

    • camera: CameraService

      The camera that determines which text to show, and where

    • center: boolean

      Should we center the text at its x/y coordinate?

    • z: ZIndex

      The Z index of the sprite

    • location: SpriteLocation

      Where is this being drawn (WORLD, OVERLAY, or HUD)?

    Returns void

  • Add a filter to one of the z indices.

    Parameters

    Returns void

  • Return the current Frames-Per-Second of the renderer. This can be useful when debugging

    Returns number

  • Reset the renderer's container state when the stage transitions to a new builder

    Returns void

  • Reset the renderer's overlay container state

    Returns void

  • Set the background color of the next frame to a HTML hex value (e.g., 0xaaffbb)

    Parameters

    • color: number

    Returns void

  • Start the render loop, which will cause the game simulation to start running.

    Returns void