// verifyCharacterCanDoVerb.js
(function () {
/*global adventurejs A*/
var p = adventurejs.Parser.prototype;
/**
* Verify that any a character commanded to perform a verb
* can do that verb, as in "Floyd, go east".
* @memberOf adventurejs.Parser
* @method adventurejs.Parser#verifyCharacterCanDoVerb
* @param {string} optional_verb An optional verb. If not provided, method uses this_turn.input_verb.
* @returns boolean
*/
p.verifyCharacterCanDoVerb = function Parser_verifyCharacterCanDoVerb(
optional_verb
) {
var this_turn = this.input_history[0];
this.game.log(
"L1332",
"log",
"high",
"verifyCharacterCanDoVerb.js > " + this_turn.getSubject().id,
"Parser"
);
console.warn(
"verifyCharacterCanDoVerb.js > this_turn.input_verb",
this_turn.input_verb
);
const character = this_turn.getSubject();
const player = this.game.getPlayer();
const verb_name =
optional_verb || this.game.parser.parseVerb(this_turn.input_verb);
let msg = "";
if (character.id !== player.id && !character.can[verb_name]) {
this.game.debug(
`D1180 | verifyCharacterCanDoVerb.js | ${character.id}.can.${verb_name} is unset `
);
let user_pronoun =
this.game.dictionary.pronouns[this.game.getPlayer().pronouns]["our"];
msg += character.ignore_msg || `$(We) ignores ${user_pronoun} command. `;
this.game.print(msg);
return false;
}
return true;
};
})(); // verifyCharacterCanDoVerb