Skip to content

Commit

Permalink
Support loading of translations on threads
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomShaper committed Jun 29, 2023
1 parent d95b516 commit 5301bbb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions core/string/translation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,15 @@ void Translation::_set_messages(const Dictionary &p_messages) {
void Translation::set_locale(const String &p_locale) {
locale = TranslationServer::get_singleton()->standardize_locale(p_locale);

if (Thread::is_main_thread()) {
_notify_translation_changed_if_applies();
} else {
// Avoid calling non-thread-safe functions here.
callable_mp(this, &Translation::_notify_translation_changed_if_applies).call_deferred();
}
}

void Translation::_notify_translation_changed_if_applies() {
if (OS::get_singleton()->get_main_loop() && TranslationServer::get_singleton()->get_loaded_locales().has(get_locale())) {
OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_TRANSLATION_CHANGED);
}
Expand Down
2 changes: 2 additions & 0 deletions core/string/translation.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ class Translation : public Resource {
virtual Dictionary _get_messages() const;
virtual void _set_messages(const Dictionary &p_messages);

void _notify_translation_changed_if_applies();

protected:
static void _bind_methods();

Expand Down

0 comments on commit 5301bbb

Please sign in to comment.