// move.js
(function () {
/*global adventurejs A*/
/**
* @augments {adventurejs.Verb}
* @class move
* @ajsnode game.dictionary.verbs.move
* @ajsconstruct MyGame.createVerb({ "name": "move", [...] });
* @ajsconstructedby adventurejs.Dictionary#createVerb
* @hideconstructor
* @ajsinstanceof Verb
* @ajsnavheading ManipulationVerbs
* @summary Verb meaning move an asset.
* @tutorial Scripting_VerbSubscriptions
* @tutorial Verbs_VerbAnatomy
* @tutorial Verbs_VerbProcess
* @tutorial Verbs_ModifyVerbs
* @tutorial Verbs_WriteVerbs
* @classdesc
* <pre class="display border outline">
* <span class="input">> move sofa north</span>
* You move the sofa north, into the parlor. Yup, it
* definitely looks better there against the sunny window.
* </pre>
* <p>
* <strong>Move</strong> a
* {@link adventurejs.Tangible|Tangible}
* {@link adventurejs.Asset|Asset} in a direction.
* Requires that the Asset has
* asset.dov.move.enabled set to true.
* If successful, will move
* subject and Asset to new
* {@link adventurejs.Room|Room}.
* </p>
* @ajsverbphases doBeforeTry, doAfterTry, doBeforeSuccess, doAfterSuccess
*/
A.Preverbs.move = {
name: "move",
prettyname: "move",
past_tense: "moved",
synonyms: ["move", "slide"],
gerund: "moving",
/**
* @ajsverbstructures
* @memberof move
*/
accepts_structures: [
"verb",
"verb noun",
"verb noun noun",
"verb noun preposition",
"verb noun preposition noun",
"verb noun preposition noun preposition noun",
],
/**
* @memberof move
* @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 move
* @ajsverbphrase
* phrase2:
* {
* accepts_noun:true,
* noun_must_be:
* {
* known: true,
* tangible: true,
* present: true,
* visible: true,
* reachable: true,
* // direction: true,
* },
* accepts_preposition: true,
* accepts_preposition_without_noun: true,
* },
*/
phrase2: {
accepts_noun: true,
noun_must_be: {
known: true,
tangible: true,
present: true,
visible: true,
reachable: true,
},
accepts_preposition: true,
accepts_preposition_without_noun: true,
},
/**
* @memberof move
* @ajsverbphrase
* phrase3:
* {
* // only supports form: move asset from asset to asset
* accepts_noun:true,
* accepts_preposition: true,
* requires_preposition: true,
* noun_must_be:
* {
* known: true,
* tangible: true,
* present: true,
* visible: true,
* reachable: true,
* },
* },
*/
phrase3: {
accepts_noun: true,
noun_must_be: {
known: true,
tangible: true,
present: true,
visible: true,
reachable: true,
},
accepts_preposition: true,
requires_preposition: true,
},
/**
* @memberof move
* @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 indirect_object2 = input.getAsset(3);
var indirect_preposition2 = input.getPreposition(3);
var results;
var msg = "";
var direct_object_place_asset = direct_object?.getPlaceAsset();
var direct_object_place_preposition =
direct_object?.getPlacePreposition();
var room = this.game.getCurrentRoom();
// sentence structure: verb
if (input.hasStructure("verb")) {
return true;
}
if (
((indirect_object && indirect_object.hasClass("Floor")) ||
(indirect_object2 && indirect_object2.hasClass("Floor"))) &&
!room.has_floor
) {
this.game.debug(
`D1680 | ${this.name}.js | ${room.id}.has_floor is false `
);
msg += `$(We) can't see a floor here. `;
this.handleFailure(msg);
return null;
}
if (indirect_object && indirect_object.hasClass("Floor")) {
indirect_object = this.game.getCurrentRoom();
input.setAsset(2, indirect_object);
}
if (indirect_object2 && indirect_object2.hasClass("Floor")) {
indirect_object2 = this.game.getCurrentRoom();
input.setAsset(3, indirect_object2);
}
if (!direct_object.isDOV(this.name) && !direct_object.isDOV("take")) {
// if you can't move it or take it, you can't move it
this.game.debug(
`D1351 | ${this.name}.js | ${direct_object.id}.dov.move.enabled is false `
);
msg += `${direct_object.Articlename} can't be ${this.past_tense}. `;
this.handleFailure(msg);
return null;
}
if (
indirect_object &&
indirect_object.direction &&
!direct_object.can.move_between_rooms &&
!direct_object.isDOV("take")
) {
this.game.debug(
`D1352 | ${this.name}.js | ${direct_object.id}.can.move_between_rooms is false `
);
msg += `$(We) try to ${this.name} ${direct_object.articlename} ${
indirect_object.direction
}, but ${direct_object.getPronoun("we're")} not going anywhere. `;
this.handleFailure(msg);
return null;
}
// sentence structure: verb noun preposition
// ex: move painting up
if (input.hasStructure("verb noun preposition")) {
if (
!this.game.dictionary.direction_lookup[indirect_preposition] &&
!indirect_preposition === "over"
) {
this.game.debug(
`D2083 | ${this.name}.js | ${this.name} ${indirect_preposition} not handled `
);
msg += `$(We) $(don't) know how to ${this.name} ${direct_object.articlename} ${indirect_preposition}. `;
this.handleFailure(msg);
return null;
}
return true;
} // verb noun preposition
// sentence structure: verb noun noun
// ex: move chair north
if (input.hasStructure("verb noun noun")) {
if (!indirect_object.direction) {
this.game.debug(
`D1675 | ${this.name}.js | ${indirect_object.id} is not direction `
);
msg += this.game.parser.getUnparsedMessage(input.getInput());
this.handleFailure(msg);
return null;
}
} // verb noun noun
// sentence structure: verb noun preposition noun
// ex: move statue to square
if (input.hasStructure("verb noun preposition noun")) {
// are direct and indirect the same asset?
if (direct_object === indirect_object) {
this.game.debug(
`D1676 | ${this.name}.js | direct_object ${direct_object.id} is indirect_object ${indirect_object.id} `
);
msg += `$(We) can't ${this.name} ${
direct_object.articlename
} ${indirect_preposition} ${direct_object.getPronoun("ourself")}. `;
this.handleFailure(msg);
return null;
}
// is prep across or over?
if (
indirect_preposition === "across" ||
indirect_preposition === "over"
) {
indirect_preposition = "on";
}
// is direct already placed within indirect?
if (
direct_object_place_preposition === indirect_preposition &&
direct_object_place_asset.id === indirect_object.id
) {
this.game.debug(
`D1109 | ${this.name}.js | ${direct_object.id} is already ${indirect_preposition} ${indirect_object.id} `
);
msg += `$(We) ${this.agree()} ${direct_object.articlename} around ${indirect_preposition} ${indirect_object.articlename} a bit. `;
this.handleFailure(msg);
return null;
}
// we want to get direct object's parent and change structure to
// verb noun preposition noun preposition noun
if (indirect_preposition === "from") {
if (!direct_object.isWithin(indirect_object)) {
this.game.debug(
`D1107 | ${this.name}.js | ${direct_object.id} is not within ${indirect_object.id} `
);
msg += `${direct_object.Articlename_isnt} anywhere within ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
}
if (indirect_preposition === "off") {
if (!direct_object.isOn(indirect_object)) {
this.game.debug(
`D1107 | ${this.name}.js | ${direct_object.id} is not on ${indirect_object.id} `
);
msg += `${direct_object.Articlename_isnt} on ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
input.setPreposition(2, "from");
indirect_preposition = "from";
}
if (indirect_preposition === "out") {
if (!direct_object.isIn(indirect_object)) {
this.game.debug(
`D2065 | ${this.name}.js | ${direct_object.id} is not in ${indirect_object.id} `
);
msg += `${direct_object.Articlename_isnt} in ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
input.setPreposition(2, "from");
indirect_preposition = "from";
}
}
// ask again in case we've mutated sentence structure
if (
input.hasStructure("verb noun preposition noun") &&
indirect_preposition === "to"
) {
if (direct_object_place_asset.id === indirect_object.id) {
// can't move from the room without specifying a target
this.game.debug(
`D2086 | ${this.name}.js | ${direct_object.id} is already ${direct_object_place_preposition} ${indirect_object.id} `
);
msg += `${direct_object.Articlename_is} already ${direct_object_place_preposition} ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
this.game.debug(
`D2067 | ${this.name}.js | move ${direct_object.id} to ${indirect_object.id} `
);
input.setAsset(3, direct_object_place_asset);
input.setPreposition(3, "from");
input.swapPhrases(2, 3);
input.setStructure("verb noun preposition noun preposition noun");
indirect_object = input.getAsset(2);
indirect_object2 = input.getAsset(3);
indirect_preposition = input.getPreposition(2);
indirect_preposition2 = input.getPreposition(3);
}
// ask again in case we've mutated sentence structure
if (
input.hasStructure("verb noun preposition noun") &&
indirect_preposition === "from"
) {
if (indirect_object.hasClass("Room")) {
// can't move from the room without specifying a target
this.game.debug(
`D2066 | ${this.name}.js | ${direct_object.id} can't be ${this.past_tense} from ${indirect_object.id} `
);
msg += `${direct_object.Articlename} can't be ${this.past_tense} from ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
input.setAsset(3, direct_object.getPlaceAsset());
input.setPreposition(3, "to");
input.setStructure("verb noun preposition noun preposition noun");
indirect_object2 = input.getAsset(3);
indirect_preposition2 = input.getPreposition(3);
}
// ask again in case we've mutated sentence structure
if (input.hasStructure("verb noun preposition noun")) {
//if (indirect_preposition === "on") indirect_preposition = "to";
if (
indirect_preposition === "toward" ||
indirect_preposition === "near"
) {
// is subject holding direct object and not indirect object?
// redirect to put
if (
direct_object.isWithin(subject) &&
indirect_object.isWithin(subject)
) {
this.game.debug(
`D1110 | ${this.name}.js | subject is carrying ${direct_object.id} and ${indirect_object.id} `
);
msg += `$(We) rub ${direct_object.articlename} against ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
// is subject holding direct object and not indirect object?
if (
direct_object.isWithin(subject) &&
!indirect_object.isWithin(subject)
) {
this.game.debug(
`D1683 | ${this.name}.js | subject is carrying ${direct_object.id} and not ${indirect_object.id} `
);
msg += `$(We) wave ${direct_object.articlename} toward ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
if (direct_object_place_asset.id === indirect_object.id) {
this.game.debug(
`D1677 | ${this.name}.js | ${direct_object.id} is ${direct_object_place_preposition} ${indirect_object.id}`
);
msg += `${direct_object.Articlename_is} already as close to ${
indirect_object.articlename
} as ${direct_object.getPronoun("we")} can get. `;
this.handleFailure(msg);
return null;
}
// are both things in the same place?
if (
direct_object_place_asset.id !== indirect_object.getPlaceAssetId()
) {
this.game.debug(
`D1682 | ${this.name}.js | ${direct_object.id} is not in the same place as ${indirect_object.id} `
);
msg += `$(We) slide ${direct_object.articlename} slightly in the direction of ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
} // toward near
else if (!indirect_object.hasAspectAt(indirect_preposition)) {
this.game.debug(
`D1679 | ${this.name}.js | ${indirect_object.id} has no aspect at ${indirect_preposition} `
);
msg += `$(We) can't ${this.name} anything ${indirect_preposition} ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
if (indirect_object.hasAspectAt(indirect_preposition)) {
results = this.tryToPutThisInThatAspect(
direct_object,
indirect_preposition,
indirect_object
);
if (results.fail) {
msg = results.msg;
this.handleFailure(msg);
if (results.end_turn) return false;
return null;
}
}
} // verb noun preposition noun
// sentence structure: verb noun preposition noun preposition noun
// ex: move a from b to c
if (input.hasStructure("verb noun preposition noun preposition noun")) {
// did subject input "move a from b to c"?
if (indirect_preposition === "to" && indirect_preposition2 === "from") {
// reverse because we prefer to handle from/to
input.swapPhrases(2, 3);
indirect_preposition = "from";
indirect_preposition2 = "to";
indirect_object = input.getAsset(2);
indirect_object2 = input.getAsset(3);
}
if (indirect_preposition !== "from" || indirect_preposition2 !== "to") {
// we don't handle any other phrases in this structure
this.game.debug(
`D1686 | ${this.name}.js | sentence structure is 'verb noun preposition noun preposition noun' but phrase is not handled`
);
msg += this.game.parser.getUnparsedMessage(input.getInput());
this.handleFailure(msg);
return null;
}
// is asset at the "from" location?
if (direct_object.getPlaceAssetId() !== indirect_object.id) {
this.game.debug(
`D1687 | ${this.name}.js | ${direct_object.id} is not ${indirect_object.default_aspect} ${indirect_object.id}`
);
msg += `${direct_object.Articlename_is} not ${indirect_object.default_aspect} ${indirect_object.articlename}. `;
this.handleFailure(msg);
return null;
}
} // verb noun preposition noun preposition noun
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 indirect_preposition = input.getPreposition(2);
var indirect_object2 = input.getAsset(3);
var indirect_preposition2 = input.getPreposition(3);
var msg = "";
var results;
var results1, results2;
var oldlocation;
// sentence structure: verb
if (input.hasStructure("verb")) {
msg += `$(We) ${this.agree()} around a bit. `;
}
//if (indirect_preposition === "on") indirect_preposition = "to";
// if (indirect_preposition === "in") indirect_preposition = "to";
// sentence structure: verb noun
if (input.hasStructure("verb noun")) {
msg += `$(We) ${this.agree()} ${direct_object.articlename} a bit. `;
}
// sentence structure: verb noun preposition
// ex: move painting up
if (input.hasStructure("verb noun preposition")) {
msg += `$(We) ${this.agree()} ${direct_object.articlename} ${indirect_preposition} a bit. `;
} // verb noun preposition
if (indirect_object && indirect_object.direction) {
let direction = this.game.getVerb(indirect_object.direction);
let adjective = direction?.adjective;
let article = direction?.article;
// @TODO reconsider whether "move east" does tryTravel
// results = this.game.tryTravel(indirect_object.direction, {
// with: [direct_object.id],
// });
// if (A.isFalseOrNull(results)) return results;
// no msg because tryTravel handled it
msg += `$(We) ${this.agree()} ${direct_object.articlename} a bit`;
msg += ` ${article ? "to " + article : "towards"}`;
msg += ` ${indirect_object.direction}. `;
// ${
// adjective ? adjective : indirect_object.direction
// }. `;
}
// sentence structure: verb noun preposition noun
if (input.hasStructure("verb noun preposition noun")) {
// is direct object already there? then just nudge it
if (
direct_object.getPlaceAsset().id === indirect_object.id &&
(indirect_preposition === "across" ||
indirect_preposition === "over" ||
indirect_preposition === direct_object.getPlacePreposition())
) {
msg += `$(We) ${this.agree()} ${direct_object.articlename} ${indirect_preposition} ${indirect_object.articlename}. `;
} // across over
// toward or near - just nudge it
else if (["toward", "near"].includes(indirect_preposition)) {
// no status changes at the moment
msg += `$(We) ${this.agree()} ${direct_object.articlename} ${indirect_preposition} ${indirect_object.articlename}. `;
} // toward near
else {
// move one thing to another implies picking it up
// which means it passes through subject
oldlocation = direct_object.getPlaceAsset();
// remove direct object from indirect object
results = oldlocation.onRemoveThatFromThis(direct_object);
if ("undefined" !== typeof results) return results;
if (oldlocation.id !== subject.id) {
// if subject has to pick this up
// set direct object's temporary location to subject
results = subject.onMoveThatToThis(direct_object);
if ("undefined" !== typeof results) return results;
// remove noun1 from subject
results = subject.onRemoveThatFromThis(direct_object);
if ("undefined" !== typeof results) return results;
}
// set noun1's new location to noun2
if ("off" === indirect_preposition) {
indirect_preposition = indirect_object.getPlacePreposition();
indirect_object = indirect_object.getPlaceAsset();
results = indirect_object.onMoveThatToThis(
direct_object,
indirect_object.getPlacePreposition()
);
} else {
results = indirect_object.onMoveThatToThis(
direct_object,
indirect_preposition
);
}
if ("undefined" !== typeof results) return results;
msg = `$(We) ${this.agree()} ${direct_object.articlename} from ${
oldlocation.hasClass("Room") ? "the floor" : oldlocation.articlename
} to ${
indirect_object.hasClass("Room")
? "the floor"
: indirect_object.articlename
}. `;
} // to
} // verb noun preposition noun
// sentence structure: verb noun preposition noun preposition noun
if (input.hasStructure("verb noun preposition noun preposition noun")) {
// remove direct object from indirect object
results = indirect_object.onRemoveThatFromThis(direct_object);
if ("undefined" !== typeof results) return results;
if (indirect_object.id !== subject.id) {
// if subject has to pick this up
// set direct object's temporary location to subject
results = subject.onMoveThatToThis(direct_object);
if ("undefined" !== typeof results) return results;
// remove noun1 from subject
results = subject.onRemoveThatFromThis(direct_object);
if ("undefined" !== typeof results) return results;
}
results = indirect_object2.onMoveThatToThis(
direct_object,
indirect_object2.default_aspect
);
if ("undefined" !== typeof results) return results;
if (
indirect_object.id === subject.id &&
indirect_object2.hasClass("Room")
) {
msg += `$(We) drop ${direct_object.articlename}. `;
} else if (indirect_object.id === subject.id) {
msg += `$(We) put ${direct_object.articlename} `;
msg += indirect_object.hasClass("Room")
? ` on the floor`
: `${indirect_object2.default_aspect} ${indirect_object2.articlename}`;
} else if (indirect_object2.id === subject.id) {
msg += `It's a strange way to phrase it, but $(we) take ${direct_object.articlename} from `;
msg += indirect_object.hasClass("Room")
? `the floor`
: `${indirect_object.articlename}`;
msg += `. `;
} else {
msg += `$(We) ${this.agree()} ${direct_object.articlename} from `;
msg += indirect_object.hasClass("Room")
? `the floor`
: `${indirect_object.articlename}`;
msg += ` to `;
msg += indirect_object2.hasClass("Room")
? `the floor`
: `${indirect_object2.articlename}`;
msg += `. `;
}
}
// print output
return this.handleSuccess(msg, direct_object);
}, // move
};
})();