2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_sequence.cpp
|
|
|
|
* =============================================================================
|
2024-03-21 20:38:57 +00:00
|
|
|
* Copyright 2021-2024 Serhii Snitsaruk
|
2023-07-21 09:50:06 +00:00
|
|
|
*
|
|
|
|
* 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_sequence.h"
|
|
|
|
|
|
|
|
void BTSequence::_enter() {
|
|
|
|
last_running_idx = 0;
|
|
|
|
}
|
|
|
|
|
2023-09-19 11:43:26 +00:00
|
|
|
BT::Status BTSequence::_tick(double p_delta) {
|
|
|
|
Status status = SUCCESS;
|
2022-09-05 13:08:35 +00:00
|
|
|
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 != SUCCESS) {
|
|
|
|
last_running_idx = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return status;
|
2024-03-21 20:38:57 +00:00
|
|
|
}
|