Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// selectSelfParent.js

(function () {
  /*global adventurejs A*/

  var p = adventurejs.Parser.prototype;

  /**
   * Exclude from a list of assets all assets but subject's parent.
   * Should only ever return one object.
   * @method adventurejs.Parser#selectSelfParent
   * @memberOf adventurejs.Parser
   * @param {Array} list
   * @returns {Array}
   */
  p.selectSelfParent = function Parser_selectSelfParent(list) {
    if ("string" === typeof list) list = [list];
    if (!Array.isArray(list)) {
      this.game.log(
        "L1239",
        "warn",
        "critical",
        "selectSelfParent.js > received non-array",
        "Parser"
      );
      return [];
    }
    var foundObjects = [];
    var input = this.game.getInput();
    var player = this.game.getPlayer();
    var subject = input.getSubject();
    var currentRoom = this.game.getCurrentRoom();
    for (var i = 0; i < list.length; i++) {
      var object = this.game.getAsset(list[i]);

      if (subject.isNested() && object.id === subject.getNestId()) {
        foundObjects.push(list[i]);
      } else if (false === subject.isNested() && object.id === currentRoom.id) {
        foundObjects.push(list[i]);
      } else if (
        subject.isNested() &&
        object.id === currentRoom.id &&
        subject.getNestAsset() instanceof adventurejs.Floor
      ) {
        foundObjects.push(currentRoom.id);
      }

      if (0 < foundObjects.length) break;
    }

    return foundObjects;
  };
})();