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

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

  var p = adventurejs.Parser.prototype;

  /**
   * Exclude from a list of assets all assets that are not in subject's hands.
   * @method adventurejs.Parser#selectInHands
   * @memberOf adventurejs.Parser
   * @param {Array} list
   * @returns {Array}
   */
  p.selectInHands = function Parser_selectInHands(list) {
    // we already know it's present and visible and reachable
    if ("string" === typeof list) list = [list];
    if (!Array.isArray(list)) {
      this.game.log(
        "L1234",
        "warn",
        "critical",
        "selectInHands.js > received non-array",
        "Parser"
      );
      return [];
    }
    var input = this.game.getInput();
    var subject = input.getSubject();
    var foundObjects = [];
    for (var i = 0; i < list.length; i++) {
      var object = this.game.getAsset(list[i]);

      if (object instanceof adventurejs.Substance) {
        continue;
      }

      // if it hasn't got a parent it can't be in hands
      // not originally intended but this applies directly to substances
      if (!object.getPlaceAsset) {
        continue;
      }
      var parent = object.getPlaceAsset();
      if (!parent) {
        continue;
      }

      if (
        parent.id !== subject.id &&
        !subject.isConnectedToAsset("hold", object, "to_dov")
      ) {
        continue;
      }

      if (parent.id === subject.id && object.is.worn) {
        continue;
      }

      foundObjects.push(list[i]);
    }

    return foundObjects;
  };
})();