limboai/bt/tasks/composites/bt_selector.cpp

28 lines
717 B
C++
Raw Normal View History

/**
* bt_selector.cpp
* =============================================================================
* Copyright 2021-2023 Serhii Snitsaruk
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
2022-08-28 10:54:34 +00:00
#include "bt_selector.h"
void BTSelector::_enter() {
last_running_idx = 0;
}
int BTSelector::_tick(double p_delta) {
int status = FAILURE;
for (int i = last_running_idx; i < get_child_count(); i++) {
2022-08-28 10:54:34 +00:00
status = get_child(i)->execute(p_delta);
if (status != FAILURE) {
last_running_idx = i;
break;
}
}
return status;
}