/**************************************************************************/ /* packed_scene_translation_parser_plugin.cpp */ /**************************************************************************/ /* 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. */ /**************************************************************************/ #include "packed_scene_translation_parser_plugin.h" #include "core/io/resource_loader.h" #include "core/object/script_language.h" #include "scene/gui/option_button.h" #include "scene/resources/packed_scene.h" void PackedSceneEditorTranslationParserPlugin::get_recognized_extensions(List *r_extensions) const { ResourceLoader::get_recognized_extensions_for_type("PackedScene", r_extensions); } Error PackedSceneEditorTranslationParserPlugin::parse_file(const String &p_path, Vector *r_ids, Vector> *r_ids_ctx_plural) { // Parse specific scene Node's properties (see in constructor) that are auto-translated by the engine when set. E.g Label's text property. // These properties are translated with the tr() function in the C++ code when being set or updated. Error err; Ref loaded_res = ResourceLoader::load(p_path, "PackedScene", ResourceFormatLoader::CACHE_MODE_REUSE, &err); if (err) { ERR_PRINT("Failed to load " + p_path); return err; } Ref state = Ref(loaded_res)->get_state(); Vector parsed_strings; Vector> atr_owners; Vector tabcontainer_paths; for (int i = 0; i < state->get_node_count(); i++) { String node_type = state->get_node_type(i); String parent_path = state->get_node_path(i, true); // Handle instanced scenes. if (node_type.is_empty()) { Ref instance = state->get_node_instance(i); if (instance.is_valid()) { Ref _state = instance->get_state(); node_type = _state->get_node_type(0); } } // Find the `auto_translate_mode` property. bool auto_translating = true; bool auto_translate_mode_found = false; for (int j = 0; j < state->get_node_property_count(i); j++) { String property = state->get_node_property_name(i, j); // If an old scene wasn't saved in the new version, the `auto_translate` property won't be converted into `auto_translate_mode`, // so the deprecated property still needs to be checked as well. // TODO: Remove the check for "auto_translate" once the property if fully removed. if (property != "auto_translate_mode" && property != "auto_translate") { continue; } auto_translate_mode_found = true; int idx_last = atr_owners.size() - 1; if (idx_last > 0 && !parent_path.begins_with(atr_owners[idx_last].first)) { // Exit from the current owner nesting into the previous one. atr_owners.remove_at(idx_last); } if (property == "auto_translate_mode") { int auto_translate_mode = (int)state->get_node_property_value(i, j); if (auto_translate_mode == Node::AUTO_TRANSLATE_MODE_DISABLED) { auto_translating = false; } } else { // TODO: Remove this once `auto_translate` is fully removed. auto_translating = (bool)state->get_node_property_value(i, j); } atr_owners.push_back(Pair(state->get_node_path(i), auto_translating)); break; } // If `auto_translate_mode` wasn't found, that means it is set to its default value (`AUTO_TRANSLATE_MODE_INHERIT`). if (!auto_translate_mode_found) { int idx_last = atr_owners.size() - 1; if (idx_last > 0 && parent_path.begins_with(atr_owners[idx_last].first)) { auto_translating = atr_owners[idx_last].second; } else { atr_owners.push_back(Pair(state->get_node_path(i), true)); } } // Parse the names of children of `TabContainer`s, as they are used for tab titles. if (!tabcontainer_paths.is_empty()) { if (!parent_path.begins_with(tabcontainer_paths[tabcontainer_paths.size() - 1])) { // Switch to the previous `TabContainer` this was nested in, if that was the case. tabcontainer_paths.remove_at(tabcontainer_paths.size() - 1); } if (auto_translating && !tabcontainer_paths.is_empty() && ClassDB::is_parent_class(node_type, "Control") && parent_path == tabcontainer_paths[tabcontainer_paths.size() - 1]) { parsed_strings.push_back(state->get_node_name(i)); } } if (!auto_translating) { continue; } if (node_type == "TabContainer") { tabcontainer_paths.push_back(state->get_node_path(i)); } for (int j = 0; j < state->get_node_property_count(i); j++) { String property_name = state->get_node_property_name(i, j); if (!match_property(property_name, node_type)) { continue; } Variant property_value = state->get_node_property_value(i, j); if (property_name == "script" && property_value.get_type() == Variant::OBJECT && !property_value.is_null()) { // Parse built-in script. Ref