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

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

  /**
   * @augments {adventurejs.Verb}
   * @class unscrew
   * @ajsnode game.dictionary.verbs.unscrew
   * @ajsconstruct MyGame.createVerb({ "name": "unscrew", [...] });
   * @ajsconstructedby adventurejs.Dictionary#createVerb
   * @hideconstructor
   * @ajsinstanceof Verb
   * @ajsnavheading ManipulationVerbs
   * @summary Verb meaning unscrew, as in "unscrew table leg".
   * @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; unscrew table leg</span>
   * You unscrew the thick table leg. A bottle cap falls out of the
   * screw hole and pings to the floor. You pick up the bottle cap.
   * Red Devil Brewery. Could it be a clue?
   * </pre>
   * <p>
   * <strong>Unscrew</strong> a {@link adventurejs.Tangible|Tangible}
   * {@link adventurejs.Asset|Asset}.
   * Requires that the Asset has
   * asset.dov.unscrew.enabled set to true.
   * </p>
   * @ajsverbreactions
   * @ajsverbphases doBeforeTry, doAfterTry, doBeforeSuccess, doAfterSuccess
   */
  A.Preverbs.unscrew = {
    name: "unscrew",
    synonyms: ["unscrew"],
    past_tense: "unscrewed",
    prettyname: "unscrew",
    unstate: "screwed",
    gerund: "unscrewing",

    /**
     * @ajsverbstructures
     * @memberof unscrew
     */
    accepts_structures: [
      "verb noun", // unscrew lightbulb
      "verb noun preposition noun", // unscrew thing with thing, unscrew thing from thing
      "verb noun preposition noun preposition noun", // unscrew thing from thing with thing
    ],

    /**
     * @memberof unscrew
     * @ajsverbphrase
     * phrase1:
     * {
     *   accepts_noun: true,
     *   requires_noun: true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     tangible: true,
     *     present: true,
     *     visible: true,
     *     reachable: true,
     *   },
     * },
     */
    phrase1: {
      accepts_noun: true,
      requires_noun: true,
      noun_must_be: {
        known: true,
        tangible: true,
        present: true,
        visible: true,
        reachable: true,
      },
    },

    /**
     * @memberof unscrew
     * @ajsverbphrase
     * phrase2:
     * {
     *   accepts_noun:true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     tangible: true,
     *     present: true,
     *     visible: true,
     *     reachable: true,
     *   },
     *   accepts_preposition: true,
     *   requires_preposition: true,
     *   accepts_these_prepositions: [ 'from', 'with' ],
     * },
     */
    phrase2: {
      accepts_noun: true,
      noun_must_be: {
        known: true,
        tangible: true,
        present: true,
        visible: true,
        reachable: true,
      },
      accepts_preposition: true,
      requires_preposition: true,
      accepts_these_prepositions: ["from", "with"],
    },

    /**
     * @memberof unscrew
     * @ajsverbphrase
     * phrase3:
     * {
     *   accepts_noun: true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     tangible: true,
     *     present: true,
     *     reachable: true,
     *   },
     *   accepts_preposition:true,
     *   requires_preposition: true,
     *   accepts_these_prepositions: ["with"],
     * },
     */
    phrase3: {
      accepts_noun: true,
      noun_must_be: {
        known: true,
        tangible: true,
        present: true,
        reachable: true,
        //visible: true,
      },
      accepts_preposition: true,
      requires_preposition: true,
      accepts_these_prepositions: ["with"],
    },

    /**
     * @memberof unscrew
     * @ajsverbparams
     * with_params: {},
     */
    with_params: {
      max_turns: 1,
      on_unscrew_take: true,
    },

    doTry: function () {
      var input = this.game.getInput();
      var subject = input.getSubject();
      var verb_phrase = input.verb_phrase;
      var direct_object = input.getAsset(1);
      var direct_preposition = input.getPreposition(1);
      var indirect_object = input.getAsset(2);
      var indirect_preposition = input.getPreposition(2);
      var indirect_object2 = input.getAsset(3);
      var indirect_preposition2 = input.getPreposition(3);
      var target_object, target_preposition;
      var tool_preposition = "with";
      var tool_object;
      var tool_inferred;

      var results;
      var msg = "";

      if (indirect_preposition === "with") {
        tool_object = indirect_object;
      }
      if (indirect_preposition2 === "with") {
        tool_object = indirect_object2;
      }
      if (indirect_preposition && "with" !== indirect_preposition) {
        target_object = indirect_object;
        target_preposition = indirect_preposition;
      }

      // can't unscrew
      if (!direct_object.isDOV("unscrew")) {
        this.game.debug(
          `D1474 | ${this.name}.js | ${direct_object.id}.dov.${this.name}.enabled is false `
        );
        msg += `$(We) can't ${this.name} ${direct_object.articlename}. `;
        this.handleFailure(msg);
        return null;
      }

      // single use direct object?
      if (
        direct_object.allowVerbOnce(this.name, "dov") &&
        direct_object.didVerb(this.name, "dov")
      ) {
        this.game.debug(
          `D1473 | ${this.name}.js | ${direct_object.id}.dov.${this.name}.once and ${direct_object.id}.did.${this.name}.directly `
        );
        msg += `${direct_object.Articlename} has already been ${this.past_tense}. `;
        this.handleFailure(msg);
        return false;
      }

      // verb state?
      if (this.hasState() && direct_object.isVerbState(this.name)) {
        this.game.debug(
          `D2156 | ${this.name}.js | ${
            direct_object.id
          }.is.${this.getState()} is ${direct_object.isVerbState(this.name)}`
        );
        msg += `${direct_object.Articlename_is} already ${this.getState()}. `;
        this.handleFailure(msg);
        return null;
      }

      // sentence structure: verb noun
      if (input.hasStructure("verb noun")) {
        // can verb act without an indirect object?
        if (direct_object.allowVerbWithNothing(this.name, "dov")) {
          return true;
        }

        // indirect objects available?
        if (!direct_object.hasIndirectObjects(this.name)) {
          this.game.debug(
            `D1018 | ${this.name}.js | ${direct_object.id}.dov.${this.name}.with_nothing is false `
          );
          msg += `$(We) $(don't) know of a way to ${this.name} ${direct_object.articlename}. `;
          this.handleFailure(msg);
          return false;
        }

        // infer indirect object?
        results = this.tryToInferIndirectObject({
          direct_object: direct_object,
          context: subject,
          handle_input: true,
        });
        if (results.prompt) {
          this.game.debug(`D1101 | ${this.name}.js | soft prompt for noun2 `);
          msg += `What would $(we) like to ${this.name} ${direct_object.articlename} with? `;
          this.handleFailure(msg);
          return false;
        } else if (results.success) {
          tool_inferred = true;
          tool_object = results.indirect_object;
          tool_preposition = "with";
          this.game.printInferred(
            `${tool_preposition} ${tool_object.articlename}`
          );
        }
      } // verb noun

      // tool_object
      // acting as sentence structure: verb noun preposition noun
      if (tool_object) {
        input.verb_params.tool_object = tool_object;
        input.verb_params.tool_preposition = tool_preposition;
        // is subject holding asset?
        // only error if tool_object was specified, not inferred
        if (
          !this.game.parser.selectInHands(tool_object.id).length &&
          !tool_inferred
        ) {
          this.game.debug(
            `D1102 | ${this.name}.js | ${tool_object.id}.$is("inhands") is false `
          );
          msg += `$(We're) not holding ${tool_object.articlename}. `;
          this.handleFailure(msg);
          return null;
        }

        // works with any indirect object?
        if (direct_object.allowVerbWithAnything(this.name, "dov")) {
          return true;
        }

        // indirect object not required?
        if (direct_object.allowVerbWithNothing(this.name, "dov")) {
          this.game.debug(
            `D1221 | ${this.name}.js | ${direct_object.id}.dov.${this.name}.with_nothing `
          );
          msg += `$(We) $(don't) need ${tool_object.articlename} to ${this.name} ${
            direct_preposition ? direct_preposition : ""
          } ${direct_object.articlename}. `;
          this.handleFailure(msg);
          return null;
        }

        // indirect object usable with direct object?
        if (!direct_object.allowVerbWithAsset(this.name, tool_object, "dov")) {
          this.game.debug(
            `D1223 | ${this.name}.js | ${direct_object.id}.dov.${this.name}.with_assets/with_classes does not include ${tool_object.id} `
          );
          msg += `$(We) can't ${this.name} ${direct_object.articlename} ${tool_preposition} ${tool_object.articlename}. `;
          this.handleFailure(msg);
          return null;
        }

        // can indirect object be used?
        if (!tool_object.isIOV(this.name)) {
          this.game.debug(
            `D1229 | ${this.name}.js | ${tool_object.id}.iov.${this.name}.enabled is false `
          );
          msg += `$(We) can't ${this.name} ${
            direct_preposition ? direct_preposition : ""
          } anything ${tool_preposition} ${tool_object.articlename}. `;
          this.handleFailure(msg);
          return false;
        }

        // single use indirect object?
        if (
          tool_object.allowVerbOnce(this.name, "iov") &&
          tool_object.iDidVerb(this.name, "iov")
        ) {
          this.game.debug(
            `D1397 | ${this.name}.js | ${tool_object.id}.iov.${
              this.name
            }.once and ${tool_object.id}.did.${this.name}.indirectly is ${
              tool_object.did[this.name].indirectly
            } `
          );
          msg += `${tool_object.Articlename} has already been used to ${
            this.name
          } ${direct_preposition ? direct_preposition : ""} something. `;
          this.handleFailure(msg);
          return null;
        }
      } // tool_object

      // target_object
      if (target_object) {
        input.verb_params.target_object = target_object;
        input.verb_params.target_preposition = target_preposition;
        // is this already in that?
        if (
          direct_object.getPlaceAssetId === target_object.id &&
          direct_object.isPlacedAtAspect("attached")
        ) {
          if (
            direct_object.is.screwed >=
            direct_object.dov[this.name].with_params.max_turns
          ) {
            this.game.debug(
              `D1475 | ${this.name}.js | ${direct_object.id} is already screwed  ${target_preposition} ${target_object.id}`
            );
            msg += `${direct_object.Articlename_is} already screwed ${target_preposition}    } to ${indirect_object.articlename}. `;
            this.handleFailure(msg);
            return null;
          }
        } // already attached

        // can we attach this particular thing to that particular thing?
        else {
          results = this.tryToPutThisInThatAspect(
            direct_object,
            target_preposition,
            target_object
          );
          if (results.fail) {
            msg = results.msg;
            this.handleFailure(msg);
            if (results.end_turn) return false;
            return null;
          }
        }
      } // target_object

      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 direct_preposition = input.getPreposition(1);

      var tool_object = input.verb_params.tool_object;
      var tool_preposition = input.verb_params.tool_preposition;

      var doParent = direct_object.getPlaceAsset();
      // var indirect_object = input.getAsset(2);
      var msg = "";
      var results;
      var removed = false;
      var taken = false;

      // apply state changes
      // this.setState(direct_object, false);
      direct_object.is.screwed = Math.max(direct_object.is.screwed - 1, 0);
      removed = direct_object.is.screwed <= 0;

      if (removed) {
        // remove thing from current parent
        results = direct_object.moveFrom(doParent);
        if ("undefined" !== typeof results) return results;

        if (direct_object && direct_object.isDOV("take")) {
          // if thing is takeable add thing to subject
          results = direct_object.moveTo("in", subject);
          if ("undefined" !== typeof results) return results;
          taken = true;
        } else {
          // otherwise move it to the room
          results = direct_object.moveTo("in", this.game.getCurrentRoom());
          if ("undefined" !== typeof results) return results;
        }
      }

      // compose output
      msg +=
        `$(We) ${this.agree()}` +
        `${direct_preposition ? " " + direct_preposition : ""}` +
        `${direct_object ? " " + direct_object.articlename : ""}` +
        `${!removed} ?" a turn":""` +
        `${tool_preposition ? " " + tool_preposition : ""}` +
        `${tool_object ? " " + tool_object.articlename : ""}` +
        `${taken} ? " and take " + ${direct_object.articlename}:""` +
        `. `;

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