2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* blackboard.h
|
|
|
|
* =============================================================================
|
|
|
|
* 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
|
|
|
|
|
|
|
#ifndef BLACKBOARD_H
|
|
|
|
#define BLACKBOARD_H
|
|
|
|
|
2024-01-23 11:05:54 +00:00
|
|
|
#include "bb_variable.h"
|
|
|
|
|
2024-01-06 20:04:34 +00:00
|
|
|
#ifdef LIMBOAI_MODULE
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/object/object.h"
|
|
|
|
#include "core/object/ref_counted.h"
|
|
|
|
#include "core/variant/dictionary.h"
|
|
|
|
#include "core/variant/variant.h"
|
|
|
|
#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 // LIMBOAI_GDEXTENSION
|
2022-12-15 07:26:52 +00:00
|
|
|
|
|
|
|
class Blackboard : public RefCounted {
|
|
|
|
GDCLASS(Blackboard, RefCounted);
|
2022-09-08 13:56:51 +00:00
|
|
|
|
|
|
|
private:
|
2024-01-23 11:05:54 +00:00
|
|
|
HashMap<String, BBVariable> data;
|
2022-09-08 13:56:51 +00:00
|
|
|
Ref<Blackboard> parent;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
void set_parent_scope(const Ref<Blackboard> &p_blackboard) { parent = p_blackboard; }
|
|
|
|
Ref<Blackboard> get_parent_scope() const { return parent; }
|
|
|
|
|
2022-11-23 17:02:46 +00:00
|
|
|
Ref<Blackboard> top() const;
|
|
|
|
|
2024-01-23 11:05:54 +00:00
|
|
|
Variant get_var(const String &p_name, const Variant &p_default) const;
|
|
|
|
void set_var(const String &p_name, const Variant &p_value);
|
|
|
|
bool has_var(const String &p_name) const;
|
|
|
|
void erase_var(const String &p_name);
|
|
|
|
|
|
|
|
void add_var(const String &p_name, const BBVariable &p_var);
|
2022-12-16 11:13:03 +00:00
|
|
|
|
2022-10-19 14:01:16 +00:00
|
|
|
void prefetch_nodepath_vars(Node *p_node);
|
2024-01-23 11:05:54 +00:00
|
|
|
|
|
|
|
// TODO: Rework serialization API.
|
|
|
|
// void set_data(const Dictionary &p_value);
|
|
|
|
// Dictionary get_data() const;
|
2022-09-08 13:56:51 +00:00
|
|
|
};
|
|
|
|
|
2024-01-23 11:05:54 +00:00
|
|
|
#endif // BLACKBOARD_H
|