2022-08-28 10:54:34 +00:00
|
|
|
/* bt_task.h */
|
|
|
|
|
|
|
|
#ifndef BTTASK_H
|
|
|
|
#define BTTASK_H
|
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/io/resource.h"
|
|
|
|
#include "core/object/object.h"
|
|
|
|
#include "core/object/ref_counted.h"
|
|
|
|
#include "core/string/ustring.h"
|
|
|
|
#include "core/templates/vector.h"
|
|
|
|
#include "core/variant/array.h"
|
|
|
|
#include "core/variant/dictionary.h"
|
2022-09-08 13:56:51 +00:00
|
|
|
#include "modules/limboai/blackboard.h"
|
2022-08-28 10:54:34 +00:00
|
|
|
#include "scene/resources/texture.h"
|
|
|
|
|
|
|
|
class BTTask : public Resource {
|
|
|
|
GDCLASS(BTTask, Resource);
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
FRESH,
|
|
|
|
RUNNING,
|
|
|
|
FAILURE,
|
|
|
|
SUCCESS,
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2022-08-30 16:48:49 +00:00
|
|
|
friend class BehaviorTree;
|
|
|
|
|
2022-08-31 15:05:25 +00:00
|
|
|
String custom_name;
|
2022-12-17 07:33:18 +00:00
|
|
|
Node *agent;
|
2022-09-08 13:56:51 +00:00
|
|
|
Ref<Blackboard> blackboard;
|
2022-08-31 15:05:25 +00:00
|
|
|
BTTask *parent;
|
|
|
|
Vector<Ref<BTTask>> children;
|
|
|
|
int status;
|
2022-08-28 10:54:34 +00:00
|
|
|
|
|
|
|
Array _get_children() const;
|
|
|
|
void _set_children(Array children);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
virtual String _generate_name() const;
|
2022-08-31 15:05:25 +00:00
|
|
|
virtual void _setup() {}
|
|
|
|
virtual void _enter() {}
|
|
|
|
virtual void _exit() {}
|
2023-04-10 08:08:11 +00:00
|
|
|
virtual int _tick(double p_delta) { return FAILURE; }
|
2022-08-28 10:54:34 +00:00
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
GDVIRTUAL0RC(String, _generate_name);
|
|
|
|
GDVIRTUAL0(_setup);
|
|
|
|
GDVIRTUAL0(_enter);
|
|
|
|
GDVIRTUAL0(_exit);
|
2023-04-10 08:08:11 +00:00
|
|
|
GDVIRTUAL1R(int, _tick, double);
|
2022-12-15 07:26:52 +00:00
|
|
|
GDVIRTUAL0RC(String, _get_configuration_warning);
|
|
|
|
|
2022-08-28 10:54:34 +00:00
|
|
|
public:
|
2022-12-19 09:29:46 +00:00
|
|
|
virtual bool editor_can_reload_from_file() override { return false; }
|
|
|
|
|
2022-12-17 07:33:18 +00:00
|
|
|
Node *get_agent() const { return agent; }
|
|
|
|
void set_agent(Node *p_agent) { agent = p_agent; }
|
|
|
|
|
2022-08-31 15:05:25 +00:00
|
|
|
String get_custom_name() const { return custom_name; }
|
2022-08-28 10:54:34 +00:00
|
|
|
void set_custom_name(const String &p_name);
|
|
|
|
String get_task_name() const;
|
|
|
|
|
2022-12-17 07:33:18 +00:00
|
|
|
Ref<Blackboard> get_blackboard() const { return blackboard; }
|
|
|
|
Ref<BTTask> get_parent() const { return Ref<BTTask>(parent); }
|
|
|
|
Ref<BTTask> get_root() const;
|
|
|
|
bool is_root() const { return parent == nullptr; }
|
|
|
|
|
2022-08-28 10:54:34 +00:00
|
|
|
virtual Ref<BTTask> clone() const;
|
2022-12-17 07:33:18 +00:00
|
|
|
virtual void initialize(Node *p_agent, const Ref<Blackboard> &p_blackboard);
|
2022-12-19 09:29:46 +00:00
|
|
|
virtual String get_configuration_warning() const;
|
2022-12-15 07:26:52 +00:00
|
|
|
|
2023-04-10 08:08:11 +00:00
|
|
|
int execute(double p_delta);
|
2022-08-28 10:54:34 +00:00
|
|
|
void cancel();
|
2022-12-17 07:33:18 +00:00
|
|
|
int get_status() const { return status; }
|
|
|
|
|
2022-08-28 10:54:34 +00:00
|
|
|
Ref<BTTask> get_child(int p_idx) const;
|
|
|
|
int get_child_count() const;
|
|
|
|
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);
|
2022-08-28 10:54:34 +00:00
|
|
|
bool has_child(const Ref<BTTask> &p_child) const;
|
2022-09-03 15:00:20 +00:00
|
|
|
bool is_descendant_of(const Ref<BTTask> &p_task) const;
|
2022-08-28 10:54:34 +00:00
|
|
|
int get_child_index(const Ref<BTTask> &p_child) const;
|
|
|
|
Ref<BTTask> next_sibling() const;
|
2022-12-17 07:33:18 +00:00
|
|
|
|
2022-08-28 10:54:34 +00:00
|
|
|
void print_tree(int p_initial_tabs = 0) const;
|
|
|
|
|
|
|
|
BTTask();
|
2022-08-30 16:48:49 +00:00
|
|
|
~BTTask();
|
2022-08-28 10:54:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BTTASK_H
|