Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// Nest.js
(function () {
  /*global adventurejs A*/

  /**
   * @ajspath adventurejs.Atom.StateManager.Nest
   * @augments adventurejs.StateManager
   * @class adventurejs.Nest
   * @ajsnavheading StateClasses
   * @param {String} game_name Name of top level game instance that is scoped to window.
   * @param {String} name Instance name.
   * @summary A container for properties pertaining to room/player interactions.
   * @classdesc
   * <p>
   * <strong>Nest</strong> is a state management class
   * for {@link adventurejs.Room|Rooms}
   * and {@link adventurejs.Aspect|Aspects}
   * used to store a variety of properties that determine
   * how a character can interact with a room or other asset
   * that the character is nested in.
   **/

  class Nest extends adventurejs.StateManager {
    constructor(name = "nest", game_name, context_id) {
      // Call the constructor of the super class
      super(name, game_name, context_id);
      this.context_id = context_id || "";
      this.preposition = name;
      this.id = `${context_id}|nest|${name}`;
      this.class = "Nest";

      this.posture = "stand";
      this.initial_position = { x: 0, y: 0, z: 0 };
      this.can = {
        // locomotion
        bounce: false,
        climb: false,
        crawl: false,
        drive: false,
        float: false,
        fly: false,
        get: false,
        go: false,
        hide: false,
        hop: false,
        hover: false,
        jump: false,
        peddle: false,
        ride: false,
        run: false,
        skate: false,
        slither: false,
        swim: false,
        walk: false,

        // travel
        enter: false,
        exit: false,
        exit_from_height: true,
        scale: false,
        traverse: true,

        // posture
        cling: false,
        hang: false,
        kneel: false,
        lie: false,
        sit: false,
        stand: false,

        // sensory
        hear: true,
        see: true,
        feel: true,
        smell: true,
        talk: true,
        taste: true,
      };

      return this;
    }
  }
  adventurejs.Nest = Nest;
})();