Class:Aspect
Extends: adventurejs.Atom
Defined in: adventure/assets/Aspect.js, line 5
More info: Aspects
Aspect is a special class that creates spaces within any Tangible Asset, which can contain other Tangibles and/or Substances, with the addition of a Vessel. The five most commonly used aspects are behind, in, on, under, and attached, and a lot of default logic is predicated on using one of these. However it is possible to create aspects at any preposition. Just note that it might lead to unexpected results and require custom code.
this.aspects.behind = {};
Here is an example of how to set the properties of a Aspect of an existing class using createAsset. If you use a preposition that hasn't been defined for the class you're using, a new Aspect will be constructed automatically during construction.
MyGame.createAsset({
class: "Desk",
name: "desk",
place: { in: "Office" },
behind: {
list_in_room: false,
list_in_examine: true,
contents_limits: {
height: 1,
width: 6,
depth: 4,
},
}
});
To define a new class with an Aspect, use the Aspect constructor within the class constructor. Here is a very simple example of a new class with a behind Aspect.
class NewClass {
constructor( name, game_name ) {
super( name, game_name );
this.aspects.newaspect = new adventurejs.Aspect( "behind", this.game_name, this.id )
.set({
// optional params
});
}
}
adventurejs.NewClass = NewClass;
};
Private Constructor:
var foo = new adventurejs.Aspect(game_name, name)
Parameters:
-
game_name
String
Name of top level game instance that is scoped to window. -
name
String
Instance name.
- Index
- Methods
- Properties
Index
Methods:
- Inherited from Atom getClassInheritance
- Inherited from Atom hasClass
- Inherited from Atom Overrides from Atom set
Properties:
- contents
- contents
- contents
- contents_limits
- Inherited from Atom game
- is_false_nest
- know_with_parent
- list_in_examine
- list_in_examine
- Inherited from Atom Name
- orientation
- player
- player_can_add_assets_to_contents
- player_can_reach
- player_can_remove_assets_from_contents
- scale_increment
- see_with_parent
- things_player_can_reach_from_positions_of_this_aspect
- vessel
Methods Collapse all |
getClassInheritance() → {Array}
Defined in: adventure/Atom.js, line 144
Inherited from: adventurejs.Atom#getClassInheritance
Returns:
Array
hasClass(prop) → {Boolean}
Defined in: adventure/Atom.js, line 124
Inherited from: adventurejs.Atom#hasClass
Parameters:
-
prop
String
Name of the class to test for.
Returns:
Boolean
set(props) → {Object}
Defined in: adventure/Atom.js, line 112
Overrides from: adventurejs.Atom#set
Parameters:
-
props
Object
A generic object containing properties to copy to the Object instance.
Returns:
Object
Returns the instance the method is called on (useful for chaining calls.)
Properties |
contents :Array
Defined in: adventure/assets/Aspect.js, line 151
Default value: []
contents :Array
Defined in: adventure/assets/Aspect.js, line 186
Default value: []
contents :Array
Defined in: adventure/assets/Aspect.js, line 196
Default value: []
contents_limits :Array
Defined in: adventure/assets/Aspect.js, line 158
Default value: { height: -1, width: -1, depth: -1, count: -1, weight: -1, }
game :Getter
Defined in: adventure/Atom.js, line 103
Inherited from: adventurejs.Atom#game
this.game
.
is_false_nest :boolean
Defined in: adventure/assets/Aspect.js, line 267
Default value: false
know_with_parent :boolean
Defined in: adventure/assets/Aspect.js, line 117
Default value: true
list_in_examine :boolean
Defined in: adventure/assets/Aspect.js, line 90
Default value: true
list_in_examine :boolean
Defined in: adventure/assets/Aspect.js, line 105
Default value: true
Name :String
Defined in: adventure/Atom.js, line 90
Inherited from: adventurejs.Atom#Name
orientation :String
Defined in: adventure/assets/Aspect.js, line 257
Default value: "horizontal"
player :Object
Defined in: adventure/assets/Aspect.js, line 237
Default value: {}
player_can_add_assets_to_contents :boolean
Defined in: adventure/assets/Aspect.js, line 206
Default value: true
player_can_reach :boolean
Defined in: adventure/assets/Aspect.js, line 273
Default value: true
player_can_remove_assets_from_contents :boolean
Defined in: adventure/assets/Aspect.js, line 213
Default value: true
scale_increment :Array
Defined in: adventure/assets/Aspect.js, line 172
Default value: -1
see_with_parent :boolean
Defined in: adventure/assets/Aspect.js, line 134
Default value: true
things_player_can_reach_from_positions_of_this_aspect :Object|Array
Defined in: adventure/assets/Aspect.js, line 284
Todos: for this to work properly each aspect needs its own local coordinates
vessel :Object
Defined in: adventure/assets/Aspect.js, line 220
Default value: {}