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

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

  /**
   * @augments {adventurejs.Verb}
   * @class drop
   * @ajsnode game.dictionary.verbs.drop
   * @ajsconstruct MyGame.createVerb({ "name": "drop", [...] });
   * @ajsconstructedby adventurejs.Dictionary#createVerb
   * @hideconstructor
   * @ajsinstanceof Verb
   * @ajsnavheading ManipulationVerbs
   * @summary Verb meaning drop asset.
   * @ajssynonyms drop, put
   * @tutorial Scripting_VerbSubscriptions
   * @tutorial Verbs_VerbAnatomy
   * @tutorial Verbs_VerbProcess
   * @tutorial Verbs_ModifyVerbs
   * @tutorial Verbs_WriteVerbs
   * @classdesc
   * <pre class="display border outline">
   * <span class="input">&gt; drop flugelhorn</span>
   * You drop the jewel encrusted flugelhorn. It emits a sad little blat.
   * </pre>
   * <p>
   * <strong>Drop</strong> a {@link adventurejs.Tangible|Tangible}
   * {@link adventurejs.Asset|Asset}. Requires that the Asset is
   * in subject's inventory.
   * </p>
   * @ajsverbreactions doRemoveThisFromThat, doRemoveThatFromThis, doMoveThisToThat, doMoveThatToThis
   * @ajsverbphases doBeforeTry, doAfterTry, doBeforeSuccess, doAfterSuccess
   */
  A.Preverbs.drop = {
    name: "drop",
    prettyname: "drop",
    past_tense: "dropped",
    synonyms: ["drop"],
    // verb_prep_noun: ["put down"],
    enqueue_collections: true,
    gerund: "dropping",

    /**
     * @ajsverbstructures
     * @memberof close
     */
    accepts_structures: ["verb noun", "verb noun preposition noun"],

    /**
     * @memberof drop
     * @ajsverbphrase
     * phrase1:
     * {
     *   accepts_noun: true,
     *   requires_noun: true,
     *   accepts_plural_noun: true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     in_inventory: true,
     *     not_worn_if_all: true,
     *     not_nested_inventory_if_all: true,
     *   },
     * },
     */
    phrase1: {
      accepts_noun: true,
      requires_noun: true,
      accepts_plural_noun: true,
      noun_must_be: {
        known: true,
        in_inventory: true,
        not_worn_if_all: true,
        not_nested_inventory_if_all: true,
      },
    },

    /**
     * @memberof drop
     * @ajsverbphrase
     * phrase2:
     * {
     *   accepts_noun:true,
     *   requires_noun: true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     tangible: true,
     *     present: true,
     *     visible: true,
     *   accepts_preposition: true,
     *   requires_preposition: true,
     * },
     */
    phrase2: {
      accepts_noun: true,
      requires_noun: true,
      noun_must_be: {
        known: true,
        tangible: true,
        present: true,
        visible: true,
        singular: false,
      },
      accepts_preposition: true,
      requires_preposition: true,
    },

    /**
     * @memberof drop
     * @ajsverbparams
     * with_params: {},
     */
    with_params: {},

    doTry: function () {
      var input = this.game.getInput();
      var subject = input.getSubject();
      var verb_phrase = input.verb_phrase;
      var direct_object = input.getAsset(1);
      var indirect_object = input.getAsset(2);
      var indirect_preposition = input.getPreposition(2);
      var room = this.game.getCurrentRoom();
      var results;
      var msg = "";

      if (verb_phrase === "put down") {
        //
      }

      // sentence structure: verb noun preposition noun
      // ex: drop cell phone into trash bin
      if (input.hasStructure("verb noun preposition noun")) {
        if (indirect_object.hasClass("Floor")) {
          if (!room.has_floor) {
            this.game.debug(
              `D2068 | ${this.name}.js | ${room.id}.has_floor is false `
            );
            msg += `$(We) can't see a floor here. `;
            this.handleFailure(msg);
            return null;
          }
          if (indirect_preposition !== "on") {
            this.game.debug(
              `D2069 | ${this.name}.js | ${this.name} ${indirect_preposition} not handled `
            );
            msg += `$(We) $(don't) know how to ${this.name} ${direct_object.articlename} ${indirect_preposition} ${indirect_object.articlename}. `;
            this.handleFailure(msg);
            return null;
          }
          // treat it like "drop thing"
          input.deletePhrase(2);
          input.setStructure("verb noun");
        } else if (indirect_object.hasClass("Room")) {
          if (indirect_preposition !== "in") {
            this.game.debug(
              `D2070 | ${this.name}.js | ${this.name} ${indirect_preposition} not handled `
            );
            msg += `$(We) $(don't) know how to ${this.name} ${direct_object.articlename} ${indirect_preposition} ${indirect_object.articlename}. `;
            this.handleFailure(msg);
            return null;
          }
          // treat it like "drop thing"
          input.deletePhrase(2);
          input.setStructure("verb noun");
        } else {
          this.game.debug(
            `D2030 | ${this.name}.js | inferring put, doVerb put `
          );
          return this.game.dictionary.doVerb("put");
        }
      }

      if ("all" === input.parsedNoun1.original_input && direct_object.is.worn) {
        this.game.debug(
          `D1263 | ${this.name}.js | ${direct_object}.is.worn, not dropping it `
        );
        return null;
      }

      if (
        "all" === input.parsedNoun1.original_input &&
        direct_object.getPlaceAssetId() !== this.game.world._player
      ) {
        this.game.debug(
          `D1264 | ${this.name}.js | ${direct_object} is not direct child of subject, not dropping it `
        );
        return null;
      }

      // subject is holding it, not carrying it, like a rope
      if (
        subject.isConnectedToAsset("hold", direct_object, "to_dov") &&
        direct_object.isDOV("release")
      ) {
        this.game.debug(
          `D1265 | ${this.name}.js | subject is holding ${direct_object}, infer release `
        );
        return this.game.dictionary.doVerb("release");
      }

      if (!direct_object.isWithin(subject)) {
        this.game.debug(
          `D1266 | ${this.name}.js | ${direct_object.id}+" is not child of subject `
        );
        msg += `$(We're) not carrying ${direct_object.articlename}. `;
        this.handleFailure(msg);
        return null;
      }

      if (subject.getNestId() === direct_object.id) {
        this.game.debug(
          `D1267 | ${this.name}.js | subject is nested on ${direct_object.id}`
        );
        msg += `$(We) can't ${this.name} ${direct_object.articlename} ${
          indirect_preposition ? indirect_preposition : ""
        } ${
          indirect_object ? indirect_object.articlename : ""
        } while $(we're) ${subject.getPostureGerund()} ${subject.getNestPreposition()} it. `;
        this.handleFailure(msg);
        return null;
      }

      return true;
    },

    doSuccess: function () {
      var input = this.game.getInput();
      var subject = input.getSubject();
      var verb_phrase = input.verb_phrase;
      var direct_object = input.getAsset(1);
      var indirect_object = input.getAsset(2);
      var room = this.game.getCurrentRoom();
      var nest_asset = subject.getNestAsset();
      var nest_preposition = subject.getNestPreposition();
      var msg = "";
      var removedItem = false;
      var results;

      if (direct_object.is.worn) {
        results = direct_object.unfasten();
        msg += results ? `$(We) ${results}, remove, ` : `$(We) remove `;
        msg += `and drop ${direct_object.articlename}. `;
        direct_object.incrementDoVerbCount("remove", "dov");
        direct_object.is.worn = false;
      } else {
        // compose output
        msg += `$(We) drop ${direct_object.articlename}. `;
      }

      // remove thing from subject
      results = subject.onRemoveThatFromThis(direct_object);
      if ("undefined" !== typeof results) return results;

      // set thing's new location to subject's location
      // if nested, try to put there, otherwise in room
      if (nest_asset) {
        results = this.tryToPutThisInThatAspect(
          direct_object,
          subject.getNestPreposition(),
          nest_asset
        );
      }
      if (nest_asset && !results.fail) {
        results = nest_asset.onMoveThatToThis(direct_object, nest_preposition);
        if ("undefined" !== typeof results) return results;
      } else {
        results = room.onMoveThatToThis(direct_object, "in");
        if ("undefined" !== typeof results) return results;
      }

      if (
        (1 < input.parsedNoun1.matches.qualified.length ||
          this.game.parser.isParsingMultiple()) &&
        -1 === input.output_class.indexOf("concatenate_output")
      ) {
        input.output_class += " concatenate_output ";
      }

      // print output
      return this.handleSuccess(msg, direct_object);
    },
  };
})(); // drop