CGeneralTextHandler.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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. //Helper for string -> float conversion
  109. class LocaleWithComma: public std::numpunct<char>
  110. {
  111. protected:
  112. char do_decimal_point() const
  113. {
  114. return ',';
  115. }
  116. };
  117. CLegacyConfigParser::CLegacyConfigParser(std::string URI)
  118. {
  119. init(CResourceHandler::get()->load(ResourceID(URI, EResType::TEXT)));
  120. }
  121. CLegacyConfigParser::CLegacyConfigParser(const std::unique_ptr<CInputStream> & input)
  122. {
  123. init(input);
  124. }
  125. void CLegacyConfigParser::init(const std::unique_ptr<CInputStream> & input)
  126. {
  127. data.reset(new char[input->getSize()]);
  128. input->read((ui8*)data.get(), input->getSize());
  129. curr = data.get();
  130. end = curr + input->getSize();
  131. }
  132. std::string CLegacyConfigParser::extractQuotedPart()
  133. {
  134. assert(*curr == '\"');
  135. curr++; // skip quote
  136. char * begin = curr;
  137. while (curr != end && *curr != '\"' && *curr != '\t')
  138. curr++;
  139. return std::string(begin, curr++); //increment curr to close quote
  140. }
  141. std::string CLegacyConfigParser::extractQuotedString()
  142. {
  143. assert(*curr == '\"');
  144. std::string ret;
  145. while (true)
  146. {
  147. ret += extractQuotedPart();
  148. // double quote - add it to string and continue unless
  149. // line terminated using tabulation
  150. if (curr < end && *curr == '\"' && *curr != '\t')
  151. {
  152. ret += '\"';
  153. }
  154. else // end of string
  155. return ret;
  156. }
  157. }
  158. std::string CLegacyConfigParser::extractNormalString()
  159. {
  160. char * begin = curr;
  161. while (curr < end && *curr != '\t' && *curr != '\r')//find end of string
  162. curr++;
  163. return std::string(begin, curr);
  164. }
  165. std::string CLegacyConfigParser::readRawString()
  166. {
  167. if (curr >= end || *curr == '\n')
  168. return "";
  169. std::string ret;
  170. if (*curr == '\"')
  171. ret = extractQuotedString();// quoted text - find closing quote
  172. else
  173. ret = extractNormalString();//string without quotes - copy till \t or \r
  174. curr++;
  175. return ret;
  176. }
  177. std::string CLegacyConfigParser::readString()
  178. {
  179. // do not convert strings that are already in ASCII - this will only slow down loading process
  180. std::string str = readRawString();
  181. if (Unicode::isValidASCII(str))
  182. return str;
  183. return Unicode::toUnicode(str);
  184. }
  185. float CLegacyConfigParser::readNumber()
  186. {
  187. std::string input = readRawString();
  188. std::istringstream stream(input);
  189. if (input.find(',') != std::string::npos) // code to handle conversion with comma as decimal separator
  190. stream.imbue(std::locale(std::locale(), new LocaleWithComma));
  191. float result;
  192. if ( !(stream >> result) )
  193. return 0;
  194. return result;
  195. }
  196. bool CLegacyConfigParser::isNextEntryEmpty() const
  197. {
  198. char * nextSymbol = curr;
  199. while (nextSymbol < end && *nextSymbol == ' ')
  200. nextSymbol++; //find next meaningfull symbol
  201. return nextSymbol >= end || *nextSymbol == '\n' || *nextSymbol == '\r' || *nextSymbol == '\t';
  202. }
  203. bool CLegacyConfigParser::endLine()
  204. {
  205. while (curr < end && *curr != '\n')
  206. readString();
  207. curr++;
  208. return curr < end;
  209. }
  210. void CGeneralTextHandler::readToVector(std::string sourceName, std::vector<std::string> & dest)
  211. {
  212. CLegacyConfigParser parser(sourceName);
  213. do
  214. {
  215. dest.push_back(parser.readString());
  216. }
  217. while (parser.endLine());
  218. }
  219. CGeneralTextHandler::CGeneralTextHandler()
  220. {
  221. readToVector("DATA/VCDESC.TXT", victoryConditions);
  222. readToVector("DATA/LCDESC.TXT", lossCondtions);
  223. readToVector("DATA/TCOMMAND.TXT", tcommands);
  224. readToVector("DATA/HALLINFO.TXT", hcommands);
  225. readToVector("DATA/CASTINFO.TXT", fcommands);
  226. readToVector("DATA/ADVEVENT.TXT", advobtxt);
  227. readToVector("DATA/XTRAINFO.TXT", xtrainfo);
  228. readToVector("DATA/RESTYPES.TXT", restypes);
  229. readToVector("DATA/TERRNAME.TXT", terrainNames);
  230. readToVector("DATA/RANDSIGN.TXT", randsign);
  231. readToVector("DATA/CRGEN1.TXT", creGens);
  232. readToVector("DATA/CRGEN4.TXT", creGens4);
  233. readToVector("DATA/OVERVIEW.TXT", overview);
  234. readToVector("DATA/ARRAYTXT.TXT", arraytxt);
  235. readToVector("DATA/PRISKILL.TXT", primarySkillNames);
  236. readToVector("DATA/JKTEXT.TXT", jktexts);
  237. readToVector("DATA/TVRNINFO.TXT", tavernInfo);
  238. readToVector("DATA/TURNDUR.TXT", turnDurations);
  239. readToVector("DATA/HEROSCRN.TXT", heroscrn);
  240. readToVector("DATA/TENTCOLR.TXT", tentColors);
  241. readToVector("DATA/SKILLLEV.TXT", levels);
  242. localizedTexts = JsonNode(ResourceID("config/translate.json", EResType::TEXT));
  243. {
  244. CLegacyConfigParser parser("DATA/GENRLTXT.TXT");
  245. parser.endLine();
  246. do
  247. {
  248. allTexts.push_back(parser.readString());
  249. }
  250. while (parser.endLine());
  251. }
  252. {
  253. CLegacyConfigParser parser("DATA/HELP.TXT");
  254. do
  255. {
  256. std::string first = parser.readString();
  257. std::string second = parser.readString();
  258. zelp.push_back(std::make_pair(first, second));
  259. }
  260. while (parser.endLine());
  261. }
  262. {
  263. CLegacyConfigParser nameParser("DATA/MINENAME.TXT");
  264. CLegacyConfigParser eventParser("DATA/MINEEVNT.TXT");
  265. do
  266. {
  267. std::string name = nameParser.readString();
  268. std::string event = eventParser.readString();
  269. mines.push_back(std::make_pair(name, event));
  270. }
  271. while (nameParser.endLine() && eventParser.endLine());
  272. }
  273. {
  274. CLegacyConfigParser parser("DATA/PLCOLORS.TXT");
  275. do
  276. {
  277. std::string color = parser.readString();
  278. colors.push_back(color);
  279. color[0] = toupper(color[0]);
  280. capColors.push_back(color);
  281. }
  282. while (parser.endLine());
  283. }
  284. {
  285. CLegacyConfigParser parser("DATA/SSTRAITS.TXT");
  286. //skip header
  287. parser.endLine();
  288. parser.endLine();
  289. do
  290. {
  291. skillName.push_back(parser.readString());
  292. skillInfoTexts.push_back(std::vector<std::string>());
  293. for(int j = 0; j < 3; j++)
  294. skillInfoTexts.back().push_back(parser.readString());
  295. }
  296. while (parser.endLine());
  297. }
  298. {
  299. CLegacyConfigParser parser("DATA/SEERHUT.TXT");
  300. //skip header
  301. parser.endLine();
  302. for (int i = 0; i < 6; ++i)
  303. seerEmpty.push_back(parser.readString());
  304. parser.endLine();
  305. quests.resize(10);
  306. for (int i = 0; i < 9; ++i) //9 types of quests
  307. {
  308. quests[i].resize(5);
  309. for (int j = 0; j < 5; ++j)
  310. {
  311. parser.readString(); //front description
  312. for (int k = 0; k < 6; ++k)
  313. quests[i][j].push_back(parser.readString());
  314. parser.endLine();
  315. }
  316. }
  317. quests[9].resize(1);
  318. for (int k = 0; k < 6; ++k) //Time limit
  319. {
  320. quests[9][0].push_back(parser.readString());
  321. }
  322. parser.endLine();
  323. parser.endLine(); // empty line
  324. parser.endLine(); // header
  325. for (int i = 0; i < 48; ++i)
  326. {
  327. seerNames.push_back(parser.readString());
  328. parser.endLine();
  329. }
  330. }
  331. {
  332. CLegacyConfigParser parser("DATA/CAMPTEXT.TXT");
  333. //skip header
  334. parser.endLine();
  335. std::string text;
  336. do
  337. {
  338. text = parser.readString();
  339. if (!text.empty())
  340. campaignMapNames.push_back(text);
  341. }
  342. while (parser.endLine() && !text.empty());
  343. for (size_t i=0; i<campaignMapNames.size(); i++)
  344. {
  345. do // skip empty space and header
  346. {
  347. text = parser.readString();
  348. }
  349. while (parser.endLine() && text.empty());
  350. campaignRegionNames.push_back(std::vector<std::string>());
  351. do
  352. {
  353. text = parser.readString();
  354. if (!text.empty())
  355. campaignRegionNames.back().push_back(text);
  356. }
  357. while (parser.endLine() && !text.empty());
  358. }
  359. }
  360. if (VLC->modh->modules.STACK_EXP)
  361. {
  362. CLegacyConfigParser parser("DATA/ZCREXP.TXT");
  363. parser.endLine();//header
  364. do
  365. {
  366. parser.readString(); //ignore 1st column with description
  367. zcrexp.push_back(parser.readString());
  368. }
  369. while (parser.endLine());
  370. }
  371. }