2022-04-15 02:20:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
#include "paint_editor_plugin.h"
|
|
|
|
|
2022-11-15 17:33:09 +01:00
|
|
|
#include "core/config/engine.h"
|
2022-11-20 23:16:20 +01:00
|
|
|
#include "editor/editor_node.h"
|
2022-11-15 18:16:32 +01:00
|
|
|
#include "editor/editor_settings.h"
|
|
|
|
#include "editor/plugins/canvas_item_editor_plugin.h"
|
|
|
|
|
2022-11-20 23:18:31 +01:00
|
|
|
#include "paint_inspector_plugin.h"
|
2022-11-15 18:16:32 +01:00
|
|
|
|
2022-11-20 23:18:31 +01:00
|
|
|
#include "../nodes/paint_node.h"
|
2022-11-15 22:11:49 +01:00
|
|
|
|
2022-04-16 02:35:03 +02:00
|
|
|
void PaintEditorPlugin::make_visible(const bool visible) {
|
2022-04-15 02:20:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
String PaintEditorPlugin::get_name() const {
|
2022-11-16 23:48:45 +01:00
|
|
|
return "PaintNodeEditor";
|
2022-04-15 02:20:27 +02:00
|
|
|
}
|
|
|
|
|
2022-11-15 22:11:49 +01:00
|
|
|
void PaintEditorPlugin::edit(Object *p_object) {
|
2022-11-16 15:25:27 +01:00
|
|
|
_active_node = Object::cast_to<PaintNode>(p_object);
|
2022-11-15 22:11:49 +01:00
|
|
|
}
|
|
|
|
bool PaintEditorPlugin::handles(Object *p_object) const {
|
|
|
|
return p_object->is_class("PaintNode");
|
|
|
|
}
|
|
|
|
void PaintEditorPlugin::edited_scene_changed() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PaintEditorPlugin::forward_canvas_gui_input(const Ref<InputEvent> &p_event) {
|
2022-11-16 15:25:27 +01:00
|
|
|
if (!_active_node) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ObjectDB::instance_validate(_active_node)) {
|
|
|
|
_active_node = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-20 16:04:39 +01:00
|
|
|
if (CanvasItemEditor::get_singleton() && CanvasItemEditor::get_singleton()->get_current_tool() != CanvasItemEditor::TOOL_SELECT) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-16 15:25:27 +01:00
|
|
|
return _active_node->forward_canvas_gui_input(p_event);
|
2022-11-15 22:11:49 +01:00
|
|
|
}
|
|
|
|
void PaintEditorPlugin::forward_canvas_draw_over_viewport(Control *p_overlay) {
|
|
|
|
}
|
|
|
|
void PaintEditorPlugin::forward_canvas_force_draw_over_viewport(Control *p_overlay) {
|
|
|
|
}
|
|
|
|
|
2022-04-15 02:20:27 +02:00
|
|
|
PaintEditorPlugin::PaintEditorPlugin(EditorNode *p_node) {
|
2022-11-16 15:25:27 +01:00
|
|
|
_active_node = NULL;
|
|
|
|
|
2022-04-15 02:20:27 +02:00
|
|
|
editor = p_node;
|
2022-11-20 21:01:54 +01:00
|
|
|
|
|
|
|
_inspector_plugin = memnew(PaintInspectorPlugin);
|
|
|
|
add_inspector_plugin(_inspector_plugin);
|
2022-11-20 23:16:20 +01:00
|
|
|
|
2022-11-20 23:40:42 +01:00
|
|
|
editor->get_scene_tree_dock()->add_custom_scene_root_class("Paint", "PaintProject");
|
2022-04-15 02:20:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PaintEditorPlugin::~PaintEditorPlugin() {
|
|
|
|
}
|
|
|
|
|
2022-11-16 15:25:27 +01:00
|
|
|
void PaintEditorPlugin::on_node_removed(Node *node) {
|
|
|
|
if (_active_node == node) {
|
|
|
|
_active_node = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-15 18:16:32 +01:00
|
|
|
void PaintEditorPlugin::_notification(int p_what) {
|
2022-11-16 23:48:45 +01:00
|
|
|
if (p_what == NOTIFICATION_READY) {
|
2022-11-16 15:25:27 +01:00
|
|
|
if (!get_tree()->is_connected("node_removed", this, "on_node_removed")) {
|
|
|
|
get_tree()->connect("node_removed", this, "on_node_removed");
|
|
|
|
}
|
2022-11-15 18:16:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-15 02:20:27 +02:00
|
|
|
void PaintEditorPlugin::_bind_methods() {
|
2022-11-16 15:25:27 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("on_node_removed", "node"), &PaintEditorPlugin::on_node_removed);
|
2022-04-15 02:20:27 +02:00
|
|
|
}
|