CGeneralTextHandler.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  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. readToVector("DATA/OBJNAMES.TXT", names);
  243. localizedTexts = JsonNode(ResourceID("config/translate.json", EResType::TEXT));
  244. {
  245. CLegacyConfigParser parser("DATA/GENRLTXT.TXT");
  246. parser.endLine();
  247. do
  248. {
  249. allTexts.push_back(parser.readString());
  250. }
  251. while (parser.endLine());
  252. }
  253. {
  254. CLegacyConfigParser parser("DATA/HELP.TXT");
  255. do
  256. {
  257. std::string first = parser.readString();
  258. std::string second = parser.readString();
  259. zelp.push_back(std::make_pair(first, second));
  260. }
  261. while (parser.endLine());
  262. }
  263. {
  264. CLegacyConfigParser nameParser("DATA/MINENAME.TXT");
  265. CLegacyConfigParser eventParser("DATA/MINEEVNT.TXT");
  266. do
  267. {
  268. std::string name = nameParser.readString();
  269. std::string event = eventParser.readString();
  270. mines.push_back(std::make_pair(name, event));
  271. }
  272. while (nameParser.endLine() && eventParser.endLine());
  273. }
  274. {
  275. CLegacyConfigParser parser("DATA/PLCOLORS.TXT");
  276. do
  277. {
  278. std::string color = parser.readString();
  279. colors.push_back(color);
  280. color[0] = toupper(color[0]);
  281. capColors.push_back(color);
  282. }
  283. while (parser.endLine());
  284. }
  285. {
  286. CLegacyConfigParser parser("DATA/SSTRAITS.TXT");
  287. //skip header
  288. parser.endLine();
  289. parser.endLine();
  290. do
  291. {
  292. skillName.push_back(parser.readString());
  293. skillInfoTexts.push_back(std::vector<std::string>());
  294. for(int j = 0; j < 3; j++)
  295. skillInfoTexts.back().push_back(parser.readString());
  296. }
  297. while (parser.endLine());
  298. }
  299. {
  300. CLegacyConfigParser parser("DATA/SEERHUT.TXT");
  301. //skip header
  302. parser.endLine();
  303. for (int i = 0; i < 6; ++i)
  304. seerEmpty.push_back(parser.readString());
  305. parser.endLine();
  306. quests.resize(10);
  307. for (int i = 0; i < 9; ++i) //9 types of quests
  308. {
  309. quests[i].resize(5);
  310. for (int j = 0; j < 5; ++j)
  311. {
  312. parser.readString(); //front description
  313. for (int k = 0; k < 6; ++k)
  314. quests[i][j].push_back(parser.readString());
  315. parser.endLine();
  316. }
  317. }
  318. quests[9].resize(1);
  319. for (int k = 0; k < 6; ++k) //Time limit
  320. {
  321. quests[9][0].push_back(parser.readString());
  322. }
  323. parser.endLine();
  324. parser.endLine(); // empty line
  325. parser.endLine(); // header
  326. for (int i = 0; i < 48; ++i)
  327. {
  328. seerNames.push_back(parser.readString());
  329. parser.endLine();
  330. }
  331. }
  332. {
  333. CLegacyConfigParser parser("DATA/CAMPTEXT.TXT");
  334. //skip header
  335. parser.endLine();
  336. std::string text;
  337. do
  338. {
  339. text = parser.readString();
  340. if (!text.empty())
  341. campaignMapNames.push_back(text);
  342. }
  343. while (parser.endLine() && !text.empty());
  344. for (size_t i=0; i<campaignMapNames.size(); i++)
  345. {
  346. do // skip empty space and header
  347. {
  348. text = parser.readString();
  349. }
  350. while (parser.endLine() && text.empty());
  351. campaignRegionNames.push_back(std::vector<std::string>());
  352. do
  353. {
  354. text = parser.readString();
  355. if (!text.empty())
  356. campaignRegionNames.back().push_back(text);
  357. }
  358. while (parser.endLine() && !text.empty());
  359. }
  360. }
  361. if (VLC->modh->modules.STACK_EXP)
  362. {
  363. CLegacyConfigParser parser("DATA/ZCREXP.TXT");
  364. parser.endLine();//header
  365. do
  366. {
  367. parser.readString(); //ignore 1st column with description
  368. zcrexp.push_back(parser.readString());
  369. }
  370. while (parser.endLine());
  371. }
  372. }