-
Notifications
You must be signed in to change notification settings - Fork 0
/
BehaveEngineNode.ts
280 lines (248 loc) · 9.38 KB
/
BehaveEngineNode.ts
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
import {BasicBehaveEngine} from "./BasicBehaveEngine";
export interface IFlow {
id: string,
value?: any
node?: number,
socket?: string
}
export interface IConfiguration {
id: string,
value?: any
}
export interface IVariable {
id: string,
value?: any,
initialValue: any
}
export interface IValue {
id: string;
value?: any
node?: number,
socket?: string,
type?: number
}
export interface ICustomEvent {
id: string,
values: IValue[]
}
export interface IBehaviourNodeProps {
graphEngine: BasicBehaveEngine,
idToBehaviourNodeMap: Map<number, BehaveEngineNode>
flows: IFlow[];
values: IValue[];
variables: IVariable[];
events: ICustomEvent[],
types: any[]
configuration: IConfiguration[];
addEventToWorkQueue: any
}
export class BehaveEngineNode {
REQUIRED_VALUES: IValue[] = [];
REQUIRED_FLOWS: IFlow[] = [];
REQUIRED_CONFIGURATIONS: IConfiguration[] = [];
name: string | undefined;
world: any;
graphEngine: BasicBehaveEngine;
idToBehaviourNodeMap: Map<number, BehaveEngineNode>
flows: Record<string, IFlow>;
values: Record<string, IValue>;
outValues: Record<string, any>
variables: IVariable[];
types: any[];
events: ICustomEvent[];
configuration: Record<string, IConfiguration>;
addEventToWorkQueue: any;
constructor(props: IBehaviourNodeProps) {
const {flows, values, idToBehaviourNodeMap, graphEngine, variables, events, types, configuration, addEventToWorkQueue} = props;
this.idToBehaviourNodeMap = idToBehaviourNodeMap;
this.graphEngine = graphEngine;
this.variables = variables;
this.types = types;
this.events = events;
this.values = {};
this.flows = {};
this.configuration = {};
this.outValues = {};
this.addEventToWorkQueue = addEventToWorkQueue;
// turn array of values, flows and configurations into JSON objects for name based accessing
if (values) {
values.forEach((val: IValue) => {
this.values[val.id] = val;
})
}
if (flows) {
flows.forEach((flow: IFlow) => {
this.flows[flow.id] = flow;
})
}
if (configuration) {
configuration.forEach((configuration: IConfiguration) => {
this.configuration[configuration.id] = configuration
})
}
}
/**
* Initializes and returns a new BehaveEngineNode instance.
* @param props - The properties and settings for the BehaveEngineNode.
* @returns A new BehaveEngineNode instance.
*/
static init(props: IBehaviourNodeProps) {
return new this(props);
}
/**
* Processes the node and its associated flow.
* @param flowSocket - The socket associated with the flow (optional).
*/
public processNode(flowSocket?: string): any {
if (this.flows !== undefined && this.flows.out !== undefined) {
this.processFlow(this.flows.out);
}
}
/**
* Processes a specific flow associated with this node.
* @param flow - The flow object to be processed.
*/
public processFlow(flow: IFlow) {
if (flow === undefined || flow.node === undefined) {return}
const nextNode: BehaveEngineNode | undefined = this.idToBehaviourNodeMap.get(flow.node);
if (nextNode === undefined) {return}
this.graphEngine.processExecutingNextNode(flow);
nextNode.processNode(flow.socket);
}
/**
* Validates the presence of required values.
* @param values - An object containing values to be validated.
* @throws An error if a required value is missing.
*/
protected validateValues(values: any) {
this.REQUIRED_VALUES.forEach(requiredValue => {
if (values == null || values[requiredValue.id] == null) {
const err = `Required Value ${requiredValue.id} is missing for ${this.name}`
console.error(err);
throw new Error(err);
}
});
}
/**
* Validates the presence of required configurations.
* @param configurations - An object containing configurations to be validated.
* @throws An error if a required configuration is missing.
*/
protected validateConfigurations(configurations: any) {
this.REQUIRED_CONFIGURATIONS.forEach(requiredConfiguration => {
if (configurations == null || configurations[requiredConfiguration.id] == null) {
const err = `Required Configuration ${requiredConfiguration.id} is missing and no default value was provided for ${this.name}`;
console.error(err);
throw new Error(err);
}
});
}
/**
* Validates the presence of required flows.
* @param flows - An object containing flows to be validated.
* @throws An error if a required flow is missing.
*/
protected validateFlows(flows: any) {
this.REQUIRED_FLOWS.forEach(requiredFlow => {
if (flows[requiredFlow.id] == null) {
const err = `Required Flow ${requiredFlow.id} is missing for ${this.name}`;
console.error(err);
throw new Error(err);
}
});
}
/**
* Evaluates all values based on their definitions.
* @param vals - An array of value names to be evaluated.
* @returns An object containing the evaluated values.
*/
protected evaluateAllValues(vals: string[]): Record<string, any> {
const res: Record<string, any> = {};
for (let i = 0; i < vals.length; i++) {
res[vals[i]] = this.evaluateValue(this.values[vals[i]]);
}
return res;
}
private evaluateValue(val: IValue): any {
if (val.value != null) {
const typeName = this.getType(val.type!);
return this.parseType(typeName, val.value);
} else if (val.node != null) {
// short circuit if we have evaluated this node's socket already
const cachedValue = this.graphEngine.getValueEvaluationCacheValue(`${val.node}-${val.socket}`);
if (cachedValue !== undefined) {
this.values[val.id] = {...this.values[val.id], type: cachedValue.type};
return cachedValue.value;
}
// the value depends on the output of another node's socket, so we need to go and determine that
const dependentNode: BehaveEngineNode = this.idToBehaviourNodeMap.get(val.node)!;
let valueToReturn: any;
let typeIndex: number;
if (dependentNode.outValues !== undefined && dependentNode.outValues[val.socket!] !== undefined) {
//socket has already been evaluated so return it
valueToReturn = dependentNode.outValues[val.socket!].value;
typeIndex = dependentNode.outValues[val.socket!].type;
this.values[val.id] = {...this.values[val.id], type: typeIndex};
} else {
//this node has not been evaluated yet, so we need to process it in order to get the output
const dependentNodeValues = dependentNode.processNode();
const dependentValue = dependentNodeValues[val.socket!];
typeIndex = dependentValue.type
valueToReturn = dependentValue.value
this.values[val.id] = {...this.values[val.id], type: dependentValue.type};
}
this.graphEngine.addEntryToValueEvaluationCache(`${val.node}-${val.socket}`, {id: val.socket!, value: valueToReturn, type: typeIndex});
const typeName = this.getType(typeIndex);
return this.parseType(typeName, valueToReturn);
}
}
/**
* Evaluates all configurations based on their definitions.
* @param configs - An array of configuration names to be evaluated.
* @returns An object containing the evaluated configuration values.
*/
protected evaluateAllConfigurations(configs: string[]): Record<string, any> {
const res: any = {};
for (let i = 0; i < configs.length; i++) {
res[configs[i]] = this.evaluateConfiguration(this.configuration[configs[i]]);
}
return res;
}
protected getType(id: number): string {
const type = this.types[id];
let typeName: string;
if (type.signature === "custom" && type.extensions) {
typeName = Object.keys(type.extensions)[0]
} else {
typeName = type.signature;
}
return typeName;
}
protected getTypeIndex(name: string): number {
const typeNames = this.types.map((type, index) => this.getType(index));
return typeNames.indexOf(name);
}
protected parseType(type: string, val: any) {
switch (type) {
case "bool":
return val[0] === "true" || val[0] === true;
case "int":
return Number(val[0]);
case "float":
return Number(val[0]);
case "float2":
return val;
case "float3":
return val;
case "float4":
return val;
case "float4x4":
return val;
default:
return val
}
}
private evaluateConfiguration(configuration: IConfiguration): any {
return configuration.value;
}
}