phaser4-rex-plugins
Version:
68 lines (58 loc) • 1.77 kB
JavaScript
import Composite from '../Composite.js';
import { SUCCESS, FAILURE, RUNNING, ABORT, ERROR } from '../../constants.js';
class Selector extends Composite {
constructor(
{
children = [],
services,
title,
name = 'Selector'
} = {},
nodePool
) {
super(
{
children,
services,
title,
name,
},
nodePool
);
}
open(tick) {
var nodeMemory = this.getNodeMemory(tick);
nodeMemory.$runningChild = -1; // No running child
}
tick(tick) {
if (this.children.length === 0) {
return ERROR;
}
var nodeMemory = this.getNodeMemory(tick);
var childIndex = nodeMemory.$runningChild;
var status;
if (childIndex < 0) {
for (var i = 0, cnt = this.children.length; i < cnt; i++) {
status = this.children[i]._execute(tick);
if ((status === RUNNING) || (status === SUCCESS) || (status === ABORT)) {
childIndex = i;
break;
}
}
} else {
var child = this.children[childIndex];
status = child._execute(tick);
}
nodeMemory.$runningChild = (status === RUNNING) ? childIndex : -1;
return status;
}
abortChildren(tick) {
var nodeMemory = this.getNodeMemory(tick);
var child = this.children[nodeMemory.$runningChild];
if (child) {
child._abort(tick);
nodeMemory.$runningChild = -1;
}
}
};
export default Selector;