Obstacles are usually walls, except they can also move, and can be used in all sorts of other ways.

Hierarchy

  • Role
    • Obstacle

Constructors

  • Construct an Obstacle role

    Parameters

    • cfg: {
          disableHeroCollision?: boolean;
          enemyCollision?: ((thisActor, collideActor) => void);
          heroCollision?: ((thisActor, collideActor) => void);
          jumpReEnableSides?: DIRECTION[];
          projectileCollision?: ((thisActor, collideActor) => boolean);
      } = {}
      • Optional disableHeroCollision?: boolean

        Should the hero bounce off of this obstacle?

      • Optional enemyCollision?: ((thisActor, collideActor) => void)

        Code to run when this obstacle collides with an enemy

          • (thisActor, collideActor): void
          • Code to run when this obstacle collides with an enemy

            Parameters

            Returns void

      • Optional heroCollision?: ((thisActor, collideActor) => void)

        Code to run when this obstacle collides with a hero

          • (thisActor, collideActor): void
          • Code to run when this obstacle collides with a hero

            Parameters

            Returns void

      • Optional jumpReEnableSides?: DIRECTION[]

        Which sides "count" for letting a jumping hero jump again?

      • Optional projectileCollision?: ((thisActor, collideActor) => boolean)

        Code to run when this obstacle collides with a projectile

          • (thisActor, collideActor): boolean
          • Code to run when this obstacle collides with a projectile

            Parameters

            Returns boolean

    Returns Obstacle

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

enemyCollision?: ((thisActor, collideActor) => void)

This is for when an enemy collides with an obstacle

Type declaration

    • (thisActor, collideActor): void
    • This is for when an enemy collides with an obstacle

      Parameters

      Returns void

heroCollision?: ((thisActor, collideActor) => void)

Code to run when a hero collides with this obstacle

Type declaration

    • (thisActor, collideActor): void
    • Code to run when a hero collides with this obstacle

      Parameters

      Returns void

jumpReEnableSides: DIRECTION[] = ...

Which sides of this obstacle count as a "wall" to stop the current jump

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

Tasks to run before every render

Type declaration

    • (elapsedMs, actor?): void
    • Parameters

      • elapsedMs: number
      • Optional actor: Actor

      Returns void

projectileCollision?: ((thisActor, collideActor) => boolean)

This is for when a projectile collides with an obstacle

Type declaration

    • (thisActor, collideActor): boolean
    • This is for when a projectile collides with an obstacle

      Parameters

      Returns boolean

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

  • Internal method for playing a sound when a hero collides with this obstacle. Since collisions can repeat with high frequency, we use this to avoid re-playing the sound before it even finishes.

    Returns void

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

    Parameters

    • elapsedMs: number

    Returns void