Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix auto-translations in editor #75012

Merged
merged 1 commit into from
Mar 25, 2023

Conversation

KoBeWi
Copy link
Member

@KoBeWi KoBeWi commented Mar 17, 2023

This PR enables auto-translation of Windows and Controls inside the editor, if they are not part of the edited scene.
Fixes #50650
Technically TTR() can now be retired in favor of TTRC(), probably.

I use get_viewport() != get_tree()->get_root() to determine whether a node is part of the scene tree, but this might yield some false-positives. A more reliable condition is

if (Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() &&
		(get_tree()->get_edited_scene_root()->get_viewport() == get_viewport() || get_tree()->get_edited_scene_root()->get_viewport()->is_ancestor_of(get_viewport())))

and for Window

if (Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() &&
		(get_tree()->get_edited_scene_root()->get_viewport() == get_parent_viewport() || get_tree()->get_edited_scene_root()->get_viewport()->is_ancestor_of(get_parent_viewport()))) {

but not sure if it's necessary 🤔

@KoBeWi KoBeWi added this to the 4.1 milestone Mar 17, 2023
@KoBeWi KoBeWi requested review from a team as code owners March 17, 2023 01:04
@YuriSizov YuriSizov requested a review from timothyqiu March 21, 2023 14:04
@YuriSizov
Copy link
Contributor

YuriSizov commented Mar 21, 2023

I use get_viewport() != get_tree()->get_root() to determine whether a node is part of the scene tree, but this might yield some false-positives

Right. Wouldn't it also trigger in projects whenever you have multiple Window nodes or controls inside of windows, dialogs, or popups? I think a TOOLS_ENABLED injection should be okay here. We already have it in Controls at least. See get_parent_anchorable_rect, which relies on something similar for the editor only behavior.

@KoBeWi
Copy link
Member Author

KoBeWi commented Mar 21, 2023

No this PR affects only the editor. False-positives is about nodes that are part of the editor, but get detected as scene nodes and don't not translated. It can happen if some node is not part of the main viewport.

@YuriSizov
Copy link
Contributor

YuriSizov commented Mar 21, 2023

Ah, right, you guard with Engine::get_singleton()->is_editor_hint(). Well, since we already do TOOLS_ENABLED checks around the same code, we could also exclude this code at compile time. And then you would still reduce the chance of error if you check for the edited root's viewport, no?

@KoBeWi KoBeWi force-pushed the english_do_you_speak_it branch from 51ebcef to dd0d220 Compare March 21, 2023 21:41
@KoBeWi
Copy link
Member Author

KoBeWi commented Mar 21, 2023

Ok added TOOLS_ENABLED check.
Also I switched to the complex condition, because buttons in dialogs are not under main viewport 🤦‍♂️ My only concern is the is_ancestor_of() check, but it's 100% accurate now at least.

@timothyqiu
Copy link
Member

My only concern is the is_ancestor_of() check, but it's 100% accurate now at least.

Similar conditions are already used in several other nodes ;)

if (Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() && (get_tree()->get_edited_scene_root() == this || get_tree()->get_edited_scene_root()->is_ancestor_of(this))) {

if (Engine::get_singleton()->is_editor_hint() && is_inside_tree() && get_tree()->get_edited_scene_root() && (get_tree()->get_edited_scene_root()->is_ancestor_of(this) || get_tree()->get_edited_scene_root() == this)) {

I think we can turn this logic into a method of Node.

@KoBeWi KoBeWi force-pushed the english_do_you_speak_it branch from dd0d220 to 8f8178b Compare March 22, 2023 22:57
@KoBeWi
Copy link
Member Author

KoBeWi commented Mar 22, 2023

I added is_part_of_edited_scene() method and used it where applicable.

Copy link
Contributor

@YuriSizov YuriSizov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, such a beauty is gone now, packed inside of a neat new method.

@YuriSizov YuriSizov merged commit 800d445 into godotengine:master Mar 25, 2023
@YuriSizov
Copy link
Contributor

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Various strings for some dialogs don't get translated properly in the editor
3 participants