The Hero is the focal point of a game. While it is technically possible to have many heroes, or invisible heroes that exist just so that the player has to keep bad things from happening to the hero, it is usually the case that a game has one hero who moves around on the screen, possibly with jumping and crawling.

Hierarchy

  • Role
    • Hero

Constructors

  • Construct a Hero role

    Parameters

    • cfg: {
          allowMultiJump?: boolean;
          mustSurvive?: boolean;
          numJumpsAllowed?: number;
          onStrengthChange?: ((h) => void);
          strength?: number;
      } = {}
      • Optional allowMultiJump?: boolean

        True if the hero can jump infinitely often when in mid-jump

      • Optional mustSurvive?: boolean

        Does the level end immediately if this hero is defeated?

      • Optional numJumpsAllowed?: number

        Use 2 to enable double-jumps, etc.

      • Optional onStrengthChange?: ((h) => void)

        Code to run on any change to the hero's strength

          • (h): void
          • Code to run on any change to the hero's strength

            Parameters

            Returns void

      • Optional strength?: number

        The hero's strength (default 1)

    Returns Hero

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

mustSurvive: boolean = false

For tracking if the game should end immediately when this hero is defeated

onStrengthChange?: ((h) => void)

Code to run when the hero's strength changes

Type declaration

    • (h): void
    • Code to run when the hero's strength changes

      Parameters

      Returns void

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 to which this role is attached

    Parameters

    Returns void

  • get invincibleRemaining(): number
  • Time until the hero's invincibility runs out

    Returns number

  • set invincibleRemaining(amount): void
  • Parameters

    • amount: number

    Returns void

  • get strength(): number
  • Strength of the hero. This determines how many collisions with enemies the hero can sustain before it is defeated. The default is 1, and the default enemy damage amount is 2, so that the default behavior is for the hero to be defeated on any collision with an enemy, with the enemy not disappearing

    Returns number

  • set strength(amount): void
  • Parameters

    • amount: number

    Returns void

Methods

  • Take the hero out of crawl mode

    Parameters

    • rotate: number

      The amount to rotate the actor when the crawl ends

    Returns void

  • Put the hero in crawl mode.

    Parameters

    • rotate: number

      The amount to rotate the actor when the crawl starts

    Returns void

  • 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

  • Make the hero jump, unless it is in the air and not multi-jump

    Parameters

    • x: number
    • y: number

    Returns void

  • Code to run when a Hero collides with another Actor

    The Hero is the dominant participant in all collisions. Whenever the hero collides with something, we need to figure out what to do

    Parameters

    • other: Actor

      Other object involved in this collision

    Returns boolean

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

    Parameters

    • elapsedMs: number

    Returns void