| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /**************************************************************************/
- /* translation.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 "translation.h"
- #include "core/os/thread.h"
- #include "core/string/plural_rules.h"
- #include "core/string/translation_server.h"
- Dictionary Translation::_get_messages() const {
- Dictionary d;
- for (const KeyValue<StringName, StringName> &E : translation_map) {
- d[E.key] = E.value;
- }
- return d;
- }
- Vector<String> Translation::_get_message_list() const {
- Vector<String> msgs;
- msgs.resize(translation_map.size());
- int idx = 0;
- for (const KeyValue<StringName, StringName> &E : translation_map) {
- msgs.set(idx, E.key);
- idx += 1;
- }
- return msgs;
- }
- Vector<String> Translation::get_translated_message_list() const {
- Vector<String> msgs;
- msgs.resize(translation_map.size());
- int idx = 0;
- for (const KeyValue<StringName, StringName> &E : translation_map) {
- msgs.set(idx, E.value);
- idx += 1;
- }
- return msgs;
- }
- void Translation::_set_messages(const Dictionary &p_messages) {
- for (const KeyValue<Variant, Variant> &kv : p_messages) {
- translation_map[kv.key] = kv.value;
- }
- }
- void Translation::set_locale(const String &p_locale) {
- locale = TranslationServer::get_singleton()->standardize_locale(p_locale);
- if (plural_rules_cache && plural_rules_override.is_empty()) {
- memdelete(plural_rules_cache);
- plural_rules_cache = nullptr;
- }
- }
- void Translation::add_message(const StringName &p_src_text, const StringName &p_xlated_text, const StringName &p_context) {
- translation_map[p_src_text] = p_xlated_text;
- }
- void Translation::add_plural_message(const StringName &p_src_text, const Vector<String> &p_plural_xlated_texts, const StringName &p_context) {
- WARN_PRINT("Translation class doesn't handle plural messages. Calling add_plural_message() on a Translation instance is probably a mistake. \nUse a derived Translation class that handles plurals, such as TranslationPO class");
- ERR_FAIL_COND_MSG(p_plural_xlated_texts.is_empty(), "Parameter vector p_plural_xlated_texts passed in is empty.");
- translation_map[p_src_text] = p_plural_xlated_texts[0];
- }
- StringName Translation::get_message(const StringName &p_src_text, const StringName &p_context) const {
- StringName ret;
- if (GDVIRTUAL_CALL(_get_message, p_src_text, p_context, ret)) {
- return ret;
- }
- if (p_context != StringName()) {
- WARN_PRINT("Translation class doesn't handle context. Using context in get_message() on a Translation instance is probably a mistake. \nUse a derived Translation class that handles context, such as TranslationPO class");
- }
- HashMap<StringName, StringName>::ConstIterator E = translation_map.find(p_src_text);
- if (!E) {
- return StringName();
- }
- return E->value;
- }
- StringName Translation::get_plural_message(const StringName &p_src_text, const StringName &p_plural_text, int p_n, const StringName &p_context) const {
- StringName ret;
- if (GDVIRTUAL_CALL(_get_plural_message, p_src_text, p_plural_text, p_n, p_context, ret)) {
- return ret;
- }
- WARN_PRINT("Translation class doesn't handle plural messages. Calling get_plural_message() on a Translation instance is probably a mistake. \nUse a derived Translation class that handles plurals, such as TranslationPO class");
- return get_message(p_src_text);
- }
- void Translation::erase_message(const StringName &p_src_text, const StringName &p_context) {
- if (p_context != StringName()) {
- WARN_PRINT("Translation class doesn't handle context. Using context in erase_message() on a Translation instance is probably a mistake. \nUse a derived Translation class that handles context, such as TranslationPO class");
- }
- translation_map.erase(p_src_text);
- }
- void Translation::get_message_list(List<StringName> *r_messages) const {
- for (const KeyValue<StringName, StringName> &E : translation_map) {
- r_messages->push_back(E.key);
- }
- }
- int Translation::get_message_count() const {
- return translation_map.size();
- }
- PluralRules *Translation::_get_plural_rules() const {
- if (plural_rules_cache) {
- return plural_rules_cache;
- }
- if (!plural_rules_override.is_empty()) {
- plural_rules_cache = PluralRules::parse(plural_rules_override);
- }
- if (!plural_rules_cache) {
- // Locale's default plural rules.
- const String &default_rule = TranslationServer::get_singleton()->get_plural_rules(locale);
- if (!default_rule.is_empty()) {
- plural_rules_cache = PluralRules::parse(default_rule);
- }
- // Use English plural rules as a fallback.
- if (!plural_rules_cache) {
- plural_rules_cache = PluralRules::parse("nplurals=2; plural=(n != 1);");
- }
- }
- DEV_ASSERT(plural_rules_cache != nullptr);
- return plural_rules_cache;
- }
- void Translation::set_plural_rules_override(const String &p_rules) {
- plural_rules_override = p_rules;
- if (plural_rules_cache) {
- memdelete(plural_rules_cache);
- plural_rules_cache = nullptr;
- }
- }
- String Translation::get_plural_rules_override() const {
- return plural_rules_override;
- }
- void Translation::_bind_methods() {
- ClassDB::bind_method(D_METHOD("set_locale", "locale"), &Translation::set_locale);
- ClassDB::bind_method(D_METHOD("get_locale"), &Translation::get_locale);
- ClassDB::bind_method(D_METHOD("add_message", "src_message", "xlated_message", "context"), &Translation::add_message, DEFVAL(StringName()));
- ClassDB::bind_method(D_METHOD("add_plural_message", "src_message", "xlated_messages", "context"), &Translation::add_plural_message, DEFVAL(StringName()));
- ClassDB::bind_method(D_METHOD("get_message", "src_message", "context"), &Translation::get_message, DEFVAL(StringName()));
- ClassDB::bind_method(D_METHOD("get_plural_message", "src_message", "src_plural_message", "n", "context"), &Translation::get_plural_message, DEFVAL(StringName()));
- ClassDB::bind_method(D_METHOD("erase_message", "src_message", "context"), &Translation::erase_message, DEFVAL(StringName()));
- ClassDB::bind_method(D_METHOD("get_message_list"), &Translation::_get_message_list);
- ClassDB::bind_method(D_METHOD("get_translated_message_list"), &Translation::get_translated_message_list);
- ClassDB::bind_method(D_METHOD("get_message_count"), &Translation::get_message_count);
- ClassDB::bind_method(D_METHOD("_set_messages", "messages"), &Translation::_set_messages);
- ClassDB::bind_method(D_METHOD("_get_messages"), &Translation::_get_messages);
- ClassDB::bind_method(D_METHOD("set_plural_rules_override", "rules"), &Translation::set_plural_rules_override);
- ClassDB::bind_method(D_METHOD("get_plural_rules_override"), &Translation::get_plural_rules_override);
- GDVIRTUAL_BIND(_get_plural_message, "src_message", "src_plural_message", "n", "context");
- GDVIRTUAL_BIND(_get_message, "src_message", "context");
- ADD_PROPERTY(PropertyInfo(Variant::DICTIONARY, "messages", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR | PROPERTY_USAGE_INTERNAL), "_set_messages", "_get_messages");
- ADD_PROPERTY(PropertyInfo(Variant::STRING, "locale"), "set_locale", "get_locale");
- ADD_PROPERTY(PropertyInfo(Variant::STRING, "plural_rules_override"), "set_plural_rules_override", "get_plural_rules_override");
- }
- Translation::~Translation() {
- if (plural_rules_cache) {
- memdelete(plural_rules_cache);
- plural_rules_cache = nullptr;
- }
- }
|