eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

translate.h 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783
  1. /*
  2. * Copyright (C) 2005 to 2014 by Jonathan Duddington
  3. * email: [email protected]
  4. * Copyright (C) 2015 Reece H. Dunn
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, see: <http://www.gnu.org/licenses/>.
  18. */
  19. #ifdef __cplusplus
  20. extern "C"
  21. {
  22. #endif
  23. #define L(c1, c2) (c1<<8)+c2 // combine two characters into an integer for translator name
  24. #define CTRL_EMBEDDED 0x01 // control character at the start of an embedded command
  25. #define REPLACED_E 'E' // 'e' replaced by silent e
  26. #define N_WORD_PHONEMES 200 // max phonemes in a word
  27. #define N_WORD_BYTES 160 // max bytes for the UTF8 characters in a word
  28. #define N_CLAUSE_WORDS 300 // max words in a clause
  29. #define N_TR_SOURCE 800 // the source text of a single clause (UTF8 bytes)
  30. #define N_RULE_GROUP2 120 // max num of two-letter rule chains
  31. #define N_HASH_DICT 1024
  32. #define N_CHARSETS 20
  33. #define N_LETTER_GROUPS 95 // maximum is 127-32
  34. // dictionary flags, word 1
  35. // bits 0-3 stressed syllable, bit 6=unstressed
  36. #define FLAG_SKIPWORDS 0x80
  37. #define FLAG_PREPAUSE 0x100
  38. #define FLAG_STRESS_END 0x200 // full stress if at end of clause
  39. #define FLAG_STRESS_END2 0x400 // full stress if at end of clause, or only followed by unstressed
  40. #define FLAG_UNSTRESS_END 0x800 // reduce stress at end of clause
  41. #define FLAG_SPELLWORD 0x1000 // re-translate the word as individual letters, separated by spaces
  42. #define FLAG_ACCENT_BEFORE 0x1000 // say this accent name before the letter name
  43. #define FLAG_ABBREV 0x2000 // spell as letters, even with a vowel, OR use specified pronunciation rather than split into letters
  44. #define FLAG_DOUBLING 0x4000 // doubles the following consonant
  45. #define BITNUM_FLAG_ALT 14 // bit number of FLAG_ALT_TRANS - 1
  46. #define FLAG_ALT_TRANS 0x8000 // language specific
  47. #define FLAG_ALT2_TRANS 0x10000 // language specific
  48. #define FLAG_ALT3_TRANS 0x20000 // language specific
  49. #define FLAG_ALT4_TRANS 0x40000 // language specific
  50. #define FLAG_ALT5_TRANS 0x80000 // language specific
  51. #define FLAG_ALT6_TRANS 0x100000 // language specific
  52. #define FLAG_ALT7_TRANS 0x200000 // language specific
  53. #define FLAG_COMBINE 0x800000 // combine with the next word
  54. #define FLAG_ALLOW_DOT 0x01000000 // ignore '.' after word (abbreviation)
  55. #define FLAG_NEEDS_DOT 0x02000000 // only if the word is followed by a dot
  56. #define FLAG_WAS_UNPRONOUNCABLE 0x04000000 // the unpronounceable routine was used
  57. #define FLAG_MAX3 0x08000000 // limit to 3 repeats
  58. #define FLAG_PAUSE1 0x10000000 // shorter prepause
  59. #define FLAG_TEXTMODE 0x20000000 // word translates to replacement text, not phonemes
  60. #define BITNUM_FLAG_TEXTMODE 29
  61. #define FLAG_FOUND_ATTRIBUTES 0x40000000 // word was found in the dictionary list (has attributes)
  62. #define FLAG_FOUND 0x80000000 // pronunciation was found in the dictionary list
  63. // dictionary flags, word 2
  64. #define FLAG_VERBF 0x1 // verb follows
  65. #define FLAG_VERBSF 0x2 // verb follows, may have -s suffix
  66. #define FLAG_NOUNF 0x4 // noun follows
  67. #define FLAG_PASTF 0x8 // past tense follows
  68. #define FLAG_VERB 0x10 // pronunciation for verb
  69. #define FLAG_NOUN 0x20 // pronunciation for noun
  70. #define FLAG_PAST 0x40 // pronunciation for past tense
  71. #define FLAG_VERB_EXT 0x100 // extend the 'verb follows'
  72. #define FLAG_CAPITAL 0x200 // pronunciation if initial letter is upper case
  73. #define FLAG_ALLCAPS 0x400 // only if the word is all capitals
  74. #define FLAG_ACCENT 0x800 // character name is base-character name + accent name
  75. #define FLAG_HYPHENATED 0x1000 // multiple-words, but needs hyphen between parts 1 and 2
  76. #define FLAG_SENTENCE 0x2000 // only if the clause is a sentence
  77. #define FLAG_ONLY 0x4000
  78. #define FLAG_ONLY_S 0x8000
  79. #define FLAG_STEM 0x10000 // must have a suffix
  80. #define FLAG_ATEND 0x20000 // use this pronunciation if at end of clause
  81. #define FLAG_ATSTART 0x40000 // use this pronunciation if at start of clause
  82. #define FLAG_NATIVE 0x80000 // not if we've switched translators
  83. #define FLAG_LOOKUP_SYMBOL 0x40000000 // to indicate called from Lookup()
  84. #define BITNUM_FLAG_ALLCAPS 0x2a
  85. #define BITNUM_FLAG_HYPHENATED 0x2c
  86. #define BITNUM_FLAG_ONLY 0x2e
  87. #define BITNUM_FLAG_ONLY_S 0x2f
  88. // wordflags, flags in source word
  89. #define FLAG_ALL_UPPER 0x1 // no lower case letters in the word
  90. #define FLAG_FIRST_UPPER 0x2 // first letter is upper case
  91. #define FLAG_UPPERS 0x3 // FLAG_ALL_UPPER | FLAG_FIRST_UPPER
  92. #define FLAG_HAS_PLURAL 0x4 // upper-case word with s or 's lower-case ending
  93. #define FLAG_PHONEMES 0x8 // word is phonemes
  94. #define FLAG_LAST_WORD 0x10 // last word in clause
  95. #define FLAG_EMBEDDED 0x40 // word is preceded by embedded commands
  96. #define FLAG_HYPHEN 0x80
  97. #define FLAG_NOSPACE 0x100 // word is not seperated from previous word by a space
  98. #define FLAG_FIRST_WORD 0x200 // first word in clause
  99. #define FLAG_FOCUS 0x400 // the focus word of a clause
  100. #define FLAG_EMPHASIZED 0x800
  101. #define FLAG_EMPHASIZED2 0xc00 // FLAG_FOCUS | FLAG_EMPHASIZED
  102. #define FLAG_DONT_SWITCH_TRANSLATOR 0x1000
  103. #define FLAG_SUFFIX_REMOVED 0x2000
  104. #define FLAG_HYPHEN_AFTER 0x4000
  105. #define FLAG_ORDINAL 0x8000 // passed to TranslateNumber() to indicate an ordinal number
  106. #define FLAG_HAS_DOT 0x10000 // dot after this word
  107. #define FLAG_COMMA_AFTER 0x20000 // comma after this word
  108. #define FLAG_MULTIPLE_SPACES 0x40000 // word is preceded by multiple spaces, newline, or tab
  109. #define FLAG_INDIVIDUAL_DIGITS 0x80000 // speak number as individual digits
  110. #define FLAG_DELETE_WORD 0x100000 // don't speak this word, it has been spoken as part of the previous word
  111. #define FLAG_CHAR_REPLACED 0x200000 // characters have been replaced by .replace in the *_rules
  112. #define FLAG_TRANSLATOR2 0x400000 // retranslating using a different language
  113. #define FLAG_PREFIX_REMOVED 0x800000 // a prefix has been removed from this word
  114. #define FLAG_SUFFIX_VOWEL 0x08000000 // remember an initial vowel from the suffix
  115. #define FLAG_NO_TRACE 0x10000000 // passed to TranslateRules() to suppress dictionary lookup printout
  116. #define FLAG_NO_PREFIX 0x20000000
  117. #define FLAG_UNPRON_TEST 0x80000000 // do unpronounability test on the beginning of the word
  118. // prefix/suffix flags (bits 8 to 14, bits 16 to 22) don't use 0x8000, 0x800000
  119. #define SUFX_E 0x0100 // e may have been added
  120. #define SUFX_I 0x0200 // y may have been changed to i
  121. #define SUFX_P 0x0400 // prefix
  122. #define SUFX_V 0x0800 // suffix means use the verb form pronunciation
  123. #define SUFX_D 0x1000 // previous letter may have been doubled
  124. #define SUFX_F 0x2000 // verb follows
  125. #define SUFX_Q 0x4000 // don't retranslate
  126. #define SUFX_T 0x10000 // don't affect the stress position in the stem
  127. #define SUFX_B 0x20000 // break, this character breaks the word into stem and suffix (used with SUFX_P)
  128. #define SUFX_A 0x40000 // remember that the suffix starts with a vowel
  129. #define SUFX_M 0x80000 // bit 19, allow multiple suffixes
  130. #define SUFX_UNPRON 0x8000 // used to return $unpron flag from *_rules
  131. #define FLAG_ALLOW_TEXTMODE 0x02 // allow dictionary to translate to text rather than phonemes
  132. #define FLAG_SUFX 0x04
  133. #define FLAG_SUFX_S 0x08
  134. #define FLAG_SUFX_E_ADDED 0x10
  135. // codes in dictionary rules
  136. #define RULE_PRE 1
  137. #define RULE_POST 2
  138. #define RULE_PHONEMES 3
  139. #define RULE_PH_COMMON 4 // At start of rule. Its phoneme string is used by subsequent rules
  140. #define RULE_CONDITION 5 // followed by condition number (byte)
  141. #define RULE_GROUP_START 6
  142. #define RULE_GROUP_END 7
  143. #define RULE_PRE_ATSTART 8 // as RULE_PRE but also match with 'start of word'
  144. #define RULE_LINENUM 9 // next 2 bytes give a line number, for debugging purposes
  145. #define RULE_SPACE 32 // ascii space
  146. #define RULE_SYLLABLE 21 // @
  147. #define RULE_STRESSED 10 // &
  148. #define RULE_DOUBLE 11 // %
  149. #define RULE_INC_SCORE 12 // +
  150. #define RULE_DEL_FWD 13 // #
  151. #define RULE_ENDING 14 // S
  152. #define RULE_DIGIT 15 // D digit
  153. #define RULE_NONALPHA 16 // Z non-alpha
  154. #define RULE_LETTERGP 17 // A B C H F G Y letter group number
  155. #define RULE_LETTERGP2 18 // L + letter group number
  156. #define RULE_CAPITAL 19 // ! word starts with a capital letter
  157. #define RULE_REPLACEMENTS 20 // section for character replacements
  158. #define RULE_SKIPCHARS 23 // J
  159. #define RULE_NO_SUFFIX 24 // N
  160. #define RULE_NOTVOWEL 25 // K
  161. #define RULE_IFVERB 26 // V
  162. #define RULE_DOLLAR 28 // $ commands
  163. #define RULE_NOVOWELS 29 // X no vowels up to word boundary
  164. #define RULE_SPELLING 31 // W while spelling letter-by-letter
  165. #define RULE_LAST_RULE 31
  166. #define DOLLAR_UNPR 0x01
  167. #define DOLLAR_NOPREFIX 0x02
  168. #define DOLLAR_LIST 0x03
  169. #define LETTERGP_A 0
  170. #define LETTERGP_B 1
  171. #define LETTERGP_C 2
  172. #define LETTERGP_H 3
  173. #define LETTERGP_F 4
  174. #define LETTERGP_G 5
  175. #define LETTERGP_Y 6
  176. #define LETTERGP_VOWEL2 7
  177. // Punctuation types returned by ReadClause()
  178. // bits 0-11 pause x 10mS
  179. // bits12-14 intonation type
  180. // bit 15- don't need space after the punctuation
  181. // bit 19=sentence, bit 18=clause, bits 17=voice change
  182. // bit 16 used to distinguish otherwise identical types
  183. // bit 20= punctuation character can be inside a word (Armenian)
  184. // bit 21= speak the name of the punctuation character
  185. // bit 22= dot after the last word
  186. // bit 23= pause is x 320mS (not x 10mS)
  187. #define CLAUSE_BIT_SENTENCE 0x80000
  188. #define CLAUSE_BIT_CLAUSE 0x40000
  189. #define CLAUSE_BIT_VOICE 0x20000
  190. #define CLAUSE_BITS_INTONATION 0x7000
  191. #define PUNCT_IN_WORD 0x100000
  192. #define PUNCT_SAY_NAME 0x200000
  193. #define CLAUSE_DOT 0x400000
  194. #define CLAUSE_PAUSE_LONG 0x800000
  195. #define CLAUSE_NONE ( 0 + 0x04000)
  196. #define CLAUSE_PARAGRAPH (70 + 0x80000)
  197. #define CLAUSE_EOF (40 + 0x90000)
  198. #define CLAUSE_VOICE ( 0 + 0x24000)
  199. #define CLAUSE_PERIOD (40 + 0x80000)
  200. #define CLAUSE_COMMA (20 + 0x41000)
  201. #define CLAUSE_SHORTCOMMA ( 4 + 0x41000)
  202. #define CLAUSE_SHORTFALL ( 4 + 0x40000)
  203. #define CLAUSE_QUESTION (40 + 0x82000)
  204. #define CLAUSE_EXCLAMATION (45 + 0x83000)
  205. #define CLAUSE_COLON (30 + 0x40000)
  206. #define CLAUSE_SEMICOLON (30 + 0x41000)
  207. #define SAYAS_CHARS 0x12
  208. #define SAYAS_GLYPHS 0x13
  209. #define SAYAS_SINGLE_CHARS 0x14
  210. #define SAYAS_KEY 0x24
  211. #define SAYAS_DIGITS 0x40 // + number of digits
  212. #define SAYAS_DIGITS1 0xc1
  213. #define CHAR_EMPHASIS 0x0530 // this is an unused character code
  214. #define CHAR_COMMA_BREAK 0x0557 // unused character code
  215. // Rule:
  216. // [4] [match] [1 pre] [2 post] [3 phonemes] 0
  217. // match 1 pre 2 post 0 - use common phoneme string
  218. // match 1 pre 2 post 3 0 - empty phoneme string
  219. typedef const char *constcharptr;
  220. typedef struct {
  221. int points;
  222. const char *phonemes;
  223. int end_type;
  224. char *del_fwd;
  225. } MatchRecord;
  226. // used to mark words with the source[] buffer
  227. typedef struct {
  228. unsigned int flags;
  229. unsigned short start;
  230. unsigned char pre_pause;
  231. unsigned char wmark;
  232. unsigned short sourceix;
  233. unsigned char length;
  234. } WORD_TAB;
  235. typedef struct {
  236. int type;
  237. int parameter[N_SPEECH_PARAM];
  238. } PARAM_STACK;
  239. extern PARAM_STACK param_stack[];
  240. extern const int param_defaults[N_SPEECH_PARAM];
  241. typedef struct {
  242. const char *name;
  243. int offset;
  244. unsigned short range_min, range_max;
  245. int language;
  246. int flags;
  247. } ALPHABET;
  248. extern ALPHABET alphabets[];
  249. extern ALPHABET *current_alphabet;
  250. // alphabet flags
  251. #define AL_DONT_NAME 0x01 // don't speak the alphabet name
  252. #define AL_NOT_LETTERS 0x02 // don't use the language for speaking letters
  253. #define AL_WORDS 0x04 // use the language to speak words
  254. #define AL_NOT_CODE 0x08 // don't speak the character code
  255. #define AL_NO_SYMBOL 0x10 // don't repeat "symbol" or "character"
  256. #define N_LOPTS 21
  257. #define LOPT_DIERESES 1
  258. // 1=remove [:] from unstressed syllables, 2= remove from unstressed or non-penultimate syllables
  259. // bit 4=0, if stress < 4, bit 4=1, if not the highest stress in the word
  260. #define LOPT_IT_LENGTHEN 2
  261. // 1=german
  262. #define LOPT_PREFIXES 3
  263. // non-zero, change voiced/unoiced to match last consonant in a cluster
  264. // bit 0=use regressive voicing
  265. // bit 1=LANG=cz,bg don't propagate over [v]
  266. // bit 2=don't propagate acress word boundaries
  267. // bit 3=LANG=pl, propagate over liquids and nasals
  268. // bit 4=LANG=cz,sk don't progagate to [v]
  269. // bit 8=devoice word-final consonants
  270. #define LOPT_REGRESSIVE_VOICING 4
  271. // 0=default, 1=no check, other allow this character as an extra initial letter (default is 's')
  272. #define LOPT_UNPRONOUNCABLE 5
  273. // select length_mods tables, (length_mod_tab) + (length_mod_tab0 * 100)
  274. #define LOPT_LENGTH_MODS 6
  275. // increase this to prevent sonorants being shortened before shortened (eg. unstressed) vowels
  276. #define LOPT_SONORANT_MIN 7
  277. // bit 0: don't break vowels at word boundary
  278. #define LOPT_WORD_MERGE 8
  279. // max. amplitude for vowel at the end of a clause
  280. #define LOPT_MAXAMP_EOC 9
  281. // bit 0=reduce even if phonemes are specified in the **_list file
  282. // bit 1=don't reduce the strongest vowel in a word which is marked 'unstressed'
  283. #define LOPT_REDUCE 10
  284. // LANG=cs,sk combine some prepositions with the following word, if the combination has N or fewer syllables
  285. // bits 0-3 N syllables
  286. // bit 4=only if the second word has $alt attribute
  287. // bit 5=not if the second word is end-of-sentence
  288. #define LOPT_COMBINE_WORDS 11
  289. // change [t] when followed by unstressed vowel
  290. #define LOPT_REDUCE_T 12
  291. // 1 = allow capitals inside a word
  292. // 2 = stressed syllable is indicated by capitals
  293. #define LOPT_CAPS_IN_WORD 13
  294. // bit 0=Italian "syntactic doubling" of consoants in the word after a word marked with $double attribute
  295. // bit 1=also after a word which ends with a stressed vowel
  296. #define LOPT_IT_DOUBLING 14
  297. // Call ApplySpecialAttributes() if $alt or $alt2 is set for a word
  298. // bit 1: stressed syllable: $alt change [e],[o] to [E],[O], $alt2 change [E],[O] to [e],[o]
  299. #define LOPT_ALT 15
  300. // pause for bracket (default=4), pause when annoucing bracket names (default=2)
  301. #define LOPT_BRACKET_PAUSE 16
  302. // bit 1, don't break clause before annoucning . ? !
  303. #define LOPT_ANNOUNCE_PUNCT 17
  304. // recognize long vowels (0 = don't recognize)
  305. #define LOPT_LONG_VOWEL_THRESHOLD 18
  306. // bit 0: Don't allow suffices if there is no previous syllable
  307. #define LOPT_SUFFIX 19
  308. // bit 0 Apostrophe at start of word is part of the word
  309. // bit 1 Apostrophe at end of word is part of the word
  310. #define LOPT_APOSTROPHE 20
  311. // stress_rule
  312. #define STRESSPOSN_1L 0 // 1st syllable
  313. #define STRESSPOSN_2L 1 // 2nd syllable
  314. #define STRESSPOSN_2R 2 // penultimate
  315. #define STRESSPOSN_1R 3 // final syllable
  316. #define STRESSPOSN_3R 4 // antipenultimate
  317. typedef struct {
  318. // bits0-2 separate words with (1=pause_vshort, 2=pause_short, 3=pause, 4=pause_long 5=[?] phonemme)
  319. // bit 3=don't use linking phoneme
  320. // bit4=longer pause before STOP, VSTOP,FRIC
  321. // bit5=length of a final vowel doesn't depend on the next phoneme
  322. int word_gap;
  323. int vowel_pause;
  324. int stress_rule; // 1=first syllable, 2=penultimate, 3=last
  325. #define S_NO_DIM 0x02
  326. #define S_FINAL_DIM 0x04
  327. #define S_FINAL_DIM_ONLY 0x06
  328. // bit1=don't set diminished stress,
  329. // bit2=mark unstressed final syllables as diminished
  330. // bit3=set consecutive unstressed syllables in unstressed words to diminished, but not in stressed words
  331. #define S_FINAL_NO_2 0x10
  332. // bit4=don't allow secondary stress on last syllable
  333. #define S_NO_AUTO_2 0x20
  334. // bit5-don't use automatic secondary stress
  335. #define S_2_TO_HEAVY 0x40
  336. // bit6=light syllable followed by heavy, move secondary stress to the heavy syllable. LANG=Finnish
  337. #define S_FIRST_PRIMARY 0x80
  338. // bit7=if more than one primary stress, make the subsequent primaries to secondary stress
  339. #define S_FINAL_VOWEL_UNSTRESSED 0x100
  340. // bit8=don't apply default stress to a word-final vowel
  341. #define S_FINAL_SPANISH 0x200
  342. // bit9=stress last syllable if it doesn't end in vowel or "s" or "n" LANG=Spanish
  343. #define S_2_SYL_2 0x1000
  344. // bit12= In a 2-syllable word, if one has primary stress then give the other secondary stress
  345. #define S_INITIAL_2 0x2000
  346. // bit13= If there is only one syllable before the primary stress, give it a secondary stress
  347. #define S_MID_DIM 0x10000
  348. // bit 16= Set (not first or last) syllables to diminished stress
  349. #define S_PRIORITY_STRESS 0x20000
  350. // bit17= "priority" stress reduces other primary stress to "unstressed" not "secondary"
  351. #define S_EO_CLAUSE1 0x40000
  352. // bit18= don't lengthen short vowels more than long vowels at end-of-clause
  353. #define S_FINAL_LONG 0x80000
  354. // bit19=stress on final syllable if it has a long vowel, but previous syllable has a short vowel
  355. #define S_HYPEN_UNSTRESS 0x100000
  356. // bit20= hyphenated words, 2nd part is unstressed
  357. #define S_NO_EOC_LENGTHEN 0x200000
  358. // bit21= don't lengthen vowels at end-of-clause
  359. // bit15= Give stress to the first unstressed syllable
  360. int stress_flags;
  361. int unstressed_wd1; // stress for $u word of 1 syllable
  362. int unstressed_wd2; // stress for $u word of >1 syllable
  363. int param[N_LOPTS];
  364. int param2[N_LOPTS];
  365. unsigned char *length_mods;
  366. unsigned char *length_mods0;
  367. #define NUM_THOUS_SPACE 0x4
  368. #define NUM_DECIMAL_COMMA 0x8
  369. #define NUM_SWAP_TENS 0x10
  370. #define NUM_AND_UNITS 0x20
  371. #define NUM_HUNDRED_AND 0x40
  372. #define NUM_SINGLE_AND 0x80
  373. #define NUM_SINGLE_STRESS 0x100
  374. #define NUM_SINGLE_VOWEL 0x200
  375. #define NUM_OMIT_1_HUNDRED 0x400
  376. #define NUM_1900 0x800
  377. #define NUM_ALLOW_SPACE 0x1000
  378. #define NUM_DFRACTION_1 0x2000
  379. #define NUM_DFRACTION_2 0x4000
  380. #define NUM_DFRACTION_3 0x6000
  381. #define NUM_DFRACTION_4 0x8000
  382. #define NUM_DFRACTION_5 0xa000
  383. #define NUM_DFRACTION_6 0xc000
  384. #define NUM_DFRACTION_7 0xe000 // lang=si, alternative form of number for decimal fraction digits (except the last)
  385. #define NUM_ORDINAL_DOT 0x10000
  386. #define NUM_NOPAUSE 0x20000
  387. #define NUM_AND_HUNDRED 0x40000
  388. #define NUM_THOUSAND_AND 0x80000
  389. #define NUM_VIGESIMAL 0x100000
  390. #define NUM_OMIT_1_THOUSAND 0x200000
  391. #define NUM_ZERO_HUNDRED 0x400000
  392. #define NUM_HUNDRED_AND_DIGIT 0x800000
  393. #define NUM_ROMAN 0x1000000
  394. #define NUM_ROMAN_CAPITALS 0x2000000
  395. #define NUM_ROMAN_AFTER 0x4000000
  396. #define NUM_ROMAN_ORDINAL 0x8000000
  397. #define NUM_SINGLE_STRESS_L 0x10000000
  398. // bits0-1=which numbers routine to use.
  399. // bit2= thousands separator must be space
  400. // bit3= , decimal separator, not .
  401. // bit4=use three-and-twenty rather than twenty-three
  402. // bit5='and' between tens and units
  403. // bit6=add "and" after hundred or thousand
  404. // bit7=don't have "and" both after hundreds and also between tens and units
  405. // bit8=only one primary stress in tens+units
  406. // bit9=only one vowel betwen tens and units
  407. // bit10=omit "one" before "hundred"
  408. // bit11=say 19** as nineteen hundred
  409. // bit12=allow space as thousands separator (in addition to langopts.thousands_sep)
  410. // bits13-15 post-decimal-digits 0=single digits, 1=(LANG=it) 2=(LANG=pl) 3=(LANG=ro)
  411. // bit16= dot after number indicates ordinal
  412. // bit17= don't add pause after a number
  413. // bit18= 'and' before hundreds
  414. // bit19= 'and' after thousands if there are no hundreds
  415. // bit20= vigesimal number, if tens are not found
  416. // bit21= omit "one" before "thousand"
  417. // bit22= say "zero" before hundred
  418. // bit23= add "and" after hundreds and thousands, only if there are digits and no tens
  419. // bit24= recognize roman numbers
  420. // bit25= Roman numbers only if upper case
  421. // bit26= say "roman" after the number, not before
  422. // bit27= Roman numbers are ordinal numbers
  423. // bit28= only one primary stress in tens+units (on the tens)
  424. int numbers;
  425. #define NUM2_THOUSANDS_VAR1 0x40
  426. #define NUM2_THOUSANDS_VAR2 0x80
  427. #define NUM2_THOUSANDS_VAR3 0xc0
  428. #define NUM2_THOUSANDS_VAR4 0x100
  429. #define NUM2_THOUSANDS_VAR5 0x140
  430. #define NUM2_SWAP_THOUSANDS 0x200
  431. #define NUM2_ORDINAL_NO_AND 0x800
  432. #define NUM2_MULTIPLE_ORDINAL 0x1000
  433. #define NUM2_NO_TEEN_ORDINALS 0x2000
  434. #define NUM2_MYRIADS 0x4000
  435. #define NUM2_ENGLISH_NUMERALS 0x8000
  436. #define NUM2_PERCENT_BEFORE 0x10000
  437. #define NUM2_OMIT_1_HUNDRED_ONLY 0x20000
  438. #define NUM2_ORDINAL_AND_THOUSANDS 0x40000
  439. #define NUM2_ORDINAL_DROP_VOWEL 0x80000 // currently only for tens and units
  440. #define NUM2_ZERO_TENS 0x100000
  441. // bits 1-4 use variant form of numbers before thousands,millions,etc.
  442. // bits 6-8 use different forms of thousand, million, etc (M MA MB)
  443. // bit9=(LANG=rw) say "thousand" and "million" before its number, not after
  444. // bit11=(LANG=es,an) don't say 'and' between tens and units for ordinal numbers
  445. // bit12=(LANG=el,es) use ordinal form of hundreds and tens as well as units
  446. // bit13=(LANG=pt) don't use 11-19 numbers to make ordinals
  447. // bit14=(LANG=ko) use myriads (groups of 4 digits) not thousands (groups of 3)
  448. // bit15=(LANG=ne) speak (non-replaced) English numerals in English
  449. // bit16=(LANG=si) say "%" before the number
  450. // bit17=(LANG=ml) omit "one" before hundred only if there are no previous digits
  451. // bit18=(LANG=ta) same variant for ordinals and thousands (#o = #a)
  452. // bit19=(LANG=te) drop final vowel from cardial number before adding ordinal suffix
  453. // bit20=(LANG=zh) say zero tens
  454. int numbers2;
  455. #define BREAK_THOUSANDS 0x49249248
  456. int break_numbers; // which digits to break the number into thousands, millions, etc (Hindi has 100,000 not 1,000,000)
  457. int max_roman;
  458. int min_roman;
  459. int thousands_sep;
  460. int decimal_sep;
  461. int max_digits; // max number of digits which can be spoken as an integer number (rather than individual digits)
  462. const char *ordinal_indicator; // UTF-8 string
  463. const char *roman_suffix; // add this (ordinal) suffix to Roman numbers (LANG=an)
  464. // bit 0, accent name before the letter name, bit 1 "capital" after letter name
  465. int accents;
  466. int tone_language; // 1=tone language
  467. int intonation_group;
  468. unsigned char tunes[6];
  469. int long_stop; // extra mS pause for a lengthened stop
  470. int phoneme_change; // TEST, change phonemes, after translation
  471. char max_initial_consonants;
  472. char spelling_stress; // 0=default, 1=stress first letter
  473. char tone_numbers;
  474. char ideographs; // treat as separate words
  475. char textmode; // the meaning of FLAG_TEXTMODE is reversed (to save data when *_list file is compiled)
  476. char dotless_i; // uses letter U+0131
  477. int testing; // testing options: bit 1= specify stressed syllable in the form: "outdoor/2"
  478. int listx; // compile *_listx after *list
  479. const unsigned int *replace_chars; // characters to be substitutes
  480. char ascii_language[8]; // switch to this language for Latin characters
  481. int our_alphabet; // offset for main alphabet (if not set in letter_bits_offset)
  482. int alt_alphabet; // offset for another language to recognize
  483. int alt_alphabet_lang; // language for the alt_alphabet
  484. int max_lengthmod;
  485. int lengthen_tonic; // lengthen the tonic syllable
  486. int suffix_add_e; // replace a suffix (which has the SUFX_E flag) with this character
  487. #define DICTDIALECT_EN_US 1 // bit number
  488. #define DICTDIALECT_ES_LA 2
  489. int dict_dialect; // bitmap, use a dialect for foreign words
  490. } LANGUAGE_OPTIONS;
  491. // a parameter of ChangePhonemes()
  492. typedef struct {
  493. int flags;
  494. unsigned char stress; // stress level of this vowel
  495. unsigned char stress_highest; // the highest stress level of a vowel in this word
  496. unsigned char n_vowels; // number of vowels in the word
  497. unsigned char vowel_this; // syllable number of this vowel (counting from 1)
  498. unsigned char vowel_stressed; // syllable number of the highest stressed vowel
  499. } CHANGEPH;
  500. typedef struct {
  501. LANGUAGE_OPTIONS langopts;
  502. int translator_name;
  503. int transpose_max;
  504. int transpose_min;
  505. const char *transpose_map;
  506. char dictionary_name[40];
  507. char phonemes_repeat[20];
  508. int phonemes_repeat_count;
  509. int phoneme_tab_ix;
  510. unsigned char stress_amps[8];
  511. unsigned char stress_amps_r[8];
  512. short stress_lengths[8];
  513. int dict_condition; // conditional apply some pronunciation rules and dict.lookups
  514. int dict_min_size;
  515. const unsigned short *charset_a0; // unicodes for characters 0xa0 to oxff
  516. const wchar_t *char_plus_apostrophe; // single chars + apostrophe treated as words
  517. const wchar_t *punct_within_word; // allow these punctuation characters within words
  518. const unsigned short *chars_ignore;
  519. // holds properties of characters: vowel, consonant, etc for pronunciation rules
  520. unsigned char letter_bits[256];
  521. int letter_bits_offset;
  522. const wchar_t *letter_groups[8];
  523. /* index1=option, index2 by 0=. 1=, 2=?, 3=! 4=none */
  524. #define INTONATION_TYPES 8
  525. #define PUNCT_INTONATIONS 6
  526. unsigned char punct_to_tone[INTONATION_TYPES][PUNCT_INTONATIONS];
  527. char *data_dictrules; // language_1 translation rules file
  528. char *data_dictlist; // language_2 dictionary lookup file
  529. char *dict_hashtab[N_HASH_DICT]; // hash table to index dictionary lookup file
  530. char *letterGroups[N_LETTER_GROUPS];
  531. // groups1 and groups2 are indexes into data_dictrules, set up by InitGroups()
  532. // the two-letter rules for each letter must be consecutive in the language_rules source
  533. char *groups1[256]; // translation rule lists, index by single letter
  534. char *groups3[128]; // index by offset letter
  535. char *groups2[N_RULE_GROUP2]; // translation rule lists, indexed by two-letter pairs
  536. unsigned int groups2_name[N_RULE_GROUP2]; // the two letter pairs for groups2[]
  537. int n_groups2; // number of groups2[] entries used
  538. unsigned char groups2_count[256]; // number of 2 letter groups for this initial letter
  539. unsigned char groups2_start[256]; // index into groups2
  540. const short *frequent_pairs; // list of frequent pairs of letters, for use in compressed *_list
  541. int expect_verb;
  542. int expect_past; // expect past tense
  543. int expect_verb_s;
  544. int expect_noun;
  545. int prev_last_stress;
  546. char *clause_end;
  547. int word_vowel_count; // number of vowels so far
  548. int word_stressed_count; // number of vowels so far which could be stressed
  549. int clause_upper_count; // number of upper case letters in the clause
  550. int clause_lower_count; // number of lower case letters in the clause
  551. int prepause_timeout;
  552. int end_stressed_vowel; // word ends with stressed vowel
  553. int prev_dict_flags[2]; // dictionary flags from previous word
  554. int clause_terminator;
  555. } Translator;
  556. extern int option_tone2;
  557. #define OPTION_EMPHASIZE_ALLCAPS 0x100
  558. #define OPTION_EMPHASIZE_PENULTIMATE 0x200
  559. extern int option_tone_flags;
  560. extern int option_waveout;
  561. extern int option_quiet;
  562. extern int option_phonemes;
  563. extern int option_phoneme_events;
  564. extern int option_linelength; // treat lines shorter than this as end-of-clause
  565. extern int option_multibyte;
  566. extern int option_capitals;
  567. extern int option_punctuation;
  568. extern int option_endpause;
  569. extern int option_ssml;
  570. extern int option_phoneme_input; // allow [[phonemes]] in input text
  571. extern int option_phoneme_variants;
  572. extern int option_sayas;
  573. extern int option_wordgap;
  574. extern int count_characters;
  575. extern int count_words;
  576. extern int count_sentences;
  577. extern int skip_characters;
  578. extern int skip_words;
  579. extern int skip_sentences;
  580. extern int skipping_text;
  581. extern int end_character_position;
  582. extern int clause_start_char;
  583. extern int clause_start_word;
  584. extern char *namedata;
  585. extern int pre_pause;
  586. #define N_MARKER_LENGTH 50 // max.length of a mark name
  587. extern char skip_marker[N_MARKER_LENGTH];
  588. #define N_PUNCTLIST 60
  589. extern wchar_t option_punctlist[N_PUNCTLIST]; // which punctuation characters to announce
  590. extern unsigned char punctuation_to_tone[INTONATION_TYPES][PUNCT_INTONATIONS];
  591. extern Translator *translator;
  592. extern Translator *translator2;
  593. extern const unsigned short *charsets[N_CHARSETS];
  594. extern char dictionary_name[40];
  595. extern char ctrl_embedded; // to allow an alternative CTRL for embedded commands
  596. extern unsigned char *p_textinput;
  597. extern wchar_t *p_wchar_input;
  598. extern int dictionary_skipwords;
  599. extern int (*uri_callback)(int, const char *, const char *);
  600. extern int (*phoneme_callback)(const char *);
  601. extern void SetLengthMods(Translator *tr, int value);
  602. void LoadConfig(void);
  603. int TransposeAlphabet(Translator *tr, char *text);
  604. int utf8_in(int *c, const char *buf);
  605. int utf8_in2(int *c, const char *buf, int backwards);
  606. int utf8_out(unsigned int c, char *buf);
  607. int utf8_nbytes(const char *buf);
  608. int lookupwchar(const unsigned short *list, int c);
  609. int lookupwchar2(const unsigned short *list, int c);
  610. int Eof(void);
  611. char *strchr_w(const char *s, int c);
  612. int IsBracket(int c);
  613. void InitNamedata(void);
  614. void InitText(int flags);
  615. void InitText2(void);
  616. int IsDigit(unsigned int c);
  617. int IsDigit09(unsigned int c);
  618. int IsAlpha(unsigned int c);
  619. int IsVowel(Translator *tr, int c);
  620. int IsSuperscript(int letter);
  621. int iswalpha2(int c);
  622. int isspace2(unsigned int c);
  623. int iswlower2(int c);
  624. int iswupper2(int c);
  625. int towlower2(unsigned int c);
  626. int towupper2(unsigned int c);
  627. const char *GetTranslatedPhonemeString(int phoneme_mode);
  628. const char *WordToString2(unsigned int word);
  629. ALPHABET *AlphabetFromChar(int c);
  630. ALPHABET *AlphabetFromName(const char *name);
  631. Translator *SelectTranslator(const char *name);
  632. int SetTranslator2(const char *name);
  633. void DeleteTranslator(Translator *tr);
  634. void ProcessLanguageOptions(LANGUAGE_OPTIONS *langopts);
  635. int Lookup(Translator *tr, const char *word, char *ph_out);
  636. int LookupFlags(Translator *tr, const char *word, unsigned int **flags_out);
  637. int TranslateNumber(Translator *tr, char *word1, char *ph_out, unsigned int *flags, WORD_TAB *wtab, int control);
  638. int TranslateRoman(Translator *tr, char *word, char *ph_out, WORD_TAB *wtab);
  639. void ChangeWordStress(Translator *tr, char *word, int new_stress);
  640. void SetSpellingStress(Translator *tr, char *phonemes, int control, int n_chars);
  641. int TranslateLetter(Translator *tr, char *letter, char *phonemes, int control);
  642. void LookupLetter(Translator *tr, unsigned int letter, int next_byte, char *ph_buf, int control);
  643. void LookupAccentedLetter(Translator *tr, unsigned int letter, char *ph_buf);
  644. int LoadDictionary(Translator *tr, const char *name, int no_error);
  645. int LookupDictList(Translator *tr, char **wordptr, char *ph_out, unsigned int *flags, int end_flags, WORD_TAB *wtab);
  646. void MakePhonemeList(Translator *tr, int post_pause, int new_sentence);
  647. int ChangePhonemes_ru(Translator *tr, PHONEME_LIST2 *phlist, int n_ph, int index, PHONEME_TAB *ph, CHANGEPH *ch);
  648. void ApplySpecialAttribute2(Translator *tr, char *phonemes, int dict_flags);
  649. void AppendPhonemes(Translator *tr, char *string, int size, const char *ph);
  650. void CalcLengths(Translator *tr);
  651. void CalcPitches(Translator *tr, int clause_tone);
  652. int RemoveEnding(Translator *tr, char *word, int end_type, char *word_copy);
  653. int Unpronouncable(Translator *tr, char *word, int posn);
  654. void SetWordStress(Translator *tr, char *output, unsigned int *dictionary_flags, int tonic, int prev_stress);
  655. int TranslateRules(Translator *tr, char *p, char *phonemes, int size, char *end_phonemes, int end_flags, unsigned int *dict_flags);
  656. int TranslateWord(Translator *tr, char *word1, WORD_TAB *wtab, char *word_out);
  657. void *TranslateClause(Translator *tr, FILE *f_text, const void *vp_input, int *tone, char **voice_change);
  658. int ReadClause(Translator *tr, FILE *f_in, char *buf, short *charix, int *charix_top, int n_buf, int *tone_type, char *voice_change);
  659. void SetVoiceStack(espeak_VOICE *v, const char *variant_name);
  660. void InterpretPhoneme(Translator *tr, int control, PHONEME_LIST *plist, PHONEME_DATA *phdata, WORD_PH_DATA *worddata);
  661. void InterpretPhoneme2(int phcode, PHONEME_DATA *phdata);
  662. char *WritePhMnemonic(char *phon_out, PHONEME_TAB *ph, PHONEME_LIST *plist, int use_ipa, int *flags);
  663. extern FILE *f_trans; // for logging
  664. extern FILE *f_logespeak;
  665. extern int logging_type; // from config file
  666. #ifdef __cplusplus
  667. }
  668. #endif