AnimatedSprite describes any object whose visual representation is an animation. There can be many types of animations. The "IDLE_E" (right-facing) animation is the default. AnimatedSprite can be notified when an Entity's state changes, so that it can switch to the animation associated with the new state.

Implements

Constructors

  • Build an animation that can be rendered

    Parameters

    • opts: {
          animations: Map<AnimationState, AnimationSequence>;
          height: number;
          offset?: {
              dx: number;
              dy: number;
          };
          remap?: Map<AnimationState, AnimationState>;
          width: number;
          z?: ZIndex;
      }
      • animations: Map<AnimationState, AnimationSequence>

        A map with the valid animations. Note that you must include one for IDLE_E, since that is the default animation

      • height: number

        The height of the animation

      • Optional offset?: {
            dx: number;
            dy: number;
        }

        An offset between the component's center and its RigidBody's center (optional)

        • dx: number
        • dy: number
      • Optional remap?: Map<AnimationState, AnimationState>

        A map that indicates when an animation for one state should be re-used for another state.

      • width: number

        The width of the animation

      • Optional z?: ZIndex

        An optional z index in the range [-2,2]

    Returns AnimatedSprite

Properties

The animation sequences to use (they correspond to different AnimationStates)

height: number

Height of the animation

offset: {
    dx: number;
    dy: number;
}

An offset between the AnimatedSprite's center and the RigidBody's center

Type declaration

  • dx: number
  • dy: number
stateSelector: ((oldState, newState) => AnimationState) = AnimatedSprite.overheadAnimationTransitions

A function for selecting what animation state to move to when the attached actor's state changes. Defaults to the version for overhead-style games.

Type declaration

    • (oldState, newState): AnimationState
    • A function for selecting what animation state to move to when the attached actor's state changes. Defaults to the version for overhead-style games.

      Parameters

      Returns AnimationState

width: number

Width of the animation

Z index of the image

Accessors

  • get actor(): undefined | Actor
  • Returns undefined | Actor

  • set actor(a): void
  • The Actor to which this AnimatedSprite is attached

    Parameters

    Returns void

Methods

  • Return the current image for the active animation.

    Returns Sprite

  • When the attached Actor's state changes, figure out if the animation needs to change

    Parameters

    • _actor: Actor

      The actor whose state is changing.

    • event: StateEvent

      The event that might have caused actor's state to change

    • newState: ActorState

      The new state of actor

    • oldState: ActorState

      The old state of actor

    Returns void

  • Prior to rendering, update the animation state

    Parameters

    • elapsedMs: number

      The time since the last render

    Returns void

  • Render the animated image's current cell

    Parameters

    • camera: CameraService

      The camera for the current stage

    • _elapsedMs: number

      The time since the last render

    • location: SpriteLocation

      Where should this be drawn (WORLD/OVERLAY/HUD)

    Returns void

  • Render the animated image's current cell when it does not have a rigidBody. This is only used for Parallax

    Parameters

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

      The center x/y at which to draw the image

      • cx: number
      • cy: number
    • camera: CameraService

      The camera for the current stage

    • _elapsedMs: number

      The time since the last render

    • foreground: boolean

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

    Returns void

  • Change the size of the animation. You shouldn't call this directly. It gets called by Actor.resize().

    Parameters

    • scale: number

      The amount to scale the size by. 1 means "no change", >1 means "grow", fraction means "shrink".

    Returns void

  • Restart the current animation

    Returns void

  • Skip to the indexth cell of the animation, and move forward within it by elapsed milliseconds. Does nothing (and prints no error) if the index is out of bounds.

    Parameters

    • index: number

      The 0-based index of the cell of the animation within the current AnimationSequence

    • elapsed: number

      Act as if this many milliseconds within the new cell have passed.

    Returns void

  • Figure out what AnimationState to use, given an ActorState. This version is designed for top-down style games, where the camera seems to be overhead.

    NB: This is the default version, but there's no guarantee that it is very good. It is used via stateSelector, which can be overridden. Or you could chose to modify it for your game.

    Parameters

    • _oldState: ActorState

      The state that the actor was in

    • newState: ActorState

      The details of the new state the actor is moving to

    Returns AnimationState