lltrans.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:7k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file lltrans.cpp
  3.  * @brief LLTrans implementation
  4.  *
  5.  * $LicenseInfo:firstyear=2000&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2000-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "lltrans.h"
  34. #include "llfasttimer.h" // for call count statistics
  35. #include "llxuiparser.h"
  36. #include <map>
  37. LLTrans::template_map_t LLTrans::sStringTemplates;
  38. LLStringUtil::format_map_t LLTrans::sDefaultArgs;
  39. struct StringDef : public LLInitParam::Block<StringDef>
  40. {
  41. Mandatory<std::string> name;
  42. Mandatory<std::string> value;
  43. StringDef()
  44. : name("name"),
  45. value("value")
  46. {}
  47. };
  48. struct StringTable : public LLInitParam::Block<StringTable>
  49. {
  50. Multiple<StringDef> strings;
  51. StringTable()
  52. : strings("string")
  53. {}
  54. };
  55. //static 
  56. bool LLTrans::parseStrings(LLXMLNodePtr &root, const std::set<std::string>& default_args)
  57. {
  58. std::string xml_filename = "(strings file)";
  59. if (!root->hasName("strings"))
  60. {
  61. llerrs << "Invalid root node name in " << xml_filename 
  62. << ": was " << root->getName() << ", expected "strings"" << llendl;
  63. }
  64. StringTable string_table;
  65. LLXUIParser::instance().readXUI(root, string_table, xml_filename);
  66. if (!string_table.validateBlock())
  67. {
  68. llerrs << "Problem reading strings: " << xml_filename << llendl;
  69. return false;
  70. }
  71. sStringTemplates.clear();
  72. sDefaultArgs.clear();
  73. for(LLInitParam::ParamIterator<StringDef>::const_iterator it = string_table.strings().begin();
  74. it != string_table.strings().end();
  75. ++it)
  76. {
  77. LLTransTemplate xml_template(it->name, it->value);
  78. sStringTemplates[xml_template.mName] = xml_template;
  79. std::set<std::string>::const_iterator iter = default_args.find(xml_template.mName);
  80. if (iter != default_args.end())
  81. {
  82. std::string name = *iter;
  83. if (name[0] != '[')
  84. name = llformat("[%s]",name.c_str());
  85. sDefaultArgs[name] = xml_template.mText;
  86. }
  87. }
  88. return true;
  89. }
  90. //static
  91. bool LLTrans::parseLanguageStrings(LLXMLNodePtr &root)
  92. {
  93. std::string xml_filename = "(language strings file)";
  94. if (!root->hasName("strings"))
  95. {
  96. llerrs << "Invalid root node name in " << xml_filename 
  97. << ": was " << root->getName() << ", expected "strings"" << llendl;
  98. }
  99. StringTable string_table;
  100. LLXUIParser::instance().readXUI(root, string_table, xml_filename);
  101. if (!string_table.validateBlock())
  102. {
  103. llerrs << "Problem reading strings: " << xml_filename << llendl;
  104. return false;
  105. }
  106. for(LLInitParam::ParamIterator<StringDef>::const_iterator it = string_table.strings().begin();
  107. it != string_table.strings().end();
  108. ++it)
  109. {
  110. // share the same map with parseStrings() so we can search the strings using the same getString() function.- angela
  111. LLTransTemplate xml_template(it->name, it->value);
  112. sStringTemplates[xml_template.mName] = xml_template;
  113. }
  114. return true;
  115. }
  116. static LLFastTimer::DeclareTimer FTM_GET_TRANS("Translate string");
  117. //static 
  118. std::string LLTrans::getString(const std::string &xml_desc, const LLStringUtil::format_map_t& msg_args)
  119. {
  120. // Don't care about time as much as call count.  Make sure we're not
  121. // calling LLTrans::getString() in an inner loop. JC
  122. LLFastTimer timer(FTM_GET_TRANS);
  123. template_map_t::iterator iter = sStringTemplates.find(xml_desc);
  124. if (iter != sStringTemplates.end())
  125. {
  126. std::string text = iter->second.mText;
  127. LLStringUtil::format_map_t args = sDefaultArgs;
  128. args.insert(msg_args.begin(), msg_args.end());
  129. LLStringUtil::format(text, args);
  130. return text;
  131. }
  132. else
  133. {
  134. LLSD args;
  135. args["STRING_NAME"] = xml_desc;
  136. LL_WARNS_ONCE("configuration") << "Missing String in strings.xml: [" << xml_desc << "]" << LL_ENDL;
  137. //LLNotificationsUtil::add("MissingString", args); // *TODO: resurrect
  138. //return xml_desc;
  139. return "MissingString("+xml_desc+")";
  140. }
  141. }
  142. //static 
  143. bool LLTrans::findString(std::string &result, const std::string &xml_desc, const LLStringUtil::format_map_t& msg_args)
  144. {
  145. LLFastTimer timer(FTM_GET_TRANS);
  146. template_map_t::iterator iter = sStringTemplates.find(xml_desc);
  147. if (iter != sStringTemplates.end())
  148. {
  149. std::string text = iter->second.mText;
  150. LLStringUtil::format_map_t args = sDefaultArgs;
  151. args.insert(msg_args.begin(), msg_args.end());
  152. LLStringUtil::format(text, args);
  153. result = text;
  154. return true;
  155. }
  156. else
  157. {
  158. LLSD args;
  159. args["STRING_NAME"] = xml_desc;
  160. LL_WARNS_ONCE("configuration") << "Missing String in strings.xml: [" << xml_desc << "]" << LL_ENDL;
  161. //LLNotificationsUtil::add("MissingString", args);
  162. return false;
  163. }
  164. }
  165. //static
  166. std::string LLTrans::getCountString(const std::string& language, const std::string& xml_desc, S32 count)
  167. {
  168. // Compute which string identifier to use
  169. const char* form = "";
  170. if (language == "ru") // Russian
  171. {
  172. // From GNU ngettext()
  173. // Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;
  174. if (count % 10 == 1
  175. && count % 100 != 11)
  176. {
  177. // singular, "1 item"
  178. form = "A";
  179. }
  180. else if (count % 10 >= 2
  181. && count % 10 <= 4
  182. && (count % 100 < 10 || count % 100 >= 20) )
  183. {
  184. // special case "2 items", "23 items", but not "13 items"
  185. form = "B";
  186. }
  187. else
  188. {
  189. // English-style plural, "5 items"
  190. form = "C";
  191. }
  192. }
  193. else if (language == "fr" || language == "pt") // French, Brazilian Portuguese
  194. {
  195. // French and Portuguese treat zero as a singular "0 item" not "0 items"
  196. if (count == 0 || count == 1)
  197. {
  198. form = "A";
  199. }
  200. else
  201. {
  202. // English-style plural
  203. form = "B";
  204. }
  205. }
  206. else // default
  207. {
  208. // languages like English with 2 forms, singular and plural
  209. if (count == 1)
  210. {
  211. // "1 item"
  212. form = "A";
  213. }
  214. else
  215. {
  216. // "2 items", also use plural for "0 items"
  217. form = "B";
  218. }
  219. }
  220. // Translate that string
  221. LLStringUtil::format_map_t args;
  222. args["[COUNT]"] = llformat("%d", count);
  223. // Look up "AgeYearsB" or "AgeWeeksC" including the "form"
  224. std::string key = llformat("%s%s", xml_desc.c_str(), form);
  225. return getString(key, args);
  226. }