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

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

  /**
   * @augments {adventurejs.Verb}
   * @class tell
   * @ajsnode game.dictionary.verbs.tell
   * @ajsconstruct MyGame.createVerb({ "name": "tell", [...] });
   * @ajsconstructedby adventurejs.Dictionary#createVerb
   * @hideconstructor
   * @ajsinstanceof Verb
   * @ajsnavheading Conversation Verbs
   * @summary Verb meaning tell, as in "tell anteater about anthill".
   * @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; </span>
   *
   * </pre>
   * <p>
   * Description of the verb.
   * </p>
   * @ajsverbreactions
   * @ajsverbphases doBeforeTry, doAfterTry, doBeforeSuccess, doAfterSuccess
   */
  A.Preverbs.tell = {
    name: "tell",
    prettyname: "tell about",
    past_tense: "told",
    synonyms: ["tellabout"],
    //verb_prep_noun: ["tell about"], // tell about thing
    //verb_noun_prep_noun: ["tell about"], // tell person about thing
    gerund: "telling",

    /**
     * @ajsverbstructures
     * @memberof tell
     */
    accepts_structures: [
      "verb noun", // tell char
      "verb noun preposition noun", // tell char about thing
    ],

    /**
     * @memberof tell
     * @ajsverbphrase
     * phrase1:
     * {
     *   accepts_noun: true,
     *   requires_noun: true,
     *   noun_must_be:
     *   {
     *     known: true,
     *     present: true,
     *   },
     * },
     */
    phrase1: {
      accepts_noun: true,
      requires_noun: true,
      noun_must_be: {
        known: true,
        present: true,
      },
    },

    /**
     * @memberof tell
     * @ajsverbphrase
     * phrase2:
     * {
     *   accepts_noun: true,
     *   requires_noun: true,
     *   noun_must_be:
     *   {
     *     known: true,
     *   },
     * },
     */
    phrase2: {
      accepts_noun: true,
      requires_noun: true,
      noun_must_be: {
        known: true,
      },
    },

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

    doTry: function () {
      var input = this.game.getInput();
      var verb_phrase = input.verb_phrase;
      var direct_object = input.getAsset(1);
      var indirect_object = input.getAsset(2);
      var msg = "";

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

      // no indirect object given
      // if( "undefined" === typeof input.parsedNoun2 )
      // {
      //   input.parsedNoun2 = A.clone.call(this.game, input.parsedNoun1 );
      //   input.parsedNoun1 = undefined;
      //   input.setSoftPrompt({ index: 2, type: "noun", noun1: true, verb: 'tell' });
      //   var msg = "To whom would you like to tell it? ";
      //   this.handleFailure(msg);
      //   return null;
      // }

      // can't talk to non-characters
      if (!(direct_object instanceof adventurejs.Character)) {
        this.game.debug(
          `D1441 | ${this.name}.js | ${direct_object.id} is not class Character `
        );
        msg += `${direct_object.Articlename} can't hear $(us). `;
        this.handleFailure(msg);
        return null;
      }

      // can't talk to characters with ask unset
      if (!direct_object.isDOV(this.name)) {
        this.game.debug(
          `D1334 | ${this.name}.js | ${direct_object.id}.dov.${this.name} is unset`
        );
        msg += `${direct_object.Articlename} doesn't seem interested. `;
        this.handleFailure(msg);
        return null;
      }

      return true;
    },

    doSuccess: function () {
      var input = this.game.getInput();
      var verb_phrase = input.verb_phrase;
      var direct_object = input.getAsset(1);
      var indirect_object = input.getAsset(2);
      var player;
      var direct_object;
      var msg = "";

      // tell x about y
      msg += `$(We) tell ${direct_object.articlename}${indirect_object ? " about " + indirect_object.articlename : ""}. `;

      // transfer of knowledge

      return this.handleSuccess(msg, direct_object);
    },
  };
})(); // tell