limboai/bt/tasks/blackboard/bt_check_var.cpp

77 lines
3.1 KiB
C++
Raw Normal View History

2023-08-08 13:06:01 +00:00
/**
* bt_check_var.cpp
* =============================================================================
* Copyright 2021-2024 Serhii Snitsaruk
2023-08-08 13:06:01 +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.
* =============================================================================
*/
#include "bt_check_var.h"
void BTCheckVar::set_variable(const StringName &p_variable) {
2023-08-08 13:06:01 +00:00
variable = p_variable;
emit_changed();
}
2023-08-10 11:12:13 +00:00
void BTCheckVar::set_check_type(LimboUtility::CheckType p_check_type) {
2023-08-08 13:06:01 +00:00
check_type = p_check_type;
emit_changed();
}
void BTCheckVar::set_value(const Ref<BBVariant> &p_value) {
2023-08-08 13:06:01 +00:00
value = p_value;
emit_changed();
if (Engine::get_singleton()->is_editor_hint() && value.is_valid()) {
2024-01-09 12:42:54 +00:00
value->connect(LW_NAME(changed), Callable(this, LW_NAME(emit_changed)));
2023-08-08 13:06:01 +00:00
}
}
PackedStringArray BTCheckVar::get_configuration_warnings() {
PackedStringArray warnings = BTCondition::get_configuration_warnings();
if (variable == StringName()) {
warnings.append("`variable` should be assigned.");
2023-08-08 13:06:01 +00:00
}
if (!value.is_valid()) {
warnings.append("`value` should be assigned.");
2023-08-08 13:06:01 +00:00
}
return warnings;
2023-08-08 13:06:01 +00:00
}
String BTCheckVar::_generate_name() {
if (variable == StringName()) {
2023-08-08 13:06:01 +00:00
return "CheckVar ???";
}
2023-08-10 11:12:13 +00:00
return vformat("Check if: %s %s %s", LimboUtility::get_singleton()->decorate_var(variable),
LimboUtility::get_singleton()->get_check_operator_string(check_type),
2023-08-08 13:06:01 +00:00
value.is_valid() ? Variant(value) : Variant("???"));
}
BT::Status BTCheckVar::_tick(double p_delta) {
ERR_FAIL_COND_V_MSG(variable == StringName(), FAILURE, "BTCheckVar: `variable` is not set.");
2023-08-10 11:12:13 +00:00
ERR_FAIL_COND_V_MSG(!value.is_valid(), FAILURE, "BTCheckVar: `value` is not set.");
2023-08-08 13:06:01 +00:00
2023-08-10 11:12:13 +00:00
ERR_FAIL_COND_V_MSG(!get_blackboard()->has_var(variable), FAILURE, vformat("BTCheckVar: Blackboard variable doesn't exist: \"%s\". Returning FAILURE.", variable));
2023-08-08 13:06:01 +00:00
Variant left_value = get_blackboard()->get_var(variable, Variant());
Variant right_value = value->get_value(get_agent(), get_blackboard());
2023-08-10 11:12:13 +00:00
return LimboUtility::get_singleton()->perform_check(check_type, left_value, right_value) ? SUCCESS : FAILURE;
2023-08-08 13:06:01 +00:00
}
void BTCheckVar::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_variable", "p_variable"), &BTCheckVar::set_variable);
ClassDB::bind_method(D_METHOD("get_variable"), &BTCheckVar::get_variable);
ClassDB::bind_method(D_METHOD("set_check_type", "p_check_type"), &BTCheckVar::set_check_type);
ClassDB::bind_method(D_METHOD("get_check_type"), &BTCheckVar::get_check_type);
ClassDB::bind_method(D_METHOD("set_value", "p_value"), &BTCheckVar::set_value);
ClassDB::bind_method(D_METHOD("get_value"), &BTCheckVar::get_value);
ADD_PROPERTY(PropertyInfo(Variant::STRING_NAME, "variable"), "set_variable", "get_variable");
2023-08-08 13:06:01 +00:00
ADD_PROPERTY(PropertyInfo(Variant::INT, "check_type", PROPERTY_HINT_ENUM, "Equal,Less Than,Less Than Or Equal,Greater Than,Greater Than Or Equal,Not Equal"), "set_check_type", "get_check_type");
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "value", PROPERTY_HINT_RESOURCE_TYPE, "BBVariant"), "set_value", "get_value");
}