Enemies are things to be avoided or defeated by the Hero. Enemies do damage to heroes when they collide with heroes, and enemies can be defeated by other Entities in a variety of ways.

Hierarchy

  • Role
    • Enemy

Constructors

  • Construct an Enemy role

    Parameters

    • cfg: {
          damage?: number;
          defeatByCrawl?: boolean;
          defeatByJump?: boolean;
          disableHeroCollision?: boolean;
          immuneToInvincibility?: boolean;
          instantDefeat?: boolean;
          onDefeatHero?: ((e, h) => void);
          onDefeated?: ((e, a?) => void);
      } = {}
      • Optional damage?: number

        The amount of damage the enemy does (default 2)

      • Optional defeatByCrawl?: boolean

        Can the enemy be defeated by crawling

      • Optional defeatByJump?: boolean

        Can the enemy be defeated by jumping?

      • Optional disableHeroCollision?: boolean

        When the enemy collides with a hero, should they pass through each other?

      • Optional immuneToInvincibility?: boolean

        Does invincibility defeat the enemy?

      • Optional instantDefeat?: boolean

        Should the enemy always defeat the hero on a collision

      • Optional onDefeatHero?: ((e, h) => void)

        Code to run when defeating a hero

          • (e, h): void
          • Code to run when defeating a hero

            Parameters

            Returns void

      • Optional onDefeated?: ((e, a?) => void)

        Code to run when this enemy is defeated

          • (e, a?): void
          • Code to run when this enemy is defeated

            Parameters

            Returns void

    Returns Enemy

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

damage: number = 2

Amount of damage this enemy does to a hero on a collision. The default is 2, so that an enemy will defeat a hero and not disappear.

immuneToInvincibility: boolean

When the enemy collides with an invincible hero, does the enemy survive

instantDefeat: boolean

When the enemy collides with an invincible hero, does it instantly defeat the hero?

onDefeatHero?: ((e, h) => void)

Code to run when this enemy (e) defeats a hero (h)

Type declaration

    • (e, h): void
    • Code to run when this enemy (e) defeats a hero (h)

      Parameters

      Returns void

onDefeated?: ((e, a?) => void)

Code to run when this enemy (e) is defeated. If an actor defeats e, a will be defined

Type declaration

    • (e, a?): void
    • Code to run when this enemy (e) is defeated. If an actor defeats e, a will be defined

      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 associated with this Role

    Parameters

    Returns void

  • get defeatByJump(): boolean
  • Returns boolean

  • set defeatByJump(val): void
  • Does an in-air hero automatically defeat this enemy

    Parameters

    • val: boolean

    Returns void

Methods

  • When an enemy is defeated, this this code figures out how game play should change.

    Parameters

    • increaseScore: boolean

      Indicate if we should increase the score when this enemy is defeated

    • Optional h: Actor

      The actor who defeated this enemy, if any

    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

  • 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