2023-08-07 12:36:19 +00:00
|
|
|
/**
|
|
|
|
* bt_set_var.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.
|
|
|
|
* =============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bt_set_var.h"
|
|
|
|
|
2023-09-02 12:16:52 +00:00
|
|
|
#include "modules/limboai/blackboard/bb_param/bb_param.h"
|
2023-08-07 12:36:19 +00:00
|
|
|
#include "modules/limboai/util/limbo_utility.h"
|
|
|
|
|
|
|
|
#include "core/variant/callable.h"
|
|
|
|
|
|
|
|
String BTSetVar::_generate_name() const {
|
|
|
|
if (variable.is_empty()) {
|
|
|
|
return "SetVar ???";
|
|
|
|
}
|
2023-08-08 13:07:02 +00:00
|
|
|
return vformat("Set %s = %s", LimboUtility::get_singleton()->decorate_var(variable),
|
2023-08-07 12:36:19 +00:00
|
|
|
value.is_valid() ? Variant(value) : Variant("???"));
|
|
|
|
}
|
|
|
|
|
2023-09-19 11:43:26 +00:00
|
|
|
BT::Status BTSetVar::_tick(double p_delta) {
|
2023-09-02 12:16:52 +00:00
|
|
|
ERR_FAIL_COND_V_MSG(variable.is_empty(), FAILURE, "BTSetVar: `variable` is not set.");
|
|
|
|
ERR_FAIL_COND_V_MSG(!value.is_valid(), FAILURE, "BTSetVar: `value` is not set.");
|
|
|
|
Variant error_result = SNAME("Error: BTSetVar failed to get value!");
|
|
|
|
Variant result = value->get_value(get_agent(), get_blackboard(), error_result);
|
|
|
|
ERR_FAIL_COND_V_MSG(result == error_result, FAILURE, "BTSetVar: Failed to get parameter value. Returning FAILURE.");
|
|
|
|
get_blackboard()->set_var(variable, result);
|
2023-08-07 12:36:19 +00:00
|
|
|
return SUCCESS;
|
|
|
|
};
|
|
|
|
|
|
|
|
void BTSetVar::set_variable(const String &p_variable) {
|
|
|
|
variable = p_variable;
|
|
|
|
emit_changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BTSetVar::set_value(Ref<BBVariant> p_value) {
|
|
|
|
value = p_value;
|
|
|
|
emit_changed();
|
|
|
|
if (Engine::get_singleton()->is_editor_hint() && value.is_valid()) {
|
|
|
|
value->connect(SNAME("changed"), Callable(this, SNAME("emit_changed")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-15 15:05:30 +00:00
|
|
|
PackedStringArray BTSetVar::get_configuration_warnings() const {
|
|
|
|
PackedStringArray warnings = BTAction::get_configuration_warnings();
|
2023-08-07 12:36:19 +00:00
|
|
|
if (variable.is_empty()) {
|
2023-08-15 15:05:30 +00:00
|
|
|
warnings.append("`variable` should be assigned.");
|
2023-08-07 12:36:19 +00:00
|
|
|
}
|
|
|
|
if (!value.is_valid()) {
|
2023-08-15 15:05:30 +00:00
|
|
|
warnings.append("`value` should be assigned.");
|
2023-08-07 12:36:19 +00:00
|
|
|
}
|
2023-08-15 15:05:30 +00:00
|
|
|
return warnings;
|
2023-08-07 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BTSetVar::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("set_variable", "p_variable"), &BTSetVar::set_variable);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_variable"), &BTSetVar::get_variable);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_value", "p_value"), &BTSetVar::set_value);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_value"), &BTSetVar::get_value);
|
|
|
|
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::STRING, "variable"), "set_variable", "get_variable");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "value", PROPERTY_HINT_RESOURCE_TYPE, "BBVariant"), "set_value", "get_value");
|
|
|
|
}
|