text.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656
  1. /* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
  2. //
  3. // Copyright (c) 2008, Wei Mingzhi <whistler_wmz@users.sf.net>.
  4. // All rights reserved.
  5. //
  6. // Portions based on PALx Project by palxex.
  7. // Copyright (c) 2006-2008, Pal Lockheart <palxex@gmail.com>.
  8. //
  9. // This file is part of SDLPAL.
  10. //
  11. // SDLPAL is free software: you can redistribute it and/or modify
  12. // it under the terms of the GNU General Public License as published by
  13. // the Free Software Foundation, either version 3 of the License, or
  14. // (at your option) any later version.
  15. //
  16. // This program is distributed in the hope that it will be useful,
  17. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. // GNU General Public License for more details.
  20. //
  21. // You should have received a copy of the GNU General Public License
  22. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. //
  24. // Modified by Lou Yihua <louyihua@21cn.com> with Unicode support, 2015
  25. //
  26. #include "main.h"
  27. #define FONT_COLOR_DEFAULT 0x4F
  28. #define FONT_COLOR_YELLOW 0x2D
  29. #define FONT_COLOR_RED 0x1A
  30. #define FONT_COLOR_CYAN 0x8D
  31. #define FONT_COLOR_CYAN_ALT 0x8C
  32. BOOL g_fUpdatedInBattle = FALSE;
  33. #define MESSAGE_MAX_BUFFER_SIZE 512
  34. #define INCLUDE_CODEPAGE_H
  35. #include "codepage.h"
  36. #ifndef PAL_CLASSIC
  37. static const WCHAR* gc_rgszAdditionalWords[CP_MAX][6] = {
  38. { L"\x6230\x9B25\x901F\x5EA6", L"\x4E00", L"\x4E8C", L"\x4E09", L"\x56DB", L"\x4E94" },
  39. { L"\x6218\x6597\x901F\x5EA6", L"\x4E00", L"\x4E8C", L"\x4E09", L"\x56DB", L"\x4E94" },
  40. { L"\x6226\x95D8\x901F\x5EA6", L"\x4E00", L"\x4E8C", L"\x4E09", L"\x56DB", L"\x4E94" },
  41. };
  42. static const WCHAR** g_rgszAdditionalWords;
  43. #endif
  44. typedef struct tagTEXTLIB
  45. {
  46. LPWSTR *lpWordBuf;
  47. LPWSTR *lpMsgBuf;
  48. int **lpIndexBuf;
  49. int nWords;
  50. int nMsgs;
  51. int nIndices;
  52. int nCurrentDialogLine;
  53. BYTE bCurrentFontColor;
  54. PAL_POS posIcon;
  55. PAL_POS posDialogTitle;
  56. PAL_POS posDialogText;
  57. BYTE bDialogPosition;
  58. BYTE bIcon;
  59. int iDelayTime;
  60. BOOL fUserSkip;
  61. BOOL fPlayingRNG;
  62. BYTE bufDialogIcons[282];
  63. } TEXTLIB, *LPTEXTLIB;
  64. static TEXTLIB g_TextLib;
  65. PAL_FORCE_INLINE int
  66. PAL_ParseLine(
  67. char *line,
  68. char **value,
  69. int *length
  70. )
  71. {
  72. //
  73. // Remove the leading spaces
  74. //
  75. while (*line && iswspace(*line)) line++;
  76. //
  77. // Skip comments starting with '#'
  78. //
  79. if (*line && *line != '#')
  80. {
  81. //
  82. // Split the index and value
  83. //
  84. LPSTR val = strchr(line, '=');
  85. if (val)
  86. {
  87. //
  88. // Remove the trailing spaces
  89. //
  90. LPSTR end = line + strlen(line);
  91. int index;
  92. if (end > line && end[-1] == '\n') *(--end) = 0;
  93. while (end > line && iswspace(end[-1])) *(--end) = 0;
  94. //
  95. // Parse the index and pass out value
  96. //
  97. if (sscanf(line, "%d", &index) == 1)
  98. {
  99. *value = val + 1;
  100. *length = end - *value;
  101. return index;
  102. }
  103. }
  104. }
  105. return 0;
  106. }
  107. PAL_FORCE_INLINE char *
  108. PAL_ReadOneLine(
  109. char *temp,
  110. int limit,
  111. FILE *fp
  112. )
  113. {
  114. if (fgets(temp, limit, fp))
  115. {
  116. int n = strlen(temp);
  117. if (n == limit - 1 && temp[n - 1] != '\n' && !feof(fp))
  118. {
  119. // Line too long, try to read it as a whole
  120. int nn = 2;
  121. char *tmp = strdup(temp);
  122. while (!feof(fp))
  123. {
  124. if (!(tmp = (char *)realloc(tmp, nn * limit)))
  125. {
  126. TerminateOnError("PAL_ReadOneLine(): failed to allocate memory for long line!");
  127. }
  128. if (fgets(tmp + n, limit + 1, fp))
  129. {
  130. n += strlen(tmp + n);
  131. if (n < limit - 1 || temp[n - 1] == '\n')
  132. break;
  133. else
  134. nn++;
  135. }
  136. }
  137. if (tmp[n - 1] == '\n') tmp[n - 1] = 0;
  138. return tmp;
  139. }
  140. else
  141. {
  142. if (n > 0 && temp[n - 1] == '\n') temp[n - 1] = 0;
  143. return temp;
  144. }
  145. }
  146. else
  147. return NULL;
  148. }
  149. static int
  150. PAL_ReadMessageFile(
  151. FILE *fp
  152. )
  153. {
  154. char temp[MESSAGE_MAX_BUFFER_SIZE];
  155. struct _msg_entry
  156. {
  157. struct _msg_entry *next;
  158. wchar_t *value;
  159. } *cur_val;
  160. struct _msg_list_entry
  161. {
  162. struct _msg_list_entry *next;
  163. struct _msg_entry *value;
  164. int index;
  165. int count;
  166. } *head = NULL, *item;
  167. struct _word_list_entry
  168. {
  169. struct _word_list_entry *next;
  170. wchar_t *value;
  171. } whead = { NULL, NULL }, *witem = NULL;
  172. enum _message_state
  173. {
  174. ST_OUTSIDE,
  175. ST_DIALOG,
  176. ST_WORD
  177. } state = ST_OUTSIDE;
  178. int idx_cnt = 0, msg_cnt = 0, word_cnt = 0, sid, eid = -1;
  179. while (!feof(fp))
  180. {
  181. char *buffer;
  182. if (buffer = PAL_ReadOneLine(temp, MESSAGE_MAX_BUFFER_SIZE, fp))
  183. {
  184. switch(state)
  185. {
  186. case ST_OUTSIDE:
  187. //
  188. // Skip comments starting with '#'
  189. //
  190. if (*buffer && *buffer != '#')
  191. {
  192. if (strncmp(buffer, "[BEGIN DIALOG]", 14) == 0 &&
  193. sscanf(buffer + 14, "%d", &sid) == 1 &&
  194. sid == eid + 1)
  195. {
  196. state = ST_DIALOG;
  197. //
  198. // First save values (converted wide string) into a linked list
  199. //
  200. if (head)
  201. {
  202. item->next = (struct _msg_list_entry *)malloc(sizeof(struct _msg_list_entry));
  203. item = item->next;
  204. }
  205. else
  206. {
  207. head = (struct _msg_list_entry *)malloc(sizeof(struct _msg_list_entry));
  208. item = head;
  209. }
  210. item->value = NULL; item->index = sid;
  211. item->count = 0; cur_val = NULL;
  212. if (idx_cnt < item->index) idx_cnt = item->index;
  213. }
  214. else if (strncmp(buffer, "[BEGIN WORDS]", 13) == 0 && !witem)
  215. {
  216. state = ST_WORD;
  217. //
  218. // First save values (converted wide string) into a linked list
  219. //
  220. witem = &whead;
  221. }
  222. else
  223. {
  224. // Just ignore invalid lines
  225. #ifdef ENABLE_LOG
  226. UTIL_WriteLog(LOG_ERR, "PAL_ReadMessageFile(): encounter invalid line '%s'!\n", line);
  227. #endif
  228. int iii = 1;
  229. }
  230. }
  231. break;
  232. case ST_DIALOG:
  233. //
  234. // Check if to end one dialog
  235. //
  236. if (strncmp(buffer, "[END DIALOG]", 12) == 0 &&
  237. sscanf(buffer + 12, "%d", &eid) == 1 && eid >= sid)
  238. {
  239. // End dialog
  240. state = ST_OUTSIDE;
  241. }
  242. else
  243. {
  244. if (cur_val)
  245. {
  246. cur_val->next = (struct _msg_entry *)malloc(sizeof(struct _msg_entry));
  247. cur_val = cur_val->next;
  248. }
  249. else
  250. cur_val = (struct _msg_entry *)malloc(sizeof(struct _msg_entry));
  251. if (strncmp(buffer, "[CLEAR DIALOG]", 14) == 0)
  252. {
  253. cur_val->value = NULL;
  254. }
  255. else
  256. {
  257. int len = PAL_MultiByteToWideCharCP(CP_UTF_8, buffer, -1, NULL, 0);
  258. cur_val->value = (wchar_t *)malloc(len * sizeof(wchar_t));
  259. PAL_MultiByteToWideCharCP(CP_UTF_8, buffer, -1, cur_val->value, len);
  260. msg_cnt++;
  261. }
  262. if (!item->value) item->value = cur_val;
  263. cur_val->next = NULL; item->count++;
  264. }
  265. break;
  266. case ST_WORD:
  267. //
  268. // Check if to end word list
  269. //
  270. if (strncmp(buffer, "[END WORDS]", 11) == 0)
  271. {
  272. // End word list
  273. state = ST_OUTSIDE;
  274. }
  275. else
  276. {
  277. char *v;
  278. int l, i = PAL_ParseLine(buffer, &v, &l);
  279. if (i > 0)
  280. {
  281. int len = PAL_MultiByteToWideCharCP(CP_UTF_8, v, -1, NULL, 0);
  282. struct _word_list_entry *val = (struct _word_list_entry *)malloc(sizeof(struct _word_list_entry));
  283. val->value = (wchar_t *)malloc(len * sizeof(wchar_t));
  284. PAL_MultiByteToWideCharCP(CP_UTF_8, v, -1, val->value, len);
  285. val->next = NULL; witem->next = val; witem = witem->next;
  286. if (word_cnt < i) word_cnt = i;
  287. }
  288. }
  289. break;
  290. default:
  291. TerminateOnError("PAL_ReadMessageFile(): Reached an unknown state. Something really wrong may have happened!");
  292. break;
  293. }
  294. if (buffer != temp) free(buffer);
  295. }
  296. }
  297. if (msg_cnt > 0)
  298. {
  299. //
  300. // Move values from linked list to array
  301. //
  302. int idx_msg = 1;
  303. g_TextLib.nIndices = (idx_cnt += 1);
  304. g_TextLib.nMsgs = (msg_cnt += 1);
  305. g_TextLib.lpIndexBuf = (int **)calloc(idx_cnt, sizeof(int *));
  306. g_TextLib.lpMsgBuf = (LPWSTR *)calloc(msg_cnt, sizeof(LPWSTR));
  307. for (item = head; item; )
  308. {
  309. struct _msg_list_entry *temp = item->next;
  310. struct _msg_entry *msg = item->value;
  311. int index = 0;
  312. g_TextLib.lpIndexBuf[item->index] = (int *)calloc(item->count + 1, sizeof(int));
  313. while (msg)
  314. {
  315. struct _msg_entry *tmp = msg->next;
  316. if (msg->value)
  317. {
  318. g_TextLib.lpIndexBuf[item->index][index++] = idx_msg;
  319. g_TextLib.lpMsgBuf[idx_msg++] = msg->value;
  320. }
  321. else
  322. g_TextLib.lpIndexBuf[item->index][index++] = 0;
  323. free(msg); msg = tmp;
  324. }
  325. g_TextLib.lpIndexBuf[item->index][item->count] = -1;
  326. free(item); item = temp;
  327. }
  328. }
  329. if (word_cnt > 0)
  330. {
  331. //
  332. // Move values from linked list to array
  333. //
  334. int index = 1;
  335. g_TextLib.nWords = (word_cnt += 1);
  336. g_TextLib.lpWordBuf = (LPWSTR *)calloc(word_cnt, sizeof(LPWSTR));
  337. for (witem = whead.next; witem; )
  338. {
  339. struct _word_list_entry *temp = witem->next;
  340. g_TextLib.lpWordBuf[index++] = witem->value;
  341. free(witem); witem = temp;
  342. }
  343. }
  344. fclose(fp);
  345. return (msg_cnt > 0 && word_cnt > 0) ? 1 : 0;
  346. }
  347. INT
  348. PAL_InitText(
  349. VOID
  350. )
  351. /*++
  352. Purpose:
  353. Initialize the in-game texts.
  354. Parameters:
  355. None.
  356. Return value:
  357. 0 = success.
  358. -1 = memory allocation error.
  359. --*/
  360. {
  361. if (gpGlobals->pszMsgName)
  362. {
  363. //
  364. // Open the message, index and word data files.
  365. //
  366. FILE *fp = UTIL_OpenRequiredFileForMode(gpGlobals->pszMsgName, "r");
  367. //
  368. // Read the contents of the message, index and word data files.
  369. //
  370. if (!PAL_ReadMessageFile(fp))
  371. {
  372. return -1;
  373. }
  374. else
  375. {
  376. DWORD dwWordLength = 0;
  377. int i;
  378. for (i = 1; i < g_TextLib.nWords; i++)
  379. {
  380. LPWSTR ptr = g_TextLib.lpWordBuf[i];
  381. DWORD n = 0;
  382. while (*ptr) n += PAL_CharWidth(*ptr++) >> 3;
  383. if (dwWordLength < n) dwWordLength = n;
  384. }
  385. gpGlobals->dwWordLength = dwWordLength;
  386. }
  387. }
  388. else
  389. {
  390. FILE *fpMsg, *fpWord;
  391. DWORD *offsets;
  392. LPWSTR tmp;
  393. LPBYTE temp;
  394. int wpos, wlen, i;
  395. //
  396. // Open the message and word data files.
  397. //
  398. fpMsg = UTIL_OpenRequiredFile("m.msg");
  399. fpWord = UTIL_OpenRequiredFile("word.dat");
  400. //
  401. // See how many words we have
  402. //
  403. fseek(fpWord, 0, SEEK_END);
  404. i = ftell(fpWord);
  405. //
  406. // Each word has 10 or 16 bytes
  407. //
  408. g_TextLib.nWords = (i + (gpGlobals->dwWordLength - 1)) / gpGlobals->dwWordLength;
  409. //
  410. // Read the words
  411. //
  412. temp = (LPBYTE)malloc(i);
  413. if (temp == NULL)
  414. {
  415. fclose(fpWord);
  416. fclose(fpMsg);
  417. return -1;
  418. }
  419. fseek(fpWord, 0, SEEK_SET);
  420. fread(temp, i, 1, fpWord);
  421. //
  422. // Close the words file
  423. //
  424. fclose(fpWord);
  425. // Split the words and do code page conversion
  426. for (i = 0, wlen = 0; i < g_TextLib.nWords; i++)
  427. {
  428. int base = i * gpGlobals->dwWordLength;
  429. int pos = base + gpGlobals->dwWordLength - 1;
  430. while (pos >= base && temp[pos] == ' ') temp[pos--] = 0;
  431. wlen += PAL_MultiByteToWideChar((LPCSTR)temp + base, gpGlobals->dwWordLength, NULL, 0) + 1;
  432. }
  433. g_TextLib.lpWordBuf = (LPWSTR*)malloc(g_TextLib.nWords * sizeof(LPWSTR));
  434. tmp = (LPWSTR)malloc(wlen * sizeof(WCHAR));
  435. for (i = 0, wpos = 0; i < g_TextLib.nWords; i++)
  436. {
  437. int l;
  438. g_TextLib.lpWordBuf[i] = tmp + wpos;
  439. l = PAL_MultiByteToWideChar((LPCSTR)temp + i * gpGlobals->dwWordLength, gpGlobals->dwWordLength, g_TextLib.lpWordBuf[i], wlen - wpos);
  440. if (l > 0 && g_TextLib.lpWordBuf[i][l - 1] == '1')
  441. g_TextLib.lpWordBuf[i][l - 1] = 0;
  442. g_TextLib.lpWordBuf[i][l] = 0;
  443. wpos += l + 1;
  444. }
  445. free(temp);
  446. //
  447. // Read the message offsets. The message offsets are in SSS.MKF #3
  448. //
  449. i = PAL_MKFGetChunkSize(3, gpGlobals->f.fpSSS) / sizeof(DWORD);
  450. g_TextLib.nMsgs = i - 1;
  451. offsets = (LPDWORD)malloc(i * sizeof(DWORD));
  452. if (offsets == NULL)
  453. {
  454. free(g_TextLib.lpWordBuf);
  455. fclose(fpMsg);
  456. return -1;
  457. }
  458. PAL_MKFReadChunk((LPBYTE)(offsets), i * sizeof(DWORD), 3, gpGlobals->f.fpSSS);
  459. //
  460. // Read the messages.
  461. //
  462. fseek(fpMsg, 0, SEEK_END);
  463. i = ftell(fpMsg);
  464. temp = (LPBYTE)malloc(i);
  465. if (temp == NULL)
  466. {
  467. free(offsets);
  468. free(g_TextLib.lpWordBuf[0]);
  469. free(g_TextLib.lpWordBuf);
  470. fclose(fpMsg);
  471. return -1;
  472. }
  473. fseek(fpMsg, 0, SEEK_SET);
  474. fread(temp, 1, i, fpMsg);
  475. fclose(fpMsg);
  476. // Split messages and do code page conversion here
  477. for (i = 0, wlen = 0; i < g_TextLib.nMsgs; i++)
  478. {
  479. wlen += PAL_MultiByteToWideChar((LPCSTR)temp + SDL_SwapLE32(offsets[i]), SDL_SwapLE32(offsets[i + 1]) - SDL_SwapLE32(offsets[i]), NULL, 0) + 1;
  480. }
  481. g_TextLib.lpMsgBuf = (LPWSTR*)malloc(g_TextLib.nMsgs * sizeof(LPWSTR));
  482. tmp = (LPWSTR)malloc(wlen * sizeof(WCHAR));
  483. for (i = 0, wpos = 0; i < g_TextLib.nMsgs; i++)
  484. {
  485. int l;
  486. g_TextLib.lpMsgBuf[i] = tmp + wpos;
  487. l = PAL_MultiByteToWideChar((LPCSTR)temp + SDL_SwapLE32(offsets[i]), SDL_SwapLE32(offsets[i + 1]) - SDL_SwapLE32(offsets[i]), g_TextLib.lpMsgBuf[i], wlen - wpos);
  488. g_TextLib.lpMsgBuf[i][l] = 0;
  489. wpos += l + 1;
  490. }
  491. free(temp);
  492. free(offsets);
  493. g_TextLib.lpIndexBuf = NULL;
  494. }
  495. #ifndef PAL_CLASSIC
  496. g_rgszAdditionalWords = gc_rgszAdditionalWords[gpGlobals->iCodePage];
  497. #endif
  498. g_TextLib.bCurrentFontColor = FONT_COLOR_DEFAULT;
  499. g_TextLib.bIcon = 0;
  500. g_TextLib.posIcon = 0;
  501. g_TextLib.nCurrentDialogLine = 0;
  502. g_TextLib.iDelayTime = 3;
  503. g_TextLib.posDialogTitle = PAL_XY(12, 8);
  504. g_TextLib.posDialogText = PAL_XY(44, 26);
  505. g_TextLib.bDialogPosition = kDialogUpper;
  506. g_TextLib.fUserSkip = FALSE;
  507. PAL_MKFReadChunk(g_TextLib.bufDialogIcons, 282, 12, gpGlobals->f.fpDATA);
  508. return 0;
  509. }
  510. VOID
  511. PAL_FreeText(
  512. VOID
  513. )
  514. /*++
  515. Purpose:
  516. Free the memory used by the texts.
  517. Parameters:
  518. None.
  519. Return value:
  520. None.
  521. --*/
  522. {
  523. int i;
  524. if (g_TextLib.lpMsgBuf != NULL)
  525. {
  526. if (gpGlobals->pszMsgName)
  527. for(i = 0; i < g_TextLib.nMsgs; i++) free(g_TextLib.lpMsgBuf[i]);
  528. else
  529. free(g_TextLib.lpMsgBuf[0]);
  530. free(g_TextLib.lpMsgBuf);
  531. g_TextLib.lpMsgBuf = NULL;
  532. }
  533. if (g_TextLib.lpWordBuf != NULL)
  534. {
  535. if (gpGlobals->pszMsgName)
  536. for(i = 0; i < g_TextLib.nWords; i++) free(g_TextLib.lpWordBuf[i]);
  537. else
  538. free(g_TextLib.lpWordBuf[0]);
  539. free(g_TextLib.lpWordBuf);
  540. g_TextLib.lpWordBuf = NULL;
  541. }
  542. if (g_TextLib.lpIndexBuf != NULL)
  543. {
  544. if (gpGlobals->pszMsgName)
  545. for(i = 0; i < g_TextLib.nIndices; i++) free(g_TextLib.lpIndexBuf[i]);
  546. else
  547. free(g_TextLib.lpIndexBuf[0]);
  548. free(g_TextLib.lpIndexBuf);
  549. g_TextLib.lpIndexBuf = NULL;
  550. }
  551. }
  552. LPCWSTR
  553. PAL_GetWord(
  554. int iNumWord
  555. )
  556. /*++
  557. Purpose:
  558. Get the specified word.
  559. Parameters:
  560. [IN] wNumWord - the number of the requested word.
  561. Return value:
  562. Pointer to the requested word. NULL if not found.
  563. --*/
  564. {
  565. #ifndef PAL_CLASSIC
  566. if (wNumWord >= PAL_ADDITIONAL_WORD_FIRST)
  567. {
  568. return g_rgszAdditionalWords[wNumWord - PAL_ADDITIONAL_WORD_FIRST];
  569. }
  570. #endif
  571. return (iNumWord >= g_TextLib.nWords || !g_TextLib.lpWordBuf[iNumWord]) ? L"" : g_TextLib.lpWordBuf[iNumWord];
  572. }
  573. LPCWSTR
  574. PAL_GetMsg(
  575. int iNumMsg
  576. )
  577. /*++
  578. Purpose:
  579. Get the specified message.
  580. Parameters:
  581. [IN] wNumMsg - the number of the requested message.
  582. Return value:
  583. Pointer to the requested message. NULL if not found.
  584. --*/
  585. {
  586. return (iNumMsg >= g_TextLib.nMsgs || !g_TextLib.lpMsgBuf[iNumMsg]) ? L"" : g_TextLib.lpMsgBuf[iNumMsg];
  587. }
  588. int
  589. PAL_GetMsgNum(
  590. int iIndex,
  591. int iOrder
  592. )
  593. /*++
  594. Purpose:
  595. Get the number of specified message from index & order.
  596. Parameters:
  597. [IN] iMsgIndex - index.
  598. [IN] iOrder - order inside the index.
  599. Return value:
  600. The number of message. Zero means pausing for key, and -1 means end.
  601. --*/
  602. {
  603. return (iIndex >= g_TextLib.nMsgs || !g_TextLib.lpIndexBuf[iIndex]) ? -1 : g_TextLib.lpIndexBuf[iIndex][iOrder];
  604. }
  605. VOID
  606. PAL_DrawText(
  607. LPCWSTR lpszText,
  608. PAL_POS pos,
  609. BYTE bColor,
  610. BOOL fShadow,
  611. BOOL fUpdate
  612. )
  613. /*++
  614. Purpose:
  615. Draw text on the screen.
  616. Parameters:
  617. [IN] lpszText - the text to be drawn.
  618. [IN] pos - Position of the text.
  619. [IN] bColor - Color of the text.
  620. [IN] fShadow - TRUE if the text is shadowed or not.
  621. [IN] fUpdate - TRUE if update the screen area.
  622. Return value:
  623. None.
  624. --*/
  625. {
  626. SDL_Rect rect, urect;
  627. rect.x = PAL_X(pos);
  628. rect.y = PAL_Y(pos);
  629. urect.x = rect.x;
  630. urect.y = rect.y;
  631. urect.h = gpGlobals->fUseEmbeddedFonts ? 16 : 17;
  632. urect.w = 0;
  633. while (*lpszText)
  634. {
  635. //
  636. // Draw the character
  637. //
  638. int char_width = PAL_CharWidth(*lpszText);
  639. if (fShadow)
  640. {
  641. PAL_DrawCharOnSurface(*lpszText, gpScreen, PAL_XY(rect.x + 1, rect.y + 1), 0);
  642. PAL_DrawCharOnSurface(*lpszText, gpScreen, PAL_XY(rect.x + 1, rect.y), 0);
  643. }
  644. PAL_DrawCharOnSurface(*lpszText, gpScreen, PAL_XY(rect.x, rect.y), bColor);
  645. lpszText++;
  646. rect.x += char_width;
  647. urect.w += char_width;
  648. }
  649. //
  650. // Update the screen area
  651. //
  652. if (fUpdate && urect.w > 0)
  653. {
  654. if (gpGlobals->fIsWIN95)
  655. {
  656. urect.w++;
  657. if (urect.x + urect.w > 320)
  658. {
  659. urect.w = 320 - urect.x;
  660. }
  661. }
  662. VIDEO_UpdateScreen(&urect);
  663. }
  664. }
  665. VOID
  666. PAL_DialogSetDelayTime(
  667. INT iDelayTime
  668. )
  669. /*++
  670. Purpose:
  671. Set the delay time for dialog.
  672. Parameters:
  673. [IN] iDelayTime - the delay time to be set.
  674. Return value:
  675. None.
  676. --*/
  677. {
  678. g_TextLib.iDelayTime = iDelayTime;
  679. }
  680. VOID
  681. PAL_StartDialog(
  682. BYTE bDialogLocation,
  683. BYTE bFontColor,
  684. INT iNumCharFace,
  685. BOOL fPlayingRNG
  686. )
  687. /*++
  688. Purpose:
  689. Start a new dialog.
  690. Parameters:
  691. [IN] bDialogLocation - the location of the text on the screen.
  692. [IN] bFontColor - the font color of the text.
  693. [IN] iNumCharFace - number of the character face in RGM.MKF.
  694. [IN] fPlayingRNG - whether we are playing a RNG video or not.
  695. Return value:
  696. None.
  697. --*/
  698. {
  699. PAL_LARGE BYTE buf[16384];
  700. SDL_Rect rect;
  701. if (gpGlobals->fInBattle && !g_fUpdatedInBattle)
  702. {
  703. //
  704. // Update the screen in battle, or the graphics may seem messed up
  705. //
  706. VIDEO_UpdateScreen(NULL);
  707. g_fUpdatedInBattle = TRUE;
  708. }
  709. g_TextLib.bIcon = 0;
  710. g_TextLib.posIcon = 0;
  711. g_TextLib.nCurrentDialogLine = 0;
  712. g_TextLib.posDialogTitle = PAL_XY(12, 8);
  713. g_TextLib.fUserSkip = FALSE;
  714. if (bFontColor != 0)
  715. {
  716. g_TextLib.bCurrentFontColor = bFontColor;
  717. }
  718. if (fPlayingRNG && iNumCharFace)
  719. {
  720. VIDEO_BackupScreen();
  721. g_TextLib.fPlayingRNG = TRUE;
  722. }
  723. switch (bDialogLocation)
  724. {
  725. case kDialogUpper:
  726. if (iNumCharFace > 0)
  727. {
  728. //
  729. // Display the character face at the upper part of the screen
  730. //
  731. if (PAL_MKFReadChunk(buf, 16384, iNumCharFace, gpGlobals->f.fpRGM) > 0)
  732. {
  733. rect.w = PAL_RLEGetWidth((LPCBITMAPRLE)buf);
  734. rect.h = PAL_RLEGetHeight((LPCBITMAPRLE)buf);
  735. rect.x = 48 - rect.w / 2;
  736. rect.y = 55 - rect.h / 2;
  737. if (rect.x < 0)
  738. {
  739. rect.x = 0;
  740. }
  741. if (rect.y < 0)
  742. {
  743. rect.y = 0;
  744. }
  745. PAL_RLEBlitToSurface((LPCBITMAPRLE)buf, gpScreen, PAL_XY(rect.x, rect.y));
  746. if (rect.x < 0)
  747. {
  748. rect.x = 0;
  749. }
  750. if (rect.y < 0)
  751. {
  752. rect.y = 0;
  753. }
  754. VIDEO_UpdateScreen(&rect);
  755. }
  756. }
  757. g_TextLib.posDialogTitle = PAL_XY(iNumCharFace > 0 ? 80 : 12, 8);
  758. g_TextLib.posDialogText = PAL_XY(iNumCharFace > 0 ? 96 : 44, 26);
  759. break;
  760. case kDialogCenter:
  761. g_TextLib.posDialogText = PAL_XY(80, 40);
  762. break;
  763. case kDialogLower:
  764. if (iNumCharFace > 0)
  765. {
  766. //
  767. // Display the character face at the lower part of the screen
  768. //
  769. if (PAL_MKFReadChunk(buf, 16384, iNumCharFace, gpGlobals->f.fpRGM) > 0)
  770. {
  771. rect.x = 270 - PAL_RLEGetWidth((LPCBITMAPRLE)buf) / 2;
  772. rect.y = 144 - PAL_RLEGetHeight((LPCBITMAPRLE)buf) / 2;
  773. PAL_RLEBlitToSurface((LPCBITMAPRLE)buf, gpScreen, PAL_XY(rect.x, rect.y));
  774. VIDEO_UpdateScreen(NULL);
  775. }
  776. }
  777. g_TextLib.posDialogTitle = PAL_XY(iNumCharFace > 0 ? 4 : 12, 108);
  778. g_TextLib.posDialogText = PAL_XY(iNumCharFace > 0 ? 20 : 44, 126);
  779. break;
  780. case kDialogCenterWindow:
  781. g_TextLib.posDialogText = PAL_XY(160, 40);
  782. break;
  783. }
  784. g_TextLib.bDialogPosition = bDialogLocation;
  785. }
  786. static VOID
  787. PAL_DialogWaitForKey(
  788. VOID
  789. )
  790. /*++
  791. Purpose:
  792. Wait for player to press a key after showing a dialog.
  793. Parameters:
  794. None.
  795. Return value:
  796. None.
  797. --*/
  798. {
  799. PAL_LARGE SDL_Color palette[256];
  800. SDL_Color *pCurrentPalette, t;
  801. int i;
  802. //
  803. // get the current palette
  804. //
  805. pCurrentPalette = PAL_GetPalette(gpGlobals->wNumPalette, gpGlobals->fNightPalette);
  806. memcpy(palette, pCurrentPalette, sizeof(palette));
  807. if (g_TextLib.bDialogPosition != kDialogCenterWindow &&
  808. g_TextLib.bDialogPosition != kDialogCenter)
  809. {
  810. //
  811. // show the icon
  812. //
  813. LPCBITMAPRLE p = PAL_SpriteGetFrame(g_TextLib.bufDialogIcons, g_TextLib.bIcon);
  814. if (p != NULL)
  815. {
  816. SDL_Rect rect;
  817. rect.x = PAL_X(g_TextLib.posIcon);
  818. rect.y = PAL_Y(g_TextLib.posIcon);
  819. rect.w = 16;
  820. rect.h = 16;
  821. PAL_RLEBlitToSurface(p, gpScreen, g_TextLib.posIcon);
  822. VIDEO_UpdateScreen(&rect);
  823. }
  824. }
  825. PAL_ClearKeyState();
  826. while (TRUE)
  827. {
  828. UTIL_Delay(100);
  829. if (g_TextLib.bDialogPosition != kDialogCenterWindow &&
  830. g_TextLib.bDialogPosition != kDialogCenter)
  831. {
  832. //
  833. // palette shift
  834. //
  835. t = palette[0xF9];
  836. for (i = 0xF9; i < 0xFE; i++)
  837. {
  838. palette[i] = palette[i + 1];
  839. }
  840. palette[0xFE] = t;
  841. VIDEO_SetPalette(palette);
  842. }
  843. if (g_InputState.dwKeyPress != 0)
  844. {
  845. break;
  846. }
  847. }
  848. if (g_TextLib.bDialogPosition != kDialogCenterWindow &&
  849. g_TextLib.bDialogPosition != kDialogCenter)
  850. {
  851. PAL_SetPalette(gpGlobals->wNumPalette, gpGlobals->fNightPalette);
  852. }
  853. PAL_ClearKeyState();
  854. g_TextLib.fUserSkip = FALSE;
  855. }
  856. VOID
  857. PAL_ShowDialogText(
  858. LPCWSTR lpszText
  859. )
  860. /*++
  861. Purpose:
  862. Show one line of the dialog text.
  863. Parameters:
  864. [IN] lpszText - the text to be shown.
  865. Return value:
  866. None.
  867. --*/
  868. {
  869. SDL_Rect rect;
  870. int x, y;
  871. PAL_ClearKeyState();
  872. g_TextLib.bIcon = 0;
  873. if (gpGlobals->fInBattle && !g_fUpdatedInBattle)
  874. {
  875. //
  876. // Update the screen in battle, or the graphics may seem messed up
  877. //
  878. VIDEO_UpdateScreen(NULL);
  879. g_fUpdatedInBattle = TRUE;
  880. }
  881. if (g_TextLib.nCurrentDialogLine > 3)
  882. {
  883. //
  884. // The rest dialogs should be shown in the next page.
  885. //
  886. PAL_DialogWaitForKey();
  887. g_TextLib.nCurrentDialogLine = 0;
  888. VIDEO_RestoreScreen();
  889. VIDEO_UpdateScreen(NULL);
  890. }
  891. x = PAL_X(g_TextLib.posDialogText);
  892. y = PAL_Y(g_TextLib.posDialogText) + g_TextLib.nCurrentDialogLine * 18;
  893. if (g_TextLib.bDialogPosition == kDialogCenterWindow)
  894. {
  895. //
  896. // The text should be shown in a small window at the center of the screen
  897. //
  898. #ifndef PAL_CLASSIC
  899. if (gpGlobals->fInBattle && g_Battle.BattleResult == kBattleResultOnGoing)
  900. {
  901. PAL_BattleUIShowText(lpszText, 1400);
  902. }
  903. else
  904. #endif
  905. {
  906. PAL_POS pos;
  907. LPBOX lpBox;
  908. int i, w = wcslen(lpszText), len = 0;
  909. for (i = 0; i < w; i++)
  910. len += PAL_CharWidth(lpszText[i]) >> 3;
  911. //
  912. // Create the window box
  913. //
  914. pos = PAL_XY(PAL_X(g_TextLib.posDialogText) - len * 4, PAL_Y(g_TextLib.posDialogText));
  915. lpBox = PAL_CreateSingleLineBox(pos, (len + 1) / 2, TRUE);
  916. rect.x = PAL_X(pos);
  917. rect.y = PAL_Y(pos);
  918. rect.w = 320 - rect.x * 2 + 32;
  919. rect.h = 64;
  920. //
  921. // Show the text on the screen
  922. //
  923. pos = PAL_XY(PAL_X(pos) + 8 + ((len & 1) << 2), PAL_Y(pos) + 10);
  924. PAL_DrawText(lpszText, pos, 0, FALSE, FALSE);
  925. VIDEO_UpdateScreen(&rect);
  926. PAL_DialogWaitForKey();
  927. //
  928. // Delete the box
  929. //
  930. PAL_DeleteBox(lpBox);
  931. VIDEO_UpdateScreen(&rect);
  932. PAL_EndDialog();
  933. }
  934. }
  935. else
  936. {
  937. int len = wcslen(lpszText);
  938. if (g_TextLib.nCurrentDialogLine == 0 &&
  939. g_TextLib.bDialogPosition != kDialogCenter &&
  940. (lpszText[len - 1] == 0xff1a ||
  941. lpszText[len - 1] == 0x2236 || // Special case for Pal WIN95 Simplified Chinese version
  942. lpszText[len - 1] == ':')
  943. )
  944. {
  945. //
  946. // name of character
  947. //
  948. PAL_DrawText(lpszText, g_TextLib.posDialogTitle, FONT_COLOR_CYAN_ALT, TRUE, TRUE);
  949. }
  950. else
  951. {
  952. //
  953. // normal texts
  954. //
  955. WCHAR text[2];
  956. if (!g_TextLib.fPlayingRNG && g_TextLib.nCurrentDialogLine == 0)
  957. {
  958. //
  959. // Save the screen before we show the first line of dialog
  960. //
  961. VIDEO_BackupScreen();
  962. }
  963. while (lpszText != NULL && *lpszText != '\0')
  964. {
  965. switch (*lpszText)
  966. {
  967. case '-':
  968. //
  969. // Set the font color to Cyan
  970. //
  971. if (g_TextLib.bCurrentFontColor == FONT_COLOR_CYAN)
  972. {
  973. g_TextLib.bCurrentFontColor = FONT_COLOR_DEFAULT;
  974. }
  975. else
  976. {
  977. g_TextLib.bCurrentFontColor = FONT_COLOR_CYAN;
  978. }
  979. lpszText++;
  980. break;
  981. #if 0
  982. /* Not used */
  983. case '\'':
  984. //
  985. // Set the font color to Red
  986. //
  987. if (g_TextLib.bCurrentFontColor == FONT_COLOR_RED)
  988. {
  989. g_TextLib.bCurrentFontColor = FONT_COLOR_DEFAULT;
  990. }
  991. else
  992. {
  993. g_TextLib.bCurrentFontColor = FONT_COLOR_RED;
  994. }
  995. lpszText++;
  996. break;
  997. #endif
  998. case '\"':
  999. //
  1000. // Set the font color to Yellow
  1001. //
  1002. if (g_TextLib.bCurrentFontColor == FONT_COLOR_YELLOW)
  1003. {
  1004. g_TextLib.bCurrentFontColor = FONT_COLOR_DEFAULT;
  1005. }
  1006. else
  1007. {
  1008. g_TextLib.bCurrentFontColor = FONT_COLOR_YELLOW;
  1009. }
  1010. lpszText++;
  1011. break;
  1012. case '$':
  1013. //
  1014. // Set the delay time of text-displaying
  1015. //
  1016. g_TextLib.iDelayTime = wcstol(lpszText + 1, NULL, 10) * 10 / 7;
  1017. lpszText += 3;
  1018. break;
  1019. case '~':
  1020. //
  1021. // Delay for a period and quit
  1022. //
  1023. UTIL_Delay(wcstol(lpszText + 1, NULL, 10) * 80 / 7);
  1024. g_TextLib.nCurrentDialogLine = 0;
  1025. g_TextLib.fUserSkip = FALSE;
  1026. return; // don't go further
  1027. case ')':
  1028. //
  1029. // Set the waiting icon
  1030. //
  1031. g_TextLib.bIcon = 1;
  1032. lpszText++;
  1033. break;
  1034. case '(':
  1035. //
  1036. // Set the waiting icon
  1037. //
  1038. g_TextLib.bIcon = 2;
  1039. lpszText++;
  1040. break;
  1041. case '\\':
  1042. lpszText++;
  1043. default:
  1044. text[0] = *lpszText++;
  1045. text[1] = 0;
  1046. PAL_DrawText(text, PAL_XY(x, y), g_TextLib.bCurrentFontColor, TRUE, TRUE);
  1047. x += PAL_CharWidth(text[0]);
  1048. if (!g_TextLib.fUserSkip)
  1049. {
  1050. PAL_ClearKeyState();
  1051. UTIL_Delay(g_TextLib.iDelayTime * 8);
  1052. if (g_InputState.dwKeyPress & (kKeySearch | kKeyMenu))
  1053. {
  1054. //
  1055. // User pressed a key to skip the dialog
  1056. //
  1057. g_TextLib.fUserSkip = TRUE;
  1058. }
  1059. }
  1060. }
  1061. }
  1062. g_TextLib.posIcon = PAL_XY(x, y);
  1063. g_TextLib.nCurrentDialogLine++;
  1064. }
  1065. }
  1066. }
  1067. VOID
  1068. PAL_ClearDialog(
  1069. BOOL fWaitForKey
  1070. )
  1071. /*++
  1072. Purpose:
  1073. Clear the state of the dialog.
  1074. Parameters:
  1075. [IN] fWaitForKey - whether wait for any key or not.
  1076. Return value:
  1077. None.
  1078. --*/
  1079. {
  1080. if (g_TextLib.nCurrentDialogLine > 0 && fWaitForKey)
  1081. {
  1082. PAL_DialogWaitForKey();
  1083. }
  1084. g_TextLib.nCurrentDialogLine = 0;
  1085. if (g_TextLib.bDialogPosition == kDialogCenter)
  1086. {
  1087. g_TextLib.posDialogTitle = PAL_XY(12, 8);
  1088. g_TextLib.posDialogText = PAL_XY(44, 26);
  1089. g_TextLib.bCurrentFontColor = FONT_COLOR_DEFAULT;
  1090. g_TextLib.bDialogPosition = kDialogUpper;
  1091. }
  1092. }
  1093. VOID
  1094. PAL_EndDialog(
  1095. VOID
  1096. )
  1097. /*++
  1098. Purpose:
  1099. Ends a dialog.
  1100. Parameters:
  1101. None.
  1102. Return value:
  1103. None.
  1104. --*/
  1105. {
  1106. PAL_ClearDialog(TRUE);
  1107. //
  1108. // Set some default parameters, as there are some parts of script
  1109. // which doesn't have a "start dialog" instruction before showing the dialog.
  1110. //
  1111. g_TextLib.posDialogTitle = PAL_XY(12, 8);
  1112. g_TextLib.posDialogText = PAL_XY(44, 26);
  1113. g_TextLib.bCurrentFontColor = FONT_COLOR_DEFAULT;
  1114. g_TextLib.bDialogPosition = kDialogUpper;
  1115. g_TextLib.fUserSkip = FALSE;
  1116. g_TextLib.fPlayingRNG = FALSE;
  1117. }
  1118. BOOL
  1119. PAL_IsInDialog(
  1120. VOID
  1121. )
  1122. /*++
  1123. Purpose:
  1124. Check if there are dialog texts on the screen.
  1125. Parameters:
  1126. None.
  1127. Return value:
  1128. TRUE if there are dialog texts on the screen, FALSE if not.
  1129. --*/
  1130. {
  1131. return (g_TextLib.nCurrentDialogLine != 0);
  1132. }
  1133. BOOL
  1134. PAL_DialogIsPlayingRNG(
  1135. VOID
  1136. )
  1137. /*++
  1138. Purpose:
  1139. Check if the script used the RNG playing parameter when displaying texts.
  1140. Parameters:
  1141. None.
  1142. Return value:
  1143. TRUE if the script used the RNG playing parameter, FALSE if not.
  1144. --*/
  1145. {
  1146. return g_TextLib.fPlayingRNG;
  1147. }
  1148. INT
  1149. PAL_MultiByteToWideCharCP(
  1150. CODEPAGE cp,
  1151. LPCSTR mbs,
  1152. int mbslength,
  1153. LPWSTR wcs,
  1154. int wcslength
  1155. )
  1156. /*++
  1157. Purpose:
  1158. Convert multi-byte string into the corresponding unicode string.
  1159. Parameters:
  1160. [IN] cp - Code page for conversion.
  1161. [IN] mbs - Pointer to the multi-byte string.
  1162. [IN] mbslength - Length of the multi-byte string, or -1 for auto-detect.
  1163. [IN] wcs - Pointer to the wide string buffer.
  1164. [IN] wcslength - Length of the wide string buffer.
  1165. Return value:
  1166. The length of converted wide string. If mbslength is set to -1, the returned
  1167. value includes the terminal null-char; otherwise, the null-char is not included.
  1168. If wcslength is set to 0, wcs can be set to NULL and the return value is the
  1169. required length of the wide string buffer.
  1170. --*/
  1171. {
  1172. int i = 0, state = 0, wlen = 0, null = 0;
  1173. if (mbslength == -1)
  1174. {
  1175. mbslength = strlen(mbs);
  1176. null = 1;
  1177. }
  1178. if (!wcs)
  1179. {
  1180. switch (cp)
  1181. {
  1182. case CP_SHIFTJIS:
  1183. for (i = 0; i < mbslength && mbs[i]; i++)
  1184. {
  1185. if (state == 0)
  1186. {
  1187. if ((BYTE)mbs[i] <= 0x80 || (BYTE)mbs[i] >= 0xfd || ((BYTE)mbs[i] >= 0xa0 && (BYTE)mbs[i] <= 0xdf))
  1188. wlen++;
  1189. else
  1190. state = 1;
  1191. }
  1192. else
  1193. {
  1194. wlen++;
  1195. state = 0;
  1196. }
  1197. }
  1198. break;
  1199. case CP_GBK:
  1200. case CP_BIG5:
  1201. for (i = 0; i < mbslength && mbs[i]; i++)
  1202. {
  1203. if (state == 0)
  1204. {
  1205. if ((BYTE)mbs[i] <= 0x80 || (BYTE)mbs[i] == 0xff)
  1206. wlen++;
  1207. else
  1208. state = 1;
  1209. }
  1210. else
  1211. {
  1212. wlen++;
  1213. state = 0;
  1214. }
  1215. }
  1216. break;
  1217. case CP_UTF_8:
  1218. for (i = 0; i < mbslength && mbs[i]; i++)
  1219. {
  1220. if (state == 0)
  1221. {
  1222. if ((BYTE)mbs[i] >= 0x80)
  1223. {
  1224. BYTE s = (BYTE)mbs[i] << 1;
  1225. while (s >= 0x80) { state++; s <<= 1; }
  1226. if (state < 1 || state > 3)
  1227. {
  1228. state = 0;
  1229. wlen++;
  1230. }
  1231. }
  1232. else
  1233. wlen++;
  1234. }
  1235. else
  1236. {
  1237. if ((BYTE)mbs[i] >= 0x80 && (BYTE)mbs[i] < 0xc0)
  1238. {
  1239. if (--state == 0) wlen++;
  1240. }
  1241. else
  1242. {
  1243. state = 0; wlen++;
  1244. }
  1245. }
  1246. }
  1247. break;
  1248. default:
  1249. return -1;
  1250. }
  1251. if (i < mbslength && !mbs[i]) null = 1;
  1252. return wlen + null + (state != 0);
  1253. }
  1254. else
  1255. {
  1256. WCHAR invalid_char;
  1257. switch (cp)
  1258. {
  1259. case CP_SHIFTJIS:
  1260. invalid_char = 0x30fb;
  1261. for (i = 0; i < mbslength && wlen < wcslength && mbs[i]; i++)
  1262. {
  1263. if (state == 0)
  1264. {
  1265. if ((BYTE)mbs[i] <= 0x80)
  1266. wcs[wlen++] = mbs[i];
  1267. else if ((BYTE)mbs[i] >= 0xa0 && (BYTE)mbs[i] <= 0xdf)
  1268. wcs[wlen++] = cptbl_jis_half[(BYTE)mbs[i] - 0xa0];
  1269. else if ((BYTE)mbs[i] == 0xfd)
  1270. wcs[wlen++] = 0xf8f1;
  1271. else if ((BYTE)mbs[i] == 0xfe)
  1272. wcs[wlen++] = 0xf8f2;
  1273. else if ((BYTE)mbs[i] == 0xff)
  1274. wcs[wlen++] = 0xf8f3;
  1275. else
  1276. state = 1;
  1277. }
  1278. else
  1279. {
  1280. if ((BYTE)mbs[i] < 0x40)
  1281. wcs[wlen++] = 0x30fb;
  1282. else if ((BYTE)mbs[i - 1] < 0xa0)
  1283. wcs[wlen++] = cptbl_jis[(BYTE)mbs[i - 1] - 0x81][(BYTE)mbs[i] - 0x40];
  1284. else
  1285. wcs[wlen++] = cptbl_jis[(BYTE)mbs[i - 1] - 0xc1][(BYTE)mbs[i] - 0x40];
  1286. state = 0;
  1287. }
  1288. }
  1289. break;
  1290. case CP_GBK:
  1291. invalid_char = 0x3f;
  1292. for (i = 0; i < mbslength && wlen < wcslength && mbs[i]; i++)
  1293. {
  1294. if (state == 0)
  1295. {
  1296. if ((BYTE)mbs[i] < 0x80)
  1297. wcs[wlen++] = mbs[i];
  1298. else if ((BYTE)mbs[i] == 0x80)
  1299. wcs[wlen++] = 0x20ac;
  1300. else if ((BYTE)mbs[i] == 0xff)
  1301. wcs[wlen++] = 0xf8f5;
  1302. else
  1303. state = 1;
  1304. }
  1305. else
  1306. {
  1307. if ((BYTE)mbs[i] < 0x40)
  1308. wcs[wlen++] = invalid_char;
  1309. else
  1310. wcs[wlen++] = cptbl_gbk[(BYTE)mbs[i - 1] - 0x81][(BYTE)mbs[i] - 0x40];
  1311. state = 0;
  1312. }
  1313. }
  1314. break;
  1315. case CP_BIG5:
  1316. invalid_char = 0x3f;
  1317. for (i = 0; i < mbslength && wlen < wcslength && mbs[i]; i++)
  1318. {
  1319. if (state == 0)
  1320. {
  1321. if ((BYTE)mbs[i] <= 0x80)
  1322. wcs[wlen++] = mbs[i];
  1323. else if ((BYTE)mbs[i] == 0xff)
  1324. wcs[wlen++] = 0xf8f8;
  1325. else
  1326. state = 1;
  1327. }
  1328. else
  1329. {
  1330. if ((BYTE)mbs[i] < 0x40 || ((BYTE)mbs[i] >= 0x7f && (BYTE)mbs[i] <= 0xa0))
  1331. wcs[wlen++] = invalid_char;
  1332. else if ((BYTE)mbs[i] <= 0x7e)
  1333. wcs[wlen++] = cptbl_big5[(BYTE)mbs[i - 1] - 0x81][(BYTE)mbs[i] - 0x40];
  1334. else
  1335. wcs[wlen++] = cptbl_big5[(BYTE)mbs[i - 1] - 0x81][(BYTE)mbs[i] - 0x60];
  1336. state = 0;
  1337. }
  1338. }
  1339. break;
  1340. case CP_UTF_8:
  1341. invalid_char = 0x3f;
  1342. for (i = 0; i < mbslength && wlen < wcslength && mbs[i]; i++)
  1343. {
  1344. if (state == 0)
  1345. {
  1346. if ((BYTE)mbs[i] >= 0x80)
  1347. {
  1348. BYTE s = (BYTE)mbs[i] << 1;
  1349. while (s >= 0x80) { state++; s <<= 1; }
  1350. if (state < 1 || state > 3)
  1351. {
  1352. state = 0;
  1353. wcs[wlen++] = invalid_char;
  1354. }
  1355. else
  1356. {
  1357. wcs[wlen] = s >> (state + 1);
  1358. }
  1359. }
  1360. else
  1361. wcs[wlen++] = mbs[i];
  1362. }
  1363. else
  1364. {
  1365. if ((BYTE)mbs[i] >= 0x80 && (BYTE)mbs[i] < 0xc0)
  1366. {
  1367. wcs[wlen] <<= 6;
  1368. wcs[wlen] |= (BYTE)mbs[i] & 0x3f;
  1369. if (--state == 0) wlen++;
  1370. }
  1371. else
  1372. {
  1373. state = 0;
  1374. wcs[wlen++] = invalid_char;
  1375. }
  1376. }
  1377. }
  1378. break;
  1379. default:
  1380. return -1;
  1381. }
  1382. if (state != 0 && wlen < wcslength)
  1383. {
  1384. wcs[wlen++] = invalid_char;
  1385. }
  1386. if (null || (i < mbslength && !mbs[i]))
  1387. {
  1388. if (wlen < wcslength)
  1389. wcs[wlen++] = 0;
  1390. else
  1391. wcs[wlen - 1] = 0;
  1392. }
  1393. return wlen;
  1394. }
  1395. }
  1396. INT
  1397. PAL_MultiByteToWideChar(
  1398. LPCSTR mbs,
  1399. int mbslength,
  1400. LPWSTR wcs,
  1401. int wcslength
  1402. )
  1403. /*++
  1404. Purpose:
  1405. Convert multi-byte string into the corresponding unicode string.
  1406. Parameters:
  1407. [IN] mbs - Pointer to the multi-byte string.
  1408. [IN] mbslength - Length of the multi-byte string, or -1 for auto-detect.
  1409. [IN] wcs - Pointer to the wide string buffer.
  1410. [IN] wcslength - Length of the wide string buffer.
  1411. Return value:
  1412. The length of converted wide string. If mbslength is set to -1, the returned
  1413. value includes the terminal null-char; otherwise, the null-char is not included.
  1414. If wcslength is set to 0, wcs can be set to NULL and the return value is the
  1415. required length of the wide string buffer.
  1416. --*/
  1417. {
  1418. return PAL_MultiByteToWideCharCP(gpGlobals->iCodePage, mbs, mbslength, wcs, wcslength);
  1419. }
  1420. WCHAR
  1421. PAL_GetInvalidChar(
  1422. CODEPAGE iCodePage
  1423. )
  1424. {
  1425. switch(iCodePage)
  1426. {
  1427. case CP_BIG5: return 0x3f;
  1428. case CP_GBK: return 0x3f;
  1429. case CP_SHIFTJIS: return 0x30fb;
  1430. case CP_UTF_8: return 0x3f;
  1431. default: return 0;
  1432. }
  1433. }