CGeneralTextHandler.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. #include "StdInc.h"
  2. #include "CGeneralTextHandler.h"
  3. #include <boost/locale.hpp>
  4. #include "filesystem/Filesystem.h"
  5. #include "CConfigHandler.h"
  6. #include "CModHandler.h"
  7. #include "GameConstants.h"
  8. #include "VCMI_Lib.h"
  9. /*
  10. * CGeneralTextHandler.cpp, part of VCMI engine
  11. *
  12. * Authors: listed in file AUTHORS in main folder
  13. *
  14. * License: GNU General Public License v2.0 or later
  15. * Full text of license available in license.txt file, in main folder
  16. *
  17. */
  18. size_t Unicode::getCharacterSize(char firstByte)
  19. {
  20. // length of utf-8 character can be determined from 1st byte by counting number of highest bits set to 1:
  21. // 0xxxxxxx -> 1 - ASCII chars
  22. // 110xxxxx -> 2
  23. // 11110xxx -> 4 - last allowed in current standard
  24. // 1111110x -> 6 - last allowed in original standard
  25. if ((ui8)firstByte < 0x80)
  26. return 1; // ASCII
  27. size_t ret = 0;
  28. for (size_t i=0; i<8; i++)
  29. {
  30. if (((ui8)firstByte & (0x80 >> i)) != 0)
  31. ret++;
  32. else
  33. break;
  34. }
  35. return ret;
  36. }
  37. bool Unicode::isValidCharacter(const char * character, size_t maxSize)
  38. {
  39. // can't be first byte in UTF8
  40. if ((ui8)character[0] >= 0x80 && (ui8)character[0] < 0xC0)
  41. return false;
  42. // first character must follow rules checked in getCharacterSize
  43. size_t size = getCharacterSize((ui8)character[0]);
  44. if ((ui8)character[0] > 0xF4)
  45. return false; // above maximum allowed in standard (UTF codepoints are capped at 0x0010FFFF)
  46. if (size > maxSize)
  47. return false;
  48. // remaining characters must have highest bit set to 1
  49. for (size_t i = 1; i < size; i++)
  50. {
  51. if (((ui8)character[i] & 0x80) == 0)
  52. return false;
  53. }
  54. return true;
  55. }
  56. bool Unicode::isValidASCII(const std::string & text)
  57. {
  58. for (const char & ch : text)
  59. if (ui8(ch) >= 0x80 )
  60. return false;
  61. return true;
  62. }
  63. bool Unicode::isValidASCII(const char * data, size_t size)
  64. {
  65. for (size_t i=0; i<size; i++)
  66. if (ui8(data[i]) >= 0x80 )
  67. return false;
  68. return true;
  69. }
  70. bool Unicode::isValidString(const std::string & text)
  71. {
  72. for (size_t i=0; i<text.size(); i += getCharacterSize(text[i]))
  73. {
  74. if (!isValidCharacter(text.data() + i, text.size() - i))
  75. return false;
  76. }
  77. return true;
  78. }
  79. bool Unicode::isValidString(const char * data, size_t size)
  80. {
  81. for (size_t i=0; i<size; i += getCharacterSize(data[i]))
  82. {
  83. if (!isValidCharacter(data + i, size - i))
  84. return false;
  85. }
  86. return true;
  87. }
  88. static std::string getSelectedEncoding()
  89. {
  90. return settings["general"]["encoding"].String();
  91. }
  92. std::string Unicode::toUnicode(const std::string &text)
  93. {
  94. return toUnicode(text, getSelectedEncoding());
  95. }
  96. std::string Unicode::toUnicode(const std::string &text, const std::string &encoding)
  97. {
  98. return boost::locale::conv::to_utf<char>(text, encoding);
  99. }
  100. std::string Unicode::fromUnicode(const std::string & text)
  101. {
  102. return fromUnicode(text, getSelectedEncoding());
  103. }
  104. std::string Unicode::fromUnicode(const std::string &text, const std::string &encoding)
  105. {
  106. return boost::locale::conv::from_utf<char>(text, encoding);
  107. }
  108. void Unicode::trimRight(std::string & text, const size_t amount/* =1 */)
  109. {
  110. if(text.empty())
  111. return;
  112. //todo: more efficient algorithm
  113. for(int i = 0; i< amount; i++){
  114. auto b = text.begin();
  115. auto e = text.end();
  116. size_t lastLen = 0;
  117. size_t len = 0;
  118. while (b != e) {
  119. lastLen = len;
  120. size_t n = getCharacterSize(*b);
  121. if(!isValidCharacter(&(*b),e-b))
  122. {
  123. logGlobal->errorStream() << "Invalid UTF8 sequence";
  124. break;//invalid sequence will be trimmed
  125. }
  126. len += n;
  127. b += n;
  128. }
  129. text.resize(lastLen);
  130. }
  131. }
  132. //Helper for string -> float conversion
  133. class LocaleWithComma: public std::numpunct<char>
  134. {
  135. protected:
  136. char do_decimal_point() const
  137. {
  138. return ',';
  139. }
  140. };
  141. CLegacyConfigParser::CLegacyConfigParser(std::string URI)
  142. {
  143. init(CResourceHandler::get()->load(ResourceID(URI, EResType::TEXT)));
  144. }
  145. CLegacyConfigParser::CLegacyConfigParser(const std::unique_ptr<CInputStream> & input)
  146. {
  147. init(input);
  148. }
  149. void CLegacyConfigParser::init(const std::unique_ptr<CInputStream> & input)
  150. {
  151. data.reset(new char[input->getSize()]);
  152. input->read((ui8*)data.get(), input->getSize());
  153. curr = data.get();
  154. end = curr + input->getSize();
  155. }
  156. std::string CLegacyConfigParser::extractQuotedPart()
  157. {
  158. assert(*curr == '\"');
  159. curr++; // skip quote
  160. char * begin = curr;
  161. while (curr != end && *curr != '\"' && *curr != '\t')
  162. curr++;
  163. return std::string(begin, curr++); //increment curr to close quote
  164. }
  165. std::string CLegacyConfigParser::extractQuotedString()
  166. {
  167. assert(*curr == '\"');
  168. std::string ret;
  169. while (true)
  170. {
  171. ret += extractQuotedPart();
  172. // double quote - add it to string and continue unless
  173. // line terminated using tabulation
  174. if (curr < end && *curr == '\"' && *curr != '\t')
  175. {
  176. ret += '\"';
  177. }
  178. else // end of string
  179. return ret;
  180. }
  181. }
  182. std::string CLegacyConfigParser::extractNormalString()
  183. {
  184. char * begin = curr;
  185. while (curr < end && *curr != '\t' && *curr != '\r')//find end of string
  186. curr++;
  187. return std::string(begin, curr);
  188. }
  189. std::string CLegacyConfigParser::readRawString()
  190. {
  191. if (curr >= end || *curr == '\n')
  192. return "";
  193. std::string ret;
  194. if (*curr == '\"')
  195. ret = extractQuotedString();// quoted text - find closing quote
  196. else
  197. ret = extractNormalString();//string without quotes - copy till \t or \r
  198. curr++;
  199. return ret;
  200. }
  201. std::string CLegacyConfigParser::readString()
  202. {
  203. // do not convert strings that are already in ASCII - this will only slow down loading process
  204. std::string str = readRawString();
  205. if (Unicode::isValidASCII(str))
  206. return str;
  207. return Unicode::toUnicode(str);
  208. }
  209. float CLegacyConfigParser::readNumber()
  210. {
  211. std::string input = readRawString();
  212. std::istringstream stream(input);
  213. if (input.find(',') != std::string::npos) // code to handle conversion with comma as decimal separator
  214. stream.imbue(std::locale(std::locale(), new LocaleWithComma));
  215. float result;
  216. if ( !(stream >> result) )
  217. return 0;
  218. return result;
  219. }
  220. bool CLegacyConfigParser::isNextEntryEmpty() const
  221. {
  222. char * nextSymbol = curr;
  223. while (nextSymbol < end && *nextSymbol == ' ')
  224. nextSymbol++; //find next meaningfull symbol
  225. return nextSymbol >= end || *nextSymbol == '\n' || *nextSymbol == '\r' || *nextSymbol == '\t';
  226. }
  227. bool CLegacyConfigParser::endLine()
  228. {
  229. while (curr < end && *curr != '\n')
  230. readString();
  231. curr++;
  232. return curr < end;
  233. }
  234. void CGeneralTextHandler::readToVector(std::string sourceName, std::vector<std::string> & dest)
  235. {
  236. CLegacyConfigParser parser(sourceName);
  237. do
  238. {
  239. dest.push_back(parser.readString());
  240. }
  241. while (parser.endLine());
  242. }
  243. CGeneralTextHandler::CGeneralTextHandler()
  244. {
  245. readToVector("DATA/VCDESC.TXT", victoryConditions);
  246. readToVector("DATA/LCDESC.TXT", lossCondtions);
  247. readToVector("DATA/TCOMMAND.TXT", tcommands);
  248. readToVector("DATA/HALLINFO.TXT", hcommands);
  249. readToVector("DATA/CASTINFO.TXT", fcommands);
  250. readToVector("DATA/ADVEVENT.TXT", advobtxt);
  251. readToVector("DATA/XTRAINFO.TXT", xtrainfo);
  252. readToVector("DATA/RESTYPES.TXT", restypes);
  253. readToVector("DATA/TERRNAME.TXT", terrainNames);
  254. readToVector("DATA/RANDSIGN.TXT", randsign);
  255. readToVector("DATA/CRGEN1.TXT", creGens);
  256. readToVector("DATA/CRGEN4.TXT", creGens4);
  257. readToVector("DATA/OVERVIEW.TXT", overview);
  258. readToVector("DATA/ARRAYTXT.TXT", arraytxt);
  259. readToVector("DATA/PRISKILL.TXT", primarySkillNames);
  260. readToVector("DATA/JKTEXT.TXT", jktexts);
  261. readToVector("DATA/TVRNINFO.TXT", tavernInfo);
  262. readToVector("DATA/TURNDUR.TXT", turnDurations);
  263. readToVector("DATA/HEROSCRN.TXT", heroscrn);
  264. readToVector("DATA/TENTCOLR.TXT", tentColors);
  265. readToVector("DATA/SKILLLEV.TXT", levels);
  266. localizedTexts = JsonNode(ResourceID("config/translate.json", EResType::TEXT));
  267. {
  268. CLegacyConfigParser parser("DATA/GENRLTXT.TXT");
  269. parser.endLine();
  270. do
  271. {
  272. allTexts.push_back(parser.readString());
  273. }
  274. while (parser.endLine());
  275. }
  276. {
  277. CLegacyConfigParser parser("DATA/HELP.TXT");
  278. do
  279. {
  280. std::string first = parser.readString();
  281. std::string second = parser.readString();
  282. zelp.push_back(std::make_pair(first, second));
  283. }
  284. while (parser.endLine());
  285. }
  286. {
  287. CLegacyConfigParser nameParser("DATA/MINENAME.TXT");
  288. CLegacyConfigParser eventParser("DATA/MINEEVNT.TXT");
  289. do
  290. {
  291. std::string name = nameParser.readString();
  292. std::string event = eventParser.readString();
  293. mines.push_back(std::make_pair(name, event));
  294. }
  295. while (nameParser.endLine() && eventParser.endLine());
  296. }
  297. {
  298. CLegacyConfigParser parser("DATA/PLCOLORS.TXT");
  299. do
  300. {
  301. std::string color = parser.readString();
  302. colors.push_back(color);
  303. color[0] = toupper(color[0]);
  304. capColors.push_back(color);
  305. }
  306. while (parser.endLine());
  307. }
  308. {
  309. CLegacyConfigParser parser("DATA/SSTRAITS.TXT");
  310. //skip header
  311. parser.endLine();
  312. parser.endLine();
  313. do
  314. {
  315. skillName.push_back(parser.readString());
  316. skillInfoTexts.push_back(std::vector<std::string>());
  317. for(int j = 0; j < 3; j++)
  318. skillInfoTexts.back().push_back(parser.readString());
  319. }
  320. while (parser.endLine());
  321. }
  322. {
  323. CLegacyConfigParser parser("DATA/SEERHUT.TXT");
  324. //skip header
  325. parser.endLine();
  326. for (int i = 0; i < 6; ++i)
  327. seerEmpty.push_back(parser.readString());
  328. parser.endLine();
  329. quests.resize(10);
  330. for (int i = 0; i < 9; ++i) //9 types of quests
  331. {
  332. quests[i].resize(5);
  333. for (int j = 0; j < 5; ++j)
  334. {
  335. parser.readString(); //front description
  336. for (int k = 0; k < 6; ++k)
  337. quests[i][j].push_back(parser.readString());
  338. parser.endLine();
  339. }
  340. }
  341. quests[9].resize(1);
  342. for (int k = 0; k < 6; ++k) //Time limit
  343. {
  344. quests[9][0].push_back(parser.readString());
  345. }
  346. parser.endLine();
  347. parser.endLine(); // empty line
  348. parser.endLine(); // header
  349. for (int i = 0; i < 48; ++i)
  350. {
  351. seerNames.push_back(parser.readString());
  352. parser.endLine();
  353. }
  354. }
  355. {
  356. CLegacyConfigParser parser("DATA/CAMPTEXT.TXT");
  357. //skip header
  358. parser.endLine();
  359. std::string text;
  360. do
  361. {
  362. text = parser.readString();
  363. if (!text.empty())
  364. campaignMapNames.push_back(text);
  365. }
  366. while (parser.endLine() && !text.empty());
  367. for (size_t i=0; i<campaignMapNames.size(); i++)
  368. {
  369. do // skip empty space and header
  370. {
  371. text = parser.readString();
  372. }
  373. while (parser.endLine() && text.empty());
  374. campaignRegionNames.push_back(std::vector<std::string>());
  375. do
  376. {
  377. text = parser.readString();
  378. if (!text.empty())
  379. campaignRegionNames.back().push_back(text);
  380. }
  381. while (parser.endLine() && !text.empty());
  382. }
  383. }
  384. if (VLC->modh->modules.STACK_EXP)
  385. {
  386. CLegacyConfigParser parser("DATA/ZCREXP.TXT");
  387. parser.endLine();//header
  388. do
  389. {
  390. parser.readString(); //ignore 1st column with description
  391. zcrexp.push_back(parser.readString());
  392. }
  393. while (parser.endLine());
  394. }
  395. }