diff options
| author | Adam Scott <ascott.ca@gmail.com> | 2022-12-06 13:51:06 -0500 |
|---|---|---|
| committer | Adam Scott <ascott.ca@gmail.com> | 2022-12-07 16:59:10 -0500 |
| commit | 4a16b8630e0fc73fe3178bf4828f22e07aec5aa0 (patch) | |
| tree | 0c6b3b5202b12b432c936a1f4cc1654aafd58a05 /core | |
| parent | a7937fe54cd2c1f407a529e46e2708aea5ce7243 (diff) | |
Fix `ResourceLoader::thread_load_tasks` crash
Diffstat (limited to 'core')
| -rw-r--r-- | core/io/resource_loader.cpp | 29 | ||||
| -rw-r--r-- | core/io/resource_loader.h | 2 |
2 files changed, 31 insertions, 0 deletions
diff --git a/core/io/resource_loader.cpp b/core/io/resource_loader.cpp index 6219ea70e4..20445a8b03 100644 --- a/core/io/resource_loader.cpp +++ b/core/io/resource_loader.cpp @@ -923,6 +923,35 @@ void ResourceLoader::clear_translation_remaps() { } } +void ResourceLoader::clear_thread_load_tasks() { + thread_load_mutex->lock(); + + for (KeyValue<String, ResourceLoader::ThreadLoadTask> &E : thread_load_tasks) { + switch (E.value.status) { + case ResourceLoader::ThreadLoadStatus::THREAD_LOAD_LOADED: { + E.value.resource = Ref<Resource>(); + } break; + + case ResourceLoader::ThreadLoadStatus::THREAD_LOAD_IN_PROGRESS: { + if (E.value.thread != nullptr) { + E.value.thread->wait_to_finish(); + memdelete(E.value.thread); + E.value.thread = nullptr; + } + E.value.resource = Ref<Resource>(); + } break; + + case ResourceLoader::ThreadLoadStatus::THREAD_LOAD_FAILED: + default: { + // do nothing + } + } + } + thread_load_tasks.clear(); + + thread_load_mutex->unlock(); +} + void ResourceLoader::load_path_remaps() { if (!ProjectSettings::get_singleton()->has_setting("path_remap/remapped_paths")) { return; diff --git a/core/io/resource_loader.h b/core/io/resource_loader.h index 243670b2d0..af10098bd8 100644 --- a/core/io/resource_loader.h +++ b/core/io/resource_loader.h @@ -219,6 +219,8 @@ public: static void load_translation_remaps(); static void clear_translation_remaps(); + static void clear_thread_load_tasks(); + static void set_load_callback(ResourceLoadedCallback p_callback); static ResourceLoaderImport import; |