PageRenderTime 60ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 1ms

/native/external/espeak/src/dictionary.cpp

http://eyes-free.googlecode.com/
C++ | 2754 lines | 2122 code | 384 blank | 248 comment | 612 complexity | d1049eaa6bbd8c21c88e0cbfb5da8e43 MD5 | raw file
Possible License(s): GPL-3.0, Apache-2.0
  1. /***************************************************************************
  2. * Copyright (C) 2005 to 2007 by Jonathan Duddington *
  3. * email: jonsd@users.sourceforge.net *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation; either version 3 of the License, or *
  8. * (at your option) any later version. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License *
  16. * along with this program; if not, write see: *
  17. * <http://www.gnu.org/licenses/>. *
  18. ***************************************************************************/
  19. #include "StdAfx.h"
  20. #define LOG_TRANSLATE
  21. #include <stdio.h>
  22. #include <ctype.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include <wctype.h>
  26. ////#include <wchar.h>
  27. #include "speak_lib.h"
  28. #include "speech.h"
  29. #include "phoneme.h"
  30. #include "synthesize.h"
  31. #include "translate.h"
  32. int dictionary_skipwords;
  33. char dictionary_name[40];
  34. extern MNEM_TAB mnem_flags[];
  35. extern PHONEME_TAB_LIST phoneme_tab_list[N_PHONEME_TABS];
  36. // accented characters which indicate (in some languages) the start of a separate syllable
  37. //static const unsigned short diereses_list[7] = {L'ä',L'ë',L'ď',L'ö',L'ü',L'˙',0};
  38. static const unsigned short diereses_list[7] = {0xe4,0xeb,0xef,0xf6,0xfc,0xff,0};
  39. // convert characters to an approximate 7 bit ascii equivalent
  40. // used for checking for vowels
  41. static unsigned char remove_accent[] = {
  42. 'a','a','a','a','a','a','a','c','e','e','e','e','i','i','i','i', // 0c0
  43. 'd','n','o','o','o','o','o', 0, 'o','u','u','u','u','y','t','s', // 0d0
  44. 'a','a','a','a','a','a','a','c','e','e','e','e','i','i','i','i', // 0e0
  45. 'd','n','o','o','o','o','o', 0 ,'o','u','u','u','u','y','t','y', // 0f0
  46. 'a','a','a','a','a','a','c','c','c','c','c','c','c','c','d','d', // 100
  47. 'd','d','e','e','e','e','e','e','e','e','e','e','g','g','g','g', // 110
  48. 'g','g','g','g','h','h','h','h','i','i','i','i','i','i','i','i', // 120
  49. 'i','i','i','i','j','j','k','k','k','l','l','l','l','l','l','l', // 130
  50. 'l','l','l','n','n','n','n','n','n','n','n','n','o','o','o','o', // 140
  51. 'o','o','o','o','r','r','r','r','r','r','s','s','s','s','s','s', // 150
  52. 's','s','t','t','t','t','t','t','u','u','u','u','u','u','u','u', // 160
  53. 'u','u','u','u','w','w','y','y','y','z','z','z','z','z','z','s', // 170
  54. 'b','b','b','b', 0, 0, 'o','c','c','d','d','d','d','d','e','e', // 180
  55. 'e','f','f','g','g','h','i','i','k','k','l','l','m','n','n','o', // 190
  56. 'o','o','o','o','p','p','y', 0, 0, 's','s','t','t','t','t','u', // 1a0
  57. 'u','u','v','y','y','z','z','z','z','z','z','z', 0, 0, 0, 'w', // 1b0
  58. 't','t','t','k','d','d','d','l','l','l','n','n','n','a','a','i', // 1c0
  59. 'i','o','o','u','u','u','u','u','u','u','u','u','u','e','a','a', // 1d0
  60. 'a','a','a','a','g','g','g','g','k','k','o','o','o','o','z','z', // 1e0
  61. 'j','d','d','d','g','g','w','w','n','n','a','a','a','a','o','o', // 1f0
  62. 'a','a','a','a','e','e','e','e','i','i','i','i','o','o','o','o', // 200
  63. 'r','r','r','r','u','u','u','u','s','s','t','t','y','y','h','h', // 210
  64. 'n','d','o','o','z','z','a','a','e','e','o','o','o','o','o','o', // 220
  65. 'o','o','y','y','l','n','t','j','d','q','a','c','c','l','t','s', // 230
  66. 'z', 0 };
  67. void strncpy0(char *to,const char *from, int size)
  68. {//===============================================
  69. // strcpy with limit, ensures a zero terminator
  70. strncpy(to,from,size);
  71. to[size-1] = 0;
  72. }
  73. static int reverse_word_bytes(int word)
  74. {//=============================
  75. // reverse the order of bytes from little-endian to big-endian
  76. #ifdef ARCH_BIG
  77. int ix;
  78. int word2 = 0;
  79. for(ix=0; ix<=24; ix+=8)
  80. {
  81. word2 = word2 << 8;
  82. word2 |= (word >> ix) & 0xff;
  83. }
  84. return(word2);
  85. #else
  86. return(word);
  87. #endif
  88. }
  89. int LookupMnem(MNEM_TAB *table, char *string)
  90. {//==========================================
  91. while(table->mnem != NULL)
  92. {
  93. if(strcmp(string,table->mnem)==0)
  94. return(table->value);
  95. table++;
  96. }
  97. return(table->value);
  98. }
  99. const char *LookupMnem(MNEM_TAB *table, int value)
  100. {//===============================================
  101. while(table->mnem != NULL)
  102. {
  103. if(table->value == value)
  104. return(table->mnem);
  105. table++;
  106. }
  107. return("");
  108. }
  109. //=============================================================================================
  110. // Read pronunciation rules and pronunciation lookup dictionary
  111. //
  112. //=============================================================================================
  113. int Translator::LoadDictionary(const char *name, int no_error)
  114. {//===========================================================
  115. int hash;
  116. char *p;
  117. int *pw;
  118. int length;
  119. FILE *f;
  120. unsigned int size;
  121. char fname[sizeof(path_home)+20];
  122. strcpy(dictionary_name,name); // currently loaded dictionary name
  123. if(no_error) // don't load dictionary, just set the dictionary_name
  124. return(1);
  125. // Load a pronunciation data file into memory
  126. // bytes 0-3: offset to rules data
  127. // bytes 4-7: number of hash table entries
  128. sprintf(fname,"%s%c%s_dict",path_home,PATHSEP,name);
  129. size = GetFileLength(fname);
  130. f = fopen(fname,"rb");
  131. if((f == NULL) || (size <= 0))
  132. {
  133. if(no_error == 0)
  134. {
  135. fprintf(stderr,"Can't read dictionary file: '%s'\n",fname);
  136. }
  137. return(1);
  138. }
  139. if(data_dictlist != NULL)
  140. Free(data_dictlist);
  141. data_dictlist = Alloc(size);
  142. fread(data_dictlist,size,1,f);
  143. fclose(f);
  144. pw = (int *)data_dictlist;
  145. length = reverse_word_bytes(pw[1]);
  146. if(size <= (N_HASH_DICT + sizeof(int)*2))
  147. {
  148. fprintf(stderr,"Empty _dict file: '%s\n",fname);
  149. return(2);
  150. }
  151. if((reverse_word_bytes(pw[0]) != N_HASH_DICT) ||
  152. (length <= 0) || (length > 0x8000000))
  153. {
  154. fprintf(stderr,"Bad data: '%s' (%x length=%x)\n",fname,reverse_word_bytes(pw[0]),length);
  155. return(2);
  156. }
  157. data_dictrules = &data_dictlist[length];
  158. // set up indices into data_dictrules
  159. InitGroups();
  160. if(groups1[0] == NULL)
  161. {
  162. fprintf(stderr,"Error in %s_rules, no default rule group\n",name);
  163. }
  164. // set up hash table for data_dictlist
  165. p = &data_dictlist[8];
  166. for(hash=0; hash<N_HASH_DICT; hash++)
  167. {
  168. dict_hashtab[hash] = p;
  169. while((length = *p) != 0)
  170. {
  171. p += length;
  172. }
  173. p++; // skip over the zero which terminates the list for this hash value
  174. }
  175. return(0);
  176. } // end of LoadDictionary
  177. void Translator::InitGroups(void)
  178. {//==============================
  179. /* Called after dictionary 1 is loaded, to set up table of entry points for translation rule chains
  180. for single-letters and two-letter combinations
  181. */
  182. int ix;
  183. char *p;
  184. char *p_name;
  185. unsigned int *pw;
  186. unsigned char c, c2;
  187. int len;
  188. n_groups2 = 0;
  189. for(ix=0; ix<256; ix++)
  190. {
  191. groups1[ix]=NULL;
  192. groups2_count[ix]=0;
  193. groups2_start[ix]=255; // indicates "not set"
  194. }
  195. memset(letterGroups,0,sizeof(letterGroups));
  196. p = data_dictrules;
  197. while(*p != 0)
  198. {
  199. if(*p != RULE_GROUP_START)
  200. {
  201. fprintf(stderr,"Bad rules data in '%s_dict' at 0x%x\n",dictionary_name,(unsigned int)(p-data_dictrules));
  202. break;
  203. }
  204. p++;
  205. if(p[0] == RULE_REPLACEMENTS)
  206. {
  207. pw = (unsigned int *)(((long)p+4) & ~3); // advance to next word boundary
  208. langopts.replace_chars = pw;
  209. while(pw[0] != 0)
  210. {
  211. pw += 2; // find the end of the replacement list, each entry is 2 words.
  212. }
  213. p = (char *)(pw+1);
  214. #ifdef ARCH_BIG
  215. pw = (unsigned int *)langopts.replace_chars;
  216. while(*pw != 0)
  217. {
  218. *pw = reverse_word_bytes(*pw);
  219. pw++;
  220. *pw = reverse_word_bytes(*pw);
  221. pw++;
  222. }
  223. #endif
  224. continue;
  225. }
  226. if(p[0] == RULE_LETTERGP2)
  227. {
  228. ix = p[1] - 'A';
  229. p += 2;
  230. if((ix >= 0) && (ix < N_LETTER_GROUPS))
  231. {
  232. letterGroups[ix] = p;
  233. }
  234. }
  235. else
  236. {
  237. len = strlen(p);
  238. p_name = p;
  239. c = p_name[0];
  240. p += (len+1);
  241. if(len == 1)
  242. {
  243. groups1[c] = p;
  244. }
  245. else
  246. if(len == 0)
  247. {
  248. groups1[0] = p;
  249. }
  250. else
  251. {
  252. if(groups2_start[c] == 255)
  253. groups2_start[c] = n_groups2;
  254. groups2_count[c]++;
  255. groups2[n_groups2] = p;
  256. c2 = p_name[1];
  257. groups2_name[n_groups2++] = (c + (c2 << 8));
  258. }
  259. }
  260. // skip over all the rules in this group
  261. while(*p != RULE_GROUP_END)
  262. {
  263. p += (strlen(p) + 1);
  264. }
  265. p++;
  266. }
  267. } // end of InitGroups
  268. int HashDictionary(const char *string)
  269. //====================================
  270. /* Generate a hash code from the specified string
  271. This is used to access the dictionary_2 word-lookup dictionary
  272. */
  273. {
  274. int c;
  275. int chars=0;
  276. int hash=0;
  277. while((c = (*string++ & 0xff)) != 0)
  278. {
  279. hash = hash * 8 + c;
  280. hash = (hash & 0x3ff) ^ (hash >> 8); /* exclusive or */
  281. chars++;
  282. }
  283. return((hash+chars) & 0x3ff); // a 10 bit hash code
  284. } // end of HashDictionary
  285. //=============================================================================================
  286. // Translate between internal representation of phonemes and a mnemonic form for display
  287. //
  288. //=============================================================================================
  289. char *EncodePhonemes(char *p, char *outptr, unsigned char *bad_phoneme)
  290. /*********************************************************************/
  291. /* Translate a phoneme string from ascii mnemonics to internal phoneme numbers,
  292. from 'p' up to next blank .
  293. Returns advanced 'p'
  294. outptr contains encoded phonemes, unrecognised phonemes are encoded as 255
  295. bad_phoneme must point to char array of length 2 of more
  296. */
  297. {
  298. int ix;
  299. unsigned char c;
  300. int count; /* num. of matching characters */
  301. int max; /* highest num. of matching found so far */
  302. int max_ph; /* corresponding phoneme with highest matching */
  303. int consumed;
  304. unsigned int mnemonic_word;
  305. bad_phoneme[0] = 0;
  306. // skip initial blanks
  307. while(isspace(*p))
  308. {
  309. p++;
  310. }
  311. while(((c = *p) != 0) && !isspace(c))
  312. {
  313. consumed = 0;
  314. switch(c)
  315. {
  316. case '|':
  317. // used to separate phoneme mnemonics if needed, to prevent characters being treated
  318. // as a multi-letter mnemonic
  319. if((c = p[1]) == '|')
  320. {
  321. // treat double || as a word-break symbol, drop through
  322. // to the default case with c = '|'
  323. }
  324. else
  325. {
  326. p++;
  327. break;
  328. }
  329. default:
  330. // lookup the phoneme mnemonic, find the phoneme with the highest number of
  331. // matching characters
  332. max= -1;
  333. max_ph= 0;
  334. for(ix=1; ix<n_phoneme_tab; ix++)
  335. {
  336. if(phoneme_tab[ix] == NULL)
  337. continue;
  338. if(phoneme_tab[ix]->type == phINVALID)
  339. continue; // this phoneme is not defined for this language
  340. count = 0;
  341. mnemonic_word = phoneme_tab[ix]->mnemonic;
  342. while(((c = p[count]) > ' ') && (count < 4) &&
  343. (c == ((mnemonic_word >> (count*8)) & 0xff)))
  344. count++;
  345. if((count > max) &&
  346. ((count == 4) || (((mnemonic_word >> (count*8)) & 0xff)==0)))
  347. {
  348. max = count;
  349. max_ph = phoneme_tab[ix]->code;
  350. }
  351. }
  352. if(max_ph == 0)
  353. {
  354. max_ph = 255; /* not recognised */
  355. bad_phoneme[0] = *p;
  356. bad_phoneme[1] = 0;
  357. }
  358. if(max <= 0)
  359. max = 1;
  360. p += (consumed + max);
  361. *outptr++ = (char)(max_ph);
  362. if(max_ph == phonSWITCH)
  363. {
  364. // Switch Language: this phoneme is followed by a text string
  365. char *p_lang = outptr;
  366. while(!isspace(c = *p) && (c != 0))
  367. {
  368. p++;
  369. *outptr++ = tolower(c);
  370. }
  371. *outptr = 0;
  372. if(c == 0)
  373. {
  374. if(strcmp(p_lang,"en")==0)
  375. {
  376. *p_lang = 0; // don't need "en", it's assumed by default
  377. return(p);
  378. }
  379. }
  380. else
  381. {
  382. *outptr++ = '|'; // more phonemes follow, terminate language string with separator
  383. }
  384. }
  385. break;
  386. }
  387. }
  388. /* terminate the encoded string */
  389. *outptr = 0;
  390. return(p);
  391. } // end of EncodePhonemes
  392. void DecodePhonemes(const char *inptr, char *outptr)
  393. //==================================================
  394. // Translate from internal phoneme codes into phoneme mnemonics
  395. {
  396. unsigned char phcode;
  397. unsigned char c;
  398. unsigned int mnem;
  399. PHONEME_TAB *ph;
  400. static const char *stress_chars = "==,,'* ";
  401. while((phcode = *inptr++) > 0)
  402. {
  403. if(phcode == 255)
  404. continue; /* indicates unrecognised phoneme */
  405. if((ph = phoneme_tab[phcode]) == NULL)
  406. continue;
  407. if((ph->type == phSTRESS) && (ph->std_length <= 4) && (ph->spect == 0))
  408. {
  409. if(ph->std_length > 1)
  410. *outptr++ = stress_chars[ph->std_length];
  411. }
  412. else
  413. {
  414. mnem = ph->mnemonic;
  415. while((c = (mnem & 0xff)) != 0)
  416. {
  417. *outptr++ = c;
  418. mnem = mnem >> 8;
  419. }
  420. if(phcode == phonSWITCH)
  421. {
  422. while(isalpha(*inptr))
  423. {
  424. *outptr++ = *inptr++;
  425. }
  426. }
  427. }
  428. }
  429. *outptr = 0; /* string terminator */
  430. } // end of DecodePhonemes
  431. void Translator::WriteMnemonic(int *ix, int mnem)
  432. {//==============================================
  433. unsigned char c;
  434. while((c = mnem & 0xff) != 0)
  435. {
  436. if((c == '/') && (option_phoneme_variants==0))
  437. break; // discard phoneme variant indicator
  438. phon_out[(*ix)++]= c;
  439. // phon_out[phon_out_ix++]= ipa1[c];
  440. mnem = mnem >> 8;
  441. }
  442. }
  443. void Translator::GetTranslatedPhonemeString(char *phon_out, int n_phon_out)
  444. {//========================================================================
  445. /* Can be called after a clause has been translated into phonemes, in order
  446. to display the clause in phoneme mnemonic form.
  447. */
  448. int ix;
  449. int phon_out_ix=0;
  450. int stress;
  451. char *p;
  452. PHONEME_LIST *plist;
  453. static const char *stress_chars = "==,,''";
  454. if(phon_out != NULL)
  455. {
  456. for(ix=1; ix<(n_phoneme_list-2) && (phon_out_ix < (n_phon_out - 6)); ix++)
  457. {
  458. plist = &phoneme_list[ix];
  459. if(plist->newword)
  460. phon_out[phon_out_ix++] = ' ';
  461. if(plist->synthflags & SFLAG_SYLLABLE)
  462. {
  463. if((stress = plist->tone) > 1)
  464. {
  465. if(stress > 5) stress = 5;
  466. phon_out[phon_out_ix++] = stress_chars[stress];
  467. }
  468. }
  469. WriteMnemonic(&phon_out_ix,plist->ph->mnemonic);
  470. if(plist->synthflags & SFLAG_LENGTHEN)
  471. {
  472. WriteMnemonic(&phon_out_ix,phoneme_tab[phonLENGTHEN]->mnemonic);
  473. }
  474. if((plist->synthflags & SFLAG_SYLLABLE) && (plist->type != phVOWEL))
  475. {
  476. // syllablic consonant
  477. WriteMnemonic(&phon_out_ix,phoneme_tab[phonSYLLABIC]->mnemonic);
  478. }
  479. if(plist->ph->code == phonSWITCH)
  480. {
  481. // the tone_ph field contains a phoneme table number
  482. p = phoneme_tab_list[plist->tone_ph].name;
  483. while(*p != 0)
  484. {
  485. phon_out[phon_out_ix++] = *p++;
  486. }
  487. phon_out[phon_out_ix++] = ' ';
  488. }
  489. else
  490. if(plist->tone_ph > 0)
  491. {
  492. WriteMnemonic(&phon_out_ix,phoneme_tab[plist->tone_ph]->mnemonic);
  493. }
  494. }
  495. if(phon_out_ix >= n_phon_out)
  496. phon_out_ix = n_phon_out - 1;
  497. phon_out[phon_out_ix] = 0;
  498. }
  499. } // end of Translator::GetTranslatedPhonemeString
  500. //=============================================================================================
  501. // Is a word Unpronouncable - and so should be spoken as individual letters
  502. //
  503. //=============================================================================================
  504. #ifdef deleted
  505. // this is the initials_bitmap for english
  506. static unsigned char initials_bitmap[86] = {
  507. 0x00, 0x00, 0x00, 0x00, 0x22, 0x08, 0x00, 0x88, // 0
  508. 0x20, 0x24, 0x20, 0x80, 0x10, 0x00, 0x00, 0x00,
  509. 0x00, 0x28, 0x08, 0x00, 0x88, 0x22, 0x04, 0x00, // 16
  510. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  511. 0x00, 0x88, 0x22, 0x04, 0x00, 0x02, 0x00, 0x00, // 32
  512. 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  513. 0x00, 0x28, 0x8a, 0x03, 0x00, 0x00, 0x40, 0x00, // 48
  514. 0x02, 0x00, 0x41, 0xca, 0x9b, 0x06, 0x20, 0x80,
  515. 0x91, 0x00, 0x00, 0x00, 0x00, 0x20, 0x08, 0x00, // 64
  516. 0x08, 0x20, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
  517. 0x00, 0x00, 0x22, 0x00, 0x01, 0x00, };
  518. #endif
  519. int Translator::Unpronouncable(char *word)
  520. {//=======================================
  521. /* Determines whether a word in 'unpronouncable', i.e. whether it should
  522. be spoken as individual letters.
  523. This function may be language specific. This is a generic version.
  524. */
  525. int c;
  526. int c1=0;
  527. int vowel_posn=9;
  528. int index;
  529. int count;
  530. int apostrophe=0;
  531. if(langopts.param[LOPT_UNPRONOUNCABLE] == 1)
  532. return(0);
  533. if((*word == ' ') || (*word == 0))
  534. return(0);
  535. index = 0;
  536. count = 0;
  537. for(;;)
  538. {
  539. index += utf8_in(&c,&word[index],0);
  540. if((c==0) || (c==' '))
  541. break;
  542. if(count==0)
  543. c1 = c;
  544. count++;
  545. if(IsVowel(c))
  546. {
  547. vowel_posn = count; // position of the first vowel
  548. break;
  549. }
  550. if(c == '\'')
  551. apostrophe = 1;
  552. else
  553. if(!iswalpha(c))
  554. return(0); // letter (not vowel) outside a-z range or apostrophe, abort test
  555. }
  556. if((vowel_posn < 9) && (langopts.param[LOPT_UNPRONOUNCABLE] == 2))
  557. return(0); // option means allow any word with a vowel
  558. if(c1 == langopts.param[LOPT_UNPRONOUNCABLE])
  559. vowel_posn--; // disregard this as the initial letter when counting
  560. if(vowel_posn > (langopts.max_initial_consonants+1))
  561. return(1); // no vowel, or no vowel in first four letters
  562. return(0);
  563. } /* end of Unpronounceable */
  564. int Translator::IsLetterGroup(char *word, int group, int pre)
  565. {//==========================================================
  566. // match the word against a list of utf-8 strings
  567. char *p;
  568. char *w;
  569. p = letterGroups[group];
  570. while(*p != RULE_GROUP_END)
  571. {
  572. w = word;
  573. while(*p == *w)
  574. {
  575. w++;
  576. p++;
  577. }
  578. if(*p == 0)
  579. return(w-word); // matched a complete string
  580. while(*p++ != 0); // skip to end of string
  581. }
  582. return(0);
  583. }
  584. int Translator::IsLetter(int letter, int group)
  585. {//============================================
  586. int letter2;
  587. if(letter_groups[group] != NULL)
  588. {
  589. if(wcschr(letter_groups[group],letter))
  590. return(1);
  591. return(0);
  592. }
  593. if(group > 7)
  594. return(0);
  595. if(letter_bits_offset > 0)
  596. {
  597. if(((letter2 = (letter - letter_bits_offset)) > 0) && (letter2 < 0x80))
  598. letter = letter2;
  599. else
  600. return(0);
  601. }
  602. else
  603. {
  604. if((letter >= 0xc0) && (letter <= 0x241))
  605. return(letter_bits[remove_accent[letter-0xc0]] & (1L << group));
  606. }
  607. if((letter >= 0) && (letter < 0x80))
  608. return(letter_bits[letter] & (1L << group));
  609. return(0);
  610. }
  611. int Translator::IsVowel(int letter)
  612. {//================================
  613. return(IsLetter(letter,0));
  614. }
  615. void SetLetterVowel(Translator *tr, int c)
  616. {//=======================================
  617. tr->letter_bits[c] = (tr->letter_bits[c] & 0x40) | 0x81; // keep value for group 6 (front vowels e,i,y)
  618. }
  619. void ResetLetterBits(Translator *tr, int groups)
  620. {//=============================================
  621. // Clear all the specified groups
  622. unsigned int ix;
  623. unsigned int mask;
  624. mask = ~groups;
  625. for(ix=0; ix<sizeof(tr->letter_bits); ix++)
  626. {
  627. tr->letter_bits[ix] &= mask;
  628. }
  629. }
  630. void SetLetterBits(Translator *tr, int group, const char *string)
  631. {//==============================================================
  632. int bits;
  633. unsigned char c;
  634. bits = (1L << group);
  635. while((c = *string++) != 0)
  636. tr->letter_bits[c] |= bits;
  637. }
  638. void SetLetterBitsRange(Translator *tr, int group, int first, int last)
  639. {//====================================================================
  640. int bits;
  641. int ix;
  642. bits = (1L << group);
  643. for(ix=first; ix<=last; ix++)
  644. {
  645. tr->letter_bits[ix] |= bits;
  646. }
  647. }
  648. //=============================================================================================
  649. // Determine the stress pattern of a word
  650. //
  651. //=============================================================================================
  652. static int GetVowelStress(Translator *tr, unsigned char *phonemes, unsigned char *vowel_stress, int &vowel_count, int &stressed_syllable, int control)
  653. {//====================================================================================================================================================
  654. // control = 1, set stress to 1 for forced unstressed vowels
  655. unsigned char phcode;
  656. PHONEME_TAB *ph;
  657. unsigned char *ph_out = phonemes;
  658. int count = 1;
  659. int max_stress = 0;
  660. int ix;
  661. int j;
  662. int stress = 0;
  663. int primary_posn = 0;
  664. vowel_stress[0] = 0;
  665. while(((phcode = *phonemes++) != 0) && (count < (N_WORD_PHONEMES/2)-1))
  666. {
  667. if((ph = phoneme_tab[phcode]) == NULL)
  668. continue;
  669. if((ph->type == phSTRESS) && (ph->spect == 0))
  670. {
  671. /* stress marker, use this for the following vowel */
  672. if(phcode == phonSTRESS_PREV)
  673. {
  674. /* primary stress on preceeding vowel */
  675. j = count - 1;
  676. while((j > 0) && (stressed_syllable == 0) && (vowel_stress[j] < 4))
  677. {
  678. if(vowel_stress[j] != 1)
  679. {
  680. // don't promote a phoneme which must be unstressed
  681. vowel_stress[j] = 4;
  682. if(max_stress < 4)
  683. {
  684. max_stress = 4;
  685. primary_posn = j;
  686. }
  687. /* reduce any preceding primary stress markers */
  688. for(ix=1; ix<j; ix++)
  689. {
  690. if(vowel_stress[ix] == 4)
  691. vowel_stress[ix] = 3;
  692. }
  693. break;
  694. }
  695. j--;
  696. }
  697. }
  698. else
  699. {
  700. if((ph->std_length < 4) || (stressed_syllable == 0))
  701. {
  702. stress = ph->std_length;
  703. if(stress > max_stress)
  704. max_stress = stress;
  705. }
  706. }
  707. continue;
  708. }
  709. if((ph->type == phVOWEL) && !(ph->phflags & phNONSYLLABIC))
  710. {
  711. vowel_stress[count] = (char)stress;
  712. if((stress >= 4) && (stress >= max_stress))
  713. {
  714. primary_posn = count;
  715. max_stress = stress;
  716. }
  717. if((stress == 0) && (control & 1) && (ph->phflags & phUNSTRESSED))
  718. vowel_stress[count] = 1; /* weak vowel, must be unstressed */
  719. count++;
  720. stress = 0;
  721. }
  722. else
  723. if(phcode == phonSYLLABIC)
  724. {
  725. // previous consonant phoneme is syllablic
  726. vowel_stress[count] = (char)stress;
  727. if((stress == 0) && (control & 1))
  728. vowel_stress[count++] = 1; // syllabic consonant, usually unstressed
  729. }
  730. *ph_out++ = phcode;
  731. }
  732. vowel_stress[count] = 0;
  733. *ph_out = 0;
  734. /* has the position of the primary stress been specified by $1, $2, etc? */
  735. if(stressed_syllable > 0)
  736. {
  737. if(stressed_syllable >= count)
  738. stressed_syllable = count-1; // the final syllable
  739. vowel_stress[stressed_syllable] = 4;
  740. max_stress = 4;
  741. primary_posn = stressed_syllable;
  742. }
  743. if(max_stress == 5)
  744. {
  745. // priority stress, replaces any other primary stress marker
  746. for(ix=1; ix<count; ix++)
  747. {
  748. if(vowel_stress[ix] == 4)
  749. {
  750. if(tr->langopts.stress_flags & 0x20000)
  751. vowel_stress[ix] = 0;
  752. else
  753. vowel_stress[ix] = 3;
  754. }
  755. if(vowel_stress[ix] == 5)
  756. {
  757. vowel_stress[ix] = 4;
  758. primary_posn = ix;
  759. }
  760. }
  761. max_stress = 4;
  762. }
  763. stressed_syllable = primary_posn;
  764. vowel_count = count;
  765. return(max_stress);
  766. } // end of GetVowelStress
  767. static char stress_phonemes[] = {phonSTRESS_U, phonSTRESS_D, phonSTRESS_2, phonSTRESS_3,
  768. phonSTRESS_P, phonSTRESS_P2, phonSTRESS_TONIC};
  769. void ChangeWordStress(Translator *tr, char *word, int new_stress)
  770. {//==============================================================
  771. int ix;
  772. unsigned char *p;
  773. int max_stress;
  774. int vowel_count; // num of vowels + 1
  775. int stressed_syllable=0; // position of stressed syllable
  776. unsigned char phonetic[N_WORD_PHONEMES];
  777. unsigned char vowel_stress[N_WORD_PHONEMES/2];
  778. strcpy((char *)phonetic,word);
  779. max_stress = GetVowelStress(tr, phonetic, vowel_stress, vowel_count, stressed_syllable, 0);
  780. if(new_stress >= 4)
  781. {
  782. // promote to primary stress
  783. for(ix=1; ix<vowel_count; ix++)
  784. {
  785. if(vowel_stress[ix] >= max_stress)
  786. {
  787. vowel_stress[ix] = new_stress;
  788. break;
  789. }
  790. }
  791. }
  792. else
  793. {
  794. // remove primary stress
  795. for(ix=1; ix<vowel_count; ix++)
  796. {
  797. if(vowel_stress[ix] > new_stress) // >= allows for diminished stress (=1)
  798. vowel_stress[ix] = new_stress;
  799. }
  800. }
  801. // write out phonemes
  802. ix = 1;
  803. p = phonetic;
  804. while(*p != 0)
  805. {
  806. if((phoneme_tab[*p]->type == phVOWEL) && !(phoneme_tab[*p]->phflags & phNONSYLLABIC))
  807. {
  808. if(vowel_stress[ix] != 0)
  809. *word++ = stress_phonemes[vowel_stress[ix]];
  810. ix++;
  811. }
  812. *word++ = *p++;
  813. }
  814. *word = 0;
  815. } // end of ChangeWordStress
  816. void Translator::SetWordStress(char *output, unsigned int dictionary_flags, int tonic, int prev_stress)
  817. {//===================================================================================================
  818. /* Guess stress pattern of word. This is language specific
  819. 'dictionary_flags' has bits 0-3 position of stressed vowel (if > 0)
  820. or unstressed (if == 7) or syllables 1 and 2 (if == 6)
  821. bits 8... dictionary flags
  822. If 'tonic' is set (>= 0), replace highest stress by this value.
  823. Parameter used for input and output
  824. */
  825. unsigned char phcode;
  826. unsigned char *p;
  827. PHONEME_TAB *ph;
  828. int stress;
  829. int max_stress;
  830. int vowel_count; // num of vowels + 1
  831. int ix;
  832. int v;
  833. int v_stress;
  834. int stressed_syllable; // position of stressed syllable
  835. int max_stress_posn;
  836. int unstressed_word = 0;
  837. char *max_output;
  838. int final_ph;
  839. int mnem;
  840. int post_tonic;
  841. int opt_length;
  842. int done;
  843. unsigned char vowel_stress[N_WORD_PHONEMES/2];
  844. char syllable_weight[N_WORD_PHONEMES/2];
  845. unsigned char phonetic[N_WORD_PHONEMES];
  846. static char consonant_types[16] = {0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0};
  847. /* stress numbers STRESS_BASE +
  848. 0 diminished, unstressed within a word
  849. 1 unstressed, weak
  850. 2
  851. 3 secondary stress
  852. 4 main stress */
  853. /* copy input string into internal buffer */
  854. for(ix=0; ix<N_WORD_PHONEMES; ix++)
  855. {
  856. phonetic[ix] = output[ix];
  857. // check for unknown phoneme codes
  858. if(phonetic[ix] >= n_phoneme_tab)
  859. phonetic[ix] = phonSCHWA;
  860. if(phonetic[ix] == 0)
  861. break;
  862. }
  863. if(ix == 0) return;
  864. final_ph = phonetic[ix-1];
  865. max_output = output + (N_WORD_PHONEMES-3); /* check for overrun */
  866. // any stress position marked in the xx_list dictionary ?
  867. stressed_syllable = dictionary_flags & 0x7;
  868. if(dictionary_flags & 0x8)
  869. {
  870. // this indicates a word without a primary stress
  871. stressed_syllable = dictionary_flags & 0x3;
  872. unstressed_word = 1;
  873. }
  874. max_stress = GetVowelStress(this, phonetic, vowel_stress, vowel_count, stressed_syllable, 1);
  875. // heavy or light syllables
  876. ix = 1;
  877. for(p = phonetic; *p != 0; p++)
  878. {
  879. if((phoneme_tab[p[0]]->type == phVOWEL) && !(phoneme_tab[p[0]]->phflags & phNONSYLLABIC))
  880. {
  881. int weight = 0;
  882. int lengthened = 0;
  883. if(phoneme_tab[p[1]]->code == phonLENGTHEN)
  884. lengthened = 1;
  885. if(lengthened || (phoneme_tab[p[0]]->phflags & phLONG))
  886. {
  887. // long vowel, increase syllable weight
  888. weight++;
  889. }
  890. if(lengthened) p++; // advance over phonLENGTHEN
  891. if(consonant_types[phoneme_tab[p[1]]->type] && ((phoneme_tab[p[2]]->type != phVOWEL) || (phoneme_tab[p[1]]->phflags & phLONG)))
  892. {
  893. // followed by two consonants, a long consonant, or consonant and end-of-word
  894. weight++;
  895. }
  896. syllable_weight[ix] = weight;
  897. ix++;
  898. }
  899. }
  900. switch(langopts.stress_rule)
  901. {
  902. case 8:
  903. // stress on first syllable, unless it is a light syllable
  904. if(syllable_weight[1] > 0)
  905. break;
  906. // else drop through to case 1
  907. case 1:
  908. // stress on second syllable
  909. if((stressed_syllable == 0) && (vowel_count > 2))
  910. {
  911. stressed_syllable = 2;
  912. if(max_stress == 0)
  913. {
  914. vowel_stress[stressed_syllable] = 4;
  915. }
  916. max_stress = 4;
  917. }
  918. break;
  919. case 2:
  920. // a language with stress on penultimate vowel
  921. if(stressed_syllable == 0)
  922. {
  923. /* no explicit stress - stress the penultimate vowel */
  924. max_stress = 4;
  925. if(vowel_count > 2)
  926. {
  927. stressed_syllable = vowel_count - 2;
  928. if(langopts.stress_flags & 0x300)
  929. {
  930. // LANG=Spanish, stress on last vowel if the word ends in a consonant other than 'n' or 's'
  931. if(phoneme_tab[final_ph]->type != phVOWEL)
  932. {
  933. if(langopts.stress_flags & 0x100)
  934. {
  935. stressed_syllable = vowel_count - 1;
  936. }
  937. else
  938. {
  939. mnem = phoneme_tab[final_ph]->mnemonic;
  940. if((mnem != 'n') && (mnem != 's'))
  941. {
  942. stressed_syllable = vowel_count - 1;
  943. }
  944. }
  945. }
  946. }
  947. if(vowel_stress[stressed_syllable] == 1)
  948. {
  949. // but this vowel is explicitly marked as unstressed
  950. if(stressed_syllable > 1)
  951. stressed_syllable--;
  952. else
  953. stressed_syllable++;
  954. }
  955. }
  956. else
  957. {
  958. stressed_syllable = 1;
  959. if(langopts.stress_flags & 0x1)
  960. max_stress = 3; // don't give full stress to monosyllables
  961. }
  962. // only set the stress if it's not already marked explicitly
  963. if(vowel_stress[stressed_syllable] == 0)
  964. {
  965. // don't stress if next and prev syllables are stressed
  966. if((vowel_stress[stressed_syllable-1] < 4) || (vowel_stress[stressed_syllable+1] < 4))
  967. vowel_stress[stressed_syllable] = max_stress;
  968. }
  969. }
  970. break;
  971. case 3:
  972. // stress on last vowel
  973. if(stressed_syllable == 0)
  974. {
  975. /* no explicit stress - stress the final vowel */
  976. stressed_syllable = vowel_count - 1;
  977. if(max_stress == 0)
  978. {
  979. while(stressed_syllable > 0)
  980. {
  981. if(vowel_stress[stressed_syllable] == 0)
  982. {
  983. vowel_stress[stressed_syllable] = 4;
  984. break;
  985. }
  986. else
  987. stressed_syllable--;
  988. }
  989. }
  990. max_stress = 4;
  991. }
  992. break;
  993. case 4: // stress on antipenultimate vowel
  994. if(stressed_syllable == 0)
  995. {
  996. stressed_syllable = vowel_count - 3;
  997. if(stressed_syllable < 1)
  998. stressed_syllable = 1;
  999. if(max_stress == 0)
  1000. {
  1001. vowel_stress[stressed_syllable] = 4;
  1002. }
  1003. max_stress = 4;
  1004. }
  1005. break;
  1006. case 5:
  1007. // LANG=Russian
  1008. if(stressed_syllable == 0)
  1009. {
  1010. /* no explicit stress - guess the stress from the number of syllables */
  1011. static char guess_ru[16] = {0,0,1,1,2,3,3,4,5,6,7,7,8,9,10,11};
  1012. static char guess_ru_v[16] = {0,0,1,1,2,2,3,3,4,5,6,7,7,8,9,10}; // for final phoneme is a vowel
  1013. static char guess_ru_t[16] = {0,0,1,2,3,3,3,4,5,6,7,7,7,8,9,10}; // for final phoneme is an unvoiced stop
  1014. stressed_syllable = vowel_count - 3;
  1015. if(vowel_count < 16)
  1016. {
  1017. if(phoneme_tab[final_ph]->type == phVOWEL)
  1018. stressed_syllable = guess_ru_v[vowel_count];
  1019. else
  1020. if(phoneme_tab[final_ph]->type == phSTOP)
  1021. stressed_syllable = guess_ru_t[vowel_count];
  1022. else
  1023. stressed_syllable = guess_ru[vowel_count];
  1024. }
  1025. vowel_stress[stressed_syllable] = 4;
  1026. max_stress = 4;
  1027. }
  1028. break;
  1029. case 6: // LANG=hi stress on the last heaviest syllable
  1030. if(stressed_syllable == 0)
  1031. {
  1032. int wt;
  1033. int max_weight = -1;
  1034. int prev_stressed;
  1035. // find the heaviest syllable, excluding the final syllable
  1036. for(ix = 1; ix < (vowel_count-1); ix++)
  1037. {
  1038. if(vowel_stress[ix] == 0)
  1039. {
  1040. if((wt = syllable_weight[ix]) >= max_weight)
  1041. {
  1042. max_weight = wt;
  1043. prev_stressed = stressed_syllable;
  1044. stressed_syllable = ix;
  1045. }
  1046. }
  1047. }
  1048. if((syllable_weight[vowel_count-1] == 2) && (max_weight< 2))
  1049. {
  1050. // the only double=heavy syllable is the final syllable, so stress this
  1051. stressed_syllable = vowel_count-1;
  1052. }
  1053. else
  1054. if(max_weight <= 0)
  1055. {
  1056. // all syllables, exclusing the last, are light. Stress the first syllable
  1057. stressed_syllable = 1;
  1058. }
  1059. vowel_stress[stressed_syllable] = 4;
  1060. max_stress = 4;
  1061. }
  1062. break;
  1063. case 7: // LANG=tr, the last syllable for any vowel markes explicitly as unstressed
  1064. if(stressed_syllable == 0)
  1065. {
  1066. stressed_syllable = vowel_count - 1;
  1067. for(ix=1; ix < vowel_count; ix++)
  1068. {
  1069. if(vowel_stress[ix] == 1)
  1070. {
  1071. stressed_syllable = ix-1;
  1072. break;
  1073. }
  1074. }
  1075. vowel_stress[stressed_syllable] = 4;
  1076. max_stress = 4;
  1077. }
  1078. break;
  1079. case 9: // mark all as stressed
  1080. for(ix=1; ix<vowel_count; ix++)
  1081. {
  1082. if(vowel_stress[ix] == 0)
  1083. vowel_stress[ix] = 4;
  1084. }
  1085. break;
  1086. }
  1087. /* now guess the complete stress pattern */
  1088. if(max_stress < 4)
  1089. stress = 4; /* no primary stress marked, use for 1st syllable */
  1090. else
  1091. stress = 3;
  1092. if((langopts.stress_flags & 0x1000) && (vowel_count == 2))
  1093. {
  1094. // Two syllable word, if one syllable has primary stress, then give the other secondary stress
  1095. if(vowel_stress[1] == 4)
  1096. vowel_stress[2] = 3;
  1097. if(vowel_stress[2] == 4)
  1098. vowel_stress[1] = 3;
  1099. }
  1100. #if deleted
  1101. if((langopts.stress_flags & 0x2000) && (vowel_stress[1] == 0))
  1102. {
  1103. // If there is only one syllable before the primary stress, give it a secondary stress
  1104. if((vowel_count > 2) && (vowel_stress[2] >= 4))
  1105. {
  1106. vowel_stress[1] = 3;
  1107. }
  1108. }
  1109. #endif
  1110. done = 0;
  1111. for(v=1; v<vowel_count; v++)
  1112. {
  1113. if(vowel_stress[v] == 0)
  1114. {
  1115. if((langopts.stress_flags & 0x10) && (stress < 4) && (v == vowel_count-1))
  1116. {
  1117. // flag: don't give secondary stress to final vowel
  1118. }
  1119. else
  1120. if((langopts.stress_flags & 0x8000) && (done == 0))
  1121. {
  1122. vowel_stress[v] = (char)stress;
  1123. done =1;
  1124. stress = 3; /* use secondary stress for remaining syllables */
  1125. }
  1126. else
  1127. if((vowel_stress[v-1] <= 1) && (vowel_stress[v+1] <= 1))
  1128. {
  1129. /* trochaic: give stress to vowel surrounded by unstressed vowels */
  1130. if((stress == 3) && (langopts.stress_flags & 0x20))
  1131. continue; // don't use secondary stress
  1132. if((v > 1) && (langopts.stress_flags & 0x40) && (syllable_weight[v]==0) && (syllable_weight[v+1]>0))
  1133. {
  1134. // don't put secondary stress on a light syllable which is followed by a heavy syllable
  1135. continue;
  1136. }
  1137. // should start with secondary stress on the first syllable, or should it count back from
  1138. // the primary stress and put secondary stress on alternate syllables?
  1139. vowel_stress[v] = (char)stress;
  1140. done =1;
  1141. stress = 3; /* use secondary stress for remaining syllables */
  1142. }
  1143. }
  1144. }
  1145. if((unstressed_word) && (tonic < 0))
  1146. {
  1147. if(vowel_count <= 2)
  1148. tonic = langopts.unstressed_wd1; /* monosyllable - unstressed */
  1149. else
  1150. tonic = langopts.unstressed_wd2; /* more than one syllable, used secondary stress as the main stress */
  1151. }
  1152. max_stress = 0;
  1153. max_stress_posn = 0;
  1154. for(v=1; v<vowel_count; v++)
  1155. {
  1156. if(vowel_stress[v] >= max_stress)
  1157. {
  1158. max_stress = vowel_stress[v];
  1159. max_stress_posn = v;
  1160. }
  1161. }
  1162. if(tonic >= 0)
  1163. {
  1164. /* find position of highest stress, and replace it by 'tonic' */
  1165. /* don't disturb an explicitly set stress by 'unstress-at-end' flag */
  1166. if((tonic > max_stress) || (max_stress <= 4))
  1167. vowel_stress[max_stress_posn] = (char)tonic;
  1168. max_stress = tonic;
  1169. }
  1170. /* produce output phoneme string */
  1171. p = phonetic;
  1172. v = 1;
  1173. if((ph = phoneme_tab[*p]) != NULL)
  1174. {
  1175. if(ph->type == phSTRESS)
  1176. ph = phoneme_tab[p[1]];
  1177. #ifdef deleted
  1178. int gap = langopts.word_gap & 0x700;
  1179. if((gap) && (vowel_stress[1] >= 4) && (prev_stress >= 4))
  1180. {
  1181. /* two primary stresses together, insert a short pause */
  1182. *output++ = pause_phonemes[gap >> 8];
  1183. }
  1184. else
  1185. #endif
  1186. if((langopts.vowel_pause & 0x30) && (ph->type == phVOWEL))
  1187. {
  1188. // word starts with a vowel
  1189. if((langopts.vowel_pause & 0x20) && (vowel_stress[1] >= 4))
  1190. {
  1191. *output++ = phonPAUSE_NOLINK; // not to be replaced by link
  1192. }
  1193. else
  1194. {
  1195. *output++ = phonPAUSE_VSHORT; // break, but no pause
  1196. }
  1197. }
  1198. }
  1199. p = phonetic;
  1200. post_tonic = 0;
  1201. while(((phcode = *p++) != 0) && (output < max_output))
  1202. {
  1203. if((ph = phoneme_tab[phcode]) == NULL)
  1204. continue;
  1205. // if(ph->type == phSTRESS)
  1206. // continue;
  1207. if(ph->type == phPAUSE)
  1208. {
  1209. prev_last_stress = 0;
  1210. }
  1211. else
  1212. if(((ph->type == phVOWEL) && !(ph->phflags & phNONSYLLABIC)) || (*p == phonSYLLABIC))
  1213. {
  1214. // a vowel, or a consonant followed by a syllabic consonant marker
  1215. v_stress = vowel_stress[v];
  1216. prev_last_stress = v_stress;
  1217. if(vowel_stress[v-1] >= max_stress)
  1218. post_tonic = 1;
  1219. if(v_stress <= 1)
  1220. {
  1221. if((v > 1) && (max_stress >= 4) && (langopts.stress_flags & 4) && (v == (vowel_count-1)))
  1222. {
  1223. // option: mark unstressed final syllable as diminished
  1224. v_stress = 1;
  1225. }
  1226. else
  1227. if((langopts.stress_flags & 2) || (v == 1) || (v == (vowel_count-1)))
  1228. {
  1229. // first or last syllable, or option 'don't set diminished stress'
  1230. v_stress = 0;
  1231. }
  1232. else
  1233. if((v == (vowel_count-2)) && (vowel_stress[vowel_count-1] <= 1))
  1234. {
  1235. // penultimate syllable, followed by an unstressed final syllable
  1236. v_stress = 0;
  1237. }
  1238. else
  1239. {
  1240. // unstressed syllable within a word
  1241. if((vowel_stress[v-1] != 1) || ((langopts.stress_flags & 0x10000) == 0))
  1242. {
  1243. v_stress = 1; /* change from 0 (unstressed) to 1 (diminished stress) */
  1244. vowel_stress[v] = v_stress;
  1245. }
  1246. }
  1247. }
  1248. if(v_stress > 0)
  1249. *output++ = stress_phonemes[v_stress]; // mark stress of all vowels except 0 (unstressed)
  1250. if(vowel_stress[v] > max_stress)
  1251. {
  1252. max_stress = vowel_stress[v];
  1253. }
  1254. if((*p == phonLENGTHEN) && ((opt_length = langopts.param[LOPT_IT_LENGTHEN]) != 0))
  1255. {
  1256. // remove lengthen indicator from non-stressed syllables
  1257. int shorten=0;
  1258. if(opt_length & 0x10)
  1259. {
  1260. // only allow lengthen indicator on the highest stress syllable in the word
  1261. if(v != max_stress_posn)
  1262. shorten = 1;
  1263. }
  1264. else
  1265. if(v_stress < 4)
  1266. {
  1267. // only allow lengthen indicator if stress >= 4.
  1268. shorten = 1;
  1269. }
  1270. if(((opt_length & 0xf)==2) && (v != (vowel_count - 2)))
  1271. shorten = 1; // LANG=Italian, remove lengthen indicator from non-penultimate syllables
  1272. if(shorten)
  1273. p++;
  1274. }
  1275. v++;
  1276. }
  1277. if(phcode != 1)
  1278. *output++ = phcode;
  1279. }
  1280. *output++ = 0;
  1281. } /* end of SetWordStress */
  1282. //=============================================================================================
  1283. // Look up a word in the pronunciation rules
  1284. //
  1285. //=============================================================================================
  1286. #ifdef LOG_TRANSLATE
  1287. char *Translator::DecodeRule(const char *group, char *rule)
  1288. {//==================================================
  1289. /* Convert compiled match template to ascii */
  1290. unsigned char rb;
  1291. unsigned char c;
  1292. char *p;
  1293. int ix;
  1294. int match_type;
  1295. int finished=0;
  1296. int value;
  1297. int linenum=0;
  1298. int flags;
  1299. int suffix_char;
  1300. int condition_num=0;
  1301. char buf[60];
  1302. char buf_pre[60];
  1303. char suffix[20];
  1304. static char output[60];
  1305. static char symbols[] = {' ',' ',' ',' ',' ',' ',' ',' ',' ',
  1306. '@','&','%','+','#','S','D','Z','A','L',' ',' ',' ',' ',' ','N','K','V',' ','T','X','?','W'};
  1307. static char symbols_lg[] = {'A','B','C','H','F','G','Y'};
  1308. match_type = 0;
  1309. buf_pre[0] = 0;
  1310. strcpy(buf,group);
  1311. p = &buf[strlen(buf)];
  1312. while(!finished)
  1313. {
  1314. rb = *rule++;
  1315. if(rb <= RULE_LINENUM)
  1316. {
  1317. switch(rb)
  1318. {
  1319. case 0:
  1320. case RULE_PHONEMES:
  1321. finished=1;
  1322. break;
  1323. case RULE_PRE:
  1324. match_type = RULE_PRE;
  1325. *p = 0;
  1326. p = buf_pre;
  1327. break;
  1328. case RULE_POST:
  1329. match_type = RULE_POST;
  1330. *p = 0;
  1331. strcat(buf," (");
  1332. p = &buf[strlen(buf)];
  1333. break;
  1334. case RULE_PH_COMMON:
  1335. break;
  1336. case RULE_CONDITION:
  1337. /* conditional rule, next byte gives condition number */
  1338. condition_num = *rule++;
  1339. break;
  1340. case RULE_LINENUM:
  1341. value = (rule[1] & 0xff) - 1;
  1342. linenum = (rule[0] & 0xff) - 1 + (value * 255);
  1343. rule+=2;
  1344. break;
  1345. }
  1346. continue;
  1347. }
  1348. if(rb == RULE_ENDING)
  1349. {
  1350. static const char *flag_chars = "ei vtfq t";
  1351. flags = ((rule[0] & 0x7f)<< 8) + (rule[1] & 0x7f);
  1352. suffix_char = 'S';
  1353. if(flags & (SUFX_P >> 8))
  1354. suffix_char = 'P';
  1355. sprintf(suffix,"%c%d",suffix_char,rule[2] & 0x7f);
  1356. rule += 3;
  1357. for(ix=0;ix<9;ix++)
  1358. {
  1359. if(flags & 1)
  1360. sprintf(&suffix[strlen(suffix)],"%c",flag_chars[ix]);
  1361. flags = (flags >> 1);
  1362. }
  1363. strcpy(p,suffix);
  1364. p += strlen(suffix);
  1365. c = ' ';
  1366. }
  1367. else
  1368. if(rb == RULE_LETTERGP)
  1369. {
  1370. c = symbols_lg[*rule++ - 'A'];
  1371. }
  1372. else
  1373. if(rb == RULE_LETTERGP2)
  1374. {
  1375. value = *rule++ - 'A';
  1376. p[0] = 'L';
  1377. p[1] = (value / 10) + '0';
  1378. c = (value % 10) + '0';
  1379. if(match_type == RULE_PRE)
  1380. {
  1381. p[0] = c;
  1382. c = 'L';
  1383. }
  1384. p+=2;
  1385. }
  1386. else
  1387. if(rb <= RULE_LAST_RULE)
  1388. c = symbols[rb];
  1389. else
  1390. if(rb == RULE_SPACE)
  1391. c = '_';
  1392. else
  1393. c = rb;
  1394. *p++ = c;
  1395. }
  1396. *p = 0;
  1397. p = output;
  1398. if(linenum > 0)
  1399. {
  1400. sprintf(p,"%5d:\t",linenum);
  1401. p += 7;
  1402. }
  1403. if(condition_num > 0)
  1404. {
  1405. sprintf(p,"?%d ",condition_num);
  1406. p = &p[strlen(p)];
  1407. }
  1408. if((ix = strlen(buf_pre)) > 0)
  1409. {
  1410. while(--ix >= 0)
  1411. *p++ = buf_pre[ix];
  1412. *p++ = ')';
  1413. *p++ = ' ';
  1414. }
  1415. *p = 0;
  1416. strcat(p,buf);
  1417. ix = strlen(output);
  1418. while(ix < 8)
  1419. output[ix++]=' ';
  1420. output[ix]=0;
  1421. return(output);
  1422. } /* end of decode_match */
  1423. #endif
  1424. void Translator::AppendPhonemes(char *string, int size, const char *ph)
  1425. {//====================================================================
  1426. /* Add new phoneme string "ph" to "string"
  1427. Keeps count of the number of vowel phonemes in the word, and whether these
  1428. can be stressed syllables. These values can be used in translation rules
  1429. */
  1430. const char *p;
  1431. unsigned char c;
  1432. int unstress_mark;
  1433. int length;
  1434. length = strlen(ph) + strlen(string);
  1435. if(length >= size)
  1436. {
  1437. return;
  1438. }
  1439. /* any stressable vowel ? */
  1440. unstress_mark = 0;
  1441. p = ph;
  1442. while((c = *p++) != 0)
  1443. {
  1444. if(c >= n_phoneme_tab) continue;
  1445. if(phoneme_tab[c]->type == phSTRESS)
  1446. {
  1447. if(phoneme_tab[c]->std_length < 4)
  1448. unstress_mark = 1;
  1449. }
  1450. else
  1451. {
  1452. if(phoneme_tab[c]->type == phVOWEL)
  1453. {
  1454. if(((phoneme_tab[c]->phflags & phUNSTRESSED) == 0) &&
  1455. (unstress_mark == 0))
  1456. {
  1457. word_stressed_count++;
  1458. }
  1459. unstress_mark = 0;
  1460. word_vowel_count++;
  1461. }
  1462. }
  1463. }
  1464. if(string != NULL)
  1465. strcat(string,ph);
  1466. } /* end of AppendPhonemes */
  1467. void Translator::MatchRule(char *word[], const char *group, char *rule, MatchRecord *match_out, int word_flags, int dict_flags)
  1468. {//============================================================================================================================
  1469. /* Checks a specified word against dictionary rules.
  1470. Returns with phoneme code string, or NULL if no match found.
  1471. word (indirect) points to current character group within the input word
  1472. This is advanced by this procedure as characters are consumed
  1473. group: the initial characters used to choose the rules group
  1474. rule: address of dictionary rule data for this character group
  1475. match_out: returns best points score
  1476. word_flags: indicates whether this is a retranslation after a suffix has been removed
  1477. */
  1478. unsigned char rb; // current instuction from rule
  1479. unsigned char letter; // current letter from input word, single byte
  1480. int letter_w; // current letter, wide character
  1481. int letter_xbytes; // number of extra bytes of multibyte character (num bytes - 1)
  1482. unsigned char last_letter;
  1483. char *pre_ptr;
  1484. char *post_ptr; /* pointer to first character after group */
  1485. char *rule_start; /* start of current match template */
  1486. char *p;
  1487. int match_type; /* left, right, or consume */
  1488. int failed;
  1489. int consumed; /* number of letters consumed from input */
  1490. int count; /* count through rules in the group */
  1491. int syllable_count;
  1492. int vowel;
  1493. int letter_group;
  1494. int distance_right;
  1495. int distance_left;
  1496. int lg_pts;
  1497. int n_bytes;
  1498. MatchRecord match;
  1499. static MatchRecord best;
  1500. int total_consumed; /* letters consumed for best match */
  1501. int group_length;
  1502. unsigned char condition_num;
  1503. char *common_phonemes; /* common to a group of entries */
  1504. if(rule == NULL)
  1505. {
  1506. match_out->points = 0;
  1507. (*word)++;
  1508. return;
  1509. }
  1510. total_consumed = 0;
  1511. count = 0;
  1512. common_phonemes = NULL;
  1513. match_type = 0;
  1514. best.points = 0;
  1515. best.phonemes = "";
  1516. best.end_type = 0;
  1517. best.del_fwd = NULL;
  1518. group_length = strlen(group);
  1519. /* search through dictionary rules */
  1520. while(rule[0] != RULE_GROUP_END)
  1521. {
  1522. match_type=0;
  1523. consumed = 0;
  1524. letter = 0;
  1525. distance_right= -6; /* used to reduce points for matches further away the current letter */
  1526. distance_left= -2;
  1527. count++;
  1528. match.points = 1;
  1529. match.end_type = 0;
  1530. match.del_fwd = NULL;
  1531. pre_ptr = *word;
  1532. post_ptr = *word + group_length;
  1533. /* work through next rule until end, or until no-match proved */
  1534. rule_start = rule;
  1535. failed = 0;
  1536. while(!failed)
  1537. {
  1538. rb = *rule++;
  1539. if(rb <= RULE_LINENUM)
  1540. {
  1541. switch(rb)
  1542. {
  1543. case 0: // no phoneme string for this rule, use previous common rule
  1544. if(common_phonemes != NULL)
  1545. {
  1546. match.phonemes = common_phonemes;
  1547. if(*match.phonemes == RULE_CONDITION)
  1548. match.phonemes += 2; // skip over condition number
  1549. while(((rb = *match.phonemes++) != 0) && (rb != RULE_PHONEMES));
  1550. }
  1551. else
  1552. {
  1553. match.phonemes = "";
  1554. }
  1555. rule--; // so we are still pointing at the 0
  1556. failed=2; // matched OK
  1557. break;
  1558. case RULE_PRE:
  1559. match_type = RULE_PRE;
  1560. break;
  1561. case RULE_POST:
  1562. match_type = RULE_POST;
  1563. break;
  1564. case RULE_PHONEMES:
  1565. match.phonemes = rule;
  1566. failed=2; // matched OK
  1567. break;
  1568. case RULE_PH_COMMON:
  1569. common_phonemes = rule;
  1570. break;
  1571. case RULE_CONDITION:
  1572. /* conditional rule, next byte gives condition number */
  1573. condition_num = *rule++;
  1574. if(condition_num >= 32)
  1575. {
  1576. // allow the rule only if the condition number is NOT set
  1577. if((dict_condition & (1L << (condition_num-32))) != 0)
  1578. failed = 1;
  1579. }
  1580. else
  1581. {
  1582. // allow the rule only if the condition number is set
  1583. if((dict_condition & (1L << condition_num)) == 0)
  1584. failed = 1;
  1585. }
  1586. if(!failed)
  1587. match.points++; // add one point for a matched conditional rule
  1588. break;
  1589. case RULE_LINENUM:
  1590. rule+=2;
  1591. break;
  1592. }
  1593. continue;
  1594. }
  1595. switch(match_type)
  1596. {
  1597. case 0:
  1598. /* match and consume this letter */
  1599. last_letter = letter;
  1600. letter = *post_ptr++;
  1601. if((letter == rb) || ((letter==(unsigned char)REPLACED_E) && (rb=='e')))
  1602. {
  1603. match.points += 21;
  1604. consumed++;
  1605. }
  1606. else
  1607. failed = 1;
  1608. break;
  1609. case RULE_POST:
  1610. /* continue moving fowards */
  1611. distance_right += 6;
  1612. if(distance_right > 18)
  1613. distance_right = 19;
  1614. last_letter = letter;
  1615. letter_xbytes = utf8_in(&letter_w,post_ptr,0)-1;
  1616. letter = *post_ptr++;
  1617. switch(rb)
  1618. {
  1619. case RULE_LETTERGP:
  1620. letter_group = *rule++ - 'A';
  1621. if(IsLetter(letter_w,letter_group))
  1622. {
  1623. lg_pts = 20;
  1624. if(letter_group==2)
  1625. lg_pts = 19; // fewer points for C, general consonant
  1626. match.points += (lg_pts-distance_right);
  1627. post_ptr += letter_xbytes;
  1628. }
  1629. else
  1630. failed = 1;
  1631. break;
  1632. case RULE_LETTERGP2: // match against a list of utf-8 strings
  1633. letter_group = *rule++ - 'A';
  1634. if((n_bytes = IsLetterGroup(post_ptr-1,letter_group,0)) >0)
  1635. {
  1636. match.points += (20-distance_right);
  1637. post_ptr += (n_bytes-1);
  1638. }
  1639. else
  1640. failed =1;
  1641. break;
  1642. case RULE_NOTVOWEL:
  1643. if(!IsLetter(letter_w,0))
  1644. {
  1645. match.points += (20-distance_right);
  1646. post_ptr += letter_xbytes;
  1647. }
  1648. else
  1649. failed = 1;
  1650. break;
  1651. case RULE_DIGIT:
  1652. if(IsDigit(letter_w))
  1653. {
  1654. match.points += (20-distance_right);
  1655. post_ptr += letter_xbytes;
  1656. }
  1657. else
  1658. if(langopts.tone_numbers)
  1659. {
  1660. // also match if there is no digit
  1661. match.points += (20-distance_right);
  1662. post_ptr--;
  1663. }
  1664. else
  1665. failed = 1;
  1666. break;
  1667. case RULE_NONALPHA:
  1668. if(!iswalpha(letter_w))
  1669. {
  1670. match.points += (21-distance_right);
  1671. post_ptr += letter_xbytes;
  1672. }
  1673. else
  1674. failed = 1;
  1675. break;
  1676. case RULE_DOUBLE:
  1677. if(letter == last_letter)
  1678. match.points += (21-distance_right);
  1679. else
  1680. failed = 1;
  1681. break;
  1682. case RULE_ALT1:
  1683. if(dict_flags & FLAG_ALT_TRANS)
  1684. match.points++;
  1685. else
  1686. failed = 1;
  1687. break;
  1688. case '-':
  1689. if((letter == '-') || ((letter == ' ') && (word_flags & FLAG_HYPHEN_AFTER)))
  1690. {
  1691. match.points += (22-distance_right); // one point more than match against space
  1692. }
  1693. else
  1694. failed = 1;
  1695. break;
  1696. case RULE_SYLLABLE:
  1697. {
  1698. /* more than specified number of vowel letters to the right */
  1699. char *p = post_ptr + letter_xbytes;
  1700. syllable_count = 1;
  1701. while(*rule == RULE_SYLLABLE)
  1702. {
  1703. rule++;
  1704. syllable_count+=1; /* number of syllables to match */
  1705. }
  1706. vowel = 0;
  1707. while(letter_w != RULE_SPACE)
  1708. {
  1709. if((vowel==0) && IsLetter(letter_w,LETTERGP_VOWEL2))
  1710. {
  1711. // this is counting vowels which are separated by non-vowels
  1712. syllable_count--;
  1713. }
  1714. vowel = IsLetter(letter_w,LETTERGP_VOWEL2);
  1715. p += utf8_in(&letter_w,p,0);
  1716. }
  1717. if(syllable_count <= 0)
  1718. match.points+= (19-distance_right);
  1719. else
  1720. failed = 1;
  1721. }
  1722. break;
  1723. case RULE_NOVOWELS:
  1724. {
  1725. char *p = post_ptr + letter_xbytes;
  1726. while(letter_w != RULE_SPACE)
  1727. {
  1728. if(IsLetter(letter_w,LETTERGP_VOWEL2))
  1729. {
  1730. failed = 1;
  1731. break;
  1732. }
  1733. p += utf8_in(&letter_w,p,0);
  1734. }
  1735. if(!failed)
  1736. match.points += (19-distance_right);
  1737. }
  1738. break;
  1739. case RULE_INC_SCORE:
  1740. match.points += 20; // force an increase in points
  1741. break;
  1742. case RULE_DEL_FWD:
  1743. // find the next 'e' in the word and replace by ''
  1744. for(p = *word + group_length; *p != ' '; p++)
  1745. {
  1746. if(*p == 'e')
  1747. {
  1748. match.del_fwd = p;
  1749. break;
  1750. }
  1751. }
  1752. break;
  1753. case RULE_ENDING:
  1754. // next 3 bytes are a (non-zero) ending type. 2 bytes of flags + suffix length
  1755. match.end_type = (rule[0] << 16) + ((rule[1] & 0x7f) << 8) + (rule[2] & 0x7f);
  1756. rule += 3;
  1757. break;
  1758. case RULE_NO_SUFFIX:
  1759. if(word_flags & FLAG_SUFFIX_REMOVED)
  1760. failed = 1; // a suffix has been removed
  1761. else
  1762. match.points++;
  1763. break;
  1764. default:
  1765. if(letter == rb)
  1766. {
  1767. if(letter == RULE_SPACE)
  1768. match.points += (21-distance_right);
  1769. else
  1770. match.points += (21-distance_right);
  1771. }
  1772. else
  1773. failed = 1;
  1774. break;
  1775. }
  1776. break;
  1777. case RULE_PRE:
  1778. /* match backwards from start of current group */
  1779. distance_left += 2;
  1780. if(distance_left > 18)
  1781. distance_left = 19;
  1782. last_letter = *pre_ptr;
  1783. pre_ptr--;
  1784. letter_xbytes = utf8_in(&letter_w,pre_ptr,1)-1;
  1785. letter = *pre_ptr;
  1786. switch(rb)
  1787. {
  1788. case RULE_LETTERGP:
  1789. letter_group = *rule++ - 'A';
  1790. if(IsLetter(letter_w,letter_group))
  1791. {
  1792. lg_pts = 20;
  1793. if(letter_group==2)
  1794. lg_pts = 19; // fewer points for C, general consonant
  1795. match.points += (lg_pts-distance_left);
  1796. pre_ptr -= letter_xbytes;
  1797. }
  1798. else
  1799. failed = 1;
  1800. break;
  1801. case RULE_LETTERGP2: // match against a list of utf-8 strings
  1802. letter_group = *rule++ - 'A';
  1803. if((n_bytes = IsLetterGroup(pre_ptr-letter_xbytes,letter_group,1)) >0)
  1804. {
  1805. match.points += (20-distance_right);
  1806. pre_ptr -= (n_bytes-1);
  1807. }
  1808. else
  1809. failed =1;
  1810. break;
  1811. case RULE_NOTVOWEL:
  1812. if(!IsLetter(letter_w,0))
  1813. {
  1814. match.points += (20-distance_left);
  1815. pre_ptr -= letter_xbytes;
  1816. }
  1817. else
  1818. failed = 1;
  1819. break;
  1820. case RULE_DOUBLE:
  1821. if(letter == last_letter)
  1822. match.points += (21-distance_left);
  1823. else
  1824. failed = 1;
  1825. break;
  1826. case RULE_DIGIT:
  1827. if(IsDigit(letter_w))
  1828. {
  1829. match.points += (21-distance_left);
  1830. pre_ptr -= letter_xbytes;
  1831. }
  1832. else
  1833. failed = 1;
  1834. break;
  1835. case RULE_NONALPHA:
  1836. if(!iswalpha(letter_w))
  1837. {
  1838. match.points += (21-distance_right);
  1839. pre_ptr -= letter_xbytes;
  1840. }
  1841. else
  1842. failed = 1;
  1843. break;
  1844. case RULE_SYLLABLE:
  1845. /* more than specified number of vowels to the left */
  1846. syllable_count = 1;
  1847. while(*rule == RULE_SYLLABLE)
  1848. {
  1849. rule++;
  1850. syllable_count++; /* number of syllables to match */
  1851. }
  1852. if(syllable_count <= word_vowel_count)
  1853. match.points+= (19-distance_left);
  1854. else
  1855. failed = 1;
  1856. break;
  1857. case RULE_STRESSED:
  1858. if(word_stressed_count > 0)
  1859. match.points += 19;
  1860. else
  1861. failed = 1;
  1862. break;
  1863. case RULE_NOVOWELS:
  1864. {
  1865. char *p = pre_ptr - letter_xbytes - 1;
  1866. while(letter_w != RULE_SPACE)
  1867. {
  1868. if(IsLetter(letter_w,LETTERGP_VOWEL2))
  1869. {
  1870. failed = 1;
  1871. break;
  1872. }
  1873. p -= utf8_in(&letter_w,p,1);
  1874. }
  1875. if(!failed)
  1876. match.points += 3;
  1877. }
  1878. break;
  1879. case RULE_IFVERB:
  1880. if(expect_verb)
  1881. match.points += 1;
  1882. else
  1883. failed = 1;
  1884. break;
  1885. case RULE_CAPITAL:
  1886. if(word_flags & FLAG_FIRST_UPPER)
  1887. match.points += 1;
  1888. else
  1889. failed = 1;
  1890. break;
  1891. case '.':
  1892. // dot in pre- section, match on any dot before this point in the word
  1893. for(p=pre_ptr; *p != ' '; p--)
  1894. {
  1895. if(*p == '.')
  1896. {
  1897. match.points +=50;
  1898. break;
  1899. }
  1900. }
  1901. if(*p == ' ')
  1902. failed = 1;
  1903. break;
  1904. case '-':
  1905. if((letter == '-') || ((letter == ' ') && (word_flags & FLAG_HYPHEN)))
  1906. {
  1907. match.points += (22-distance_right); // one point more than match against space
  1908. }
  1909. else
  1910. failed = 1;
  1911. break;
  1912. default:
  1913. if(letter == rb)
  1914. {
  1915. if(letter == RULE_SPACE)
  1916. match.points += 4;
  1917. else
  1918. match.points += (21-distance_left);
  1919. }
  1920. else
  1921. failed = 1;
  1922. break;
  1923. }
  1924. break;
  1925. }
  1926. }
  1927. if(failed == 2)
  1928. {
  1929. /* matched OK, is this better than the last best match ? */
  1930. if(match.points >= best.points)
  1931. {
  1932. memcpy(&best,&match,sizeof(match));
  1933. total_consumed = consumed;
  1934. }
  1935. #ifdef LOG_TRANSLATE
  1936. if((option_phonemes == 2) && (match.points > 0) && ((word_flags & FLAG_NO_TRACE) == 0))
  1937. {
  1938. // show each rule that matches, and it's points score
  1939. int pts;
  1940. char decoded_phonemes[80];
  1941. // note: 'count' contains the rule number, if we want to include it
  1942. pts = match.points;
  1943. if(group_length > 1)
  1944. pts += 35; // to account for an extra letter matching
  1945. DecodePhonemes(match.phonemes,decoded_phonemes);
  1946. fprintf(f_trans,"%3d\t%s [%s]\n",pts,DecodeRule(group,rule_start),decoded_phonemes);
  1947. }
  1948. #endif
  1949. }
  1950. /* skip phoneme string to reach start of next template */
  1951. while(*rule++ != 0);
  1952. }
  1953. #ifdef LOG_TRANSLATE
  1954. if((option_phonemes == 2) && ((word_flags & FLAG_NO_TRACE)==0))
  1955. {
  1956. if(group_length <= 1)
  1957. fprintf(f_trans,"\n");
  1958. }
  1959. #endif
  1960. /* advance input data pointer */
  1961. total_consumed += group_length;
  1962. if(total_consumed == 0)
  1963. total_consumed = 1; /* always advance over 1st letter */
  1964. *word += total_consumed;
  1965. if(best.points == 0)
  1966. best.phonemes = "";
  1967. memcpy(match_out,&best,sizeof(MatchRecord));
  1968. } /* end of MatchRule */
  1969. int Translator::TranslateRules(char *p_start, char *phonemes, int ph_size, char *end_phonemes, int word_flags, unsigned int *dict_flags)
  1970. {//=====================================================================================================================================
  1971. /* Translate a word bounded by space characters
  1972. Append the result to 'phonemes' and any standard prefix/suffix in 'end_phonemes' */
  1973. unsigned char c, c2;
  1974. unsigned int c12;
  1975. int wc=0;
  1976. int wc_prev;
  1977. int wc_bytes;
  1978. char *p2; /* copy of p for use in double letter chain match */
  1979. int found;
  1980. int g; /* group chain number */
  1981. int g1; /* first group for this letter */
  1982. int n;
  1983. int letter;
  1984. int any_alpha=0;
  1985. int ix;
  1986. unsigned int digit_count=0;
  1987. char *p;
  1988. int dict_flags0=0;
  1989. MatchRecord match1;
  1990. MatchRecord match2;
  1991. char ph_buf[40];
  1992. char word_copy[N_WORD_BYTES];
  1993. static const char str_pause[2] = {phonPAUSE_NOLINK,0};
  1994. char group_name[4];
  1995. if(data_dictrules == NULL)
  1996. return(0);
  1997. if(dict_flags != NULL)
  1998. dict_flags0 = dict_flags[0];
  1999. for(ix=0; ix<(N_WORD_BYTES-1);)
  2000. {
  2001. c = p_start[ix];
  2002. word_copy[ix++] = c;
  2003. if(c == 0)
  2004. break;
  2005. }
  2006. word_copy[ix] = 0;
  2007. #ifdef LOG_TRANSLATE
  2008. if((option_phonemes == 2) && ((word_flags & FLAG_NO_TRACE)==0))
  2009. {
  2010. char wordbuf[120];
  2011. int ix;
  2012. for(ix=0; ((c = p_start[ix]) != ' ') && (c != 0); ix++)
  2013. {
  2014. wordbuf[ix] = c;
  2015. }
  2016. wordbuf[ix] = 0;
  2017. fprintf(f_trans,"Translate '%s'\n",wordbuf);
  2018. }
  2019. #endif
  2020. p = p_start;
  2021. word_vowel_count = 0;
  2022. word_stressed_count = 0;
  2023. if(end_phonemes != NULL)
  2024. end_phonemes[0] = 0;
  2025. while(((c = *p) != ' ') && (c != 0))
  2026. {
  2027. wc_prev = wc;
  2028. wc_bytes = utf8_in(&wc,p,0);
  2029. if(IsAlpha(wc))
  2030. any_alpha++;
  2031. n = groups2_count[c];
  2032. if(IsDigit(wc) && ((langopts.tone_numbers == 0) || !any_alpha))
  2033. {
  2034. // lookup the number in *_list not *_rules
  2035. char string[8];
  2036. char buf[40];
  2037. string[0] = '_';
  2038. memcpy(&string[1],p,wc_bytes);
  2039. string[1+wc_bytes] = 0;
  2040. Lookup(string,buf);
  2041. if(++digit_count >= 2)
  2042. {
  2043. strcat(buf,str_pause);
  2044. digit_count=0;
  2045. }
  2046. AppendPhonemes(phonemes,ph_size,buf);
  2047. p += wc_bytes;
  2048. continue;
  2049. // MatchRule(&p, "", groups1[(unsigned char)'9'],&match1,word_flags);
  2050. // if(match1.points == 0)
  2051. // p++; // not found, move on past this digit
  2052. }
  2053. else
  2054. {
  2055. digit_count = 0;
  2056. found = 0;
  2057. if(n > 0)
  2058. {
  2059. /* there are some 2 byte chains for this initial letter */
  2060. c2 = p[1];
  2061. c12 = c + (c2 << 8); /* 2 characters */
  2062. g1 = groups2_start[c];
  2063. for(g=g1; g < (g1+n); g++)
  2064. {
  2065. if(groups2_name[g] == c12)
  2066. {
  2067. found = 1;
  2068. group_name[0] = c;
  2069. group_name[1] = c2;
  2070. group_name[2] = 0;
  2071. p2 = p;
  2072. MatchRule(&p2, group_name, groups2[g], &match2, word_flags, dict_flags0);
  2073. if(match2.points > 0)
  2074. match2.points += 35; /* to acount for 2 letters matching */
  2075. /* now see whether single letter chain gives a better match ? */
  2076. group_name[1] = 0;
  2077. MatchRule(&p, group_name, groups1[c], &match1, word_flags, dict_flags0);
  2078. if(match2.points >= match1.points)
  2079. {
  2080. // use match from the 2-letter group
  2081. memcpy(&match1,&match2,sizeof(MatchRecord));
  2082. p = p2;
  2083. }
  2084. }
  2085. }
  2086. }
  2087. if(!found)
  2088. {
  2089. /* alphabetic, single letter chain */
  2090. group_name[0] = c;
  2091. group_name[1] = 0;
  2092. if(groups1[c] != NULL)
  2093. MatchRule(&p, group_name, groups1[c], &match1, word_flags, dict_flags0);
  2094. else
  2095. {
  2096. // no group for this letter, use default group
  2097. MatchRule(&p, "", groups1[0], &match1, word_flags, dict_flags0);
  2098. if((match1.points == 0) && ((option_sayas & 0x10) == 0))
  2099. {
  2100. // no match, try removing the accent and re-translating the word
  2101. n = utf8_in(&letter,p-1,0)-1;
  2102. if((letter >= 0xc0) && (letter <= 0x241) && ((ix = remove_accent[letter-0xc0]) != 0))
  2103. {
  2104. // within range of the remove_accent table
  2105. if((p[-2] != ' ') || (p[n] != ' '))
  2106. {
  2107. // not the only letter in the word
  2108. p2 = p-1;
  2109. p[-1] = ix;
  2110. while((p[0] = p[n]) != ' ') p++;
  2111. while(n-- > 0) *p++ = ' '; // replacement character must be no longer than original
  2112. if(langopts.param[LOPT_DIERESES] && (lookupwchar(diereses_list,letter) > 0))
  2113. {
  2114. // vowel with dieresis, replace and continue from this point
  2115. p = p2;
  2116. continue;
  2117. }
  2118. phonemes[0] = 0; // delete any phonemes which have been produced so far
  2119. p = p_start;
  2120. word_vowel_count = 0;
  2121. word_stressed_count = 0;
  2122. continue; // start again at the beginning of the word
  2123. }
  2124. }
  2125. else
  2126. if((letter >= 0x3200) && (letter < 0xa700) && (end_phonemes != NULL))
  2127. {
  2128. // ideograms
  2129. // outside the range of the accent table, speak the unknown symbol sound
  2130. Lookup("_??",ph_buf);
  2131. match1.phonemes = ph_buf;
  2132. match1.points = 1;
  2133. p += (wc_bytes-1);
  2134. }
  2135. }
  2136. }
  2137. if(match1.points == 0)
  2138. {
  2139. if(IsAlpha(wc))
  2140. {
  2141. if((any_alpha > 1) || (p[wc_bytes-1] > ' '))
  2142. {
  2143. // an unrecognised character in a word, abort and then spell the word
  2144. phonemes[0] = 0;
  2145. if(dict_flags != NULL)
  2146. dict_flags[0] |= FLAG_SPELLWORD;
  2147. break;
  2148. }
  2149. }
  2150. else
  2151. {
  2152. LookupLetter(wc, -1, ph_buf);
  2153. if(ph_buf[0])
  2154. {
  2155. match1.phonemes = ph_buf;
  2156. match1.points = 1;
  2157. }
  2158. }
  2159. p += (wc_bytes-1);
  2160. }
  2161. }
  2162. }
  2163. if(match1.phonemes == NULL)
  2164. match1.phonemes = "";
  2165. if(match1.points > 0)
  2166. {
  2167. if((match1.phonemes[0] == phonSWITCH) && ((word_flags & FLAG_DONT_SWITCH_TRANSLATOR)==0))
  2168. {
  2169. // an instruction to switch language, return immediately so we can re-translate
  2170. strcpy(phonemes,match1.phonemes);
  2171. return(0);
  2172. }
  2173. if((match1.end_type != 0) && (end_phonemes != NULL))
  2174. {
  2175. /* a standard ending has been found, re-translate the word without it */
  2176. if((match1.end_type & SUFX_P) && (word_flags & FLAG_NO_PREFIX))
  2177. {
  2178. // ignore the match on a prefix
  2179. }
  2180. else
  2181. {
  2182. if((match1.end_type & SUFX_P) && ((match1.end_type & 0x7f) == 0))
  2183. {
  2184. // no prefix length specified
  2185. match1.end_type |= p - p_start;
  2186. }
  2187. strcpy(end_phonemes,match1.phonemes);
  2188. memcpy(p_start,word_copy,strlen(word_copy));
  2189. return(match1.end_type);
  2190. }
  2191. }
  2192. if(match1.del_fwd != NULL)
  2193. *match1.del_fwd = REPLACED_E;
  2194. AppendPhonemes(phonemes,ph_size,match1.phonemes);
  2195. }
  2196. }
  2197. // any language specific changes ?
  2198. ApplySpecialAttribute(phonemes,dict_flags0);
  2199. memcpy(p_start,word_copy,strlen(word_copy));
  2200. return(0);
  2201. } /* end of TranslateRules */
  2202. void Translator::ApplySpecialAttribute(char *phonemes, int dict_flags)
  2203. {//===================================================================
  2204. // Amend the translated phonemes according to an attribute which is specific for the language.
  2205. int len;
  2206. int ix;
  2207. char *p_end;
  2208. int phoneme_1;
  2209. if((dict_flags & (FLAG_ALT_TRANS | FLAG_ALT2_TRANS)) == 0)
  2210. return;
  2211. len = strlen(phonemes);
  2212. p_end = &phonemes[len-1];
  2213. switch(translator_name)
  2214. {
  2215. case L('d','e'):
  2216. if(p_end[0] == LookupPh("i:"))
  2217. {
  2218. // words ends in ['i:], change to [=I@]
  2219. p_end[-1] = phonSTRESS_PREV;
  2220. p_end[0] = LookupPh("I");
  2221. p_end[1] = phonSCHWA;
  2222. p_end[2] = 0;
  2223. }
  2224. break;
  2225. case L('p','t'):
  2226. phoneme_1 = LookupPh("o");
  2227. for(ix=0; ix<(len-1); ix++)
  2228. {
  2229. if(phonemes[ix] == phoneme_1)
  2230. {
  2231. phonemes[ix] = LookupPh("O");
  2232. break;
  2233. }
  2234. }
  2235. break;
  2236. case L('r','o'):
  2237. if(p_end[0] == LookupPh("j"))
  2238. {
  2239. // word end in [j], change to ['i]
  2240. p_end[0] = phonSTRESS_P;
  2241. p_end[1] = LookupPh("i");
  2242. p_end[2] = 0;
  2243. }
  2244. break;
  2245. }
  2246. } // end of ApplySpecialAttribute
  2247. //=============================================================================================
  2248. // Look up a word in the pronunciation dictionary list
  2249. // - exceptions which override the usual pronunciation rules, or which give a word
  2250. // special properties, such as pronounce as unstressed
  2251. //=============================================================================================
  2252. // common letter pairs, encode these as a single byte
  2253. static const short pairs_ru[] = {
  2254. 0x010c, // ?? 21052 0x23
  2255. 0x010e, // ?? 18400
  2256. 0x0113, // ?? 14254
  2257. 0x0301, // ?? 31083
  2258. 0x030f, // ?? 13420
  2259. 0x060e, // ?? 21798
  2260. 0x0611, // ?? 19458
  2261. 0x0903, // ?? 16226
  2262. 0x0b01, // ?? 14456
  2263. 0x0b0f, // ?? 17836
  2264. 0x0c01, // ?? 13324
  2265. 0x0c09, // ?? 16877
  2266. 0x0e01, // ?? 15359
  2267. 0x0e06, // ?? 13543 0x30
  2268. 0x0e09, // ?? 17168
  2269. 0x0e0e, // ?? 15973
  2270. 0x0e0f, // ?? 22373
  2271. 0x0e1c, // ?? 15052
  2272. 0x0f03, // ?? 24947
  2273. 0x0f11, // ?? 13552
  2274. 0x0f12, // ?? 16368
  2275. 0x100f, // ?? 19054
  2276. 0x1011, // ?? 17067
  2277. 0x1101, // ?? 23967
  2278. 0x1106, // ?? 18795
  2279. 0x1109, // ?? 13797
  2280. 0x110f, // ?? 21737
  2281. 0x1213, // ?? 25076
  2282. 0x1220, // ?? 14310
  2283. 0x7fff};
  2284. //0x040f ?? 12976
  2285. //0x1306 ?? 12826
  2286. //0x0f0d ?? 12688
  2287. int TransposeAlphabet(char *text, int offset, int min, int max)
  2288. {//============================================================
  2289. // transpose cyrillic alphabet (for example) into ascii (single byte) character codes
  2290. // return: number of bytes, bit 6: 1=used compression
  2291. int c;
  2292. int c2;
  2293. int ix;
  2294. char *p = text;
  2295. char *p2 = text;
  2296. int all_alpha=1;
  2297. int bits;
  2298. int acc;
  2299. do {
  2300. p += utf8_in(&c,p,0);
  2301. if((c >= min) && (c <= max))
  2302. {
  2303. *p2++ = c - offset;
  2304. }
  2305. else
  2306. if(c != 0)
  2307. {
  2308. p2 += utf8_out(c,p2);
  2309. all_alpha=0;
  2310. }
  2311. } while (c != 0);
  2312. *p2 = 0;
  2313. if(all_alpha)
  2314. {
  2315. // compress to 6 bits per character
  2316. acc=0;
  2317. bits=0;
  2318. p = text;
  2319. p2 = text;
  2320. while((c = *p++) != 0)
  2321. {
  2322. c2 = c + (*p << 8);
  2323. for(ix=0; c2 >= pairs_ru[ix]; ix++)
  2324. {
  2325. if(c2 == pairs_ru[ix])
  2326. {
  2327. // found an encoding for a 2-character pair
  2328. c = ix + 0x23; // 2-character codes start at 0x23
  2329. p++;
  2330. break;
  2331. }
  2332. }
  2333. acc = (acc << 6) + (c & 0x3f);
  2334. bits += 6;
  2335. if(bits >= 8)
  2336. {
  2337. bits -= 8;
  2338. *p2++ = (acc >> bits);
  2339. }
  2340. }
  2341. if(bits > 0)
  2342. {
  2343. *p2++ = (acc << (8-bits));
  2344. }
  2345. *p2 = 0;
  2346. return((p2 - text) | 0x40); // bit 6 indicates compressed characters
  2347. }
  2348. return(p2 - text);
  2349. } // end of TransposeAlphabet
  2350. char *print_dflags(unsigned int *flags)
  2351. {//====================================
  2352. static char buf[20];
  2353. sprintf(buf,"%s 0x%x/%x",LookupMnem(mnem_flags,(flags[0] & 0xf)+0x40), flags[0], flags[1]);
  2354. return(buf);
  2355. }
  2356. const char *Translator::LookupDict2(const char *word, const char *word2, char *phonetic, unsigned int *flags, int end_flags, WORD_TAB *wtab)
  2357. //==========================================================================================================================================
  2358. /* Find an entry in the word_dict file for a specified word.
  2359. Returns NULL if no match, else returns 'word_end'
  2360. word zero terminated word