2022-09-08 13:56:51 +00:00
|
|
|
/* blackboard.cpp */
|
|
|
|
|
|
|
|
#include "blackboard.h"
|
2023-07-20 16:35:36 +00:00
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/error/error_macros.h"
|
|
|
|
#include "core/variant/variant.h"
|
2022-10-19 14:01:16 +00:00
|
|
|
#include "scene/main/node.h"
|
2022-09-08 13:56:51 +00:00
|
|
|
|
2022-11-23 17:02:46 +00:00
|
|
|
Ref<Blackboard> Blackboard::top() const {
|
|
|
|
Ref<Blackboard> bb(this);
|
|
|
|
while (bb->get_parent_scope().is_valid()) {
|
|
|
|
bb = bb->get_parent_scope();
|
|
|
|
}
|
|
|
|
return bb;
|
|
|
|
}
|
|
|
|
|
2022-09-08 13:56:51 +00:00
|
|
|
Variant Blackboard::get_var(const Variant &p_key, const Variant &p_default) const {
|
|
|
|
if (data.has(p_key)) {
|
|
|
|
return data.get_valid(p_key);
|
|
|
|
} else if (parent.is_valid()) {
|
|
|
|
return parent->get_var(p_key, p_default);
|
|
|
|
} else {
|
|
|
|
return p_default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Blackboard::set_var(const Variant &p_key, const Variant &p_value) {
|
|
|
|
data[p_key] = p_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Blackboard::has_var(const Variant &p_key) const {
|
|
|
|
return data.has(p_key) || (parent.is_valid() && parent->has_var(p_key));
|
|
|
|
}
|
|
|
|
|
2022-12-16 11:13:03 +00:00
|
|
|
void Blackboard::erase_var(const Variant &p_key) {
|
|
|
|
data.erase(p_key);
|
|
|
|
}
|
|
|
|
|
2022-10-19 14:01:16 +00:00
|
|
|
void Blackboard::prefetch_nodepath_vars(Node *p_node) {
|
|
|
|
ERR_FAIL_COND(p_node == nullptr);
|
|
|
|
for (int i = 0; i < data.size(); i++) {
|
|
|
|
Variant value = data.get_value_at_index(i);
|
|
|
|
if (value.get_type() == Variant::NODE_PATH) {
|
|
|
|
Node *fetched_node = p_node->get_node_or_null(value);
|
|
|
|
if (fetched_node != nullptr) {
|
|
|
|
data[data.get_key_at_index(i)] = fetched_node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-09-08 13:56:51 +00:00
|
|
|
void Blackboard::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("get_data"), &Blackboard::get_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_data", "p_data"), &Blackboard::set_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_var", "p_key", "p_default"), &Blackboard::get_var, Variant());
|
|
|
|
ClassDB::bind_method(D_METHOD("set_var", "p_key", "p_value"), &Blackboard::set_var);
|
|
|
|
ClassDB::bind_method(D_METHOD("has_var", "p_key"), &Blackboard::has_var);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_parent_scope", "p_blackboard"), &Blackboard::set_parent_scope);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_parent_scope"), &Blackboard::get_parent_scope);
|
2022-12-16 11:13:03 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("erase_var"), &Blackboard::erase_var);
|
2022-10-19 21:54:42 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("prefetch_nodepath_vars", "p_node"), &Blackboard::prefetch_nodepath_vars);
|
2022-11-23 17:02:46 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("top"), &Blackboard::top);
|
2022-09-08 13:56:51 +00:00
|
|
|
}
|