summaryrefslogtreecommitdiffstats
path: root/editor/editor_file_system.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2024-09-20 21:35:08 +0200
committerGitHub <noreply@github.com>2024-09-20 21:35:08 +0200
commit621cadcf651b93757d5dbf8969023ae62a16f1a4 (patch)
tree79efec5d0c0dbfe1c1e1c9b71f04e9c8c2186d28 /editor/editor_file_system.cpp
parent2be730a05b7ff221b89c967981f7caee6e164ef0 (diff)
parent96382204736cbc131fbc2640ba6ba238c53017c0 (diff)
downloadredot-engine-621cadcf651b93757d5dbf8969023ae62a16f1a4.tar.gz
Merge pull request #97168 from Hilderin/fix-reloading-scripts-already-in-use
Fix reloading scripts already in use
Diffstat (limited to 'editor/editor_file_system.cpp')
-rw-r--r--editor/editor_file_system.cpp33
1 files changed, 25 insertions, 8 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp
index adae6599c1..2b51071b15 100644
--- a/editor/editor_file_system.cpp
+++ b/editor/editor_file_system.cpp
@@ -1974,18 +1974,16 @@ void EditorFileSystem::_update_script_documentation() {
for (int i = 0; i < ScriptServer::get_language_count(); i++) {
ScriptLanguage *lang = ScriptServer::get_language(i);
if (lang->supports_documentation() && efd->files[index]->type == lang->get_type()) {
- // Reloading the script from disk if resource already in memory. Otherwise, the
- // ResourceLoader::load will return the last loaded version of the script (without the modifications).
- // The only have the script already loaded here is to edit the script outside the
- // editor without being connected to the LSP server.
- Ref<Resource> res = ResourceCache::get_ref(path);
- if (res.is_valid()) {
- res->reload_from_file();
- }
+ bool should_reload_script = _should_reload_script(path);
Ref<Script> scr = ResourceLoader::load(path);
if (scr.is_null()) {
continue;
}
+ if (should_reload_script) {
+ // Reloading the script from disk. Otherwise, the ResourceLoader::load will
+ // return the last loaded version of the script (without the modifications).
+ scr->reload_from_file();
+ }
Vector<DocData::ClassDoc> docs = scr->get_documentation();
for (int j = 0; j < docs.size(); j++) {
EditorHelp::get_doc_data()->add_doc(docs[j]);
@@ -2007,6 +2005,25 @@ void EditorFileSystem::_update_script_documentation() {
update_script_paths_documentation.clear();
}
+bool EditorFileSystem::_should_reload_script(const String &p_path) {
+ if (first_scan) {
+ return false;
+ }
+
+ Ref<Script> scr = ResourceCache::get_ref(p_path);
+ if (scr.is_null()) {
+ // Not a script or not already loaded.
+ return false;
+ }
+
+ // Scripts are reloaded via the script editor if they are currently opened.
+ if (ScriptEditor::get_singleton()->get_open_scripts().has(scr)) {
+ return false;
+ }
+
+ return true;
+}
+
void EditorFileSystem::_process_update_pending() {
_update_script_classes();
// Parse documentation second, as it requires the class names to be loaded