2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* shader_editor_plugin.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef SHADER_EDITOR_PLUGIN_H
|
|
|
|
#define SHADER_EDITOR_PLUGIN_H
|
|
|
|
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/code_editor.h"
|
|
|
|
#include "editor/editor_plugin.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/gui/menu_button.h"
|
2017-11-11 05:07:41 +01:00
|
|
|
#include "scene/gui/panel_container.h"
|
2021-01-01 16:04:47 +01:00
|
|
|
#include "scene/gui/rich_text_label.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/gui/tab_container.h"
|
|
|
|
#include "scene/gui/text_edit.h"
|
|
|
|
#include "scene/main/timer.h"
|
|
|
|
#include "scene/resources/shader.h"
|
2022-03-08 11:39:16 +01:00
|
|
|
#include "scene/resources/shader_include.h"
|
2022-01-10 19:46:41 +01:00
|
|
|
#include "servers/rendering/shader_warnings.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-05-27 11:02:55 +02:00
|
|
|
class ItemList;
|
|
|
|
class VisualShaderEditor;
|
|
|
|
class HSplitContainer;
|
|
|
|
class ShaderCreateDialog;
|
|
|
|
|
2022-08-03 14:19:31 +02:00
|
|
|
class GDShaderSyntaxHighlighter : public CodeHighlighter {
|
|
|
|
GDCLASS(GDShaderSyntaxHighlighter, CodeHighlighter)
|
|
|
|
|
|
|
|
private:
|
|
|
|
Vector<Point2i> disabled_branch_regions;
|
|
|
|
Color disabled_branch_color;
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual Dictionary _get_line_syntax_highlighting_impl(int p_line) override;
|
|
|
|
|
|
|
|
void add_disabled_branch_region(const Point2i &p_region);
|
|
|
|
void clear_disabled_branch_regions();
|
|
|
|
void set_disabled_branch_color(const Color &p_color);
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class ShaderTextEditor : public CodeTextEditor {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(ShaderTextEditor, CodeTextEditor);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-09-10 22:25:00 +02:00
|
|
|
Color marked_line_color = Color(1, 1, 1);
|
|
|
|
|
2021-01-01 16:04:47 +01:00
|
|
|
struct WarningsComparator {
|
|
|
|
_ALWAYS_INLINE_ bool operator()(const ShaderWarning &p_a, const ShaderWarning &p_b) const { return (p_a.get_line() < p_b.get_line()); }
|
|
|
|
};
|
|
|
|
|
2022-08-03 14:19:31 +02:00
|
|
|
Ref<GDShaderSyntaxHighlighter> syntax_highlighter;
|
2021-01-01 16:04:47 +01:00
|
|
|
RichTextLabel *warnings_panel = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<Shader> shader;
|
2022-03-08 11:39:16 +01:00
|
|
|
Ref<ShaderInclude> shader_inc;
|
2021-01-01 16:04:47 +01:00
|
|
|
List<ShaderWarning> warnings;
|
2022-01-19 06:31:39 +01:00
|
|
|
Error last_compile_result = Error::OK;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
void _check_shader_mode();
|
2021-01-01 16:04:47 +01:00
|
|
|
void _update_warning_panel();
|
2017-04-07 04:36:37 +02:00
|
|
|
|
2022-06-29 11:31:18 +02:00
|
|
|
bool block_shader_changed = false;
|
|
|
|
void _shader_changed();
|
|
|
|
|
|
|
|
uint32_t dependencies_version = 0; // Incremented if deps changed
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
2022-01-19 06:31:39 +01:00
|
|
|
void _notification(int p_what);
|
2014-02-10 02:10:30 +01:00
|
|
|
static void _bind_methods();
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual void _load_theme_settings() override;
|
2016-10-07 16:31:18 +02:00
|
|
|
|
2022-03-26 16:48:43 +01:00
|
|
|
virtual void _code_complete_script(const String &p_code, List<ScriptLanguage::CodeCompletionOption> *r_options) override;
|
2016-10-07 16:31:18 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
2022-06-29 11:31:18 +02:00
|
|
|
void set_block_shader_changed(bool p_block) { block_shader_changed = p_block; }
|
|
|
|
uint32_t get_dependencies_version() const { return dependencies_version; }
|
|
|
|
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual void _validate_script() override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-10-08 21:26:45 +02:00
|
|
|
void reload_text();
|
2021-01-01 16:04:47 +01:00
|
|
|
void set_warnings_panel(RichTextLabel *p_warnings_panel);
|
2018-10-08 21:26:45 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<Shader> get_edited_shader() const;
|
2022-03-08 11:39:16 +01:00
|
|
|
Ref<ShaderInclude> get_edited_shader_include() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_edited_shader(const Ref<Shader> &p_shader);
|
2022-03-08 11:39:16 +01:00
|
|
|
void set_edited_shader(const Ref<Shader> &p_shader, const String &p_code);
|
|
|
|
void set_edited_shader_include(const Ref<ShaderInclude> &p_include);
|
|
|
|
void set_edited_shader_include(const Ref<ShaderInclude> &p_include, const String &p_code);
|
|
|
|
void set_edited_code(const String &p_code);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ShaderTextEditor();
|
|
|
|
};
|
|
|
|
|
2017-11-11 05:07:41 +01:00
|
|
|
class ShaderEditor : public PanelContainer {
|
|
|
|
GDCLASS(ShaderEditor, PanelContainer);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
enum {
|
|
|
|
EDIT_UNDO,
|
|
|
|
EDIT_REDO,
|
|
|
|
EDIT_CUT,
|
|
|
|
EDIT_COPY,
|
|
|
|
EDIT_PASTE,
|
|
|
|
EDIT_SELECT_ALL,
|
2017-11-11 05:07:41 +01:00
|
|
|
EDIT_MOVE_LINE_UP,
|
|
|
|
EDIT_MOVE_LINE_DOWN,
|
|
|
|
EDIT_INDENT_LEFT,
|
|
|
|
EDIT_INDENT_RIGHT,
|
|
|
|
EDIT_DELETE_LINE,
|
2021-06-29 12:09:07 +02:00
|
|
|
EDIT_DUPLICATE_SELECTION,
|
2017-11-11 05:07:41 +01:00
|
|
|
EDIT_TOGGLE_COMMENT,
|
|
|
|
EDIT_COMPLETE,
|
2014-02-10 02:10:30 +01:00
|
|
|
SEARCH_FIND,
|
|
|
|
SEARCH_FIND_NEXT,
|
2016-05-28 18:25:45 +02:00
|
|
|
SEARCH_FIND_PREV,
|
2014-02-10 02:10:30 +01:00
|
|
|
SEARCH_REPLACE,
|
|
|
|
SEARCH_GOTO_LINE,
|
2019-04-20 01:51:25 +02:00
|
|
|
BOOKMARK_TOGGLE,
|
|
|
|
BOOKMARK_GOTO_NEXT,
|
|
|
|
BOOKMARK_GOTO_PREV,
|
|
|
|
BOOKMARK_REMOVE_ALL,
|
2019-08-02 16:03:45 +02:00
|
|
|
HELP_DOCS,
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
MenuButton *edit_menu = nullptr;
|
|
|
|
MenuButton *search_menu = nullptr;
|
|
|
|
PopupMenu *bookmarks_menu = nullptr;
|
|
|
|
MenuButton *help_menu = nullptr;
|
|
|
|
PopupMenu *context_menu = nullptr;
|
2021-01-01 16:04:47 +01:00
|
|
|
RichTextLabel *warnings_panel = nullptr;
|
2022-05-02 16:28:25 +02:00
|
|
|
uint64_t idle = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
GotoLineDialog *goto_line_dialog = nullptr;
|
|
|
|
ConfirmationDialog *erase_tab_confirm = nullptr;
|
|
|
|
ConfirmationDialog *disk_changed = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
ShaderTextEditor *shader_editor = nullptr;
|
2022-06-29 11:31:18 +02:00
|
|
|
bool compilation_success = true;
|
2016-10-07 16:31:18 +02:00
|
|
|
|
2017-08-12 18:52:50 +02:00
|
|
|
void _menu_option(int p_option);
|
2014-02-10 02:10:30 +01:00
|
|
|
mutable Ref<Shader> shader;
|
2022-03-08 11:39:16 +01:00
|
|
|
mutable Ref<ShaderInclude> shader_inc;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-04-29 13:39:04 +02:00
|
|
|
void _editor_settings_changed();
|
2021-01-01 16:04:47 +01:00
|
|
|
void _project_settings_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-10-08 21:26:45 +02:00
|
|
|
void _check_for_external_edit();
|
|
|
|
void _reload_shader_from_disk();
|
2022-03-08 11:39:16 +01:00
|
|
|
void _reload_shader_include_from_disk();
|
|
|
|
void _reload();
|
2021-01-01 16:04:47 +01:00
|
|
|
void _show_warnings_panel(bool p_show);
|
|
|
|
void _warning_clicked(Variant p_line);
|
|
|
|
void _update_warnings(bool p_validate);
|
2018-10-08 21:26:45 +02:00
|
|
|
|
2022-06-29 11:31:18 +02:00
|
|
|
void _script_validated(bool p_valid) {
|
|
|
|
compilation_success = p_valid;
|
|
|
|
emit_signal(SNAME("validation_changed"));
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t dependencies_version = 0xFFFFFFFF;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
2019-06-22 20:22:52 +02:00
|
|
|
void _make_context_menu(bool p_selection, Vector2 p_position);
|
2022-03-08 11:39:16 +01:00
|
|
|
void _text_edit_gui_input(const Ref<InputEvent> &p_ev);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-05-21 10:07:48 +02:00
|
|
|
void _update_bookmark_list();
|
|
|
|
void _bookmark_item_pressed(int p_idx);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2022-06-29 11:31:18 +02:00
|
|
|
bool was_compilation_successful() const { return compilation_success; }
|
2014-02-10 02:10:30 +01:00
|
|
|
void apply_shaders();
|
|
|
|
void ensure_select_current();
|
2017-03-05 16:44:50 +01:00
|
|
|
void edit(const Ref<Shader> &p_shader);
|
2022-03-08 11:39:16 +01:00
|
|
|
void edit(const Ref<ShaderInclude> &p_shader_inc);
|
2018-10-27 17:24:41 +02:00
|
|
|
void goto_line_selection(int p_line, int p_begin, int p_end);
|
2022-03-08 11:39:16 +01:00
|
|
|
void save_external_data(const String &p_str = "");
|
|
|
|
void validate_script();
|
2022-07-28 18:28:38 +02:00
|
|
|
bool is_unsaved() const;
|
2018-10-27 17:24:41 +02:00
|
|
|
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual Size2 get_minimum_size() const override { return Size2(0, 200); }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-01-27 10:36:51 +01:00
|
|
|
ShaderEditor();
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class ShaderEditorPlugin : public EditorPlugin {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(ShaderEditorPlugin, EditorPlugin);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-05-27 11:02:55 +02:00
|
|
|
struct EditedShader {
|
|
|
|
Ref<Shader> shader;
|
2022-03-08 11:39:16 +01:00
|
|
|
Ref<ShaderInclude> shader_inc;
|
2022-05-27 11:02:55 +02:00
|
|
|
ShaderEditor *shader_editor = nullptr;
|
|
|
|
VisualShaderEditor *visual_shader_editor = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
LocalVector<EditedShader> edited_shaders;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
FILE_NEW,
|
2022-03-08 11:39:16 +01:00
|
|
|
FILE_NEW_INCLUDE,
|
2022-05-27 11:02:55 +02:00
|
|
|
FILE_OPEN,
|
2022-03-08 11:39:16 +01:00
|
|
|
FILE_OPEN_INCLUDE,
|
2022-05-27 11:02:55 +02:00
|
|
|
FILE_SAVE,
|
|
|
|
FILE_SAVE_AS,
|
|
|
|
FILE_INSPECT,
|
|
|
|
FILE_CLOSE,
|
|
|
|
FILE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
HSplitContainer *main_split = nullptr;
|
|
|
|
ItemList *shader_list = nullptr;
|
|
|
|
TabContainer *shader_tabs = nullptr;
|
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
Button *button = nullptr;
|
2022-05-27 11:02:55 +02:00
|
|
|
MenuButton *file_menu = nullptr;
|
|
|
|
|
|
|
|
ShaderCreateDialog *shader_create_dialog = nullptr;
|
|
|
|
|
|
|
|
void _update_shader_list();
|
|
|
|
void _shader_selected(int p_index);
|
2022-07-28 18:28:38 +02:00
|
|
|
void _shader_list_clicked(int p_item, Vector2 p_local_mouse_pos, MouseButton p_mouse_button_index);
|
2022-05-27 11:02:55 +02:00
|
|
|
void _menu_item_pressed(int p_index);
|
|
|
|
void _resource_saved(Object *obj);
|
|
|
|
void _close_shader(int p_index);
|
|
|
|
|
|
|
|
void _shader_created(Ref<Shader> p_shader);
|
2022-03-08 11:39:16 +01:00
|
|
|
void _shader_include_created(Ref<ShaderInclude> p_shader_inc);
|
2022-06-29 11:31:18 +02:00
|
|
|
void _update_shader_list_status();
|
2016-10-07 16:31:18 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual void edit(Object *p_object) override;
|
|
|
|
virtual bool handles(Object *p_object) const override;
|
|
|
|
virtual void make_visible(bool p_visible) override;
|
|
|
|
virtual void selected_notify() override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-05-27 11:02:55 +02:00
|
|
|
ShaderEditor *get_shader_editor(const Ref<Shader> &p_for_shader);
|
2022-07-16 08:59:20 +02:00
|
|
|
VisualShaderEditor *get_visual_shader_editor(const Ref<Shader> &p_for_shader);
|
2018-10-27 17:24:41 +02:00
|
|
|
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual void save_external_data() override;
|
|
|
|
virtual void apply_changes() override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-01-27 10:36:51 +01:00
|
|
|
ShaderEditorPlugin();
|
2014-02-10 02:10:30 +01:00
|
|
|
~ShaderEditorPlugin();
|
|
|
|
};
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#endif // SHADER_EDITOR_PLUGIN_H
|