// Player.js
(function () {
/*global adventurejs A*/
/**
* @ajspath adventurejs.Atom.Asset.Matter.Tangible.Character.Player
* @augments adventurejs.Character
* @class adventurejs.Player
* @ajsnavheading CharacterClasses
* @param {String} game_name The name of the top level game object.
* @param {String} name A name for the object, to be serialized and used as ID.
* @summary The player character.
* @todo Character swapping.
* @classdesc
* <p>
* <strong>Player</strong> is a subclass of
* {@link adventurejs.Character|Character}, used for
* the player character(s). It will be possible to have
* multiple player characters, though that hasn't been
* implemented yet.
* </p>
* <h3 class="examples">Example:</h3>
* <pre class="display"><code class="language-javascript">
* </code></pre>
**/
class Player extends adventurejs.Character {
constructor(name, game_name) {
super(name, game_name);
this.class = "Player";
this.setIs("active", true);
this.know(this);
this.see(this);
this.setIOVs([{ hold: { with_params: { max_connections: 2 } } }]);
this.setDOVs([
"aft",
"down",
"east",
"enter",
"exit",
"fore",
"in",
"north",
"northeast",
"northwest",
"out",
"port",
"south",
"southeast",
"southwest",
"starboard",
"up",
"west",
]);
}
get articlename() {
return this.game.dictionary.pronouns[this.pronouns]["ourself"];
}
validate(game) {
super.validate(game);
// do we already have an active player?
if (this.game.world._player && this.game.world[this.game.world._player]) {
var msg = `Player.js > ${
this.game.world[this.game.world._player].name
} and ${this.name} are both set is.active.
Only one Player can be active. Using ${
this.game.world[this.game.world._player].name
}. `;
this.game.log("L1450", "warn", "critical", msg, "warning");
this.is.active = false;
} else {
this.game.world._player = this.id;
this.synonyms.push("me", "myself");
}
// ensure that player knows about anything
// they're carrying on init
this.aspects.in.know_with_parent = true;
this.aspects.in.see_with_parent = true;
this.can.bounce = true;
this.can.climb = true;
this.can.crawl = true;
this.can.drive = true;
this.can.float = false;
this.can.fly = false;
this.can.get = true;
this.can.go = true;
this.can.hide = false;
this.can.hop = true;
this.can.hover = false;
this.can.jump = true;
this.can.peddle = false;
this.can.ride = true;
this.can.run = true;
this.can.skate = true;
this.can.slither = false;
this.can.swim = false;
this.can.walk = true;
// travel
this.can.enter = true;
this.can.exit = true;
this.can.scale = true;
this.can.traverse = true;
// posture
this.can.cling = true;
this.can.hang = true;
this.can.kneel = true;
this.can.lie = true;
this.can.sit = true;
this.can.stand = true;
// sensory
this.can.feel = true;
this.can.hear = true;
this.can.see = true;
this.can.smell = true;
this.can.talk = true;
this.can.taste = true;
return true;
}
}
adventurejs.Player = Player;
})();