From 49d7041d34e78bd6295b6a48b7c3fe1e7ba75bbc Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Wed, 5 Apr 2023 17:14:46 +0200 Subject: Decouple EditorInterface from EditorPlugin - Simplify some includes in the process. - Also exposes EditorInterface.movie_maker_enabled as a property. --- editor/editor_interface.h | 143 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 editor/editor_interface.h (limited to 'editor/editor_interface.h') diff --git a/editor/editor_interface.h b/editor/editor_interface.h new file mode 100644 index 0000000000..9a64969e88 --- /dev/null +++ b/editor/editor_interface.h @@ -0,0 +1,143 @@ +/**************************************************************************/ +/* editor_interface.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. */ +/**************************************************************************/ + +#ifndef EDITOR_INTERFACE_H +#define EDITOR_INTERFACE_H + +#include "core/io/resource.h" +#include "core/object/class_db.h" +#include "core/object/object.h" +#include "core/object/script_language.h" + +class Control; +class EditorCommandPalette; +class EditorFileSystem; +class EditorInspector; +class EditorPaths; +class EditorResourcePreview; +class EditorSelection; +class EditorSettings; +class FileSystemDock; +class Mesh; +class Node; +class ScriptEditor; +class Texture2D; +class VBoxContainer; + +class EditorInterface : public Object { + GDCLASS(EditorInterface, Object); + + static EditorInterface *singleton; + + // Editor tools. + + TypedArray _make_mesh_previews(const TypedArray &p_meshes, int p_preview_size); + +protected: + static void _bind_methods(); + +public: + static EditorInterface *get_singleton() { return singleton; } + + void restart_editor(bool p_save = true); + + // Editor tools. + + EditorCommandPalette *get_command_palette() const; + EditorFileSystem *get_resource_file_system() const; + EditorPaths *get_editor_paths() const; + EditorResourcePreview *get_resource_previewer() const; + EditorSelection *get_selection() const; + Ref get_editor_settings() const; + + Vector> make_mesh_previews(const Vector> &p_meshes, Vector *p_transforms, int p_preview_size); + + void set_plugin_enabled(const String &p_plugin, bool p_enabled); + bool is_plugin_enabled(const String &p_plugin) const; + + // Editor GUI. + + Control *get_base_control() const; + VBoxContainer *get_editor_main_screen() const; + ScriptEditor *get_script_editor() const; + + void set_main_screen_editor(const String &p_name); + void set_distraction_free_mode(bool p_enter); + bool is_distraction_free_mode_enabled() const; + + float get_editor_scale() const; + + // Editor docks. + + FileSystemDock *get_file_system_dock() const; + void select_file(const String &p_file); + Vector get_selected_paths() const; + String get_current_path() const; + String get_current_directory() const; + + EditorInspector *get_inspector() const; + + // Object/Resource/Node editing. + + void inspect_object(Object *p_obj, const String &p_for_property = String(), bool p_inspector_only = false); + + void edit_resource(const Ref &p_resource); + void edit_node(Node *p_node); + void edit_script(const Ref