2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* editor_node.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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 EDITOR_NODE_H
|
|
|
|
#define EDITOR_NODE_H
|
|
|
|
|
2021-02-10 19:22:13 +01:00
|
|
|
#include "core/templates/safe_refcount.h"
|
2022-11-19 12:45:49 +01:00
|
|
|
#include "editor/editor_data.h"
|
2018-10-29 20:36:31 +01:00
|
|
|
#include "editor/editor_folding.h"
|
2022-11-19 12:45:49 +01:00
|
|
|
#include "editor/editor_plugin.h"
|
2019-05-30 20:16:40 +02:00
|
|
|
|
2014-02-25 13:31:47 +01:00
|
|
|
typedef void (*EditorNodeInitCallback)();
|
2016-08-07 00:00:54 +02:00
|
|
|
typedef void (*EditorPluginInitializeCallback)();
|
2017-08-29 23:59:20 +02:00
|
|
|
typedef bool (*EditorBuildCallback)();
|
2014-02-25 13:31:47 +01:00
|
|
|
|
2019-12-24 08:17:23 +01:00
|
|
|
class AcceptDialog;
|
|
|
|
class CenterContainer;
|
2022-11-19 12:45:49 +01:00
|
|
|
class CheckBox;
|
2022-07-31 20:14:15 +02:00
|
|
|
class ColorPicker;
|
2019-12-24 08:17:23 +01:00
|
|
|
class ConfirmationDialog;
|
|
|
|
class Control;
|
2023-04-07 18:59:49 +02:00
|
|
|
class FileDialog;
|
|
|
|
class HBoxContainer;
|
|
|
|
class HSplitContainer;
|
|
|
|
class LinkButton;
|
|
|
|
class MenuBar;
|
|
|
|
class MenuButton;
|
|
|
|
class Node2D;
|
|
|
|
class OptionButton;
|
|
|
|
class Panel;
|
|
|
|
class PanelContainer;
|
2023-04-12 21:02:28 +02:00
|
|
|
class PopupPanel;
|
|
|
|
class RichTextLabel;
|
2023-04-07 18:59:49 +02:00
|
|
|
class SubViewport;
|
|
|
|
class TabBar;
|
|
|
|
class TabContainer;
|
|
|
|
class TextureRect;
|
|
|
|
class TextureProgressBar;
|
|
|
|
class Tree;
|
2023-04-05 17:14:46 +02:00
|
|
|
class VBoxContainer;
|
2023-04-07 18:59:49 +02:00
|
|
|
class VSplitContainer;
|
|
|
|
class Window;
|
|
|
|
|
|
|
|
class AudioStreamImportSettings;
|
|
|
|
class AudioStreamPreviewGenerator;
|
|
|
|
class BackgroundProgress;
|
2019-12-24 08:17:23 +01:00
|
|
|
class DependencyEditor;
|
|
|
|
class DependencyErrorDialog;
|
2022-02-12 02:46:22 +01:00
|
|
|
class DynamicFontImportSettings;
|
2019-12-24 08:17:23 +01:00
|
|
|
class EditorAbout;
|
2023-04-07 18:59:49 +02:00
|
|
|
class EditorBuildProfileManager;
|
2021-05-29 15:28:16 +02:00
|
|
|
class EditorCommandPalette;
|
2019-12-24 08:17:23 +01:00
|
|
|
class EditorExport;
|
2022-02-12 02:46:22 +01:00
|
|
|
class EditorExtensionManager;
|
2019-12-24 08:17:23 +01:00
|
|
|
class EditorFeatureProfileManager;
|
2022-11-19 12:45:49 +01:00
|
|
|
class EditorFileDialog;
|
2022-02-12 02:46:22 +01:00
|
|
|
class EditorFolding;
|
2019-12-24 08:17:23 +01:00
|
|
|
class EditorInspector;
|
|
|
|
class EditorLayoutsDialog;
|
|
|
|
class EditorLog;
|
2023-04-07 18:59:49 +02:00
|
|
|
class EditorNativeShaderSourceVisualizer;
|
2016-03-30 01:02:53 +02:00
|
|
|
class EditorPluginList;
|
2019-12-24 08:17:23 +01:00
|
|
|
class EditorQuickOpen;
|
2023-01-21 22:49:06 +01:00
|
|
|
class EditorPropertyResource;
|
2019-12-24 08:17:23 +01:00
|
|
|
class EditorResourcePreview;
|
2022-07-31 20:14:15 +02:00
|
|
|
class EditorResourceConversionPlugin;
|
2023-04-12 21:02:28 +02:00
|
|
|
class EditorRunBar;
|
2019-12-24 08:17:23 +01:00
|
|
|
class EditorRunNative;
|
2023-08-24 12:24:29 +02:00
|
|
|
class EditorSceneTabs;
|
2022-11-19 12:45:49 +01:00
|
|
|
class EditorSelectionHistory;
|
2019-12-24 08:17:23 +01:00
|
|
|
class EditorSettingsDialog;
|
2023-04-07 18:59:49 +02:00
|
|
|
class EditorTitleBar;
|
2022-02-12 02:46:22 +01:00
|
|
|
class EditorToaster;
|
2022-03-25 18:06:46 +01:00
|
|
|
class EditorUndoRedoManager;
|
2019-12-24 08:17:23 +01:00
|
|
|
class ExportTemplateManager;
|
2022-04-02 13:43:15 +02:00
|
|
|
class FBXImporterManager;
|
2019-12-24 08:17:23 +01:00
|
|
|
class FileSystemDock;
|
2022-11-06 20:53:20 +01:00
|
|
|
class HistoryDock;
|
2019-12-24 08:17:23 +01:00
|
|
|
class ImportDock;
|
|
|
|
class NodeDock;
|
|
|
|
class OrphanResourcesDialog;
|
|
|
|
class PluginConfigDialog;
|
|
|
|
class ProgressDialog;
|
|
|
|
class ProjectExportDialog;
|
|
|
|
class ProjectSettingsEditor;
|
|
|
|
class RunSettingsDialog;
|
2022-02-12 02:46:22 +01:00
|
|
|
class SceneImportSettings;
|
2019-12-24 08:17:23 +01:00
|
|
|
class ScriptCreateDialog;
|
2022-11-02 15:23:25 +01:00
|
|
|
class WindowWrapper;
|
2015-06-14 03:12:53 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class EditorNode : public Node {
|
2017-01-03 03:03:46 +01:00
|
|
|
GDCLASS(EditorNode, Node);
|
2015-11-27 21:42:48 +01:00
|
|
|
|
2016-02-28 03:10:44 +01:00
|
|
|
public:
|
|
|
|
enum DockSlot {
|
|
|
|
DOCK_SLOT_LEFT_UL,
|
|
|
|
DOCK_SLOT_LEFT_BL,
|
|
|
|
DOCK_SLOT_LEFT_UR,
|
|
|
|
DOCK_SLOT_LEFT_BR,
|
|
|
|
DOCK_SLOT_RIGHT_UL,
|
|
|
|
DOCK_SLOT_RIGHT_BL,
|
|
|
|
DOCK_SLOT_RIGHT_UR,
|
|
|
|
DOCK_SLOT_RIGHT_BR,
|
|
|
|
DOCK_SLOT_MAX
|
|
|
|
};
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
enum EditorTable {
|
|
|
|
EDITOR_2D = 0,
|
|
|
|
EDITOR_3D,
|
|
|
|
EDITOR_SCRIPT,
|
|
|
|
EDITOR_ASSETLIB
|
|
|
|
};
|
|
|
|
|
2022-09-09 02:29:59 +02:00
|
|
|
enum SceneNameCasing {
|
|
|
|
SCENE_NAME_CASING_AUTO,
|
|
|
|
SCENE_NAME_CASING_PASCAL_CASE,
|
|
|
|
SCENE_NAME_CASING_SNAKE_CASE
|
|
|
|
};
|
|
|
|
|
2019-04-07 20:46:52 +02:00
|
|
|
struct ExecuteThreadArgs {
|
|
|
|
String path;
|
|
|
|
List<String> args;
|
|
|
|
String output;
|
2021-01-19 13:29:41 +01:00
|
|
|
Thread execute_output_thread;
|
2020-02-26 11:28:13 +01:00
|
|
|
Mutex execute_output_mutex;
|
2020-11-24 10:12:55 +01:00
|
|
|
int exitcode = 0;
|
2021-02-10 19:22:13 +01:00
|
|
|
SafeFlag done;
|
2019-04-07 20:46:52 +02:00
|
|
|
};
|
|
|
|
|
2016-02-28 03:10:44 +01:00
|
|
|
private:
|
2023-08-24 12:24:29 +02:00
|
|
|
friend class EditorSceneTabs;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
enum MenuOptions {
|
|
|
|
FILE_NEW_SCENE,
|
2015-10-10 14:09:09 +02:00
|
|
|
FILE_NEW_INHERITED_SCENE,
|
2014-02-10 02:10:30 +01:00
|
|
|
FILE_OPEN_SCENE,
|
|
|
|
FILE_SAVE_SCENE,
|
|
|
|
FILE_SAVE_AS_SCENE,
|
2016-06-26 05:54:17 +02:00
|
|
|
FILE_SAVE_ALL_SCENES,
|
2015-01-06 23:28:25 +01:00
|
|
|
FILE_SAVE_AND_RUN,
|
2022-06-22 05:56:09 +02:00
|
|
|
FILE_SAVE_AND_RUN_MAIN_SCENE,
|
2023-04-12 21:02:28 +02:00
|
|
|
FILE_RUN_SCENE,
|
2018-09-13 19:06:40 +02:00
|
|
|
FILE_SHOW_IN_FILESYSTEM,
|
2014-02-10 02:10:30 +01:00
|
|
|
FILE_EXPORT_PROJECT,
|
|
|
|
FILE_EXPORT_MESH_LIBRARY,
|
2019-04-07 20:46:52 +02:00
|
|
|
FILE_INSTALL_ANDROID_SOURCE,
|
|
|
|
FILE_EXPLORE_ANDROID_BUILD_TEMPLATES,
|
2014-02-10 02:10:30 +01:00
|
|
|
FILE_SAVE_OPTIMIZED,
|
|
|
|
FILE_OPEN_RECENT,
|
|
|
|
FILE_OPEN_OLD_SCENE,
|
2019-05-09 22:06:35 +02:00
|
|
|
FILE_QUICK_OPEN,
|
2014-02-10 02:10:30 +01:00
|
|
|
FILE_QUICK_OPEN_SCENE,
|
|
|
|
FILE_QUICK_OPEN_SCRIPT,
|
|
|
|
FILE_OPEN_PREV,
|
2015-06-22 05:03:19 +02:00
|
|
|
FILE_CLOSE,
|
2019-04-21 11:44:21 +02:00
|
|
|
FILE_CLOSE_OTHERS,
|
|
|
|
FILE_CLOSE_RIGHT,
|
|
|
|
FILE_CLOSE_ALL,
|
2014-02-10 02:10:30 +01:00
|
|
|
FILE_QUIT,
|
|
|
|
FILE_EXTERNAL_OPEN_SCENE,
|
|
|
|
EDIT_UNDO,
|
|
|
|
EDIT_REDO,
|
2020-05-10 20:12:25 +02:00
|
|
|
EDIT_RELOAD_SAVED_SCENE,
|
2015-11-29 05:08:31 +01:00
|
|
|
TOOLS_ORPHAN_RESOURCES,
|
2022-07-14 14:18:18 +02:00
|
|
|
TOOLS_BUILD_PROFILE_MANAGER,
|
2018-03-17 02:50:35 +01:00
|
|
|
TOOLS_CUSTOM,
|
2014-02-10 02:10:30 +01:00
|
|
|
RESOURCE_SAVE,
|
|
|
|
RESOURCE_SAVE_AS,
|
2016-05-22 02:18:16 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
RUN_SETTINGS,
|
2021-12-28 01:51:45 +01:00
|
|
|
RUN_USER_DATA_FOLDER,
|
2022-03-23 12:07:29 +01:00
|
|
|
RELOAD_CURRENT_PROJECT,
|
2014-02-18 05:21:06 +01:00
|
|
|
RUN_PROJECT_MANAGER,
|
2023-04-12 14:59:34 +02:00
|
|
|
VCS_MENU,
|
2020-09-29 21:01:26 +02:00
|
|
|
RUN_VCS_METADATA,
|
2019-09-03 16:42:08 +02:00
|
|
|
RUN_VCS_SETTINGS,
|
2018-12-11 16:52:25 +01:00
|
|
|
SETTINGS_UPDATE_CONTINUOUSLY,
|
|
|
|
SETTINGS_UPDATE_WHEN_CHANGED,
|
2019-09-03 16:42:08 +02:00
|
|
|
SETTINGS_UPDATE_ALWAYS,
|
|
|
|
SETTINGS_UPDATE_CHANGES,
|
2016-10-01 16:15:07 +02:00
|
|
|
SETTINGS_UPDATE_SPINNER_HIDE,
|
2014-02-10 02:10:30 +01:00
|
|
|
SETTINGS_PREFERENCES,
|
2015-11-22 19:11:17 +01:00
|
|
|
SETTINGS_LAYOUT_SAVE,
|
|
|
|
SETTINGS_LAYOUT_DELETE,
|
|
|
|
SETTINGS_LAYOUT_DEFAULT,
|
2018-07-25 19:53:12 +02:00
|
|
|
SETTINGS_EDITOR_DATA_FOLDER,
|
|
|
|
SETTINGS_EDITOR_CONFIG_FOLDER,
|
2017-03-21 03:31:41 +01:00
|
|
|
SETTINGS_MANAGE_EXPORT_TEMPLATES,
|
2022-04-02 13:43:15 +02:00
|
|
|
SETTINGS_MANAGE_FBX_IMPORTER,
|
2019-04-09 00:18:03 +02:00
|
|
|
SETTINGS_MANAGE_FEATURE_PROFILES,
|
2021-07-15 15:12:56 +02:00
|
|
|
SETTINGS_INSTALL_ANDROID_BUILD_TEMPLATE,
|
2016-06-28 00:59:33 +02:00
|
|
|
SETTINGS_PICK_MAIN_SCENE,
|
2018-06-11 07:53:25 +02:00
|
|
|
SETTINGS_TOGGLE_FULLSCREEN,
|
2014-02-10 02:10:30 +01:00
|
|
|
SETTINGS_HELP,
|
2023-08-24 12:24:29 +02:00
|
|
|
|
2015-11-19 14:15:17 +01:00
|
|
|
SCENE_TAB_CLOSE,
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-03-29 14:53:11 +01:00
|
|
|
EDITOR_SCREENSHOT,
|
|
|
|
EDITOR_OPEN_SCREENSHOT,
|
|
|
|
|
2017-05-26 16:34:41 +02:00
|
|
|
HELP_SEARCH,
|
2021-05-29 15:28:16 +02:00
|
|
|
HELP_COMMAND_PALETTE,
|
2017-05-26 16:34:41 +02:00
|
|
|
HELP_DOCS,
|
|
|
|
HELP_QA,
|
2020-01-29 23:10:09 +01:00
|
|
|
HELP_REPORT_A_BUG,
|
2023-05-27 18:21:23 +02:00
|
|
|
HELP_COPY_SYSTEM_INFO,
|
2021-06-16 02:24:34 +02:00
|
|
|
HELP_SUGGEST_A_FEATURE,
|
2020-01-29 23:10:09 +01:00
|
|
|
HELP_SEND_DOCS_FEEDBACK,
|
2017-05-26 16:34:41 +02:00
|
|
|
HELP_COMMUNITY,
|
|
|
|
HELP_ABOUT,
|
2021-05-15 01:57:21 +02:00
|
|
|
HELP_SUPPORT_GODOT_DEVELOPMENT,
|
2017-05-26 16:34:41 +02:00
|
|
|
|
2022-09-08 02:44:36 +02:00
|
|
|
SET_RENDERER_NAME_SAVE_AND_RESTART,
|
2018-07-19 23:58:15 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
IMPORT_PLUGIN_BASE = 100,
|
|
|
|
|
2016-08-07 16:01:22 +02:00
|
|
|
TOOL_MENU_BASE = 1000
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
enum {
|
|
|
|
MAX_INIT_CALLBACKS = 128,
|
|
|
|
MAX_BUILD_CALLBACKS = 128
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BottomPanelItem {
|
|
|
|
String name;
|
|
|
|
Control *control = nullptr;
|
|
|
|
Button *button = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ExportDefer {
|
|
|
|
String preset;
|
|
|
|
String path;
|
|
|
|
bool debug = false;
|
|
|
|
bool pack_only = false;
|
|
|
|
} export_defer;
|
|
|
|
|
|
|
|
static EditorNode *singleton;
|
|
|
|
|
|
|
|
EditorData editor_data;
|
|
|
|
EditorFolding editor_folding;
|
|
|
|
EditorSelectionHistory editor_history;
|
|
|
|
|
|
|
|
EditorCommandPalette *command_palette = nullptr;
|
|
|
|
EditorExport *editor_export = nullptr;
|
|
|
|
EditorLog *log = nullptr;
|
|
|
|
EditorNativeShaderSourceVisualizer *native_shader_source_visualizer = nullptr;
|
|
|
|
EditorPlugin *editor_plugin_screen = nullptr;
|
|
|
|
EditorPluginList *editor_plugins_force_input_forwarding = nullptr;
|
|
|
|
EditorPluginList *editor_plugins_force_over = nullptr;
|
|
|
|
EditorPluginList *editor_plugins_over = nullptr;
|
|
|
|
EditorQuickOpen *quick_open = nullptr;
|
|
|
|
EditorResourcePreview *resource_preview = nullptr;
|
|
|
|
EditorSelection *editor_selection = nullptr;
|
|
|
|
EditorSettingsDialog *editor_settings_dialog = nullptr;
|
2022-11-06 20:53:20 +01:00
|
|
|
HistoryDock *history_dock = nullptr;
|
2022-03-30 20:12:26 +02:00
|
|
|
|
|
|
|
ProjectExportDialog *project_export = nullptr;
|
|
|
|
ProjectSettingsEditor *project_settings_editor = nullptr;
|
|
|
|
|
2022-04-02 13:43:15 +02:00
|
|
|
FBXImporterManager *fbx_importer_manager = nullptr;
|
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
Vector<EditorPlugin *> editor_plugins;
|
|
|
|
bool _initializing_plugins = false;
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<String, EditorPlugin *> addon_name_to_plugin;
|
2022-12-28 13:56:53 +01:00
|
|
|
LocalVector<String> pending_addons;
|
2023-01-21 22:49:06 +01:00
|
|
|
HashMap<ObjectID, HashSet<EditorPlugin *>> active_plugins;
|
|
|
|
bool is_main_screen_editing = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
PanelContainer *scene_root_parent = nullptr;
|
|
|
|
Control *theme_base = nullptr;
|
|
|
|
Control *gui_base = nullptr;
|
|
|
|
VBoxContainer *main_vbox = nullptr;
|
2022-09-08 02:44:36 +02:00
|
|
|
OptionButton *renderer = nullptr;
|
2018-07-19 23:58:15 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
ConfirmationDialog *video_restart_dialog = nullptr;
|
2018-07-19 23:58:15 +02:00
|
|
|
|
2022-09-08 02:44:36 +02:00
|
|
|
int renderer_current = 0;
|
|
|
|
String renderer_request;
|
2015-06-14 03:12:53 +02:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
// Split containers.
|
2022-04-04 15:06:57 +02:00
|
|
|
HSplitContainer *left_l_hsplit = nullptr;
|
|
|
|
VSplitContainer *left_l_vsplit = nullptr;
|
|
|
|
HSplitContainer *left_r_hsplit = nullptr;
|
|
|
|
VSplitContainer *left_r_vsplit = nullptr;
|
|
|
|
HSplitContainer *main_hsplit = nullptr;
|
|
|
|
HSplitContainer *right_hsplit = nullptr;
|
|
|
|
VSplitContainer *right_l_vsplit = nullptr;
|
|
|
|
VSplitContainer *right_r_vsplit = nullptr;
|
|
|
|
VSplitContainer *center_split = nullptr;
|
2022-03-30 20:12:26 +02:00
|
|
|
// To access those easily by index.
|
2018-09-14 16:56:18 +02:00
|
|
|
Vector<VSplitContainer *> vsplits;
|
|
|
|
Vector<HSplitContainer *> hsplits;
|
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
// Main tabs.
|
2023-08-24 12:24:29 +02:00
|
|
|
EditorSceneTabs *scene_tabs = nullptr;
|
2022-10-14 20:41:05 +02:00
|
|
|
|
2022-05-02 16:28:25 +02:00
|
|
|
int tab_closing_idx = 0;
|
2022-10-14 20:41:05 +02:00
|
|
|
List<String> tabs_to_close;
|
|
|
|
int tab_closing_menu_option = -1;
|
2015-06-14 03:12:53 +02:00
|
|
|
|
2022-02-15 15:56:58 +01:00
|
|
|
bool exiting = false;
|
|
|
|
bool dimmed = false;
|
2015-06-14 03:12:53 +02:00
|
|
|
|
2022-05-02 16:28:25 +02:00
|
|
|
int old_split_ofs = 0;
|
2022-04-04 15:06:57 +02:00
|
|
|
VSplitContainer *top_split = nullptr;
|
|
|
|
HBoxContainer *bottom_hb = nullptr;
|
|
|
|
Control *vp_base = nullptr;
|
|
|
|
|
2022-09-22 11:06:11 +02:00
|
|
|
Label *project_title = nullptr;
|
|
|
|
Control *left_menu_spacer = nullptr;
|
|
|
|
Control *right_menu_spacer = nullptr;
|
2023-04-12 21:02:28 +02:00
|
|
|
EditorTitleBar *title_bar = nullptr;
|
|
|
|
EditorRunBar *project_run_bar = nullptr;
|
2022-09-07 01:30:54 +02:00
|
|
|
VBoxContainer *main_screen_vbox = nullptr;
|
2022-08-01 11:28:16 +02:00
|
|
|
MenuBar *main_menu = nullptr;
|
|
|
|
PopupMenu *file_menu = nullptr;
|
|
|
|
PopupMenu *project_menu = nullptr;
|
|
|
|
PopupMenu *debug_menu = nullptr;
|
|
|
|
PopupMenu *settings_menu = nullptr;
|
|
|
|
PopupMenu *help_menu = nullptr;
|
2022-04-04 15:06:57 +02:00
|
|
|
PopupMenu *tool_menu = nullptr;
|
2022-04-06 14:41:04 +02:00
|
|
|
PopupMenu *export_as_menu = nullptr;
|
2022-04-04 15:06:57 +02:00
|
|
|
Button *export_button = nullptr;
|
|
|
|
Button *prev_scene = nullptr;
|
2022-08-30 16:12:49 +02:00
|
|
|
Button *search_button = nullptr;
|
|
|
|
TextureProgressBar *audio_vu = nullptr;
|
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
Timer *screenshot_timer = nullptr;
|
|
|
|
|
|
|
|
PluginConfigDialog *plugin_config_dialog = nullptr;
|
|
|
|
|
|
|
|
RichTextLabel *load_errors = nullptr;
|
2023-04-20 15:13:21 +02:00
|
|
|
AcceptDialog *load_error_dialog = nullptr;
|
2022-04-04 15:06:57 +02:00
|
|
|
|
|
|
|
RichTextLabel *execute_outputs = nullptr;
|
2023-04-20 15:13:21 +02:00
|
|
|
AcceptDialog *execute_output_dialog = nullptr;
|
2019-04-07 20:46:52 +02:00
|
|
|
|
2015-01-03 20:52:37 +01:00
|
|
|
Ref<Theme> theme;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
PopupMenu *recent_scenes = nullptr;
|
2022-03-30 20:12:26 +02:00
|
|
|
String _recent_scene;
|
|
|
|
List<String> previous_scenes;
|
|
|
|
String defer_load_scene;
|
2022-04-04 15:06:57 +02:00
|
|
|
Node *_last_instantiated_scene = nullptr;
|
|
|
|
|
|
|
|
ConfirmationDialog *confirmation = nullptr;
|
|
|
|
ConfirmationDialog *save_confirmation = nullptr;
|
|
|
|
ConfirmationDialog *import_confirmation = nullptr;
|
|
|
|
ConfirmationDialog *pick_main_scene = nullptr;
|
|
|
|
Button *select_current_scene_button = nullptr;
|
2023-04-20 15:13:21 +02:00
|
|
|
AcceptDialog *accept = nullptr;
|
|
|
|
AcceptDialog *save_accept = nullptr;
|
2022-04-04 15:06:57 +02:00
|
|
|
EditorAbout *about = nullptr;
|
2023-04-20 15:13:21 +02:00
|
|
|
AcceptDialog *warning = nullptr;
|
2022-10-16 18:09:17 +02:00
|
|
|
EditorPlugin *plugin_to_save = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-05-02 16:28:25 +02:00
|
|
|
int overridden_default_layout = -1;
|
2016-01-11 22:23:45 +01:00
|
|
|
Ref<ConfigFile> default_layout;
|
2022-04-04 15:06:57 +02:00
|
|
|
PopupMenu *editor_layouts = nullptr;
|
|
|
|
EditorLayoutsDialog *layout_dialog = nullptr;
|
|
|
|
|
2023-02-02 00:17:06 +01:00
|
|
|
ConfirmationDialog *gradle_build_manage_templates = nullptr;
|
2022-04-04 15:06:57 +02:00
|
|
|
ConfirmationDialog *install_android_build_template = nullptr;
|
|
|
|
ConfirmationDialog *remove_android_build_template = nullptr;
|
|
|
|
|
|
|
|
PopupMenu *vcs_actions_menu = nullptr;
|
|
|
|
EditorFileDialog *file = nullptr;
|
|
|
|
ExportTemplateManager *export_template_manager = nullptr;
|
|
|
|
EditorFeatureProfileManager *feature_profile_manager = nullptr;
|
2022-07-14 14:18:18 +02:00
|
|
|
EditorBuildProfileManager *build_profile_manager = nullptr;
|
2022-04-04 15:06:57 +02:00
|
|
|
EditorFileDialog *file_templates = nullptr;
|
|
|
|
EditorFileDialog *file_export_lib = nullptr;
|
|
|
|
EditorFileDialog *file_script = nullptr;
|
|
|
|
EditorFileDialog *file_android_build_source = nullptr;
|
|
|
|
CheckBox *file_export_lib_merge = nullptr;
|
|
|
|
CheckBox *file_export_lib_apply_xforms = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
String current_path;
|
2022-04-04 15:06:57 +02:00
|
|
|
MenuButton *update_spinner = nullptr;
|
2017-05-24 12:00:55 +02:00
|
|
|
|
2022-09-22 11:06:11 +02:00
|
|
|
HBoxContainer *main_editor_button_hb = nullptr;
|
2020-06-19 20:49:04 +02:00
|
|
|
Vector<Button *> main_editor_buttons;
|
2014-02-10 02:10:30 +01:00
|
|
|
Vector<EditorPlugin *> editor_table;
|
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
AudioStreamPreviewGenerator *audio_preview_gen = nullptr;
|
|
|
|
ProgressDialog *progress_dialog = nullptr;
|
|
|
|
BackgroundProgress *progress_hb = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
DependencyErrorDialog *dependency_error = nullptr;
|
2022-05-19 17:00:06 +02:00
|
|
|
HashMap<String, HashSet<String>> dependency_errors;
|
2022-04-04 15:06:57 +02:00
|
|
|
DependencyEditor *dependency_fixer = nullptr;
|
|
|
|
OrphanResourcesDialog *orphan_resources = nullptr;
|
|
|
|
ConfirmationDialog *open_imported = nullptr;
|
|
|
|
Button *new_inherited_button = nullptr;
|
2017-02-05 00:31:15 +01:00
|
|
|
String open_import_request;
|
|
|
|
|
2022-11-02 15:23:25 +01:00
|
|
|
Vector<WindowWrapper *> floating_docks;
|
2020-03-06 18:00:16 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
Button *dock_float = nullptr;
|
|
|
|
Button *dock_tab_move_left = nullptr;
|
|
|
|
Button *dock_tab_move_right = nullptr;
|
|
|
|
Control *dock_select = nullptr;
|
|
|
|
PopupPanel *dock_select_popup = nullptr;
|
2022-03-30 20:12:26 +02:00
|
|
|
Rect2 dock_select_rect[DOCK_SLOT_MAX];
|
|
|
|
TabContainer *dock_slot[DOCK_SLOT_MAX];
|
2023-05-11 04:17:03 +02:00
|
|
|
Timer *editor_layout_save_delay_timer = nullptr;
|
2022-02-15 15:56:58 +01:00
|
|
|
bool docks_visible = true;
|
2022-05-02 16:28:25 +02:00
|
|
|
int dock_popup_selected_idx = -1;
|
|
|
|
int dock_select_rect_over_idx = -1;
|
2017-11-16 23:57:57 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
Button *distraction_free = nullptr;
|
2015-06-14 03:12:53 +02:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
Vector<BottomPanelItem> bottom_panel_items;
|
2022-04-04 15:06:57 +02:00
|
|
|
PanelContainer *bottom_panel = nullptr;
|
|
|
|
HBoxContainer *bottom_panel_hb = nullptr;
|
|
|
|
HBoxContainer *bottom_panel_hb_editors = nullptr;
|
|
|
|
VBoxContainer *bottom_panel_vb = nullptr;
|
|
|
|
EditorToaster *editor_toaster = nullptr;
|
|
|
|
LinkButton *version_btn = nullptr;
|
|
|
|
Button *bottom_panel_raise = nullptr;
|
2023-01-30 21:50:00 +01:00
|
|
|
bool bottom_panel_updating = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
Tree *disk_changed_list = nullptr;
|
|
|
|
ConfirmationDialog *disk_changed = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
bool scene_distraction_free = false;
|
|
|
|
bool script_distraction_free = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-02-15 15:56:58 +01:00
|
|
|
bool changing_scene = false;
|
2022-03-30 20:12:26 +02:00
|
|
|
bool cmdline_export_mode = false;
|
|
|
|
bool convert_old = false;
|
|
|
|
bool immediate_dialog_confirmed = false;
|
|
|
|
bool opening_prev = false;
|
|
|
|
bool restoring_scenes = false;
|
|
|
|
bool unsaved_cache = true;
|
2022-02-15 15:56:58 +01:00
|
|
|
bool waiting_for_first_scan = true;
|
2016-05-27 19:18:40 +02:00
|
|
|
|
2022-05-02 16:28:25 +02:00
|
|
|
int current_menu_option = 0;
|
2022-03-30 20:12:26 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
SubViewport *scene_root = nullptr; // Root of the scene being edited.
|
|
|
|
Object *current = nullptr;
|
2022-03-30 20:12:26 +02:00
|
|
|
|
|
|
|
Ref<Resource> saving_resource;
|
2023-03-08 19:46:55 +01:00
|
|
|
HashSet<Ref<Resource>> saving_resources_in_path;
|
2022-03-30 20:12:26 +02:00
|
|
|
|
2022-05-02 16:28:25 +02:00
|
|
|
uint64_t update_spinner_step_msec = 0;
|
|
|
|
uint64_t update_spinner_step_frame = 0;
|
|
|
|
int update_spinner_step = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
String _tmp_import_path;
|
|
|
|
String external_file;
|
|
|
|
String open_navigate;
|
2022-03-01 23:19:02 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
DynamicFontImportSettings *fontdata_import_settings = nullptr;
|
|
|
|
SceneImportSettings *scene_import_settings = nullptr;
|
2022-07-21 01:00:58 +02:00
|
|
|
AudioStreamImportSettings *audio_stream_import_settings = nullptr;
|
2016-01-18 00:03:57 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
String import_reload_fn;
|
2016-01-18 00:03:57 +01:00
|
|
|
|
2022-05-19 17:00:06 +02:00
|
|
|
HashSet<String> textfile_extensions;
|
|
|
|
HashSet<FileDialog *> file_dialogs;
|
|
|
|
HashSet<EditorFileDialog *> editor_file_dialogs;
|
2018-07-16 03:38:14 +02:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
Vector<Ref<EditorResourceConversionPlugin>> resource_conversion_plugins;
|
|
|
|
PrintHandlerList print_handler;
|
2019-08-28 19:42:27 +02:00
|
|
|
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<String, Ref<Texture2D>> icon_type_cache;
|
2016-01-18 00:03:57 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
static EditorBuildCallback build_callbacks[MAX_BUILD_CALLBACKS];
|
|
|
|
static EditorPluginInitializeCallback plugin_init_callbacks[MAX_INIT_CALLBACKS];
|
|
|
|
static int build_callback_count;
|
|
|
|
static int plugin_init_callback_count;
|
|
|
|
static Vector<EditorNodeInitCallback> _init_callbacks;
|
2017-08-26 15:32:15 +02:00
|
|
|
|
2023-05-27 18:21:23 +02:00
|
|
|
String _get_system_info() const;
|
|
|
|
|
2023-01-17 14:26:16 +01:00
|
|
|
static void _dependency_error_report(const String &p_path, const String &p_dep, const String &p_type) {
|
2023-01-19 13:45:04 +01:00
|
|
|
DEV_ASSERT(Thread::get_caller_id() == Thread::get_main_id());
|
2023-01-17 14:26:16 +01:00
|
|
|
if (!singleton->dependency_errors.has(p_path)) {
|
|
|
|
singleton->dependency_errors[p_path] = HashSet<String>();
|
2022-03-30 20:12:26 +02:00
|
|
|
}
|
2023-01-17 14:26:16 +01:00
|
|
|
singleton->dependency_errors[p_path].insert(p_dep + "::" + p_type);
|
2022-03-30 20:12:26 +02:00
|
|
|
}
|
2016-01-18 00:03:57 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
static Ref<Texture2D> _file_dialog_get_icon(const String &p_path);
|
|
|
|
static void _file_dialog_register(FileDialog *p_dialog);
|
|
|
|
static void _file_dialog_unregister(FileDialog *p_dialog);
|
|
|
|
static void _editor_file_dialog_register(EditorFileDialog *p_dialog);
|
|
|
|
static void _editor_file_dialog_unregister(EditorFileDialog *p_dialog);
|
|
|
|
|
|
|
|
static void _file_access_close_error_notify(const String &p_str);
|
2023-05-19 18:45:22 +02:00
|
|
|
static void _file_access_close_error_notify_impl(const String &p_str);
|
2022-03-30 20:12:26 +02:00
|
|
|
|
2022-05-03 01:29:38 +02:00
|
|
|
static void _print_handler(void *p_this, const String &p_string, bool p_error, bool p_rich);
|
2023-05-19 18:45:22 +02:00
|
|
|
static void _print_handler_impl(const String &p_string, bool p_error, bool p_rich);
|
2022-05-03 01:43:50 +02:00
|
|
|
static void _resource_saved(Ref<Resource> p_resource, const String &p_path);
|
|
|
|
static void _resource_loaded(Ref<Resource> p_resource, const String &p_path);
|
2022-03-30 20:12:26 +02:00
|
|
|
|
|
|
|
void _build_icon_type_cache();
|
2022-12-28 13:56:53 +01:00
|
|
|
void _enable_pending_addons();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _dialog_action(String p_file);
|
|
|
|
|
2021-09-12 21:17:34 +02:00
|
|
|
void _edit_current(bool p_skip_foreign = false);
|
2017-08-28 05:24:50 +02:00
|
|
|
void _dialog_display_save_error(String p_file, Error p_error);
|
|
|
|
void _dialog_display_load_error(String p_file, Error p_error);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _menu_option(int p_option);
|
|
|
|
void _menu_confirm_current();
|
|
|
|
void _menu_option_confirm(int p_option, bool p_confirmed);
|
2019-03-29 14:53:11 +01:00
|
|
|
|
2021-07-15 15:12:56 +02:00
|
|
|
void _android_build_source_selected(const String &p_file);
|
|
|
|
|
2019-03-29 14:53:11 +01:00
|
|
|
void _request_screenshot();
|
|
|
|
void _screenshot(bool p_use_utc = false);
|
|
|
|
void _save_screenshot(NodePath p_path);
|
|
|
|
|
2018-03-17 02:50:35 +01:00
|
|
|
void _tool_menu_option(int p_idx);
|
2022-04-06 14:41:04 +02:00
|
|
|
void _export_as_menu_option(int p_idx);
|
2019-04-10 17:21:26 +02:00
|
|
|
void _update_file_menu_opened();
|
|
|
|
void _update_file_menu_closed();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-05-09 14:17:15 +02:00
|
|
|
void _remove_plugin_from_enabled(const String &p_name);
|
2023-02-06 15:35:33 +01:00
|
|
|
void _plugin_over_edit(EditorPlugin *p_plugin, Object *p_object);
|
2018-07-19 17:34:22 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _fs_changed();
|
2017-08-31 23:57:03 +02:00
|
|
|
void _resources_reimported(const Vector<String> &p_resources);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _sources_changed(bool p_exist);
|
|
|
|
|
|
|
|
void _node_renamed();
|
2017-05-16 21:26:32 +02:00
|
|
|
void _editor_select_next();
|
|
|
|
void _editor_select_prev();
|
2023-05-11 04:17:03 +02:00
|
|
|
void _save_editor_states(const String &p_file, int p_idx = -1);
|
|
|
|
void _load_editor_plugin_states_from_config(const Ref<ConfigFile> &p_config_file);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _update_title();
|
2019-09-03 16:42:08 +02:00
|
|
|
void _version_control_menu_option(int p_idx);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _close_messages();
|
|
|
|
void _show_messages();
|
|
|
|
void _vp_resized();
|
2022-09-22 11:06:11 +02:00
|
|
|
void _titlebar_resized();
|
2019-12-24 01:20:54 +01:00
|
|
|
void _version_button_pressed();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2023-01-08 09:35:15 +01:00
|
|
|
void _update_undo_redo_allowed();
|
|
|
|
|
2019-02-28 00:00:40 +01:00
|
|
|
int _save_external_resources();
|
|
|
|
|
2023-08-24 12:24:29 +02:00
|
|
|
void _set_current_scene(int p_idx);
|
|
|
|
void _set_current_scene_nocheck(int p_idx);
|
2018-11-27 22:56:31 +01:00
|
|
|
bool _validate_scene_recursive(const String &p_filename, Node *p_node);
|
2016-06-26 05:54:17 +02:00
|
|
|
void _save_scene(String p_file, int idx = -1);
|
2017-06-24 12:57:30 +02:00
|
|
|
void _save_all_scenes();
|
2017-07-26 13:29:45 +02:00
|
|
|
int _next_unsaved_scene(bool p_valid_filename, int p_start = 0);
|
2017-06-21 06:15:39 +02:00
|
|
|
void _discard_changes(const String &p_str = String());
|
2023-08-24 12:24:29 +02:00
|
|
|
void _scene_tab_closed(int p_tab);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-05-08 04:35:23 +02:00
|
|
|
void _inherit_request(String p_file);
|
2021-06-18 00:03:09 +02:00
|
|
|
void _instantiate_request(const Vector<String> &p_files);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-01-08 12:27:34 +01:00
|
|
|
void _quick_opened();
|
2021-05-29 15:28:16 +02:00
|
|
|
void _open_command_palette();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2023-04-12 21:02:28 +02:00
|
|
|
void _project_run_started();
|
|
|
|
void _project_run_stopped();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _add_to_recent_scenes(const String &p_scene);
|
|
|
|
void _update_recent_scenes();
|
|
|
|
void _open_recent_scene(int p_idx);
|
2022-04-10 21:25:24 +02:00
|
|
|
void _dropped_files(const Vector<String> &p_files);
|
2019-03-25 22:39:45 +01:00
|
|
|
void _add_dropped_files_recursive(const Vector<String> &p_files, String to_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
void _update_from_settings();
|
2019-01-17 13:09:01 +01:00
|
|
|
|
2022-09-08 02:44:36 +02:00
|
|
|
void _renderer_selected(int);
|
|
|
|
void _update_renderer_color();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
void _exit_editor(int p_exit_code);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-01-11 14:59:52 +01:00
|
|
|
virtual void shortcut_input(const Ref<InputEvent> &p_event) override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
bool has_main_screen() const { return true; }
|
|
|
|
|
2019-06-04 05:36:23 +02:00
|
|
|
void _remove_edited_scene(bool p_change_tab = true);
|
|
|
|
void _remove_scene(int index, bool p_change_tab = true);
|
2022-05-13 15:04:37 +02:00
|
|
|
bool _find_and_save_resource(Ref<Resource> p_res, HashMap<Ref<Resource>, bool> &processed, int32_t flags);
|
|
|
|
bool _find_and_save_edited_subresources(Object *obj, HashMap<Ref<Resource>, bool> &processed, int32_t flags);
|
|
|
|
void _save_edited_subresources(Node *scene, HashMap<Ref<Resource>, bool> &processed, int32_t flags);
|
2017-06-29 19:37:54 +02:00
|
|
|
void _mark_unsaved_scenes();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-05-31 06:59:42 +02:00
|
|
|
void _find_node_types(Node *p_node, int &count_2d, int &count_3d);
|
2017-11-12 04:48:00 +01:00
|
|
|
void _save_scene_with_preview(String p_file, int p_idx = -1);
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2014-06-19 07:23:03 +02:00
|
|
|
bool _find_scene_in_use(Node *p_node, const String &p_path) const;
|
|
|
|
|
2020-03-06 18:00:16 +01:00
|
|
|
void _update_dock_containers();
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
void _dock_select_input(const Ref<InputEvent> &p_input);
|
2015-06-14 05:41:08 +02:00
|
|
|
void _dock_move_left();
|
|
|
|
void _dock_move_right();
|
2015-06-14 03:12:53 +02:00
|
|
|
void _dock_select_draw();
|
|
|
|
void _dock_pre_popup(int p_which);
|
|
|
|
void _dock_split_dragged(int ofs);
|
2015-06-14 05:41:08 +02:00
|
|
|
void _dock_popup_exit();
|
2022-11-02 15:23:25 +01:00
|
|
|
void _dock_floating_close_request(WindowWrapper *p_wrapper);
|
|
|
|
void _dock_make_selected_float();
|
|
|
|
void _dock_make_float(Control *p_control, int p_slot_index, bool p_show_window = true);
|
2023-08-24 12:24:29 +02:00
|
|
|
|
2022-10-14 20:41:05 +02:00
|
|
|
void _proceed_closing_scene_tabs();
|
|
|
|
bool _is_closing_editor() const;
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
Dictionary _get_main_scene_state();
|
2016-06-28 23:53:31 +02:00
|
|
|
void _set_main_scene_state(Dictionary p_state, Node *p_for_scene);
|
2015-06-14 03:12:53 +02:00
|
|
|
|
2015-11-18 08:47:41 +01:00
|
|
|
int _get_current_main_editor();
|
|
|
|
|
2023-05-11 04:17:03 +02:00
|
|
|
void _save_editor_layout();
|
|
|
|
void _load_editor_layout();
|
2015-11-22 19:11:17 +01:00
|
|
|
void _save_docks_to_config(Ref<ConfigFile> p_layout, const String &p_section);
|
2022-11-02 15:23:25 +01:00
|
|
|
void _restore_floating_dock(const Dictionary &p_dock_dump, Control *p_wrapper, int p_slot_index);
|
2015-11-22 19:11:17 +01:00
|
|
|
void _load_docks_from_config(Ref<ConfigFile> p_layout, const String &p_section);
|
2022-02-13 14:16:12 +01:00
|
|
|
void _update_dock_slots_visibility(bool p_keep_selected_tabs = false);
|
2018-02-07 14:01:45 +01:00
|
|
|
void _dock_tab_changed(int p_tab);
|
2015-11-22 19:11:17 +01:00
|
|
|
|
2023-05-11 04:17:03 +02:00
|
|
|
void _save_central_editor_layout_to_config(Ref<ConfigFile> p_config_file);
|
|
|
|
void _load_central_editor_layout_from_config(Ref<ConfigFile> p_config_file);
|
|
|
|
|
|
|
|
void _save_open_scenes_to_config(Ref<ConfigFile> p_layout);
|
|
|
|
void _load_open_scenes_from_config(Ref<ConfigFile> p_layout);
|
2017-11-25 00:32:54 +01:00
|
|
|
|
2015-11-22 19:11:17 +01:00
|
|
|
void _update_layouts_menu();
|
2017-08-12 18:52:50 +02:00
|
|
|
void _layout_menu_option(int p_id);
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2016-02-28 03:10:44 +01:00
|
|
|
void _update_addon_config();
|
|
|
|
|
2016-09-13 14:46:17 +02:00
|
|
|
void _toggle_distraction_free_mode();
|
2016-08-07 00:00:54 +02:00
|
|
|
|
2017-02-05 00:31:15 +01:00
|
|
|
void _inherit_imported(const String &p_action);
|
|
|
|
void _open_imported();
|
2016-09-13 14:46:17 +02:00
|
|
|
|
2018-12-11 16:52:25 +01:00
|
|
|
void _update_update_spinner();
|
|
|
|
|
2020-02-17 22:06:54 +01:00
|
|
|
void _resources_changed(const Vector<String> &p_resources);
|
2019-08-28 19:42:27 +02:00
|
|
|
void _scan_external_changes();
|
|
|
|
void _reload_modified_scenes();
|
2021-01-17 01:09:17 +01:00
|
|
|
void _reload_project_settings();
|
2019-08-28 19:42:27 +02:00
|
|
|
void _resave_scenes(String p_str);
|
2018-11-21 01:47:48 +01:00
|
|
|
|
2019-04-09 00:18:03 +02:00
|
|
|
void _feature_profile_changed();
|
|
|
|
bool _is_class_editor_disabled_by_feature_profile(const StringName &p_class);
|
2023-03-31 21:17:59 +02:00
|
|
|
|
2023-07-08 15:03:54 +02:00
|
|
|
Ref<Texture2D> _get_class_or_script_icon(const String &p_class, const Ref<Script> &p_script, const String &p_fallback = "Object", bool p_fallback_script_to_theme = false);
|
2019-04-09 00:18:03 +02:00
|
|
|
|
2021-07-06 16:10:07 +02:00
|
|
|
void _pick_main_scene_custom_action(const String &p_custom_action_name);
|
|
|
|
|
2021-08-20 20:32:56 +02:00
|
|
|
void _immediate_dialog_confirmed();
|
2020-08-05 05:14:39 +02:00
|
|
|
void _select_default_main_screen_plugin();
|
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
void _bottom_panel_switch(bool p_enable, int p_idx);
|
|
|
|
void _bottom_panel_raise_toggled(bool);
|
|
|
|
|
2022-08-19 14:21:43 +02:00
|
|
|
void _begin_first_scan();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
2022-03-30 20:12:26 +02:00
|
|
|
friend class FileSystemDock;
|
2019-03-29 14:53:11 +01:00
|
|
|
|
2015-11-22 19:11:17 +01:00
|
|
|
static void _bind_methods();
|
2022-03-30 20:12:26 +02:00
|
|
|
void _notification(int p_what);
|
2019-06-04 05:36:23 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2020-12-06 16:09:18 +01:00
|
|
|
// Public for use with callable_mp.
|
|
|
|
void _on_plugin_ready(Object *p_script, const String &p_activate_name);
|
|
|
|
|
|
|
|
void editor_select(int p_which);
|
|
|
|
void set_visible_editor(EditorTable p_table) { editor_select(p_table); }
|
2018-02-14 16:23:04 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
bool call_build();
|
2016-08-07 00:00:54 +02:00
|
|
|
|
2014-05-05 03:50:23 +02:00
|
|
|
static EditorNode *get_singleton() { return singleton; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
static EditorLog *get_log() { return singleton->log; }
|
|
|
|
static EditorData &get_editor_data() { return singleton->editor_data; }
|
|
|
|
static EditorFolding &get_editor_folding() { return singleton->editor_folding; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2023-04-12 21:02:28 +02:00
|
|
|
static EditorTitleBar *get_title_bar() { return singleton->title_bar; }
|
2022-03-30 20:12:26 +02:00
|
|
|
static VSplitContainer *get_top_split() { return singleton->top_split; }
|
|
|
|
|
2022-09-09 02:29:59 +02:00
|
|
|
static String adjust_scene_name_casing(const String &root_name);
|
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
static bool has_unsaved_changes() { return singleton->unsaved_cache; }
|
|
|
|
static void disambiguate_filenames(const Vector<String> p_full_paths, Vector<String> &r_filenames);
|
|
|
|
static void add_io_error(const String &p_error);
|
2023-06-07 13:44:37 +02:00
|
|
|
static void add_io_warning(const String &p_warning);
|
2022-03-30 20:12:26 +02:00
|
|
|
|
|
|
|
static void progress_add_task(const String &p_task, const String &p_label, int p_steps, bool p_can_cancel = false);
|
|
|
|
static bool progress_task_step(const String &p_task, const String &p_state, int p_step = -1, bool p_force_refresh = true);
|
|
|
|
static void progress_end_task(const String &p_task);
|
|
|
|
|
|
|
|
static void progress_add_task_bg(const String &p_task, const String &p_label, int p_steps);
|
|
|
|
static void progress_task_step_bg(const String &p_task, int p_step = -1);
|
|
|
|
static void progress_end_task_bg(const String &p_task);
|
2018-02-14 05:31:38 +01:00
|
|
|
|
2018-06-11 02:59:53 +02:00
|
|
|
static void add_editor_plugin(EditorPlugin *p_editor, bool p_config_changed = false);
|
|
|
|
static void remove_editor_plugin(EditorPlugin *p_editor, bool p_config_changed = false);
|
2014-03-11 06:38:30 +01:00
|
|
|
|
2023-05-11 23:46:53 +02:00
|
|
|
static void add_extension_editor_plugin(const StringName &p_class_name);
|
|
|
|
static void remove_extension_editor_plugin(const StringName &p_class_name);
|
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
static void add_plugin_init_callback(EditorPluginInitializeCallback p_callback);
|
|
|
|
static void add_init_callback(EditorNodeInitCallback p_callback) { _init_callbacks.push_back(p_callback); }
|
|
|
|
static void add_build_callback(EditorBuildCallback p_callback);
|
|
|
|
|
|
|
|
static bool immediate_confirmation_dialog(const String &p_text, const String &p_ok_text = TTR("Ok"), const String &p_cancel_text = TTR("Cancel"));
|
|
|
|
|
2022-05-01 11:57:36 +02:00
|
|
|
static void cleanup();
|
|
|
|
|
2022-03-30 20:12:26 +02:00
|
|
|
EditorPlugin *get_editor_plugin_screen() { return editor_plugin_screen; }
|
|
|
|
EditorPluginList *get_editor_plugins_force_input_forwarding() { return editor_plugins_force_input_forwarding; }
|
|
|
|
EditorPluginList *get_editor_plugins_force_over() { return editor_plugins_force_over; }
|
|
|
|
EditorPluginList *get_editor_plugins_over() { return editor_plugins_over; }
|
|
|
|
EditorSelection *get_editor_selection() { return editor_selection; }
|
|
|
|
EditorSelectionHistory *get_editor_selection_history() { return &editor_history; }
|
|
|
|
|
|
|
|
ProjectSettingsEditor *get_project_settings() { return project_settings_editor; }
|
2020-05-27 06:49:05 +02:00
|
|
|
|
2023-08-24 12:24:29 +02:00
|
|
|
void trigger_menu_option(int p_option, bool p_confirmed);
|
|
|
|
bool has_previous_scenes() const;
|
|
|
|
|
2016-05-16 17:23:40 +02:00
|
|
|
void new_inherited_scene() { _menu_option_confirm(FILE_NEW_INHERITED_SCENE, false); }
|
2016-05-11 16:46:08 +02:00
|
|
|
|
2016-05-30 20:29:43 +02:00
|
|
|
void set_docks_visible(bool p_show);
|
|
|
|
bool get_docks_visible() const;
|
|
|
|
|
|
|
|
void set_distraction_free_mode(bool p_enter);
|
2020-05-31 19:58:15 +02:00
|
|
|
bool is_distraction_free_mode_enabled() const;
|
2016-05-11 16:46:08 +02:00
|
|
|
|
2016-02-28 03:10:44 +01:00
|
|
|
void add_control_to_dock(DockSlot p_slot, Control *p_control);
|
|
|
|
void remove_control_from_dock(Control *p_control);
|
|
|
|
|
2018-06-11 02:59:53 +02:00
|
|
|
void set_addon_plugin_enabled(const String &p_addon, bool p_enabled, bool p_config_changed = false);
|
2016-02-28 03:10:44 +01:00
|
|
|
bool is_addon_plugin_enabled(const String &p_addon) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void edit_node(Node *p_node);
|
2022-11-19 12:45:49 +01:00
|
|
|
void edit_resource(const Ref<Resource> &p_resource);
|
2015-09-01 05:49:47 +02:00
|
|
|
|
|
|
|
void save_resource_in_path(const Ref<Resource> &p_resource, const String &p_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
void save_resource(const Ref<Resource> &p_resource);
|
2016-05-11 16:46:08 +02:00
|
|
|
void save_resource_as(const Ref<Resource> &p_resource, const String &p_at_path = String());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-11 17:04:32 +02:00
|
|
|
void show_about() { _menu_option_confirm(HELP_ABOUT, false); }
|
|
|
|
|
2018-06-19 03:10:48 +02:00
|
|
|
void push_item(Object *p_object, const String &p_property = "", bool p_inspector_only = false);
|
2023-01-21 22:49:06 +01:00
|
|
|
void edit_item(Object *p_object, Object *p_editing_owner);
|
2023-02-01 00:50:34 +01:00
|
|
|
void push_node_item(Node *p_node);
|
2023-01-21 22:49:06 +01:00
|
|
|
void hide_unused_editors(const Object *p_editing_owner = nullptr);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-08-05 19:57:23 +02:00
|
|
|
void select_editor_by_name(const String &p_name);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void open_request(const String &p_path);
|
2022-05-03 01:43:50 +02:00
|
|
|
void edit_foreign_resource(Ref<Resource> p_resource);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-09-07 11:14:06 +02:00
|
|
|
bool is_resource_read_only(Ref<Resource> p_resource, bool p_foreign_resources_are_writable = false);
|
2022-04-29 08:06:48 +02:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
bool is_changing_scene() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-09-07 01:30:54 +02:00
|
|
|
VBoxContainer *get_main_screen_control();
|
2022-03-30 20:12:26 +02:00
|
|
|
SubViewport *get_scene_root() { return scene_root; } // Root of the scene being edited.
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
void set_edited_scene(Node *p_scene);
|
|
|
|
Node *get_edited_scene() { return editor_data.get_edited_scene_root(); }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
void fix_dependencies(const String &p_for_file);
|
2019-08-15 19:47:21 +02:00
|
|
|
int new_scene();
|
2019-08-28 19:42:27 +02:00
|
|
|
Error load_scene(const String &p_scene, bool p_ignore_broken_deps = false, bool p_set_inherited = false, bool p_clear_errors = true, bool p_force_open_imported = false, bool p_silent_change_tab = false);
|
2018-11-02 04:44:40 +01:00
|
|
|
Error load_resource(const String &p_resource, bool p_ignore_broken_deps = false);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-01-30 22:31:32 +01:00
|
|
|
HashMap<StringName, Variant> get_modified_properties_for_node(Node *p_node);
|
|
|
|
|
|
|
|
struct AdditiveNodeEntry {
|
|
|
|
Node *node = nullptr;
|
|
|
|
NodePath parent = NodePath();
|
|
|
|
Node *owner = nullptr;
|
|
|
|
int index = 0;
|
|
|
|
// Used if the original parent node is lost
|
|
|
|
Transform2D transform_2d;
|
|
|
|
Transform3D transform_3d;
|
2023-02-22 19:07:36 +01:00
|
|
|
// Used to keep track of the ownership of all ancestor nodes so they can be restored later.
|
|
|
|
HashMap<Node *, Node *> ownership_table;
|
2022-01-30 22:31:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ConnectionWithNodePath {
|
|
|
|
Connection connection;
|
|
|
|
NodePath node_path;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ModificationNodeEntry {
|
|
|
|
HashMap<StringName, Variant> property_table;
|
|
|
|
List<ConnectionWithNodePath> connections_to;
|
|
|
|
List<Connection> connections_from;
|
|
|
|
List<Node::GroupInfo> groups;
|
|
|
|
};
|
|
|
|
|
2023-02-22 19:07:36 +01:00
|
|
|
void update_ownership_table_for_addition_node_ancestors(Node *p_current_node, HashMap<Node *, Node *> &p_ownership_table);
|
|
|
|
|
2022-01-30 22:31:32 +01:00
|
|
|
void update_diff_data_for_node(
|
|
|
|
Node *p_edited_scene,
|
|
|
|
Node *p_root,
|
|
|
|
Node *p_node,
|
|
|
|
HashMap<NodePath, ModificationNodeEntry> &p_modification_table,
|
|
|
|
List<AdditiveNodeEntry> &p_addition_list);
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
bool is_scene_open(const String &p_path);
|
|
|
|
|
2022-10-11 14:57:20 +02:00
|
|
|
void setup_color_picker(ColorPicker *p_picker);
|
2022-07-01 05:43:46 +02:00
|
|
|
|
2022-11-16 00:13:39 +01:00
|
|
|
void request_instantiate_scene(const String &p_path);
|
2021-06-18 00:03:09 +02:00
|
|
|
void request_instantiate_scenes(const Vector<String> &p_files);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void set_convert_old_scene(bool p_old) { convert_old = p_old; }
|
|
|
|
|
2020-02-07 02:52:05 +01:00
|
|
|
void notify_all_debug_sessions_exited();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2023-04-12 21:02:28 +02:00
|
|
|
OS::ProcessID has_child_process(OS::ProcessID p_pid) const;
|
2020-02-07 02:52:05 +01:00
|
|
|
void stop_child_process(OS::ProcessID p_pid);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-01-03 20:52:37 +01:00
|
|
|
Ref<Theme> get_editor_theme() const { return theme; }
|
2019-07-19 21:21:30 +02:00
|
|
|
Ref<Script> get_object_custom_type_base(const Object *p_object) const;
|
|
|
|
StringName get_object_custom_type_name(const Object *p_object) const;
|
2022-05-05 14:27:29 +02:00
|
|
|
Ref<Texture2D> get_object_icon(const Object *p_object, const String &p_fallback = "Object");
|
2023-03-31 21:17:59 +02:00
|
|
|
Ref<Texture2D> get_class_icon(const String &p_class, const String &p_fallback = "Object");
|
2015-01-03 20:52:37 +01:00
|
|
|
|
2022-10-08 00:16:54 +02:00
|
|
|
bool is_object_of_custom_type(const Object *p_object, const StringName &p_class);
|
|
|
|
|
2018-05-27 04:41:19 +02:00
|
|
|
void show_accept(const String &p_text, const String &p_title);
|
2021-09-11 03:35:13 +02:00
|
|
|
void show_save_accept(const String &p_text, const String &p_title);
|
2019-12-21 07:57:15 +01:00
|
|
|
void show_warning(const String &p_text, const String &p_title = TTR("Warning!"));
|
2015-01-03 20:52:37 +01:00
|
|
|
|
2019-07-09 20:11:31 +02:00
|
|
|
void _copy_warning(const String &p_str);
|
|
|
|
|
2020-01-08 14:22:50 +01:00
|
|
|
Error export_preset(const String &p_preset, const String &p_path, bool p_debug, bool p_pack_only);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Control *get_gui_base() { return gui_base; }
|
2016-06-17 06:13:23 +02:00
|
|
|
Control *get_theme_base() { return gui_base->get_parent_control(); }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-26 15:32:15 +02:00
|
|
|
void save_scene_to_path(String p_file, bool p_with_preview = true) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (p_with_preview) {
|
2017-08-26 15:32:15 +02:00
|
|
|
_save_scene_with_preview(p_file);
|
2020-05-14 16:41:43 +02:00
|
|
|
} else {
|
2017-08-26 15:32:15 +02:00
|
|
|
_save_scene(p_file);
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-08-26 15:32:15 +02:00
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
|
|
|
bool is_scene_in_use(const String &p_path);
|
|
|
|
|
2023-05-11 04:17:03 +02:00
|
|
|
void save_editor_layout_delayed();
|
2023-04-12 21:02:28 +02:00
|
|
|
void save_default_environment();
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2017-03-21 03:31:41 +01:00
|
|
|
void open_export_template_manager();
|
|
|
|
|
2016-06-28 23:53:31 +02:00
|
|
|
void reload_scene(const String &p_path);
|
|
|
|
|
2022-01-30 22:31:32 +01:00
|
|
|
void find_all_instances_inheriting_path_in_node(Node *p_root, Node *p_node, const String &p_instance_path, List<Node *> &p_instance_list);
|
|
|
|
void reload_instances_with_path_in_edited_scenes(const String &p_path);
|
|
|
|
|
2016-06-08 03:08:12 +02:00
|
|
|
bool is_exiting() const { return exiting; }
|
|
|
|
|
2023-06-23 15:23:36 +02:00
|
|
|
Button *add_bottom_panel_item(String p_text, Control *p_item);
|
2016-01-18 00:03:57 +01:00
|
|
|
void make_bottom_panel_item_visible(Control *p_item);
|
|
|
|
void raise_bottom_panel_item(Control *p_item);
|
|
|
|
void hide_bottom_panel();
|
2016-02-28 20:58:17 +01:00
|
|
|
void remove_bottom_panel_item(Control *p_item);
|
2016-01-18 00:03:57 +01:00
|
|
|
|
2016-05-11 16:46:08 +02:00
|
|
|
Variant drag_resource(const Ref<Resource> &p_res, Control *p_from);
|
2017-10-25 00:09:04 +02:00
|
|
|
Variant drag_files_and_dirs(const Vector<String> &p_paths, Control *p_from);
|
2016-05-11 16:46:08 +02:00
|
|
|
|
2020-12-16 00:04:21 +01:00
|
|
|
void add_tool_menu_item(const String &p_name, const Callable &p_callback);
|
2016-08-07 16:01:22 +02:00
|
|
|
void add_tool_submenu_item(const String &p_name, PopupMenu *p_submenu);
|
|
|
|
void remove_tool_menu_item(const String &p_name);
|
2016-05-11 16:46:08 +02:00
|
|
|
|
2022-04-06 14:41:04 +02:00
|
|
|
PopupMenu *get_export_as_menu();
|
|
|
|
|
2019-01-25 21:23:56 +01:00
|
|
|
void save_all_scenes();
|
2019-06-04 05:36:23 +02:00
|
|
|
void save_scene_list(Vector<String> p_scene_filenames);
|
2023-04-12 21:02:28 +02:00
|
|
|
void save_before_run();
|
|
|
|
void try_autosave();
|
2019-01-25 21:23:56 +01:00
|
|
|
void restart_editor();
|
2018-07-19 23:58:15 +02:00
|
|
|
|
2021-05-29 01:58:03 +02:00
|
|
|
void dim_editor(bool p_dimming);
|
2019-10-31 20:58:53 +01:00
|
|
|
bool is_editor_dimmed() const;
|
2017-03-06 20:11:56 +01:00
|
|
|
|
2018-05-17 08:01:47 +02:00
|
|
|
void edit_current() { _edit_current(); };
|
|
|
|
|
2018-09-21 05:14:04 +02:00
|
|
|
bool has_scenes_in_session();
|
2018-05-17 08:01:47 +02:00
|
|
|
|
2019-04-07 20:46:52 +02:00
|
|
|
int execute_and_show_output(const String &p_title, const String &p_path, const List<String> &p_arguments, bool p_close_on_ok = true, bool p_close_on_errors = false);
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
EditorNode();
|
2014-02-10 02:10:30 +01:00
|
|
|
~EditorNode();
|
|
|
|
|
2017-09-22 14:20:28 +02:00
|
|
|
void add_resource_conversion_plugin(const Ref<EditorResourceConversionPlugin> &p_plugin);
|
|
|
|
void remove_resource_conversion_plugin(const Ref<EditorResourceConversionPlugin> &p_plugin);
|
2020-03-17 07:33:00 +01:00
|
|
|
Vector<Ref<EditorResourceConversionPlugin>> find_resource_conversion_plugin(const Ref<Resource> &p_for_resource);
|
2017-09-22 14:20:28 +02:00
|
|
|
|
2019-03-22 02:08:28 +01:00
|
|
|
bool ensure_main_scene(bool p_from_native);
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct EditorProgress {
|
|
|
|
String task;
|
2017-12-14 12:59:46 +01:00
|
|
|
bool step(const String &p_state, int p_step = -1, bool p_force_refresh = true) { return EditorNode::progress_task_step(task, p_state, p_step, p_force_refresh); }
|
|
|
|
EditorProgress(const String &p_task, const String &p_label, int p_amount, bool p_can_cancel = false) {
|
|
|
|
EditorNode::progress_add_task(p_task, p_label, p_amount, p_can_cancel);
|
2014-02-10 02:10:30 +01:00
|
|
|
task = p_task;
|
|
|
|
}
|
|
|
|
~EditorProgress() { EditorNode::progress_end_task(task); }
|
|
|
|
};
|
|
|
|
|
2016-03-30 01:02:53 +02:00
|
|
|
class EditorPluginList : public Object {
|
|
|
|
private:
|
|
|
|
Vector<EditorPlugin *> plugins_list;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void set_plugins_list(Vector<EditorPlugin *> p_plugins_list) {
|
|
|
|
plugins_list = p_plugins_list;
|
|
|
|
}
|
|
|
|
|
2016-07-04 15:43:07 +02:00
|
|
|
Vector<EditorPlugin *> &get_plugins_list() {
|
2016-03-30 01:02:53 +02:00
|
|
|
return plugins_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void make_visible(bool p_visible);
|
|
|
|
void edit(Object *p_object);
|
2017-10-15 22:33:25 +02:00
|
|
|
bool forward_gui_input(const Ref<InputEvent> &p_event);
|
2018-09-18 20:00:07 +02:00
|
|
|
void forward_canvas_draw_over_viewport(Control *p_overlay);
|
|
|
|
void forward_canvas_force_draw_over_viewport(Control *p_overlay);
|
2022-09-08 18:38:33 +02:00
|
|
|
EditorPlugin::AfterGUIInput forward_3d_gui_input(Camera3D *p_camera, const Ref<InputEvent> &p_event, bool serve_when_force_input_enabled);
|
|
|
|
void forward_3d_draw_over_viewport(Control *p_overlay);
|
|
|
|
void forward_3d_force_draw_over_viewport(Control *p_overlay);
|
2017-06-08 19:57:35 +02:00
|
|
|
void add_plugin(EditorPlugin *p_plugin);
|
2019-02-25 16:49:06 +01:00
|
|
|
void remove_plugin(EditorPlugin *p_plugin);
|
2016-03-30 01:02:53 +02:00
|
|
|
void clear();
|
2020-12-15 13:04:21 +01:00
|
|
|
bool is_empty();
|
2016-03-30 01:02:53 +02:00
|
|
|
|
|
|
|
EditorPluginList();
|
|
|
|
~EditorPluginList();
|
2016-05-21 15:29:25 +02:00
|
|
|
};
|
2016-03-30 01:02:53 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct EditorProgressBG {
|
|
|
|
String task;
|
|
|
|
void step(int p_step = -1) { EditorNode::progress_task_step_bg(task, p_step); }
|
|
|
|
EditorProgressBG(const String &p_task, const String &p_label, int p_amount) {
|
|
|
|
EditorNode::progress_add_task_bg(p_task, p_label, p_amount);
|
|
|
|
task = p_task;
|
|
|
|
}
|
|
|
|
~EditorProgressBG() { EditorNode::progress_end_task_bg(task); }
|
|
|
|
};
|
|
|
|
|
2017-08-26 17:46:49 +02:00
|
|
|
#endif // EDITOR_NODE_H
|