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

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

  /**
   * @augments {adventurejs.Verb}
   * @class stand
   * @ajsnode game.dictionary.verbs.stand
   * @ajsconstruct MyGame.createVerb({ "name": "stand", [...] });
   * @ajsconstructedby adventurejs.Dictionary#createVerb
   * @hideconstructor
   * @ajsinstanceof Verb
   * @ajsnavheading PositionVerbs
   * @summary Verb meaning stand, as in "stand up" or "stand on trap door".
   * @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; stand in pentagram</span>
   * You stand in the pentagram. Eldritch energies
   * flicker and rise from the chalked symbol, protecting
   * you or trapping you inside, you're not sure which.
   * </pre>
   * <p>
   * <strong>Stand in</strong> requires that the
   * {@link adventurejs.Tangible|Tangible}
   * {@link adventurejs.Asset|Asset} has an <strong>in</strong>
   * {@link adventurejs.Aspect|Aspect}
   * and that its
   * aspect.nest.can.stand
   * property is set to true.
   * If subject is already in the Asset, subject will move to
   * a standing position.
   * See
   * <a href="/doc/Tangibles_Aspects.html">How to Use Aspects</a>
   * to learn more.
   * </p>
   * @ajsverbreactions doNestThatToThis, doNestThisToThat, doUnnestThatFromThis, doUnnestThisFromThat
   * @ajsverbphases doBeforeTry, doAfterTry, doBeforeSuccess, doAfterSuccess
   */
  A.Preverbs.stand = {
    name: "stand",
    prettyname: "stand",
    past_tense: "stood",
    synonyms: ["stand"],
    gerund: "standing",
    // verb_prep_noun: ["stand up", "get up", "stand down"],

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

    subject_must_be: {
      not_constrained: true,
      //not_on_floor: true,
      //not_nested_elsewhere: true,
    },

    /**
     * @memberof stand
     * @ajsverbphrase
     * phrase1:
     * {
     *   accepts_noun: true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     tangible: true,
     *     present: true,
     *     visible: true,
     *     reachable: true,
     *     not_direction: true,
     *     not_in_inventory: true,
     *   },
     *   accepts_preposition: true,
     *   requires_preposition: true,
     * },
     */
    phrase1: {
      accepts_noun: true,
      noun_must_be: {
        known: true,
        tangible: true,
        present: true,
        visible: true,
        reachable: true,
        not_direction: true,
        // not_in_inventory: true,
      },
      accepts_preposition: true,
      accepts_preposition_without_noun: true,
      requires_preposition: true,
    },

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

    in_can_mean_on: 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 nest_asset = subject.getNestAsset();
      var nest_preposition = subject.getNestPreposition();
      var current_room = this.game.getCurrentRoom();
      var target;
      var msg = "";
      var results;

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

      // sentence structure: verb
      if (input.hasStructure("verb")) {
        // already standing
        if (subject.is.standing) {
          this.game.debug(
            `D1099 | ${this.name}.js | ${subject.id}.is.standing`
          );
          msg += `$(We're) already standing! `;
          this.handleFailure(msg);
          return null;
        }
        if (nest_asset && !nest_asset.hasQuirk("stand_means_get_off")) {
          direct_preposition = subject.getNestOrPlacePreposition();
          direct_object = nest_asset;
        } else {
          direct_preposition = "on";
          direct_object = this.game.getCurrentRoomFloor();
        }
        input.setAsset(1, direct_object);
        input.setPreposition(1, direct_preposition);
        input.setStructure("verb preposition noun");
      }

      // sentence structure: verb preposition
      if (input.hasStructure("verb preposition")) {
        // player input "stand down"
        if (direct_preposition === "down") {
          this.game.debug(
            `D1023 | ${this.name}.js | no response for idiom 'stand down'`
          );
          msg += `YES, SIR! `;
          this.handleFailure(msg);
          return null;
        }

        if (direct_preposition !== "up") {
          this.game.debug(
            `D1096 | ${this.name}.js | no response for idiom 'stand down'`
          );
          msg += `$(We) $(don't) know how to stand ${direct_preposition}. `;
          this.handleFailure(msg);
          return null;
        }

        // already standing
        if (subject.is.standing) {
          this.game.debug(`D1024 | ${this.name}.js | subject.is.standing`);
          msg += `$(We're) already standing! `;
          this.handleFailure(msg);
          return null;
        }
      } // verb preposition

      // sentence structure: verb preposition
      if (
        input.hasStructure("verb") ||
        input.hasStructure("verb preposition")
      ) {
        // player input "stand" or "stand up"

        if (
          nest_asset &&
          (nest_asset.hasQuirk("stand_means_get_off") ||
            ("get" === input.input_verb &&
              nest_asset.hasQuirk("get_up_means_get_off")))
        ) {
          // if quirks.stand_means_get_off, go straight to doSuccess
          // return true;
          direct_object = this.game.getCurrentRoomFloor();
          direct_preposition = "on";
        } else if (nest_asset) {
          direct_object = nest_asset;
          direct_preposition = nest_preposition;
        } else {
          // see if the room has its own floor
          direct_object = this.game.getCurrentRoomFloor();
          direct_preposition = "on";
        }

        // we should now be able to assume a direct object
        if (direct_object) {
          input.setAsset(1, direct_object);
          input.setPreposition(1, direct_preposition);
          input.setInferred(1, true);
          input.setStructure("verb preposition noun");
          if (nest_asset && direct_object.hasClass("Floor")) {
            this.game.printInferred(
              `${subject.getPrettyUnnestPreposition()} ${nest_asset.articlename}`
            );
          } else {
            this.game.printInferred(
              `${direct_preposition} ${direct_object.articlename}`
            );
          }
        }
      } // verb || verb preposition

      // sentence structure: verb preposition noun
      if (input.hasStructure("verb preposition noun")) {
        // is subject allowed to stand here?
        if (
          !subject.can.stand ||
          !direct_object.aspects[direct_preposition]?.canCharacter("stand")
        ) {
          this.game.debug(
            `D1025 | ${this.name}.js | ${
              !subject.can.stand
                ? subject.id + ".can.stand is unset"
                : direct_object.id +
                  ".aspects." +
                  direct_preposition +
                  ".nest.can.stand is unset"
            }`
          );
          msg += `$(We) can't ${this.name} ${direct_preposition} ${direct_object.articlename}. `;
          this.handleFailure(msg);
          return null;
        }

        // can subject reach it?
        if (nest_asset && nest_asset.id !== direct_object.id) {
          results = this.canCharacterGoThereFromNest(
            direct_preposition,
            direct_object
          );
          if (results.failure) {
            // this.handleFailure(results.msg);
            // return null;
            return this.game.dictionary.doVerb("go");
          }
          // if (results.return) return true;
        }

        // subject is nested some other way with target
        // and needs to unnest first
        if (
          nest_asset &&
          nest_asset.id === direct_object.id &&
          nest_preposition !== direct_preposition
        ) {
          this.game.debug(
            `D1028 | ${this.name}.js | subject is otherwise nested ${nest_preposition} ${nest_asset.id}`
          );
          msg += `$(We) can't do that from $(our) position ${subject.getPostureGerund()} ${nest_preposition} ${
            nest_asset.articlename
          }. `;
          this.handleFailure(msg);
          return null;
        }

        // subject is already standing [preposition] target
        if (subject.is.standing) {
          var already_on_it;

          if (
            nest_asset &&
            nest_asset.id === direct_object.id &&
            nest_preposition === direct_preposition
          ) {
            already_on_it = true;
          }
          if (!nest_asset && direct_object instanceof adventurejs.Floor) {
            already_on_it = true;
          }

          if (already_on_it) {
            this.game.debug(
              `D1029 | ${this.name}.js | subject.is.standing ${direct_preposition} ${direct_object.id} `
            );
            msg += `$(We're) already standing ${direct_preposition} ${direct_object.articlename}. `;
            this.handleFailure(msg);
            return null;
          }
        }
      }

      target = direct_object;
      if (target?.placePreventsNesting(subject)) {
        this.game.debug(
          `D2095 | ${this.name}.js | ${target.id}.is.deep_nest is false `
        );
        msg += `$(We) can't do that while ${target.articlename_is} 
          ${target.getPrettyPlacePreposition()}
          ${target.getPlaceAsset().articlename}. `;
        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 direct_preposition = input.getPreposition(1);
      var indirect_object = input.getAsset(2);
      var indirect_preposition = input.getPreposition(2);
      var nest_asset = subject.getNestAsset();
      var nest_preposition = subject.getNestPreposition();
      var do_nest, do_unnest;
      var fromfloor;
      var tofloor;
      var results;
      var msg = "";

      tofloor = direct_object instanceof adventurejs.Floor;
      fromfloor = !nest_asset || nest_asset instanceof adventurejs.Floor;

      // floor to floor
      if (fromfloor && tofloor) {
        do_unnest = true;
        this.game.log(
          "L1338",
          "log",
          "high",
          `${this.name}.js > from floor to floor `,
          "verbs"
        );
        msg += `$(We) rise to ${this.name}. `;
      }

      // floor to nest or change positions on nest
      else if (
        (fromfloor && !tofloor) ||
        (nest_asset && nest_asset.id === direct_object.id)
      ) {
        do_unnest = nest_asset && nest_asset.id !== direct_object.id;
        do_nest = fromfloor && !tofloor;
        this.game.log(
          "L1339",
          "log",
          "high",
          `${this.name}.js > from floor to asset or change position on asset `,
          "verbs"
        );
        msg += `${
          fromfloor && subject.posture !== "stand"
            ? "$(We) rise from the floor and "
            : "$(We) "
        } ${this.name} ${direct_preposition} ${direct_object.articlename}. `;
      }

      // nest_asset to floor - unnest
      else if (!fromfloor && tofloor) {
        do_unnest = true;
        this.game.log(
          "L1340",
          "log",
          "high",
          `${this.name}.js > from asset to floor `,
          "verbs"
        );
        msg += `$(We) get ${subject.getPrettyUnnestPreposition()} ${
          nest_asset.articlename
        } and ${this.name} ${direct_preposition} ${
          direct_object.articlename
        }. `;
      }

      // nest_asset to same nest_asset
      else if (!fromfloor && !tofloor && direct_object.id === nest_asset.id) {
        if (subject.is.lying || subject.is.sitting || subject.is.kneeling) {
          this.game.log(
            "L1341",
            "log",
            "high",
            `${this.name}.js > change posture on floor `,
            "verbs"
          );
          msg += `$(We) ${this.agree()} ${nest_preposition} ${direct_object.articlename}. `;
        }
      }

      // nest_asset to other nest_asset
      else if (!fromfloor && !tofloor && direct_object.id !== nest_asset.id) {
        do_nest = true;
        do_unnest = true;
        this.game.log(
          "L1342",
          "log",
          "high",
          `${this.name}.js > move from one asset to another `,
          "verbs"
        );
        msg += `$(We) move over to ${direct_object.articlename} and ${this.name} ${direct_preposition} it. `;
      }

      if (do_unnest && nest_asset) {
        results = subject.onUnnestThisFromThat(nest_asset);
        if ("undefined" !== typeof results) return results;
      }

      if (do_nest && direct_object) {
        results = subject.onNestThisToThat(direct_object, direct_preposition);
        if ("undefined" !== typeof results) return results;
      }

      subject.posture = this.name;

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