-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdialogue_tree_node.js
52 lines (45 loc) · 1.33 KB
/
dialogue_tree_node.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
class DialogueNode {
constructor(key, text='', terminating_action=undefined, aliases=[]) {
this.key = key;
this.text = text;
this.aliases = aliases;
this.terminatingAction = terminating_action;
this.children = {};
}
registerChild(node) {
this.children[node.key] = node;
return this;
}
registerChildWithText(key, text, aliases=[]) {
this.registerChild(new DialogueNode(key, text, undefined, aliases));
return this;
}
registerChildWithAction(key, terminating_action, aliases=[]) {
this.registerChild(new DialogueNode(key, '', terminating_action, aliases));
return this;
}
getChildByKey(key) {
return this.children[key];
}
getChildWithKeyOrAlias(key) {
if (this.getChildByKey(key)) {
return this.getChildByKey(key);
} else {
for (var child in this.children) {
if (this.children[child].aliases.includes(key)) {
return this.children[child];
}
}
return undefined;
}
}
hasChildren() {
for (var key in this.children) {
if (this.children.hasOwnProperty(key)) {
return true;
}
}
return false;
}
}
module.exports = DialogueNode;