2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* blackboard.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-09-08 13:56:51 +00:00
|
|
|
|
|
|
|
#include "blackboard.h"
|
2023-07-20 16:35:36 +00:00
|
|
|
|
2024-01-06 20:04:34 +00:00
|
|
|
#ifdef LIMBOAI_MODULE
|
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"
|
2024-01-06 20:04:34 +00:00
|
|
|
#endif // LIMBOAI_MODULE
|
|
|
|
|
|
|
|
#ifdef LIMBOAI_GDEXTENSION
|
|
|
|
#include <godot_cpp/classes/node.hpp>
|
|
|
|
#include <godot_cpp/classes/ref.hpp>
|
|
|
|
#include <godot_cpp/classes/ref_counted.hpp>
|
|
|
|
#include <godot_cpp/core/object.hpp>
|
|
|
|
#include <godot_cpp/variant/dictionary.hpp>
|
|
|
|
using namespace godot;
|
|
|
|
#endif
|
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)) {
|
2024-01-06 20:04:34 +00:00
|
|
|
return data.get(p_key, Variant());
|
2022-09-08 13:56:51 +00:00
|
|
|
} 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);
|
2023-12-16 15:54:42 +00:00
|
|
|
Array keys = data.keys();
|
|
|
|
Array values = data.values();
|
|
|
|
for (int i = 0; i < keys.size(); i++) {
|
|
|
|
if (values[i].get_type() == Variant::NODE_PATH) {
|
|
|
|
Node *fetched_node = p_node->get_node_or_null(values[i]);
|
2022-10-19 14:01:16 +00:00
|
|
|
if (fetched_node != nullptr) {
|
2023-12-16 15:54:42 +00:00
|
|
|
data[keys[i]] = fetched_node;
|
2022-10-19 14:01:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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);
|
2023-07-20 20:15:30 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("erase_var", "p_key"), &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
|
|
|
}
|