The destination role is most easily thought of in the context of a maze game: when all heroes reach destinations, the level is won.

Hierarchy

  • Role
    • Destination

Constructors

  • Construct a Destination role

    Parameters

    • cfg: {
          capacity?: number;
          onAttemptArrival?: ((h) => boolean);
      } = {}
      • Optional capacity?: number

        The number of Heroes this Destination can hold (default 1)

      • Optional onAttemptArrival?: ((h) => boolean)

        A custom, optional check to decide if the Destination is "ready" to accept a Hero.

          • (h): boolean
          • A custom, optional check to decide if the Destination is "ready" to accept a Hero.

            Parameters

            Returns boolean

    Returns Destination

Properties

collisionRules: {
    ignores: CollisionExemptions[];
    properties: CollisionExemptions[];
} = ...

collisionRules lets us turn off collisions based on the roles of two actors. We do this with two sets. If A's second set contains an entry in B's first set, then we disable the collision. We also do this symmetrically with B and A. In essence, this means that the first set lets a Role say "here are special things about me", and the second set lets a Role say "I don't collide with things that are special in these ways."

Type declaration

prerenderTasks: ((elapsedMs, actor?) => void)[] = []

Tasks to run before every render

Type declaration

    • (elapsedMs, actor?): void
    • Parameters

      • elapsedMs: number
      • Optional actor: Actor

      Returns void

Accessors

  • get actor(): undefined | Actor
  • The actor associated with this Role

    Returns undefined | Actor

  • set actor(actor): void
  • The actor associated with this Role

    Parameters

    Returns void

Methods

  • This actor ignores collisions with Heroes

    Parameters

    Returns void

  • Indicate that the current Role should not ignore collisions with some other role

    Parameters

    Returns void

  • Code to run when there is a collision involving this role's Actor

    Parameters

    Returns boolean

  • Code to run immediately before rendering this role's Actor

    Parameters

    • elapsedMs: number

    Returns void

  • Decide if a hero can be received by the destination, and if so, receive it

    Parameters

    • h: Actor

      The hero who may be received by this destination

    Returns boolean

    True if the hero was accepted, false otherwise