2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_run_limit.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 13:24:01 +00:00
|
|
|
|
|
|
|
#include "bt_run_limit.h"
|
|
|
|
|
|
|
|
String BTRunLimit::_generate_name() const {
|
|
|
|
return vformat("RunLimit x%d", run_limit);
|
|
|
|
}
|
|
|
|
|
2023-04-10 08:08:11 +00:00
|
|
|
int BTRunLimit::_tick(double p_delta) {
|
2022-09-21 10:37:19 +00:00
|
|
|
ERR_FAIL_COND_V_MSG(get_child_count() == 0, FAILURE, "BT decorator has no child.");
|
2022-08-28 13:24:01 +00:00
|
|
|
if (get_child(0)->get_status() != RUNNING) {
|
2022-12-17 10:47:10 +00:00
|
|
|
if (num_runs >= run_limit) {
|
2022-08-28 13:24:01 +00:00
|
|
|
return FAILURE;
|
|
|
|
}
|
2022-12-17 10:47:10 +00:00
|
|
|
num_runs += 1;
|
2022-08-28 13:24:01 +00:00
|
|
|
}
|
|
|
|
return get_child(0)->execute(p_delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BTRunLimit::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("set_run_limit", "p_value"), &BTRunLimit::set_run_limit);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_run_limit"), &BTRunLimit::get_run_limit);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "run_limit"), "set_run_limit", "get_run_limit");
|
|
|
|
}
|