limboai/blackboard/bb_param/bb_node.cpp

42 lines
1.3 KiB
C++
Raw Normal View History

/**
* bb_node.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-10-20 16:26:46 +00:00
#include "bb_node.h"
#include "core/error/error_macros.h"
#include "core/variant/variant.h"
2022-10-20 16:26:46 +00:00
#include "scene/main/node.h"
Variant BBNode::get_value(Object *p_agent, const Ref<Blackboard> &p_blackboard, const Variant &p_default) {
ERR_FAIL_COND_V(p_agent == nullptr, Variant());
ERR_FAIL_COND_V(!p_blackboard.is_valid(), Variant());
Variant val;
if (get_value_source() == SAVED_VALUE) {
val = get_saved_value();
} else {
val = p_blackboard->get_var(get_variable(), p_default);
}
if (val.get_type() == Variant::NODE_PATH) {
Node *agent = Object::cast_to<Node>(p_agent);
ERR_FAIL_COND_V_MSG(agent == nullptr, Variant(), "BBNode: p_agent must be a Node.");
return agent->get_node(val);
} else {
2023-09-05 08:55:17 +00:00
Object *obj = val;
if (unlikely(obj == nullptr && val.get_type() != Variant::NIL)) {
2022-10-20 16:26:46 +00:00
WARN_PRINT("BBNode: Unexpected variant type of a blackboard variable.");
return p_default;
} else {
2023-09-05 08:55:17 +00:00
return obj;
2022-10-20 16:26:46 +00:00
}
}
}