limboai/bt/tasks/bt_task.h

170 lines
4.8 KiB
C
Raw Normal View History

/**
* bt_task.h
* =============================================================================
* Copyright 2021-2024 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-08-28 10:54:34 +00:00
2024-01-13 16:10:42 +00:00
#ifndef BT_TASK_H
#define BT_TASK_H
2022-08-28 10:54:34 +00:00
2024-01-10 21:45:42 +00:00
#include "../../blackboard/blackboard.h"
#include "../../util/limbo_compat.h"
#include "../../util/limbo_string_names.h"
#include "../../util/limbo_task_db.h"
2023-07-20 16:35:36 +00:00
2024-01-10 21:45:42 +00:00
#ifdef LIMBOAI_MODULE
#include "core/config/engine.h"
#include "core/error/error_macros.h"
#include "core/io/resource.h"
#include "core/math/math_funcs.h"
#include "core/object/object.h"
#include "core/object/ref_counted.h"
#include "core/os/memory.h"
#include "core/string/ustring.h"
#include "core/templates/vector.h"
#include "core/typedefs.h"
#include "core/variant/array.h"
2023-09-16 16:05:09 +00:00
#include "core/variant/binder_common.h"
#include "core/variant/dictionary.h"
2022-08-28 10:54:34 +00:00
#include "scene/resources/texture.h"
2024-01-13 16:10:42 +00:00
#endif // LIMBOAI_MODULE
#ifdef LIMBOAI_GDEXTENSION
#include <godot_cpp/classes/engine.hpp>
#include <godot_cpp/classes/resource.hpp>
#include <godot_cpp/core/object.hpp>
#include <godot_cpp/templates/vector.hpp>
using namespace godot;
2024-01-13 16:10:42 +00:00
#endif // LIMBOAI_GDEXTENSION
2022-08-28 10:54:34 +00:00
/**
* Base class for BTTask.
* Note: In order to properly return Status in the _tick virtual method (GDVIRTUAL1R...)
* we must do VARIANT_ENUM_CAST for Status enum before the actual BTTask class declaration.
*/
class BT : public Resource {
GDCLASS(BT, Resource);
2022-08-28 10:54:34 +00:00
public:
enum Status {
2022-08-28 10:54:34 +00:00
FRESH,
RUNNING,
FAILURE,
SUCCESS,
};
protected:
static void _bind_methods();
};
VARIANT_ENUM_CAST(BT::Status)
class BTTask : public BT {
GDCLASS(BTTask, BT);
2022-08-28 10:54:34 +00:00
private:
friend class BehaviorTree;
2024-01-13 16:10:42 +00:00
// Avoid namespace pollution in the derived classes.
2023-07-20 18:10:02 +00:00
struct Data {
int index = -1;
2023-07-20 18:10:02 +00:00
String custom_name;
Node *agent = nullptr;
Node *scene_root = nullptr;
2023-07-20 18:10:02 +00:00
Ref<Blackboard> blackboard;
BTTask *parent = nullptr;
2023-07-20 18:10:02 +00:00
Vector<Ref<BTTask>> children;
Status status = FRESH;
double elapsed = 0.0;
bool display_collapsed = false;
2023-07-20 18:10:02 +00:00
} data;
2022-08-28 10:54:34 +00:00
Array _get_children() const;
void _set_children(Array children);
2024-01-13 16:10:42 +00:00
PackedStringArray _get_configuration_warnings(); // ! Scripts only.
2022-08-28 10:54:34 +00:00
protected:
static void _bind_methods();
virtual String _generate_name();
2022-08-31 15:05:25 +00:00
virtual void _setup() {}
virtual void _enter() {}
virtual void _exit() {}
virtual Status _tick(double p_delta) { return FAILURE; }
2022-08-28 10:54:34 +00:00
#ifdef LIMBOAI_MODULE
GDVIRTUAL0RC(String, _generate_name);
GDVIRTUAL0(_setup);
GDVIRTUAL0(_enter);
GDVIRTUAL0(_exit);
GDVIRTUAL1R(Status, _tick, double);
2024-01-13 16:10:42 +00:00
GDVIRTUAL0RC(PackedStringArray, _get_configuration_warnings);
#endif // LIMBOAI_MODULE
2022-08-28 10:54:34 +00:00
public:
// TODO: GDExtension doesn't have this method hmm...
#ifdef LIMBOAI_MODULE
virtual bool editor_can_reload_from_file() override { return false; }
#endif // LIMBOAI_MODULE
2023-11-22 12:41:28 +00:00
_FORCE_INLINE_ Node *get_agent() const { return data.agent; }
2023-07-20 18:10:02 +00:00
void set_agent(Node *p_agent) { data.agent = p_agent; }
2022-12-17 07:33:18 +00:00
_FORCE_INLINE_ Node *get_scene_root() const { return data.scene_root; }
void set_display_collapsed(bool p_display_collapsed);
bool is_displayed_collapsed() const;
2023-07-20 18:10:02 +00:00
String get_custom_name() const { return data.custom_name; }
2022-08-28 10:54:34 +00:00
void set_custom_name(const String &p_name);
String get_task_name();
2022-08-28 10:54:34 +00:00
2022-12-17 07:33:18 +00:00
Ref<BTTask> get_root() const;
2022-08-28 10:54:34 +00:00
virtual Ref<BTTask> clone() const;
virtual void initialize(Node *p_agent, const Ref<Blackboard> &p_blackboard, Node *p_scene_root);
2024-01-13 16:10:42 +00:00
virtual PackedStringArray get_configuration_warnings(); // ! Native version.
Status execute(double p_delta);
void abort();
2022-12-17 07:33:18 +00:00
2023-11-22 12:41:28 +00:00
_FORCE_INLINE_ Ref<BTTask> get_parent() const { return Ref<BTTask>(data.parent); }
_FORCE_INLINE_ bool is_root() const { return data.parent == nullptr; }
_FORCE_INLINE_ Ref<Blackboard> get_blackboard() const { return data.blackboard; }
_FORCE_INLINE_ Status get_status() const { return data.status; }
_FORCE_INLINE_ double get_elapsed_time() const { return data.elapsed; };
_FORCE_INLINE_ Ref<BTTask> get_child(int p_idx) const {
ERR_FAIL_INDEX_V(p_idx, data.children.size(), nullptr);
return data.children.get(p_idx);
}
_FORCE_INLINE_ int get_child_count() const { return data.children.size(); }
int get_child_count_excluding_comments() const;
2023-11-22 12:41:28 +00:00
2022-08-28 10:54:34 +00:00
void add_child(Ref<BTTask> p_child);
void add_child_at_index(Ref<BTTask> p_child, int p_idx);
void remove_child(Ref<BTTask> p_child);
2022-09-21 14:13:17 +00:00
void remove_child_at_index(int p_idx);
2023-11-22 12:41:28 +00:00
_FORCE_INLINE_ bool has_child(const Ref<BTTask> &p_child) const { return data.children.find(p_child) != -1; }
_FORCE_INLINE_ int get_index() const { return data.index; }
2023-11-22 12:41:28 +00:00
bool is_descendant_of(const Ref<BTTask> &p_task) const;
2022-08-28 10:54:34 +00:00
Ref<BTTask> next_sibling() const;
2022-12-17 07:33:18 +00:00
void print_tree(int p_initial_tabs = 0);
2022-08-28 10:54:34 +00:00
BTTask();
~BTTask();
2022-08-28 10:54:34 +00:00
};
2024-01-13 16:10:42 +00:00
#endif // BT_TASK_H