163 lines
3.8 KiB
C++
163 lines
3.8 KiB
C++
/* limbo_ai_editor_plugin.h */
|
|
|
|
#ifdef TOOLS_ENABLED
|
|
#ifndef LIMBO_AI_EDITOR_PLUGIN_H
|
|
#define LIMBO_AI_EDITOR_PLUGIN_H
|
|
|
|
#include "../bt/behavior_tree.h"
|
|
#include "core/object.h"
|
|
#include "editor/editor_node.h"
|
|
#include "editor/editor_plugin.h"
|
|
#include "scene/gui/box_container.h"
|
|
#include "scene/gui/file_dialog.h"
|
|
#include "scene/gui/flow_container.h"
|
|
#include "scene/gui/line_edit.h"
|
|
#include "scene/gui/popup_menu.h"
|
|
#include "scene/gui/tree.h"
|
|
|
|
class TaskTree : public Control {
|
|
GDCLASS(TaskTree, Control);
|
|
|
|
private:
|
|
Tree *tree;
|
|
Ref<BehaviorTree> bt;
|
|
Ref<BTTask> last_selected;
|
|
|
|
TreeItem *_create_tree(const Ref<BTTask> &p_task, TreeItem *p_parent, int p_idx = -1);
|
|
void _update_item(TreeItem *p_item);
|
|
void _update_tree();
|
|
TreeItem *_find_item(const Ref<BTTask> &p_task) const;
|
|
|
|
void _on_item_selected();
|
|
void _on_item_rmb_selected(const Vector2 &p_pos);
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
void load_bt(const Ref<BehaviorTree> &p_behavior_tree);
|
|
Ref<BehaviorTree> get_bt() const { return bt; }
|
|
void update_tree() { _update_tree(); }
|
|
void update_task(const Ref<BTTask> &p_task);
|
|
Ref<BTTask> get_selected() const;
|
|
void deselect();
|
|
|
|
TaskTree();
|
|
~TaskTree();
|
|
};
|
|
|
|
class TaskSection : public VBoxContainer {
|
|
GDCLASS(TaskSection, VBoxContainer);
|
|
|
|
private:
|
|
FlowContainer *tasks_container;
|
|
Button *section_header;
|
|
|
|
void _on_task_button_pressed(const StringName &p_task);
|
|
void _on_header_pressed();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
void set_filter(String p_filter);
|
|
void add_task_button(String p_name, const Ref<Texture> &icon, Variant p_meta);
|
|
|
|
TaskSection(String p_category_name, EditorNode *p_editor);
|
|
~TaskSection();
|
|
};
|
|
|
|
class TaskPanel : public PanelContainer {
|
|
GDCLASS(TaskPanel, PanelContainer)
|
|
|
|
private:
|
|
EditorNode *editor;
|
|
LineEdit *filter_edit;
|
|
VBoxContainer *sections;
|
|
|
|
void _init();
|
|
void _populate_core_tasks_from_class(const StringName &p_base_class, List<String> *p_task_classes);
|
|
void _on_task_button_pressed(const StringName &p_task);
|
|
void _on_filter_text_changed(String p_text);
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
TaskPanel(EditorNode *p_editor);
|
|
~TaskPanel();
|
|
};
|
|
|
|
class LimboAIEditor : public Control {
|
|
GDCLASS(LimboAIEditor, Control);
|
|
|
|
private:
|
|
enum Action {
|
|
ACTION_REMOVE,
|
|
ACTION_MOVE_UP,
|
|
ACTION_MOVE_DOWN,
|
|
ACTION_DUPLICATE,
|
|
ACTION_MAKE_ROOT,
|
|
};
|
|
|
|
EditorNode *editor;
|
|
Vector<Ref<BehaviorTree>> history;
|
|
int idx_history;
|
|
|
|
Button *header;
|
|
TaskTree *task_tree;
|
|
PopupMenu *menu;
|
|
FileDialog *save_dialog;
|
|
FileDialog *load_dialog;
|
|
Button *history_back;
|
|
Button *history_forward;
|
|
|
|
void _add_task(const Ref<BTTask> &p_prototype);
|
|
void _update_header();
|
|
void _update_history_buttons();
|
|
void _new_bt();
|
|
void _save_bt(String p_path);
|
|
void _load_bt(String p_path);
|
|
void _edit_bt(Ref<BehaviorTree> p_behavior_tree);
|
|
|
|
void _on_tree_rmb(const Vector2 &p_menu_pos);
|
|
void _on_action_selected(int p_id);
|
|
void _on_tree_task_selected(const Ref<BTTask> &p_task) const;
|
|
void _on_visibility_changed() const;
|
|
void _on_header_pressed() const;
|
|
void _on_save_pressed();
|
|
void _on_panel_task_selected(const StringName &p_task);
|
|
void _on_history_back();
|
|
void _on_history_forward();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
LimboAIEditor(EditorNode *p_editor);
|
|
~LimboAIEditor();
|
|
};
|
|
|
|
class LimboAIEditorPlugin : public EditorPlugin {
|
|
GDCLASS(LimboAIEditorPlugin, EditorPlugin);
|
|
|
|
private:
|
|
EditorNode *editor;
|
|
LimboAIEditor *limbo_ai_editor;
|
|
|
|
protected:
|
|
void _notification(int p_notification);
|
|
|
|
public:
|
|
virtual String get_name() const { return "LimboAI"; }
|
|
virtual const Ref<Texture> get_icon() const;
|
|
bool has_main_screen() const { return true; }
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
LimboAIEditorPlugin(EditorNode *p_editor);
|
|
~LimboAIEditorPlugin();
|
|
};
|
|
|
|
#endif // TOOLS_ENABLED
|
|
|
|
#endif // LIMBO_AI_EDITOR_PLUGIN_H
|