limboai/bt/composites/bt_random_selector.cpp

26 lines
574 B
C++
Raw Normal View History

2022-08-29 09:41:42 +00:00
/* bt_random_selector.cpp */
#include "bt_random_selector.h"
void BTRandomSelector::_enter() {
last_running_idx = 0;
if (indicies.size() != get_child_count()) {
indicies.resize(get_child_count());
2022-08-29 09:41:42 +00:00
for (int i = 0; i < get_child_count(); i++) {
indicies.set(i, i);
2022-08-29 09:41:42 +00:00
}
}
indicies.shuffle();
2022-08-29 09:41:42 +00:00
}
int BTRandomSelector::_tick(float p_delta) {
int status = FAILURE;
for (int i = last_running_idx; i < get_child_count(); i++) {
status = get_child(indicies[i])->execute(p_delta);
2022-08-29 09:41:42 +00:00
if (status != FAILURE) {
last_running_idx = i;
break;
}
}
return status;
}