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.cpp 93KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534
  1. /***************************************************************************
  2. * Copyright (C) 2005 to 2013 by Jonathan Duddington *
  3. * email: [email protected] *
  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, see: *
  17. * <http://www.gnu.org/licenses/>. *
  18. ***************************************************************************/
  19. #include "StdAfx.h"
  20. #include <stdio.h>
  21. #include <ctype.h>
  22. #include <stdlib.h>
  23. #include <string.h>
  24. #include <wctype.h>
  25. #include <wchar.h>
  26. #include "speak_lib.h"
  27. #include "speech.h"
  28. #include "phoneme.h"
  29. #include "synthesize.h"
  30. #include "voice.h"
  31. #include "translate.h"
  32. #define WORD_STRESS_CHAR '*'
  33. Translator *translator = NULL; // the main translator
  34. Translator *translator2 = NULL; // secondary translator for certain words
  35. static char translator2_language[20] = {0};
  36. FILE *f_trans = NULL; // phoneme output text
  37. int option_tone2 = 0;
  38. int option_tone_flags = 0; // bit 8=emphasize allcaps, bit 9=emphasize penultimate stress
  39. int option_phonemes = 0;
  40. int option_phoneme_events = 0;
  41. int option_quiet = 0;
  42. int option_endpause = 0; // suppress pause after end of text
  43. int option_capitals = 0;
  44. int option_punctuation = 0;
  45. int option_sayas = 0;
  46. static int option_sayas2 = 0; // used in translate_clause()
  47. static int option_emphasis = 0; // 0=normal, 1=normal, 2=weak, 3=moderate, 4=strong
  48. int option_ssml = 0;
  49. int option_phoneme_input = 0; // allow [[phonemes]] in input
  50. int option_phoneme_variants = 0; // 0= don't display phoneme variant mnemonics
  51. int option_wordgap = 0;
  52. static int count_sayas_digits;
  53. int skip_sentences;
  54. int skip_words;
  55. int skip_characters;
  56. char skip_marker[N_MARKER_LENGTH];
  57. int skipping_text; // waiting until word count, sentence count, or named marker is reached
  58. int end_character_position;
  59. int count_sentences;
  60. int count_words;
  61. int clause_start_char;
  62. int clause_start_word;
  63. int new_sentence;
  64. static int word_emphasis = 0; // set if emphasis level 3 or 4
  65. static int embedded_flag = 0; // there are embedded commands to be applied to the next phoneme, used in TranslateWord2()
  66. static int prev_clause_pause=0;
  67. static int max_clause_pause = 0;
  68. static int any_stressed_words;
  69. int pre_pause;
  70. ALPHABET *current_alphabet;
  71. // these were previously in translator class
  72. #ifdef PLATFORM_WINDOWS
  73. char word_phonemes[N_WORD_PHONEMES*2]; // longer, because snprint() is not available
  74. #else
  75. char word_phonemes[N_WORD_PHONEMES]; // a word translated into phoneme codes
  76. #endif
  77. int n_ph_list2;
  78. PHONEME_LIST2 ph_list2[N_PHONEME_LIST]; // first stage of text->phonemes
  79. wchar_t option_punctlist[N_PUNCTLIST]= {0};
  80. char ctrl_embedded = '\001'; // to allow an alternative CTRL for embedded commands
  81. int option_multibyte=espeakCHARS_AUTO; // 0=auto, 1=utf8, 2=8bit, 3=wchar, 4=16bit
  82. // these are overridden by defaults set in the "speak" file
  83. int option_linelength = 0;
  84. #define N_EMBEDDED_LIST 250
  85. static int embedded_ix;
  86. static int embedded_read;
  87. unsigned int embedded_list[N_EMBEDDED_LIST];
  88. // the source text of a single clause (UTF8 bytes)
  89. #define N_TR_SOURCE 800
  90. static char source[N_TR_SOURCE+40]; // extra space for embedded command & voice change info at end
  91. int n_replace_phonemes;
  92. REPLACE_PHONEMES replace_phonemes[N_REPLACE_PHONEMES];
  93. // brackets, also 0x2014 to 0x021f which don't need to be in this list
  94. static const unsigned short brackets[] = {
  95. '(',')','[',']','{','}','<','>','"','\'','`',
  96. 0xab,0xbb, // double angle brackets
  97. 0x300a,0x300b, // double angle brackets (ideograph)
  98. 0xe000+'<', // private usage area
  99. 0
  100. };
  101. // other characters which break a word, but don't produce a pause
  102. static const unsigned short breaks[] = {'_', 0};
  103. // treat these characters as spaces, in addition to iswspace()
  104. // static const wchar_t chars_space[] = {0x2500,0x2501,0}; // box drawing horiz
  105. // Translate character codes 0xA0 to 0xFF into their unicode values
  106. // ISO_8859_1 is set as default
  107. static const unsigned short ISO_8859_1[0x60] = {
  108. 0x00a0, 0x00a1, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7, // a0
  109. 0x00a8, 0x00a9, 0x00aa, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00af, // a8
  110. 0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7, // b0
  111. 0x00b8, 0x00b9, 0x00ba, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00bf, // b8
  112. 0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x00c7, // c0
  113. 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf, // c8
  114. 0x00d0, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d7, // d0
  115. 0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x00dd, 0x00de, 0x00df, // d8
  116. 0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7, // e0
  117. 0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, // e8
  118. 0x00f0, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x00f7, // f0
  119. 0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x00fd, 0x00fe, 0x00ff, // f8
  120. };
  121. static const unsigned short ISO_8859_2[0x60] = {
  122. 0x00a0, 0x0104, 0x02d8, 0x0141, 0x00a4, 0x013d, 0x015a, 0x00a7, // a0
  123. 0x00a8, 0x0160, 0x015e, 0x0164, 0x0179, 0x00ad, 0x017d, 0x017b, // a8
  124. 0x00b0, 0x0105, 0x02db, 0x0142, 0x00b4, 0x013e, 0x015b, 0x02c7, // b0
  125. 0x00b8, 0x0161, 0x015f, 0x0165, 0x017a, 0x02dd, 0x017e, 0x017c, // b8
  126. 0x0154, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x0139, 0x0106, 0x00c7, // c0
  127. 0x010c, 0x00c9, 0x0118, 0x00cb, 0x011a, 0x00cd, 0x00ce, 0x010e, // c8
  128. 0x0110, 0x0143, 0x0147, 0x00d3, 0x00d4, 0x0150, 0x00d6, 0x00d7, // d0
  129. 0x0158, 0x016e, 0x00da, 0x0170, 0x00dc, 0x00dd, 0x0162, 0x00df, // d8
  130. 0x0155, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x013a, 0x0107, 0x00e7, // e0
  131. 0x010d, 0x00e9, 0x0119, 0x00eb, 0x011b, 0x00ed, 0x00ee, 0x010f, // e8
  132. 0x0111, 0x0144, 0x0148, 0x00f3, 0x00f4, 0x0151, 0x00f6, 0x00f7, // f0
  133. 0x0159, 0x016f, 0x00fa, 0x0171, 0x00fc, 0x00fd, 0x0163, 0x02d9, // f8
  134. };
  135. static const unsigned short ISO_8859_3[0x60] = {
  136. 0x00a0, 0x0126, 0x02d8, 0x00a3, 0x00a4, 0x0000, 0x0124, 0x00a7, // a0
  137. 0x00a8, 0x0130, 0x015e, 0x011e, 0x0134, 0x00ad, 0x0000, 0x017b, // a8
  138. 0x00b0, 0x0127, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x0125, 0x00b7, // b0
  139. 0x00b8, 0x0131, 0x015f, 0x011f, 0x0135, 0x00bd, 0x0000, 0x017c, // b8
  140. 0x00c0, 0x00c1, 0x00c2, 0x0000, 0x00c4, 0x010a, 0x0108, 0x00c7, // c0
  141. 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf, // c8
  142. 0x0000, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x0120, 0x00d6, 0x00d7, // d0
  143. 0x011c, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x016c, 0x015c, 0x00df, // d8
  144. 0x00e0, 0x00e1, 0x00e2, 0x0000, 0x00e4, 0x010b, 0x0109, 0x00e7, // e0
  145. 0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, // e8
  146. 0x0000, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x0121, 0x00f6, 0x00f7, // f0
  147. 0x011d, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x016d, 0x015d, 0x02d9, // f8
  148. };
  149. static const unsigned short ISO_8859_4[0x60] = {
  150. 0x00a0, 0x0104, 0x0138, 0x0156, 0x00a4, 0x0128, 0x013b, 0x00a7, // a0
  151. 0x00a8, 0x0160, 0x0112, 0x0122, 0x0166, 0x00ad, 0x017d, 0x00af, // a8
  152. 0x00b0, 0x0105, 0x02db, 0x0157, 0x00b4, 0x0129, 0x013c, 0x02c7, // b0
  153. 0x00b8, 0x0161, 0x0113, 0x0123, 0x0167, 0x014a, 0x017e, 0x014b, // b8
  154. 0x0100, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x012e, // c0
  155. 0x010c, 0x00c9, 0x0118, 0x00cb, 0x0116, 0x00cd, 0x00ce, 0x012a, // c8
  156. 0x0110, 0x0145, 0x014c, 0x0136, 0x00d4, 0x00d5, 0x00d6, 0x00d7, // d0
  157. 0x00d8, 0x0172, 0x00da, 0x00db, 0x00dc, 0x0168, 0x016a, 0x00df, // d8
  158. 0x0101, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x012f, // e0
  159. 0x010d, 0x00e9, 0x0119, 0x00eb, 0x0117, 0x00ed, 0x00ee, 0x012b, // e8
  160. 0x0111, 0x0146, 0x014d, 0x0137, 0x00f4, 0x00f5, 0x00f6, 0x00f7, // f0
  161. 0x00f8, 0x0173, 0x00fa, 0x00fb, 0x00fc, 0x0169, 0x016b, 0x02d9, // f8
  162. };
  163. static const unsigned short ISO_8859_5[0x60] = {
  164. 0x00a0, 0x0401, 0x0402, 0x0403, 0x0404, 0x0405, 0x0406, 0x0407, // a0 Cyrillic
  165. 0x0408, 0x0409, 0x040a, 0x040b, 0x040c, 0x00ad, 0x040e, 0x040f, // a8
  166. 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, // b0
  167. 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f, // b8
  168. 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, // c0
  169. 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f, // c8
  170. 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, // d0
  171. 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f, // d8
  172. 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, // e0
  173. 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f, // e8
  174. 0x2116, 0x0451, 0x0452, 0x0453, 0x0454, 0x0455, 0x0456, 0x0457, // f0
  175. 0x0458, 0x0459, 0x045a, 0x045b, 0x045c, 0x00a7, 0x045e, 0x045f, // f8
  176. };
  177. static const unsigned short ISO_8859_7[0x60] = {
  178. 0x00a0, 0x2018, 0x2019, 0x00a3, 0x20ac, 0x20af, 0x00a6, 0x00a7, // a0 Greek
  179. 0x00a8, 0x00a9, 0x037a, 0x00ab, 0x00ac, 0x00ad, 0x0000, 0x2015, // a8
  180. 0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x0384, 0x0385, 0x0386, 0x00b7, // b0
  181. 0x0388, 0x0389, 0x038a, 0x00bb, 0x038c, 0x00bd, 0x038e, 0x038f, // b8
  182. 0x0390, 0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397, // c0
  183. 0x0398, 0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e, 0x039f, // c8
  184. 0x03a0, 0x03a1, 0x0000, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7, // d0
  185. 0x03a8, 0x03a9, 0x03aa, 0x03ab, 0x03ac, 0x03ad, 0x03ae, 0x03af, // d8
  186. 0x03b0, 0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7, // e0
  187. 0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf, // e8
  188. 0x03c0, 0x03c1, 0x03c2, 0x03c3, 0x03c4, 0x03c5, 0x03c6, 0x03c7, // f0
  189. 0x03c8, 0x03c9, 0x03ca, 0x03cb, 0x03cc, 0x03cd, 0x03ce, 0x0000, // f8
  190. };
  191. static const unsigned short ISO_8859_9[0x60] = {
  192. 0x00a0, 0x00a1, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7, // a0
  193. 0x00a8, 0x00a9, 0x00aa, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00af, // a8
  194. 0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7, // b0
  195. 0x00b8, 0x00b9, 0x00ba, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00bf, // b8
  196. 0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x00c7, // c0
  197. 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf, // c8
  198. 0x011e, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d7, // d0
  199. 0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x0130, 0x015e, 0x00df, // d8
  200. 0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7, // e0
  201. 0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, // e8
  202. 0x011f, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x00f7, // f0
  203. 0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x0131, 0x015f, 0x00ff, // f8
  204. };
  205. static const unsigned short ISO_8859_14[0x60] = {
  206. 0x00a0, 0x1e02, 0x1e03, 0x00a3, 0x010a, 0x010b, 0x1e0a, 0x00a7, // a0 Welsh
  207. 0x1e80, 0x00a9, 0x1e82, 0x1e0b, 0x1ef2, 0x00ad, 0x00ae, 0x0178, // a8
  208. 0x1e1e, 0x1e1f, 0x0120, 0x0121, 0x1e40, 0x1e41, 0x00b6, 0x1e56, // b0
  209. 0x1e81, 0x1e57, 0x1e83, 0x1e60, 0x1ef3, 0x1e84, 0x1e85, 0x1e61, // b8
  210. 0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x00c7, // c0
  211. 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf, // c8
  212. 0x0174, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x1e6a, // d0
  213. 0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x00dd, 0x0176, 0x00df, // d8
  214. 0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7, // e0
  215. 0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, // e8
  216. 0x0175, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x1e6b, // f0
  217. 0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x00fd, 0x0177, 0x00ff, // f8
  218. };
  219. static const unsigned short KOI8_R[0x60] = {
  220. 0x2550, 0x2551, 0x2552, 0x0451, 0x2553, 0x2554, 0x2555, 0x2556, // a0 Russian
  221. 0x2557, 0x2558, 0x2559, 0x255a, 0x255b, 0x255c, 0x255d, 0x255e, // a8
  222. 0x255f, 0x2560, 0x2561, 0x0401, 0x2562, 0x2563, 0x2564, 0x2565, // b0
  223. 0x2566, 0x2567, 0x2568, 0x2569, 0x256a, 0x256b, 0x256c, 0x00a9, // b8
  224. 0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, // c0
  225. 0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, // c8
  226. 0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432, // d0
  227. 0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a, // d8
  228. 0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, // e0
  229. 0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, // e8
  230. 0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412, // f0
  231. 0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a, // f8
  232. };
  233. static const unsigned short ISCII[0x60] = {
  234. 0x0020, 0x0901, 0x0902, 0x0903, 0x0905, 0x0906, 0x0907, 0x0908, // a0
  235. 0x0909, 0x090a, 0x090b, 0x090e, 0x090f, 0x0910, 0x090d, 0x0912, // a8
  236. 0x0913, 0x0914, 0x0911, 0x0915, 0x0916, 0x0917, 0x0918, 0x0919, // b0
  237. 0x091a, 0x091b, 0x091c, 0x091d, 0x091e, 0x091f, 0x0920, 0x0921, // b8
  238. 0x0922, 0x0923, 0x0924, 0x0925, 0x0926, 0x0927, 0x0928, 0x0929, // c0
  239. 0x092a, 0x092b, 0x092c, 0x092d, 0x092e, 0x092f, 0x095f, 0x0930, // c8
  240. 0x0931, 0x0932, 0x0933, 0x0934, 0x0935, 0x0936, 0x0937, 0x0938, // d0
  241. 0x0939, 0x0020, 0x093e, 0x093f, 0x0940, 0x0941, 0x0942, 0x0943, // d8
  242. 0x0946, 0x0947, 0x0948, 0x0945, 0x094a, 0x094b, 0x094c, 0x0949, // e0
  243. 0x094d, 0x093c, 0x0964, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, // e8
  244. 0x0020, 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, // f0
  245. 0x0037, 0x0038, 0x0039, 0x20, 0x20, 0x20, 0x20, 0x20, // f8
  246. };
  247. const unsigned short *charsets[N_CHARSETS] = {
  248. ISO_8859_1,
  249. ISO_8859_1,
  250. ISO_8859_2,
  251. ISO_8859_3,
  252. ISO_8859_4,
  253. ISO_8859_5,
  254. ISO_8859_1,
  255. ISO_8859_7,
  256. ISO_8859_1,
  257. ISO_8859_9,
  258. ISO_8859_1,
  259. ISO_8859_1,
  260. ISO_8859_1,
  261. ISO_8859_1,
  262. ISO_8859_14,
  263. ISO_8859_1,
  264. ISO_8859_1,
  265. ISO_8859_1,
  266. KOI8_R, // 18
  267. ISCII
  268. };
  269. // Tables of the relative lengths of vowels, depending on the
  270. // type of the two phonemes that follow
  271. // indexes are the "length_mod" value for the following phonemes
  272. // use this table if vowel is not the last in the word
  273. static unsigned char length_mods_en[100] = {
  274. /* a , t s n d z r N <- next */
  275. 100,120,100,105,100,110,110,100, 95, 100, /* a <- next2 */
  276. 105,120,105,110,125,130,135,115,125, 100, /* , */
  277. 105,120, 75,100, 75,105,120, 85, 75, 100, /* t */
  278. 105,120, 85,105, 95,115,120,100, 95, 100, /* s */
  279. 110,120, 95,105,100,115,120,100,100, 100, /* n */
  280. 105,120,100,105, 95,115,120,110, 95, 100, /* d */
  281. 105,120,100,105,105,122,125,110,105, 100, /* z */
  282. 105,120,100,105,105,122,125,110,105, 100, /* r */
  283. 105,120, 95,105,100,115,120,110,100, 100, /* N */
  284. 100,120,100,100,100,100,100,100,100, 100
  285. }; // SPARE
  286. // as above, but for the last syllable in a word
  287. static unsigned char length_mods_en0[100] = {
  288. /* a , t s n d z r N <- next */
  289. 100,150,100,105,110,115,110,110,110, 100, /* a <- next2 */
  290. 105,150,105,110,125,135,140,115,135, 100, /* , */
  291. 105,150, 90,105, 90,122,135,100, 90, 100, /* t */
  292. 105,150,100,105,100,122,135,100,100, 100, /* s */
  293. 105,150,100,105,105,115,135,110,105, 100, /* n */
  294. 105,150,100,105,105,122,130,120,125, 100, /* d */
  295. 105,150,100,105,110,122,125,115,110, 100, /* z */
  296. 105,150,100,105,105,122,135,120,105, 100, /* r */
  297. 105,150,100,105,105,115,135,110,105, 100, /* N */
  298. 100,100,100,100,100,100,100,100,100, 100
  299. }; // SPARE
  300. static unsigned char length_mods_equal[100] = {
  301. /* a , t s n d z r N <- next */
  302. 110,120,100,110,110,110,110,110,110, 110, /* a <- next2 */
  303. 110,120,100,110,110,110,110,110,110, 110, /* , */
  304. 110,120,100,110,100,110,110,110,100, 110, /* t */
  305. 110,120,100,110,110,110,110,110,110, 110, /* s */
  306. 110,120,100,110,110,110,110,110,110, 110, /* n */
  307. 110,120,100,110,110,110,110,110,110, 110, /* d */
  308. 110,120,100,110,110,110,110,110,110, 110, /* z */
  309. 110,120,100,110,110,110,110,110,110, 110, /* r */
  310. 110,120,100,110,110,110,110,110,110, 110, /* N */
  311. 110,120,100,110,110,110,110,110,110, 110
  312. }; // SPARE
  313. static unsigned char *length_mod_tabs[6] = {
  314. length_mods_en,
  315. length_mods_en, // 1
  316. length_mods_en0, // 2
  317. length_mods_equal, // 3
  318. length_mods_equal, // 4
  319. length_mods_equal // 5
  320. };
  321. void SetLengthMods(Translator *tr, int value)
  322. {//==========================================
  323. int value2;
  324. tr->langopts.length_mods0 = tr->langopts.length_mods = length_mod_tabs[value % 100];
  325. if((value2 = value / 100) != 0)
  326. {
  327. tr->langopts.length_mods0 = length_mod_tabs[value2];
  328. }
  329. }
  330. int IsAlpha(unsigned int c)
  331. {//========================
  332. // Replacement for iswalph() which also checks for some in-word symbols
  333. static const unsigned short extra_indic_alphas[] = {
  334. 0xa70,0xa71, // Gurmukhi: tippi, addak
  335. 0
  336. };
  337. if(iswalpha2(c))
  338. return(1);
  339. if(c < 0x300)
  340. return(0);
  341. if((c >= 0x901) && (c <= 0xdf7))
  342. {
  343. // Indic scripts: Devanagari, Tamil, etc
  344. if((c & 0x7f) < 0x64)
  345. return(1);
  346. if(lookupwchar(extra_indic_alphas, c) != 0)
  347. return(1);
  348. if((c >= 0xd7a) && (c <= 0xd7f))
  349. return(1); // malaytalam chillu characters
  350. return(0);
  351. }
  352. if((c >= 0x5b0) && (c <= 0x5c2))
  353. return(1); // Hebrew vowel marks
  354. if(c == 0x0605)
  355. return(1);
  356. if((c >= 0x64b) && (c <= 0x65e))
  357. return(1); // arabic vowel marks
  358. if((c >= 0x300) && (c <= 0x36f))
  359. return(1); // combining accents
  360. if((c >= 0x780) && (c <= 0x7b1))
  361. return(1); // taani/divehi (maldives)
  362. if((c >= 0xf40) && (c <= 0xfbc))
  363. return(1); // tibetan
  364. if((c >= 0x1100) && (c <= 0x11ff))
  365. return(1); //Korean jamo
  366. if((c >= 0x2800) && (c <= 0x28ff))
  367. return(1); // braille
  368. if((c > 0x3040) && (c <= 0xa700))
  369. return(1); // Chinese/Japanese. Should never get here, but Mac OS 10.4's iswalpha seems to be broken, so just make sure
  370. return(0);
  371. }
  372. int IsDigit09(unsigned int c)
  373. {//============================
  374. if((c >= '0') && (c <= '9'))
  375. return(1);
  376. return(0);
  377. }
  378. int IsDigit(unsigned int c)
  379. {//========================
  380. if(iswdigit(c))
  381. return(1);
  382. if((c >= 0x966) && (c <= 0x96f))
  383. return(1);
  384. return(0);
  385. }
  386. int IsSpace(unsigned int c)
  387. {//========================
  388. if(c == 0)
  389. return(0);
  390. if((c >= 0x2500) && (c < 0x25a0))
  391. return(1); // box drawing characters
  392. // if(wcschr(chars_space,c))
  393. // return(1);
  394. return(iswspace(c));
  395. }
  396. void DeleteTranslator(Translator *tr)
  397. {//==================================
  398. if(tr->data_dictlist != NULL)
  399. Free(tr->data_dictlist);
  400. Free(tr);
  401. }
  402. int lookupwchar(const unsigned short *list,int c)
  403. {//==============================================
  404. // Is the character c in the list ?
  405. int ix;
  406. for(ix=0; list[ix] != 0; ix++)
  407. {
  408. if(list[ix] == c)
  409. return(ix+1);
  410. }
  411. return(0);
  412. }
  413. int lookupwchar2(const unsigned short *list,int c)
  414. {//==============================================
  415. // Replace character c by another character.
  416. // Returns 0 = not found, 1 = delete character
  417. int ix;
  418. for(ix=0; list[ix] != 0; ix+=2)
  419. {
  420. if(list[ix] == c)
  421. return(list[ix+1]);
  422. }
  423. return(0);
  424. }
  425. int IsBracket(int c)
  426. {//=================
  427. if((c >= 0x2014) && (c <= 0x201f))
  428. return(1);
  429. return(lookupwchar(brackets,c));
  430. }
  431. int utf8_out(unsigned int c, char *buf)
  432. {//====================================
  433. // write a unicode character into a buffer as utf8
  434. // returns the number of bytes written
  435. int n_bytes;
  436. int j;
  437. int shift;
  438. static char unsigned code[4] = {0,0xc0,0xe0,0xf0};
  439. if(c < 0x80)
  440. {
  441. buf[0] = c;
  442. return(1);
  443. }
  444. if(c >= 0x110000)
  445. {
  446. buf[0] = ' '; // out of range character code
  447. return(1);
  448. }
  449. if(c < 0x0800)
  450. n_bytes = 1;
  451. else if(c < 0x10000)
  452. n_bytes = 2;
  453. else
  454. n_bytes = 3;
  455. shift = 6*n_bytes;
  456. buf[0] = code[n_bytes] | (c >> shift);
  457. for(j=0; j<n_bytes; j++)
  458. {
  459. shift -= 6;
  460. buf[j+1] = 0x80 + ((c >> shift) & 0x3f);
  461. }
  462. return(n_bytes+1);
  463. } // end of utf8_out
  464. int utf8_nbytes(const char *buf)
  465. {//=============================
  466. // Returns the number of bytes for the first UTF-8 character in buf
  467. unsigned char c = (unsigned char)buf[0];
  468. if(c < 0x80)
  469. return(1);
  470. if(c < 0xe0)
  471. return(2);
  472. if(c < 0xf0)
  473. return(3);
  474. return(4);
  475. }
  476. int utf8_in2(int *c, const char *buf, int backwards)
  477. {//=================================================
  478. // Read a unicode characater from a UTF8 string
  479. // Returns the number of UTF8 bytes used.
  480. // backwards: set if we are moving backwards through the UTF8 string
  481. int c1;
  482. int n_bytes;
  483. int ix;
  484. static const unsigned char mask[4] = {0xff,0x1f,0x0f,0x07};
  485. // find the start of the next/previous character
  486. while((*buf & 0xc0) == 0x80)
  487. {
  488. // skip over non-initial bytes of a multi-byte utf8 character
  489. if(backwards)
  490. buf--;
  491. else
  492. buf++;
  493. }
  494. n_bytes = 0;
  495. if((c1 = *buf++) & 0x80)
  496. {
  497. if((c1 & 0xe0) == 0xc0)
  498. n_bytes = 1;
  499. else if((c1 & 0xf0) == 0xe0)
  500. n_bytes = 2;
  501. else if((c1 & 0xf8) == 0xf0)
  502. n_bytes = 3;
  503. c1 &= mask[n_bytes];
  504. for(ix=0; ix<n_bytes; ix++)
  505. {
  506. c1 = (c1 << 6) + (*buf++ & 0x3f);
  507. }
  508. }
  509. *c = c1;
  510. return(n_bytes+1);
  511. }
  512. int utf8_in(int *c, const char *buf)
  513. {//=================================
  514. // Read a unicode characater from a UTF8 string
  515. // Returns the number of UTF8 bytes used.
  516. return(utf8_in2(c,buf,0));
  517. }
  518. char *strchr_w(const char *s, int c)
  519. {//=================================
  520. // return NULL for any non-ascii character
  521. if(c >= 0x80)
  522. return(NULL);
  523. return(strchr((char *)s,c)); // (char *) is needed for Borland compiler
  524. }
  525. int IsAllUpper(const char *word)
  526. {//=============================
  527. int c;
  528. while((*word != 0) && !isspace2(*word))
  529. {
  530. word += utf8_in(&c, word);
  531. if(!iswupper(c))
  532. return(0);
  533. }
  534. return(1);
  535. }
  536. static char *SpeakIndividualLetters(Translator *tr, char *word, char *phonemes, int spell_word)
  537. {//============================================================================================
  538. int posn = 0;
  539. int capitals = 0;
  540. int non_initial = 0;
  541. if(spell_word > 2)
  542. capitals = 2; // speak 'capital'
  543. if(spell_word > 1)
  544. capitals |= 4; // speak charater code for unknown letters
  545. while((*word != ' ') && (*word != 0))
  546. {
  547. word += TranslateLetter(tr, word, phonemes, capitals | non_initial);
  548. posn++;
  549. non_initial = 1;
  550. if(phonemes[0] == phonSWITCH)
  551. {
  552. // change to another language in order to translate this word
  553. strcpy(word_phonemes,phonemes);
  554. return(NULL);
  555. }
  556. }
  557. SetSpellingStress(tr,phonemes,spell_word,posn);
  558. return(word);
  559. } // end of SpeakIndividualLetters
  560. static int CheckDottedAbbrev(char *word1, WORD_TAB *wtab)
  561. {//=====================================================
  562. int wc;
  563. int count = 0;
  564. int nbytes;
  565. int ok;
  566. int ix;
  567. char *word;
  568. char *wbuf;
  569. char word_buf[80];
  570. word = word1;
  571. wbuf = word_buf;
  572. ix = 0;
  573. for(;;)
  574. {
  575. ok = 0;
  576. nbytes = utf8_in(&wc, word);
  577. if((word[nbytes] == ' ') && IsAlpha(wc))
  578. {
  579. if(word[nbytes+1] == '.')
  580. {
  581. if(word[nbytes+2] == ' ')
  582. ok = 1;
  583. else if(word[nbytes+2] =='\'')
  584. {
  585. nbytes += 2; // delete the final dot (eg. u.s.a.'s)
  586. ok = 2;
  587. }
  588. }
  589. else if((count > 0) && (word[nbytes] == ' '))
  590. ok = 2;
  591. }
  592. if(ok == 0)
  593. break;
  594. for(ix=0; ix < nbytes; ix++)
  595. *wbuf++ = word[ix];
  596. count++;
  597. if(ok == 2)
  598. {
  599. word += nbytes;
  600. break;
  601. }
  602. word += (nbytes + 3);
  603. }
  604. if(count > 1)
  605. {
  606. ix = wbuf - word_buf;
  607. memcpy(word1, word_buf, ix);
  608. while(&word1[ix] < word)
  609. word1[ix++] = ' ';
  610. dictionary_skipwords = (count - 1)*2;
  611. }
  612. return(count);
  613. } // end of CheckDottedAbbrev
  614. extern char *phondata_ptr;
  615. int ChangeEquivalentPhonemes(Translator *tr, int lang2, char *phonemes)
  616. {//====================================================================
  617. // tr: the original language
  618. // lang2: phoneme table number for the temporary language
  619. // phonemes: the phonemes to be replaced
  620. int ix;
  621. int len;
  622. char phon;
  623. char *p;
  624. unsigned char *pb;
  625. char *eqlist;
  626. char *p_out;
  627. char *p_in;
  628. int remove_stress = 0;
  629. char phonbuf[N_WORD_PHONEMES];
  630. // has a phoneme equivalence table been specified for thus language pair?
  631. if((ix = phoneme_tab_list[tr->phoneme_tab_ix].equivalence_tables) == 0)
  632. return(0);
  633. pb = (unsigned char *)&phondata_ptr[ix];
  634. for(;;)
  635. {
  636. if(pb[0] == 0)
  637. return(0); // table not found
  638. if(pb[0] == lang2)
  639. break;
  640. len = (pb[2] << 8) + pb[3]; // size of this table in words
  641. pb += (len * 4);
  642. }
  643. remove_stress = pb[1];
  644. if(option_phonemes == 2)
  645. {
  646. DecodePhonemes(phonemes, phonbuf);
  647. fprintf(f_trans,"(%s) %s -> (%s) ", phoneme_tab_list[lang2].name, phonbuf, phoneme_tab_list[tr->phoneme_tab_ix].name);
  648. }
  649. p_in = phonemes;
  650. eqlist = (char *)&pb[8];
  651. p_out = phonbuf;
  652. while((phon = *p_in++) != 0)
  653. {
  654. if(remove_stress && ((phon & 0xff) < phonSTRESS_PREV))
  655. continue; // remove stress marks
  656. // is there a translation for this phoneme code?
  657. p = eqlist;
  658. while(*p != 0)
  659. {
  660. len = strlen(&p[1]);
  661. if(*p == phon)
  662. {
  663. strcpy(p_out, &p[1]);
  664. p_out += len;
  665. break;
  666. }
  667. p += (len + 2);
  668. }
  669. if(*p == 0)
  670. {
  671. // no translation found
  672. *p_out++ = phon;
  673. }
  674. }
  675. *p_out = 0;
  676. if(remove_stress)
  677. {
  678. SetWordStress(tr, phonbuf, NULL, -1, 0);
  679. }
  680. strcpy(phonemes, phonbuf);
  681. if(option_phonemes == 2)
  682. {
  683. SelectPhonemeTable(tr->phoneme_tab_ix);
  684. DecodePhonemes(phonemes, phonbuf);
  685. fprintf(f_trans,"%s\n\n", phonbuf);
  686. }
  687. return(1);
  688. } // end of ChangeEquivalentPhonemes
  689. int TranslateWord(Translator *tr, char *word_start, int next_pause, WORD_TAB *wtab, char *word_out)
  690. {//==================================================================================================
  691. // word1 is terminated by space (0x20) character
  692. char *word1;
  693. int word_length;
  694. int ix;
  695. char *p;
  696. int pfix;
  697. int n_chars;
  698. unsigned int dictionary_flags[2];
  699. unsigned int dictionary_flags2[2];
  700. int end_type=0;
  701. int end_type1=0;
  702. int prefix_type=0;
  703. int prefix_stress;
  704. char *wordx;
  705. char phonemes[N_WORD_PHONEMES];
  706. char phonemes2[N_WORD_PHONEMES];
  707. char prefix_phonemes[N_WORD_PHONEMES];
  708. char unpron_phonemes[N_WORD_PHONEMES];
  709. char end_phonemes[N_WORD_PHONEMES];
  710. char end_phonemes2[N_WORD_PHONEMES];
  711. char word_copy[N_WORD_BYTES];
  712. char word_copy2[N_WORD_BYTES];
  713. int word_copy_length;
  714. char prefix_chars[0x3f + 2];
  715. int found=0;
  716. int end_flags;
  717. int c_temp; // save a character byte while we temporarily replace it with space
  718. int first_char;
  719. int last_char = 0;
  720. int add_plural_suffix = 0;
  721. int prefix_flags = 0;
  722. int more_suffixes;
  723. int confirm_prefix;
  724. int spell_word;
  725. int stress_bits;
  726. int emphasize_allcaps = 0;
  727. int wflags;
  728. int wmark;
  729. int was_unpronouncable = 0;
  730. WORD_TAB wtab_null[8];
  731. // translate these to get pronunciations of plural 's' suffix (different forms depending on
  732. // the preceding letter
  733. static char word_zz[4] = {0,'z','z',0};
  734. static char word_iz[4] = {0,'i','z',0};
  735. static char word_ss[4] = {0,'s','s',0};
  736. if(wtab == NULL)
  737. {
  738. memset(wtab_null, 0, sizeof(wtab_null));
  739. wtab = wtab_null;
  740. }
  741. wflags = wtab->flags;
  742. wmark = wtab->wmark;
  743. dictionary_flags[0] = 0;
  744. dictionary_flags[1] = 0;
  745. dictionary_flags2[0] = 0;
  746. dictionary_flags2[1] = 0;
  747. dictionary_skipwords = 0;
  748. phonemes[0] = 0;
  749. unpron_phonemes[0] = 0;
  750. prefix_phonemes[0] = 0;
  751. end_phonemes[0] = 0;
  752. if(tr->data_dictlist == NULL)
  753. {
  754. // dictionary is not loaded
  755. word_phonemes[0] = 0;
  756. return(0);
  757. }
  758. // count the length of the word
  759. word1 = word_start;
  760. if(*word1 == ' ') word1++; // possibly a dot was replaced by space: $dot
  761. wordx = word1;
  762. utf8_in(&first_char,wordx);
  763. word_length = 0;
  764. while((*wordx != 0) && (*wordx != ' '))
  765. {
  766. wordx += utf8_in(&last_char,wordx);
  767. word_length++;
  768. }
  769. word_copy_length = wordx - word_start;
  770. if(word_copy_length >= N_WORD_BYTES)
  771. word_copy_length = N_WORD_BYTES-1;
  772. memcpy(word_copy2, word_start, word_copy_length);
  773. spell_word = 0;
  774. if((word_length == 1) && (wflags & FLAG_TRANSLATOR2))
  775. {
  776. // retranslating a 1-character word using a different language, say its name
  777. utf8_in(&c_temp, wordx+1); // the next character
  778. if(!IsAlpha(c_temp) || (AlphabetFromChar(last_char) != AlphabetFromChar(c_temp)))
  779. spell_word = 1;
  780. }
  781. if(option_sayas == SAYAS_KEY)
  782. {
  783. if(word_length == 1)
  784. spell_word = 4;
  785. else
  786. {
  787. // is there a translation for this keyname ?
  788. word1--;
  789. *word1 = '_'; // prefix keyname with '_'
  790. found = LookupDictList(tr, &word1, phonemes, dictionary_flags, 0, wtab);
  791. }
  792. }
  793. // try an initial lookup in the dictionary list, we may find a pronunciation specified, or
  794. // we may just find some flags
  795. if(option_sayas & 0x10)
  796. {
  797. // SAYAS_CHAR, SAYAS_GYLPH, or SAYAS_SINGLE_CHAR
  798. spell_word = option_sayas & 0xf; // 2,3,4
  799. }
  800. else
  801. {
  802. if(!found)
  803. found = LookupDictList(tr, &word1, phonemes, dictionary_flags, FLAG_ALLOW_TEXTMODE, wtab); // the original word
  804. if((dictionary_flags[0] & (FLAG_ALLOW_DOT || FLAG_NEEDS_DOT)) && (wordx[1] == '.'))
  805. {
  806. wordx[1] = ' '; // remove a Dot after this word
  807. }
  808. if(dictionary_flags[0] & FLAG_TEXTMODE)
  809. {
  810. if(word_out != NULL)
  811. strcpy(word_out, word1);
  812. first_char = word1[0];
  813. stress_bits = dictionary_flags[0] & 0x7f;
  814. found = LookupDictList(tr, &word1, phonemes, dictionary_flags2, 0, wtab); // the text replacement
  815. if(dictionary_flags2[0]!=0)
  816. {
  817. dictionary_flags[0] = dictionary_flags2[0];
  818. dictionary_flags[1] = dictionary_flags2[1];
  819. if(stress_bits != 0)
  820. {
  821. // keep any stress information from the original word
  822. dictionary_flags[0] = (dictionary_flags[0] & ~0x7f) | stress_bits;
  823. }
  824. }
  825. }
  826. else if((found==0) && (dictionary_flags[0] & FLAG_SKIPWORDS) && !(dictionary_flags[0] & FLAG_ABBREV))
  827. {
  828. // grouped words, but no translation. Join the words with hyphens.
  829. wordx = word1;
  830. ix = 0;
  831. while(ix < dictionary_skipwords)
  832. {
  833. if(*wordx == ' ')
  834. {
  835. *wordx = '-';
  836. ix++;
  837. }
  838. wordx++;
  839. }
  840. }
  841. if((word_length == 1) && (dictionary_skipwords == 0))
  842. {
  843. // is this a series of single letters separated by dots?
  844. if(CheckDottedAbbrev(word1, wtab))
  845. {
  846. dictionary_flags[0] = 0;
  847. dictionary_flags[1] = 0;
  848. spell_word = 1;
  849. if(dictionary_skipwords)
  850. dictionary_flags[0] = FLAG_SKIPWORDS;
  851. }
  852. }
  853. // if textmode, LookupDictList() replaces word1 by the new text and returns found=0
  854. if(phonemes[0] == phonSWITCH)
  855. {
  856. // change to another language in order to translate this word
  857. strcpy(word_phonemes,phonemes);
  858. return(0);
  859. }
  860. if((wmark > 0) && (wmark < 8))
  861. {
  862. // the stressed syllable has been specified in the text (TESTING)
  863. dictionary_flags[0] = (dictionary_flags[0] & ~0xf) | wmark;
  864. }
  865. if(!found && (dictionary_flags[0] & FLAG_ABBREV))
  866. {
  867. // the word has $abbrev flag, but no pronunciation specified. Speak as individual letters
  868. spell_word = 1;
  869. }
  870. if(!found && iswdigit(first_char))
  871. {
  872. Lookup(tr,"_0lang",word_phonemes);
  873. if(word_phonemes[0] == phonSWITCH)
  874. return(0);
  875. if((tr->langopts.numbers2 & NUM2_ENGLISH_NUMERALS) && !(wtab->flags & FLAG_CHAR_REPLACED))
  876. {
  877. // for this language, speak English numerals (0-9) with the English voice
  878. sprintf(word_phonemes,"%c",phonSWITCH);
  879. return(0);
  880. }
  881. found = TranslateNumber(tr, word1, phonemes, dictionary_flags, wtab, 0);
  882. }
  883. if(!found && ((wflags & FLAG_UPPERS) != FLAG_FIRST_UPPER))
  884. {
  885. // either all upper or all lower case
  886. if((tr->langopts.numbers & NUM_ROMAN) || ((tr->langopts.numbers & NUM_ROMAN_CAPITALS) && (wflags & FLAG_ALL_UPPER)))
  887. {
  888. if((wflags & FLAG_LAST_WORD) || !(wtab[1].flags & FLAG_NOSPACE))
  889. {
  890. // don't use Roman number if this word is not separated from the next word (eg. "XLTest")
  891. if((found = TranslateRoman(tr, word1, phonemes, wtab)) != 0)
  892. dictionary_flags[0] |= FLAG_ABBREV; // prevent emphasis if capitals
  893. }
  894. }
  895. }
  896. if((wflags & FLAG_ALL_UPPER) && (word_length > 1)&& iswalpha(first_char))
  897. {
  898. if((option_tone_flags & OPTION_EMPHASIZE_ALLCAPS) && !(dictionary_flags[0] & FLAG_ABBREV))
  899. {
  900. // emphasize words which are in capitals
  901. emphasize_allcaps = FLAG_EMPHASIZED;
  902. }
  903. else if(!found && !(dictionary_flags[0] & FLAG_SKIPWORDS) && (word_length<4) && (tr->clause_lower_count > 3)
  904. && (tr->clause_upper_count <= tr->clause_lower_count))
  905. {
  906. // An upper case word in a lower case clause. This could be an abbreviation.
  907. spell_word = 1;
  908. }
  909. }
  910. }
  911. if(spell_word > 0)
  912. {
  913. // Speak as individual letters
  914. phonemes[0] = 0;
  915. end_type = 0;
  916. if(SpeakIndividualLetters(tr, word1, phonemes, spell_word) == NULL)
  917. {
  918. if(word_length > 1)
  919. return(FLAG_SPELLWORD); // a mixture of languages, retranslate as individual letters, separated by spaces
  920. if(phonemes[0] == phonSWITCH)
  921. {
  922. // problem with espeak -vbg "b.c.d.e.f"
  923. }
  924. return(0);
  925. }
  926. strcpy(word_phonemes, phonemes);
  927. if(wflags & FLAG_TRANSLATOR2)
  928. return(0);
  929. return(dictionary_flags[0] & FLAG_SKIPWORDS); // for "b.c.d"
  930. }
  931. else if(found == 0)
  932. {
  933. int posn;
  934. int non_initial;
  935. int length;
  936. // word's pronunciation is not given in the dictionary list, although
  937. // dictionary_flags may have ben set there
  938. posn = 0;
  939. non_initial = 0;
  940. length = 999;
  941. wordx = word1;
  942. while(((length < 3) && (length > 0))|| (word_length > 1 && Unpronouncable(tr, wordx, posn)))
  943. {
  944. // This word looks "unpronouncable", so speak letters individually until we
  945. // find a remainder that we can pronounce.
  946. was_unpronouncable = FLAG_WAS_UNPRONOUNCABLE;
  947. emphasize_allcaps = 0;
  948. if(wordx[0] == '\'')
  949. break;
  950. if(posn > 0)
  951. non_initial = 1;
  952. wordx += TranslateLetter(tr, wordx, unpron_phonemes, non_initial);
  953. posn++;
  954. if(unpron_phonemes[0] == phonSWITCH)
  955. {
  956. // change to another language in order to translate this word
  957. strcpy(word_phonemes,unpron_phonemes);
  958. if(strcmp(&unpron_phonemes[1],"en")==0)
  959. return(FLAG_SPELLWORD); // _^_en must have been set in TranslateLetter(), not *_rules which uses only _^_
  960. return(0);
  961. }
  962. #ifdef deleted
  963. p = &wordx[word_length-3]; // this looks wrong. Doesn't consider multi-byte chars.
  964. if(memcmp(p,"'s ",3) == 0)
  965. {
  966. // remove a 's suffix and pronounce this separately (not as an individual letter)
  967. add_plural_suffix = 1;
  968. p[0] = ' ';
  969. p[1] = ' ';
  970. last_char = p[-1];
  971. }
  972. #endif
  973. length=0;
  974. while(wordx[length] != ' ') length++;
  975. }
  976. SetSpellingStress(tr,unpron_phonemes,0,posn);
  977. // anything left ?
  978. if(*wordx != ' ')
  979. {
  980. if((unpron_phonemes[0] != 0) && (wordx[0] != '\''))
  981. {
  982. // letters which have been spoken individually from affecting the pronunciation of the pronuncable part
  983. wordx[-1] = ' ';
  984. }
  985. // Translate the stem
  986. end_type = TranslateRules(tr, wordx, phonemes, N_WORD_PHONEMES, end_phonemes, wflags, dictionary_flags);
  987. if(phonemes[0] == phonSWITCH)
  988. {
  989. // change to another language in order to translate this word
  990. strcpy(word_phonemes,phonemes);
  991. return(0);
  992. }
  993. #ifdef deleted
  994. // ?? allow $unpr while translating rules, not just on initial FLAG_UNPRON_TEST
  995. if(end_type & SUFX_UNPRON)
  996. {
  997. phonemes[0] = 0; // discard and retranslate as individual letters
  998. SpeakIndividualLetters(tr, wordx, phonemes, 0);
  999. strcpy(word_phonemes, phonemes);
  1000. return(0);
  1001. }
  1002. #endif
  1003. if((phonemes[0] == 0) && (end_phonemes[0] == 0))
  1004. {
  1005. int wc;
  1006. // characters not recognised, speak them individually
  1007. utf8_in(&wc, wordx);
  1008. if((word_length == 1) && IsAlpha(wc))
  1009. {
  1010. if((wordx = SpeakIndividualLetters(tr, wordx, phonemes, spell_word)) == NULL)
  1011. {
  1012. return(0);
  1013. }
  1014. strcpy(word_phonemes, phonemes);
  1015. return(0);
  1016. }
  1017. }
  1018. c_temp = wordx[-1];
  1019. found = 0;
  1020. confirm_prefix = 1;
  1021. for (int loopcount = 0; (loopcount < 50) && (end_type & SUFX_P); loopcount++)
  1022. {
  1023. // Found a standard prefix, remove it and retranslate
  1024. // loopcount guards against an endless loop
  1025. if(confirm_prefix && !(end_type & SUFX_B))
  1026. {
  1027. int end2;
  1028. char end_phonemes2[N_WORD_PHONEMES];
  1029. // remove any standard suffix and confirm that the prefix is still recognised
  1030. phonemes2[0] = 0;
  1031. end2 = TranslateRules(tr, wordx, phonemes2, N_WORD_PHONEMES, end_phonemes2, wflags|FLAG_NO_PREFIX|FLAG_NO_TRACE, dictionary_flags);
  1032. if(end2)
  1033. {
  1034. RemoveEnding(tr, wordx, end2, word_copy);
  1035. end_type = TranslateRules(tr, wordx, phonemes, N_WORD_PHONEMES, end_phonemes, wflags|FLAG_NO_TRACE, dictionary_flags);
  1036. memcpy(wordx,word_copy,strlen(word_copy));
  1037. if((end_type & SUFX_P) == 0)
  1038. {
  1039. // after removing the suffix, the prefix is no longer recognised.
  1040. // Keep the suffix, but don't use the prefix
  1041. end_type = end2;
  1042. strcpy(phonemes,phonemes2);
  1043. strcpy(end_phonemes,end_phonemes2);
  1044. if(option_phonemes == 2)
  1045. {
  1046. DecodePhonemes(end_phonemes,end_phonemes2);
  1047. fprintf(f_trans," suffix [%s]\n\n",end_phonemes2);
  1048. }
  1049. }
  1050. confirm_prefix = 0;
  1051. continue;
  1052. }
  1053. }
  1054. prefix_type = end_type;
  1055. if(prefix_type & SUFX_V)
  1056. {
  1057. tr->expect_verb = 1; // use the verb form of the word
  1058. }
  1059. wordx[-1] = c_temp;
  1060. if((prefix_type & SUFX_B) == 0)
  1061. {
  1062. for(ix=(prefix_type & 0xf); ix>0; ix--) // num. of characters to remove
  1063. {
  1064. wordx++;
  1065. while((*wordx & 0xc0) == 0x80) wordx++; // for multibyte characters
  1066. }
  1067. }
  1068. else
  1069. {
  1070. pfix = 1;
  1071. prefix_chars[0] = 0;
  1072. n_chars = prefix_type & 0x3f;
  1073. for(ix=0; ix < n_chars; ix++) // num. of bytes to remove
  1074. {
  1075. prefix_chars[pfix++] = *wordx++;
  1076. if((prefix_type & SUFX_B) && (ix == (n_chars-1)))
  1077. {
  1078. prefix_chars[pfix-1] = 0; // discard the last character of the prefix, this is the separator character
  1079. }
  1080. }
  1081. prefix_chars[pfix] = 0;
  1082. }
  1083. c_temp = wordx[-1];
  1084. wordx[-1] = ' ';
  1085. confirm_prefix = 1;
  1086. if(prefix_type & SUFX_B)
  1087. {
  1088. // SUFX_B is used for Turkish, tr_rules contains " ' (Pb"
  1089. // examine the prefix part
  1090. char *wordpf;
  1091. char prefix_phonemes2[12];
  1092. strncpy0(prefix_phonemes2,end_phonemes,sizeof(prefix_phonemes2));
  1093. wordpf = &prefix_chars[1];
  1094. strcpy(prefix_phonemes, phonemes);
  1095. // look for stress marker or $abbrev
  1096. found = LookupDictList(tr, &wordpf, phonemes, dictionary_flags, 0, wtab);
  1097. if(found)
  1098. {
  1099. strcpy(prefix_phonemes, phonemes);
  1100. }
  1101. if(dictionary_flags[0] & FLAG_ABBREV)
  1102. {
  1103. prefix_phonemes[0] = 0;
  1104. SpeakIndividualLetters(tr, wordpf, prefix_phonemes, 1);
  1105. }
  1106. }
  1107. else
  1108. {
  1109. strcat(prefix_phonemes,end_phonemes);
  1110. }
  1111. end_phonemes[0] = 0;
  1112. end_type = 0;
  1113. found = LookupDictList(tr, &wordx, phonemes, dictionary_flags2, SUFX_P, wtab); // without prefix
  1114. if(dictionary_flags[0]==0)
  1115. {
  1116. dictionary_flags[0] = dictionary_flags2[0];
  1117. dictionary_flags[1] = dictionary_flags2[1];
  1118. }
  1119. else
  1120. prefix_flags = 1;
  1121. if(found == 0)
  1122. {
  1123. end_type = TranslateRules(tr, wordx, phonemes, N_WORD_PHONEMES, end_phonemes, 0, dictionary_flags);
  1124. if(phonemes[0] == phonSWITCH)
  1125. {
  1126. // change to another language in order to translate this word
  1127. wordx[-1] = c_temp;
  1128. strcpy(word_phonemes,phonemes);
  1129. return(0);
  1130. }
  1131. }
  1132. }
  1133. if((end_type != 0) && !(end_type & SUFX_P))
  1134. {
  1135. end_type1 = end_type;
  1136. strcpy(phonemes2,phonemes);
  1137. // The word has a standard ending, re-translate without this ending
  1138. end_flags = RemoveEnding(tr, wordx, end_type, word_copy);
  1139. more_suffixes = 1;
  1140. while(more_suffixes)
  1141. {
  1142. more_suffixes = 0;
  1143. phonemes[0] = 0;
  1144. if(prefix_phonemes[0] != 0)
  1145. {
  1146. // lookup the stem without the prefix removed
  1147. wordx[-1] = c_temp;
  1148. found = LookupDictList(tr, &word1, phonemes, dictionary_flags2, end_flags, wtab); // include prefix, but not suffix
  1149. wordx[-1] = ' ';
  1150. if(phonemes[0] == phonSWITCH)
  1151. {
  1152. // change to another language in order to translate this word
  1153. memcpy(wordx,word_copy,strlen(word_copy));
  1154. strcpy(word_phonemes,phonemes);
  1155. return(0);
  1156. }
  1157. if(dictionary_flags[0]==0)
  1158. {
  1159. dictionary_flags[0] = dictionary_flags2[0];
  1160. dictionary_flags[1] = dictionary_flags2[1];
  1161. }
  1162. if(found)
  1163. prefix_phonemes[0] = 0; // matched whole word, don't need prefix now
  1164. if((found==0) && (dictionary_flags2[0] != 0))
  1165. prefix_flags = 1;
  1166. }
  1167. if(found == 0)
  1168. {
  1169. found = LookupDictList(tr, &wordx, phonemes, dictionary_flags2, end_flags, wtab); // without prefix and suffix
  1170. if(phonemes[0] == phonSWITCH)
  1171. {
  1172. // change to another language in order to translate this word
  1173. memcpy(wordx,word_copy,strlen(word_copy));
  1174. strcpy(word_phonemes,phonemes);
  1175. return(0);
  1176. }
  1177. if(dictionary_flags2[0] & FLAG_ABBREV)
  1178. {
  1179. // Removing the suffix leaves a word which should be spoken as individual letters
  1180. // Not yet implemented
  1181. }
  1182. if(dictionary_flags[0]==0)
  1183. {
  1184. dictionary_flags[0] = dictionary_flags2[0];
  1185. dictionary_flags[1] = dictionary_flags2[1];
  1186. }
  1187. }
  1188. if(found == 0)
  1189. {
  1190. if(end_type & SUFX_Q)
  1191. {
  1192. // don't retranslate, use the original lookup result
  1193. strcpy(phonemes,phonemes2);
  1194. }
  1195. else
  1196. {
  1197. if(end_flags & FLAG_SUFX)
  1198. wflags |= FLAG_SUFFIX_REMOVED;
  1199. if(end_type & SUFX_A)
  1200. wflags |= FLAG_SUFFIX_VOWEL;
  1201. if(end_type & SUFX_M)
  1202. {
  1203. // allow more suffixes before this suffix
  1204. strcpy(end_phonemes2, end_phonemes);
  1205. end_type = TranslateRules(tr, wordx, phonemes, N_WORD_PHONEMES, end_phonemes, wflags, dictionary_flags);
  1206. strcat(end_phonemes, end_phonemes2); // add the phonemes for the previous suffixes after this one
  1207. if((end_type != 0) && !(end_type & SUFX_P))
  1208. {
  1209. // there is another suffix
  1210. end_flags = RemoveEnding(tr, wordx, end_type, NULL);
  1211. more_suffixes = 1;
  1212. }
  1213. }
  1214. else
  1215. {
  1216. // don't remove any previous suffix
  1217. TranslateRules(tr, wordx, phonemes, N_WORD_PHONEMES, NULL, wflags, dictionary_flags);
  1218. end_type = 0;
  1219. }
  1220. if(phonemes[0] == phonSWITCH)
  1221. {
  1222. // change to another language in order to translate this word
  1223. strcpy(word_phonemes,phonemes);
  1224. memcpy(wordx,word_copy,strlen(word_copy));
  1225. wordx[-1] = c_temp;
  1226. return(0);
  1227. }
  1228. }
  1229. }
  1230. }
  1231. if((end_type1 & SUFX_T) == 0)
  1232. {
  1233. // the default is to add the suffix and then determine the word's stress pattern
  1234. AppendPhonemes(tr,phonemes, N_WORD_PHONEMES, end_phonemes);
  1235. end_phonemes[0] = 0;
  1236. }
  1237. memcpy(wordx,word_copy,strlen(word_copy));
  1238. }
  1239. wordx[-1] = c_temp;
  1240. }
  1241. }
  1242. if((add_plural_suffix) || (wflags & FLAG_HAS_PLURAL))
  1243. {
  1244. // s or 's suffix, append [s], [z] or [Iz] depending on previous letter
  1245. if(last_char == 'f')
  1246. TranslateRules(tr, &word_ss[1], phonemes, N_WORD_PHONEMES, NULL, 0, NULL);
  1247. else if((last_char==0) || (strchr_w("hsx",last_char)==NULL))
  1248. TranslateRules(tr, &word_zz[1], phonemes, N_WORD_PHONEMES, NULL, 0, NULL);
  1249. else
  1250. TranslateRules(tr, &word_iz[1], phonemes, N_WORD_PHONEMES, NULL, 0, NULL);
  1251. }
  1252. wflags |= emphasize_allcaps;
  1253. /* determine stress pattern for this word */
  1254. /******************************************/
  1255. prefix_stress = 0;
  1256. for(p = prefix_phonemes; *p != 0; p++)
  1257. {
  1258. if((*p == phonSTRESS_P) || (*p == phonSTRESS_P2))
  1259. {
  1260. prefix_stress = *p;
  1261. }
  1262. }
  1263. if(prefix_flags || (prefix_stress != 0))
  1264. {
  1265. if((tr->langopts.param[LOPT_PREFIXES]) || (prefix_type & SUFX_T))
  1266. {
  1267. char *p;
  1268. // German, keep a secondary stress on the stem
  1269. SetWordStress(tr, phonemes, dictionary_flags, 3, 0);
  1270. // reduce all but the first primary stress
  1271. ix=0;
  1272. for(p=prefix_phonemes; *p != 0; p++)
  1273. {
  1274. if(*p == phonSTRESS_P)
  1275. {
  1276. if(ix==0)
  1277. ix=1;
  1278. else
  1279. *p = phonSTRESS_3;
  1280. }
  1281. }
  1282. #ifdef PLATFORM_WINDOWS
  1283. sprintf(word_phonemes, "%s%s%s", unpron_phonemes, prefix_phonemes, phonemes);
  1284. #else
  1285. snprintf(word_phonemes, sizeof(word_phonemes), "%s%s%s", unpron_phonemes, prefix_phonemes, phonemes);
  1286. #endif
  1287. word_phonemes[N_WORD_PHONEMES-1] = 0;
  1288. SetWordStress(tr, word_phonemes, dictionary_flags, -1, 0);
  1289. }
  1290. else
  1291. {
  1292. // stress position affects the whole word, including prefix
  1293. #ifdef PLATFORM_WINDOWS
  1294. sprintf(word_phonemes, "%s%s%s", unpron_phonemes, prefix_phonemes, phonemes);
  1295. #else
  1296. snprintf(word_phonemes, sizeof(word_phonemes), "%s%s%s", unpron_phonemes, prefix_phonemes, phonemes);
  1297. #endif
  1298. word_phonemes[N_WORD_PHONEMES-1] = 0;
  1299. SetWordStress(tr, word_phonemes, dictionary_flags, -1, 0);
  1300. }
  1301. }
  1302. else
  1303. {
  1304. if(prefix_phonemes[0] == 0)
  1305. SetWordStress(tr, phonemes, dictionary_flags, -1, 0);
  1306. else
  1307. SetWordStress(tr, phonemes, dictionary_flags, -1, 0);
  1308. #ifdef PLATFORM_WINDOWS
  1309. sprintf(word_phonemes, "%s%s%s", unpron_phonemes, prefix_phonemes, phonemes);
  1310. #else
  1311. snprintf(word_phonemes, sizeof(word_phonemes), "%s%s%s", unpron_phonemes, prefix_phonemes, phonemes);
  1312. #endif
  1313. word_phonemes[N_WORD_PHONEMES-1] = 0;
  1314. }
  1315. if(end_phonemes[0] != 0)
  1316. {
  1317. // a suffix had the SUFX_T option set, add the suffix after the stress pattern has been determined
  1318. ix = strlen(word_phonemes);
  1319. end_phonemes[N_WORD_PHONEMES-1-ix] = 0; // ensure no buffer overflow
  1320. strcpy(&word_phonemes[ix], end_phonemes);
  1321. }
  1322. if(wflags & FLAG_LAST_WORD)
  1323. {
  1324. // don't use $brk pause before the last word of a sentence
  1325. // (but allow it for emphasis, see below
  1326. dictionary_flags[0] &= ~FLAG_PAUSE1;
  1327. }
  1328. #ifdef deleted
  1329. // but it causes problems if these are not a person name
  1330. if(tr->translator_name == L('h','u'))
  1331. {
  1332. // lang=hu, If the last two words of a clause have capital letters (eg. a person name), unstress the last word.
  1333. if((wflags & (FLAG_LAST_WORD | FLAG_FIRST_UPPER | FLAG_ALL_UPPER | FLAG_FIRST_WORD)) == (FLAG_LAST_WORD | FLAG_FIRST_UPPER))
  1334. {
  1335. if(((wtab[-1].flags & (FLAG_FIRST_UPPER | FLAG_ALL_UPPER)) == FLAG_FIRST_UPPER) && ((tr->clause_terminator != 0x90028) || (wflags & FLAG_HAS_DOT)))
  1336. {
  1337. ChangeWordStress(tr,word_phonemes,3);
  1338. }
  1339. }
  1340. }
  1341. #endif
  1342. if((wflags & FLAG_HYPHEN) && (tr->langopts.stress_flags & S_HYPEN_UNSTRESS))
  1343. {
  1344. ChangeWordStress(tr,word_phonemes,3);
  1345. }
  1346. else if(wflags & FLAG_EMPHASIZED2)
  1347. {
  1348. // A word is indicated in the source text as stressed
  1349. // Give it stress level 6 (for the intonation module)
  1350. ChangeWordStress(tr,word_phonemes,6);
  1351. if(wflags & FLAG_EMPHASIZED)
  1352. dictionary_flags[0] |= FLAG_PAUSE1; // precede by short pause
  1353. }
  1354. else if(wtab[dictionary_skipwords].flags & FLAG_LAST_WORD)
  1355. {
  1356. // the word has attribute to stress or unstress when at end of clause
  1357. if(dictionary_flags[0] & (FLAG_STRESS_END | FLAG_STRESS_END2))
  1358. ChangeWordStress(tr,word_phonemes,4);
  1359. else if((dictionary_flags[0] & FLAG_UNSTRESS_END) && (any_stressed_words))
  1360. ChangeWordStress(tr,word_phonemes,3);
  1361. }
  1362. // dictionary flags for this word give a clue about which alternative pronunciations of
  1363. // following words to use.
  1364. if(end_type1 & SUFX_F)
  1365. {
  1366. // expect a verb form, with or without -s suffix
  1367. tr->expect_verb = 2;
  1368. tr->expect_verb_s = 2;
  1369. }
  1370. if(dictionary_flags[1] & FLAG_PASTF)
  1371. {
  1372. /* expect perfect tense in next two words */
  1373. tr->expect_past = 3;
  1374. tr->expect_verb = 0;
  1375. tr->expect_noun = 0;
  1376. }
  1377. else if(dictionary_flags[1] & FLAG_VERBF)
  1378. {
  1379. /* expect a verb in the next word */
  1380. tr->expect_verb = 2;
  1381. tr->expect_verb_s = 0; /* verb won't have -s suffix */
  1382. tr->expect_noun = 0;
  1383. }
  1384. else if(dictionary_flags[1] & FLAG_VERBSF)
  1385. {
  1386. // expect a verb, must have a -s suffix
  1387. tr->expect_verb = 0;
  1388. tr->expect_verb_s = 2;
  1389. tr->expect_past = 0;
  1390. tr->expect_noun = 0;
  1391. }
  1392. else if(dictionary_flags[1] & FLAG_NOUNF)
  1393. {
  1394. /* not expecting a verb next */
  1395. tr->expect_noun = 2;
  1396. tr->expect_verb = 0;
  1397. tr->expect_verb_s = 0;
  1398. tr->expect_past = 0;
  1399. }
  1400. if((wordx[0] != 0) && (!(dictionary_flags[1] & FLAG_VERB_EXT)))
  1401. {
  1402. if(tr->expect_verb > 0)
  1403. tr->expect_verb--;
  1404. if(tr->expect_verb_s > 0)
  1405. tr->expect_verb_s--;
  1406. if(tr->expect_noun >0)
  1407. tr->expect_noun--;
  1408. if(tr->expect_past > 0)
  1409. tr->expect_past--;
  1410. }
  1411. if((word_length == 1) && (tr->translator_name == L('e','n')) && iswalpha(first_char) && (first_char != 'i'))
  1412. {
  1413. // English Specific !!!!
  1414. // any single letter before a dot is an abbreviation, except 'I'
  1415. dictionary_flags[0] |= FLAG_ALLOW_DOT;
  1416. }
  1417. if((tr->langopts.param[LOPT_ALT] & 2) && ((dictionary_flags[0] & (FLAG_ALT_TRANS | FLAG_ALT2_TRANS)) != 0))
  1418. {
  1419. ApplySpecialAttribute2(tr,word_phonemes,dictionary_flags[0]);
  1420. }
  1421. dictionary_flags[0] |= was_unpronouncable;
  1422. memcpy(word_start, word_copy2, word_copy_length);
  1423. return(dictionary_flags[0]);
  1424. } // end of TranslateWord
  1425. static void SetPlist2(PHONEME_LIST2 *p, unsigned char phcode)
  1426. {//==========================================================
  1427. p->phcode = phcode;
  1428. p->stresslevel = 0;
  1429. p->tone_ph = 0;
  1430. p->synthflags = embedded_flag;
  1431. p->sourceix = 0;
  1432. embedded_flag = 0;
  1433. }
  1434. static int CountSyllables(unsigned char *phonemes)
  1435. {//===============================================
  1436. int count = 0;
  1437. int phon;
  1438. while((phon = *phonemes++) != 0)
  1439. {
  1440. if(phoneme_tab[phon]->type == phVOWEL)
  1441. count++;
  1442. }
  1443. return(count);
  1444. }
  1445. void Word_EmbeddedCmd()
  1446. {//====================
  1447. // Process embedded commands for emphasis, sayas, and break
  1448. int embedded_cmd;
  1449. int value;
  1450. do
  1451. {
  1452. embedded_cmd = embedded_list[embedded_read++];
  1453. value = embedded_cmd >> 8;
  1454. switch(embedded_cmd & 0x1f)
  1455. {
  1456. case EMBED_Y:
  1457. option_sayas = value;
  1458. break;
  1459. case EMBED_F:
  1460. option_emphasis = value;
  1461. break;
  1462. case EMBED_B:
  1463. // break command
  1464. if(value == 0)
  1465. pre_pause = 0; // break=none
  1466. else
  1467. pre_pause += value;
  1468. break;
  1469. }
  1470. } while(((embedded_cmd & 0x80) == 0) && (embedded_read < embedded_ix));
  1471. } // end of Word_EmbeddedCmd
  1472. int SetTranslator2(const char *new_language)
  1473. {//=========================================
  1474. // Set translator2 to a second language
  1475. int new_phoneme_tab;
  1476. if((new_phoneme_tab = SelectPhonemeTableName(new_language)) >= 0)
  1477. {
  1478. if((translator2 != NULL) && (strcmp(new_language,translator2_language) != 0))
  1479. {
  1480. // we already have an alternative translator, but not for the required language, delete it
  1481. DeleteTranslator(translator2);
  1482. translator2 = NULL;
  1483. }
  1484. if(translator2 == NULL)
  1485. {
  1486. translator2 = SelectTranslator(new_language);
  1487. strcpy(translator2_language,new_language);
  1488. if(LoadDictionary(translator2, new_language, 0) != 0)
  1489. {
  1490. SelectPhonemeTable(voice->phoneme_tab_ix); // revert to original phoneme table
  1491. new_phoneme_tab = -1;
  1492. translator2_language[0] = 0;
  1493. }
  1494. translator2->phoneme_tab_ix = new_phoneme_tab;
  1495. }
  1496. }
  1497. translator2->phonemes_repeat[0] = 0;
  1498. return(new_phoneme_tab);
  1499. } // end of SetTranslator2
  1500. static int TranslateWord2(Translator *tr, char *word, WORD_TAB *wtab, int pre_pause, int next_pause)
  1501. {//=================================================================================================
  1502. int flags=0;
  1503. int stress;
  1504. int next_stress;
  1505. int next_tone=0;
  1506. unsigned char *p;
  1507. int srcix;
  1508. int found_dict_flag;
  1509. unsigned char ph_code;
  1510. PHONEME_LIST2 *plist2;
  1511. PHONEME_TAB *ph;
  1512. int max_stress;
  1513. int max_stress_ix=0;
  1514. int prev_vowel = -1;
  1515. int pitch_raised = 0;
  1516. int switch_phonemes = -1;
  1517. int first_phoneme = 1;
  1518. int source_ix;
  1519. int len;
  1520. int ix;
  1521. int sylimit; // max. number of syllables in a word to be combined with a preceding preposition
  1522. const char *new_language;
  1523. unsigned char bad_phoneme[4];
  1524. int word_flags;
  1525. int word_copy_len;
  1526. char word_copy[N_WORD_BYTES+1];
  1527. char word_replaced[N_WORD_BYTES+1];
  1528. char old_dictionary_name[40];
  1529. if((f_logespeak != NULL) && (logging_type & 8))
  1530. {
  1531. fprintf(f_logespeak,"WORD: flg=%.5x len=%d '",wtab->flags,wtab->length);
  1532. for(ix=0; ix<40; ix++)
  1533. {
  1534. if(word[ix]==0) break;
  1535. fputc(word[ix], f_logespeak);
  1536. }
  1537. fprintf(f_logespeak,"'\n");
  1538. }
  1539. len = wtab->length;
  1540. if(len > 31) len = 31;
  1541. source_ix = (wtab->sourceix & 0x7ff) | (len << 11); // bits 0-10 sourceix, bits 11-15 word length
  1542. word_flags = wtab[0].flags;
  1543. if(word_flags & FLAG_EMBEDDED)
  1544. {
  1545. wtab[0].flags &= ~FLAG_EMBEDDED; // clear it in case we call TranslateWord2() again for the same word
  1546. embedded_flag = SFLAG_EMBEDDED;
  1547. Word_EmbeddedCmd();
  1548. }
  1549. if((word[0] == 0) || (word_flags & FLAG_DELETE_WORD))
  1550. {
  1551. // nothing to translate. Add a dummy phoneme to carry any embedded commands
  1552. if(embedded_flag)
  1553. {
  1554. ph_list2[n_ph_list2].phcode = phonEND_WORD;
  1555. ph_list2[n_ph_list2].stresslevel = 0;
  1556. ph_list2[n_ph_list2].wordstress = 0;
  1557. ph_list2[n_ph_list2].tone_ph = 0;
  1558. ph_list2[n_ph_list2].synthflags = embedded_flag;
  1559. ph_list2[n_ph_list2].sourceix = 0;
  1560. n_ph_list2++;
  1561. embedded_flag = 0;
  1562. }
  1563. word_phonemes[0] = 0;
  1564. return(0);
  1565. }
  1566. // after a $pause word attribute, ignore a $pause attribute on the next two words
  1567. if(tr->prepause_timeout > 0)
  1568. tr->prepause_timeout--;
  1569. if((option_sayas & 0xf0) == 0x10)
  1570. {
  1571. if(!(word_flags & FLAG_FIRST_WORD))
  1572. {
  1573. // SAYAS_CHARS, SAYAS_GLYPHS, or SAYAS_SINGLECHARS. Pause between each word.
  1574. pre_pause += 4;
  1575. }
  1576. }
  1577. if(word_flags & FLAG_FIRST_UPPER)
  1578. {
  1579. if((option_capitals > 2) && (embedded_ix < N_EMBEDDED_LIST-6))
  1580. {
  1581. // indicate capital letter by raising pitch
  1582. if(embedded_flag)
  1583. embedded_list[embedded_ix-1] &= ~0x80; // already embedded command before this word, remove terminator
  1584. if((pitch_raised = option_capitals) == 3)
  1585. pitch_raised = 20; // default pitch raise for capitals
  1586. embedded_list[embedded_ix++] = EMBED_P+0x40+0x80 + (pitch_raised << 8); // raise pitch
  1587. embedded_flag = SFLAG_EMBEDDED;
  1588. }
  1589. }
  1590. p = (unsigned char *)word_phonemes;
  1591. if(word_flags & FLAG_PHONEMES)
  1592. {
  1593. // The input is in phoneme mnemonics, not language text
  1594. int c1;
  1595. char lang_name[12];
  1596. if(memcmp(word,"_^_",3)==0)
  1597. {
  1598. // switch languages
  1599. word+=3;
  1600. for(ix=0;;)
  1601. {
  1602. c1 = *word++;
  1603. if((c1==' ') || (c1==0))
  1604. break;
  1605. lang_name[ix++] = tolower(c1);
  1606. }
  1607. lang_name[ix] = 0;
  1608. if((ix = LookupPhonemeTable(lang_name)) > 0)
  1609. {
  1610. SelectPhonemeTable(ix);
  1611. word_phonemes[0] = phonSWITCH;
  1612. word_phonemes[1] = ix;
  1613. word_phonemes[2] = 0;
  1614. }
  1615. }
  1616. else
  1617. {
  1618. EncodePhonemes(word,word_phonemes,bad_phoneme);
  1619. }
  1620. flags = FLAG_FOUND;
  1621. }
  1622. else
  1623. {
  1624. int c2;
  1625. ix = 0;
  1626. while(((c2 = word_copy[ix] = word[ix]) != ' ') && (c2 != 0) && (ix < N_WORD_BYTES)) ix++;
  1627. word_copy_len = ix;
  1628. word_replaced[2] = 0;
  1629. flags = TranslateWord(translator, word, next_pause, wtab, &word_replaced[2]);
  1630. if(flags & FLAG_SPELLWORD)
  1631. {
  1632. // re-translate the word as individual letters, separated by spaces
  1633. memcpy(word, word_copy, word_copy_len);
  1634. return(flags);
  1635. }
  1636. if((flags & FLAG_COMBINE) && !(wtab[1].flags & FLAG_PHONEMES))
  1637. {
  1638. char *p2;
  1639. int ok = 1;
  1640. unsigned int flags2[2];
  1641. int c_word2;
  1642. char ph_buf[N_WORD_PHONEMES];
  1643. flags2[0] = 0;
  1644. sylimit = tr->langopts.param[LOPT_COMBINE_WORDS];
  1645. // LANG=cs,sk
  1646. // combine a preposition with the following word
  1647. p2 = word;
  1648. while(*p2 != ' ') p2++;
  1649. utf8_in(&c_word2, p2+1); // first character of the next word;
  1650. if(!iswalpha(c_word2))
  1651. {
  1652. ok =0;
  1653. }
  1654. if(ok != 0)
  1655. {
  1656. strcpy(ph_buf,word_phonemes);
  1657. flags2[0] = TranslateWord(translator, p2+1, 0, wtab+1, NULL);
  1658. if((flags2[0] & FLAG_WAS_UNPRONOUNCABLE) || (word_phonemes[0] == phonSWITCH))
  1659. ok = 0;
  1660. if(sylimit & 0x100)
  1661. {
  1662. // only if the second word has $alt attribute
  1663. if((flags2[0] & FLAG_ALT_TRANS) == 0)
  1664. {
  1665. ok = 0;
  1666. }
  1667. }
  1668. if((sylimit & 0x200) && ((wtab+1)->flags & FLAG_LAST_WORD))
  1669. {
  1670. // not if the next word is end-of-sentence
  1671. ok = 0;
  1672. }
  1673. if(ok == 0)
  1674. {
  1675. strcpy(word_phonemes,ph_buf);
  1676. }
  1677. }
  1678. if(ok)
  1679. {
  1680. *p2 = '-'; // replace next space by hyphen
  1681. wtab[0].flags &= ~FLAG_ALL_UPPER; // prevent it being considered an abbreviation
  1682. flags = TranslateWord(translator, word, next_pause, wtab, NULL); // translate the combined word
  1683. if((sylimit > 0) && (CountSyllables(p) > (sylimit & 0x1f)))
  1684. {
  1685. // revert to separate words
  1686. *p2 = ' ';
  1687. flags = TranslateWord(translator, word, next_pause, wtab, NULL);
  1688. }
  1689. else
  1690. {
  1691. if(flags == 0)
  1692. flags = flags2[0]; // no flags for the combined word, so use flags from the second word eg. lang-hu "nem december 7-e"
  1693. flags |= FLAG_SKIPWORDS;
  1694. dictionary_skipwords = 1;
  1695. }
  1696. }
  1697. }
  1698. if(p[0]==phonSWITCH)
  1699. {
  1700. int switch_attempt;
  1701. strcpy(old_dictionary_name, dictionary_name);
  1702. for(switch_attempt=0; switch_attempt < 2; switch_attempt++)
  1703. {
  1704. // this word uses a different language
  1705. memcpy(word, word_copy, word_copy_len);
  1706. new_language = (char *)(&p[1]);
  1707. if(new_language[0]==0)
  1708. new_language = "en";
  1709. switch_phonemes = SetTranslator2(new_language);
  1710. if(switch_phonemes >= 0)
  1711. {
  1712. // re-translate the word using the new translator
  1713. wtab[0].flags |= FLAG_TRANSLATOR2;
  1714. if(word_replaced[2] != 0)
  1715. {
  1716. word_replaced[0] = 0; // byte before the start of the word
  1717. word_replaced[1] = ' ';
  1718. flags = TranslateWord(translator2, &word_replaced[1], next_pause, wtab, NULL);
  1719. }
  1720. else
  1721. flags = TranslateWord(translator2, word, next_pause, wtab, &word_replaced[2]);
  1722. }
  1723. if(p[0] != phonSWITCH)
  1724. break;
  1725. }
  1726. // strcpy((char *)p,translator2->word_phonemes);
  1727. if(p[0] == phonSWITCH)
  1728. return(FLAG_SPELLWORD);
  1729. if(switch_phonemes < 0)
  1730. {
  1731. // language code is not recognised or 2nd translator won't translate it
  1732. p[0] = phonSCHWA; // just say something
  1733. p[1] = phonSCHWA;
  1734. p[2] = 0;
  1735. }
  1736. // ?? Option to convert from language2 phonemes to the equivalent language1 phonemes
  1737. // ?? Option to set the word-stress according to language1 rules eg. lang=fr)
  1738. if(ChangeEquivalentPhonemes(tr, switch_phonemes, (char *)p))
  1739. {
  1740. // Phonemes have been converted from the foreign language to the native language
  1741. switch_phonemes = -1;
  1742. }
  1743. if(switch_phonemes == -1)
  1744. {
  1745. strcpy(dictionary_name, old_dictionary_name);
  1746. SelectPhonemeTable(voice->phoneme_tab_ix);
  1747. // leave switch_phonemes set, but use the original phoneme table number.
  1748. // This will suppress LOPT_REGRESSIVE_VOICING
  1749. switch_phonemes = voice->phoneme_tab_ix; // original phoneme table
  1750. }
  1751. }
  1752. if(!(word_flags & FLAG_HYPHEN))
  1753. {
  1754. if(flags & FLAG_PAUSE1)
  1755. {
  1756. if(pre_pause < 1)
  1757. pre_pause = 1;
  1758. }
  1759. if((flags & FLAG_PREPAUSE) && !(word_flags && (FLAG_LAST_WORD | FLAG_FIRST_WORD)) && !(wtab[-1].flags & FLAG_FIRST_WORD) && (tr->prepause_timeout == 0))
  1760. {
  1761. // the word is marked in the dictionary list with $pause
  1762. if(pre_pause < 4) pre_pause = 4;
  1763. tr->prepause_timeout = 3;
  1764. }
  1765. }
  1766. if((option_emphasis >= 3) && (pre_pause < 1))
  1767. pre_pause = 1;
  1768. }
  1769. plist2 = &ph_list2[n_ph_list2];
  1770. stress = 0;
  1771. next_stress = 1;
  1772. srcix = 0;
  1773. max_stress = -1;
  1774. found_dict_flag = 0;
  1775. if((flags & FLAG_FOUND) && !(flags & FLAG_TEXTMODE))
  1776. found_dict_flag = SFLAG_DICTIONARY;
  1777. while((pre_pause > 0) && (n_ph_list2 < N_PHONEME_LIST-4))
  1778. {
  1779. // add pause phonemes here. Either because of punctuation (brackets or quotes) in the
  1780. // text, or because the word is marked in the dictionary lookup as a conjunction
  1781. if(pre_pause > 1)
  1782. {
  1783. SetPlist2(&ph_list2[n_ph_list2++],phonPAUSE);
  1784. pre_pause -= 2;
  1785. }
  1786. else
  1787. {
  1788. SetPlist2(&ph_list2[n_ph_list2++],phonPAUSE_NOLINK);
  1789. pre_pause--;
  1790. }
  1791. tr->end_stressed_vowel = 0; // forget about the previous word
  1792. tr->prev_dict_flags[0] = 0;
  1793. tr->prev_dict_flags[1] = 0;
  1794. }
  1795. if((option_capitals==1) && (word_flags & FLAG_FIRST_UPPER))
  1796. {
  1797. SetPlist2(&ph_list2[n_ph_list2++],phonPAUSE_SHORT);
  1798. SetPlist2(&ph_list2[n_ph_list2++],phonCAPITAL);
  1799. if((word_flags & FLAG_ALL_UPPER) && IsAlpha(word[1]))
  1800. {
  1801. // word > 1 letter and all capitals
  1802. SetPlist2(&ph_list2[n_ph_list2++],phonPAUSE_SHORT);
  1803. SetPlist2(&ph_list2[n_ph_list2++],phonCAPITAL);
  1804. }
  1805. }
  1806. if(switch_phonemes >= 0)
  1807. {
  1808. if((p[0] == phonPAUSE) && (p[1] == phonSWITCH))
  1809. {
  1810. // the new word starts with a phoneme table switch, so there's no need to switch before it.
  1811. if(ph_list2[n_ph_list2-1].phcode == phonSWITCH)
  1812. {
  1813. //previous phoneme is also a phonSWITCH, delete it
  1814. n_ph_list2--;
  1815. }
  1816. }
  1817. else
  1818. {
  1819. // this word uses a different phoneme table
  1820. if(ph_list2[n_ph_list2-1].phcode == phonSWITCH)
  1821. {
  1822. //previous phoneme is also a phonSWITCH, just change its phoneme table number
  1823. n_ph_list2--;
  1824. }
  1825. else
  1826. {
  1827. SetPlist2(&ph_list2[n_ph_list2],phonSWITCH);
  1828. }
  1829. ph_list2[n_ph_list2++].tone_ph = switch_phonemes; // temporary phoneme table number
  1830. }
  1831. }
  1832. // remove initial pause from a word if it follows a hyphen
  1833. if((word_flags & FLAG_HYPHEN) && (phoneme_tab[*p]->type == phPAUSE))
  1834. p++;
  1835. if((p[0] == 0) && (embedded_flag))
  1836. {
  1837. // no phonemes. Insert a very short pause to carry an embedded command
  1838. p[0] = phonPAUSE_VSHORT;
  1839. p[1] = 0;
  1840. }
  1841. while(((ph_code = *p++) != 0) && (n_ph_list2 < N_PHONEME_LIST-4))
  1842. {
  1843. if(ph_code == 255)
  1844. continue; // unknown phoneme
  1845. // Add the phonemes to the first stage phoneme list (ph_list2)
  1846. ph = phoneme_tab[ph_code];
  1847. if(ph_code == phonSWITCH)
  1848. {
  1849. ph_list2[n_ph_list2].phcode = ph_code;
  1850. ph_list2[n_ph_list2].sourceix = 0;
  1851. ph_list2[n_ph_list2].synthflags = 0;
  1852. ph_list2[n_ph_list2++].tone_ph = *p;
  1853. SelectPhonemeTable(*p);
  1854. p++;
  1855. }
  1856. else if(ph->type == phSTRESS)
  1857. {
  1858. // don't add stress phonemes codes to the list, but give their stress
  1859. // value to the next vowel phoneme
  1860. // std_length is used to hold stress number or (if >10) a tone number for a tone language
  1861. if(ph->program == 0)
  1862. next_stress = ph->std_length;
  1863. else
  1864. {
  1865. // for tone languages, the tone number for a syllable follows the vowel
  1866. if(prev_vowel >= 0)
  1867. {
  1868. ph_list2[prev_vowel].tone_ph = ph_code;
  1869. }
  1870. else
  1871. {
  1872. next_tone = ph_code; // no previous vowel, apply to the next vowel
  1873. }
  1874. }
  1875. }
  1876. else if(ph_code == phonSYLLABIC)
  1877. {
  1878. // mark the previous phoneme as a syllabic consonant
  1879. prev_vowel = n_ph_list2-1;
  1880. ph_list2[prev_vowel].synthflags |= SFLAG_SYLLABLE;
  1881. ph_list2[prev_vowel].stresslevel = next_stress;
  1882. }
  1883. else if(ph_code == phonLENGTHEN)
  1884. {
  1885. ph_list2[n_ph_list2-1].synthflags |= SFLAG_LENGTHEN;
  1886. }
  1887. else if(ph_code == phonEND_WORD)
  1888. {
  1889. // a || symbol in a phoneme string was used to indicate a word boundary
  1890. // Don't add this phoneme to the list, but make sure the next phoneme has
  1891. // a newword indication
  1892. srcix = source_ix+1;
  1893. }
  1894. else if(ph_code == phonX1)
  1895. {
  1896. // a language specific action
  1897. if(tr->langopts.param[LOPT_IT_DOUBLING])
  1898. {
  1899. flags |= FLAG_DOUBLING;
  1900. }
  1901. }
  1902. else
  1903. {
  1904. ph_list2[n_ph_list2].phcode = ph_code;
  1905. ph_list2[n_ph_list2].tone_ph = 0;
  1906. ph_list2[n_ph_list2].synthflags = embedded_flag | found_dict_flag;
  1907. embedded_flag = 0;
  1908. ph_list2[n_ph_list2].sourceix = srcix;
  1909. srcix = 0;
  1910. if(ph->type == phVOWEL)
  1911. {
  1912. stress = next_stress;
  1913. next_stress = 1; // default is 'unstressed'
  1914. if(stress >= 4)
  1915. {
  1916. any_stressed_words = 1;
  1917. }
  1918. if((prev_vowel >= 0) && (n_ph_list2-1) != prev_vowel)
  1919. ph_list2[n_ph_list2-1].stresslevel = stress; // set stress for previous consonant
  1920. ph_list2[n_ph_list2].synthflags |= SFLAG_SYLLABLE;
  1921. prev_vowel = n_ph_list2;
  1922. if(stress > max_stress)
  1923. {
  1924. max_stress = stress;
  1925. max_stress_ix = n_ph_list2;
  1926. }
  1927. if(next_tone != 0)
  1928. {
  1929. ph_list2[n_ph_list2].tone_ph = next_tone;
  1930. next_tone=0;
  1931. }
  1932. }
  1933. else
  1934. {
  1935. if(first_phoneme && tr->langopts.param[LOPT_IT_DOUBLING])
  1936. {
  1937. if(((tr->prev_dict_flags[0] & FLAG_DOUBLING) && (tr->langopts.param[LOPT_IT_DOUBLING] & 1)) ||
  1938. (tr->end_stressed_vowel && (tr->langopts.param[LOPT_IT_DOUBLING] & 2)))
  1939. {
  1940. // italian, double the initial consonant if the previous word ends with a
  1941. // stressed vowel, or is marked with a flag
  1942. ph_list2[n_ph_list2].synthflags |= SFLAG_LENGTHEN;
  1943. }
  1944. }
  1945. }
  1946. ph_list2[n_ph_list2].stresslevel = stress;
  1947. n_ph_list2++;
  1948. first_phoneme = 0;
  1949. }
  1950. }
  1951. if(word_flags & FLAG_COMMA_AFTER)
  1952. {
  1953. SetPlist2(&ph_list2[n_ph_list2++],phonPAUSE_CLAUSE);
  1954. }
  1955. // don't set new-word if there is a hyphen before it
  1956. if((word_flags & FLAG_HYPHEN) == 0)
  1957. {
  1958. plist2->sourceix = source_ix;
  1959. }
  1960. tr->end_stressed_vowel = 0;
  1961. if((stress >= 4) && (phoneme_tab[ph_list2[n_ph_list2-1].phcode]->type == phVOWEL))
  1962. {
  1963. tr->end_stressed_vowel = 1; // word ends with a stressed vowel
  1964. }
  1965. if(switch_phonemes >= 0)
  1966. {
  1967. // this word uses a different phoneme table, now switch back
  1968. strcpy(dictionary_name, old_dictionary_name);
  1969. SelectPhonemeTable(voice->phoneme_tab_ix);
  1970. SetPlist2(&ph_list2[n_ph_list2],phonSWITCH);
  1971. ph_list2[n_ph_list2++].tone_ph = voice->phoneme_tab_ix; // original phoneme table number
  1972. }
  1973. if(pitch_raised > 0)
  1974. {
  1975. embedded_list[embedded_ix++] = EMBED_P+0x60+0x80 + (pitch_raised << 8); // lower pitch
  1976. SetPlist2(&ph_list2[n_ph_list2],phonPAUSE_SHORT);
  1977. ph_list2[n_ph_list2++].synthflags = SFLAG_EMBEDDED;
  1978. }
  1979. if(flags & FLAG_STRESS_END2)
  1980. {
  1981. // this's word's stress could be increased later
  1982. ph_list2[max_stress_ix].synthflags |= SFLAG_PROMOTE_STRESS;
  1983. }
  1984. tr->prev_dict_flags[0] = flags;
  1985. return(flags);
  1986. } // end of TranslateWord2
  1987. static int EmbeddedCommand(unsigned int &source_index)
  1988. {//===================================================
  1989. // An embedded command to change the pitch, volume, etc.
  1990. // returns number of commands added to embedded_list
  1991. // pitch,speed,amplitude,expression,reverb,tone,voice,sayas
  1992. const char *commands = "PSARHTIVYMUBF";
  1993. int value = -1;
  1994. int sign = 0;
  1995. unsigned char c;
  1996. char *p;
  1997. int cmd;
  1998. c = source[source_index];
  1999. if(c == '+')
  2000. {
  2001. sign = 0x40;
  2002. source_index++;
  2003. }
  2004. else if(c == '-')
  2005. {
  2006. sign = 0x60;
  2007. source_index++;
  2008. }
  2009. if(IsDigit09(source[source_index]))
  2010. {
  2011. value = atoi(&source[source_index]);
  2012. while(IsDigit09(source[source_index]))
  2013. source_index++;
  2014. }
  2015. c = source[source_index++];
  2016. if(embedded_ix >= (N_EMBEDDED_LIST - 2))
  2017. return(0); // list is full
  2018. if((p = strchr_w(commands,c)) == NULL)
  2019. return(0);
  2020. cmd = (p - commands)+1;
  2021. if(value == -1)
  2022. {
  2023. value = embedded_default[cmd];
  2024. sign = 0;
  2025. }
  2026. if(cmd == EMBED_Y)
  2027. {
  2028. option_sayas2 = value;
  2029. count_sayas_digits = 0;
  2030. }
  2031. if(cmd == EMBED_F)
  2032. {
  2033. if(value >= 3)
  2034. word_emphasis = FLAG_EMPHASIZED;
  2035. else
  2036. word_emphasis = 0;
  2037. }
  2038. embedded_list[embedded_ix++] = cmd + sign + (value << 8);
  2039. return(1);
  2040. } // end of EmbeddedCommand
  2041. static int SubstituteChar(Translator *tr, unsigned int c, unsigned int next_in, int *insert, int *wordflags)
  2042. {//=========================================================================================
  2043. int ix;
  2044. unsigned int word;
  2045. unsigned int new_c, c2, c_lower;
  2046. int upper_case = 0;
  2047. static int ignore_next = 0;
  2048. const unsigned int *replace_chars;
  2049. if(ignore_next)
  2050. {
  2051. ignore_next = 0;
  2052. return(8);
  2053. }
  2054. if(c == 0) return(0);
  2055. if((replace_chars = tr->langopts.replace_chars) == NULL)
  2056. return(c);
  2057. // there is a list of character codes to be substituted with alternative codes
  2058. if(iswupper(c_lower = c))
  2059. {
  2060. c_lower = towlower(c);
  2061. upper_case = 1;
  2062. }
  2063. new_c = 0;
  2064. for(ix=0; (word = replace_chars[ix]) != 0; ix+=2)
  2065. {
  2066. if(c_lower == (word & 0xffff))
  2067. {
  2068. if((word >> 16) == 0)
  2069. {
  2070. new_c = replace_chars[ix+1];
  2071. break;
  2072. }
  2073. if((word >> 16) == (unsigned int)towlower(next_in))
  2074. {
  2075. new_c = replace_chars[ix+1];
  2076. ignore_next = 1;
  2077. break;
  2078. }
  2079. }
  2080. }
  2081. if(new_c == 0)
  2082. return(c); // no substitution
  2083. if(new_c & 0xffe00000)
  2084. {
  2085. // there is a second character to be inserted
  2086. // don't convert the case of the second character unless the next letter is also upper case
  2087. c2 = new_c >> 16;
  2088. if(upper_case && iswupper(next_in))
  2089. c2 = towupper(c2);
  2090. *insert = c2;
  2091. new_c &= 0xffff;
  2092. }
  2093. if(upper_case)
  2094. new_c = towupper(new_c);
  2095. *wordflags |= FLAG_CHAR_REPLACED;
  2096. return(new_c);
  2097. }
  2098. static int TranslateChar(Translator *tr, char *ptr, int prev_in, unsigned int c, unsigned int next_in, int *insert, int *wordflags)
  2099. {//================================================================================================================
  2100. // To allow language specific examination and replacement of characters
  2101. int code;
  2102. int initial;
  2103. int medial;
  2104. int final;
  2105. int next2;
  2106. static const unsigned char hangul_compatibility[0x34] = {
  2107. 0, 0x00,0x01,0xaa,0x02,0xac,0xad,0x03,
  2108. 0x04,0x05,0xb0,0xb1,0xb2,0xb3,0xb4,0xb4,
  2109. 0xb6,0x06,0x07,0x08,0xb9,0x09,0x0a,0xbc,
  2110. 0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12,0x61,
  2111. 0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
  2112. 0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,
  2113. 0x72,0x73,0x74,0x75
  2114. };
  2115. // check for Korean Hangul letters
  2116. if(((code = c - 0xac00) >= 0) && (c <= 0xd7af))
  2117. {
  2118. // break a syllable hangul into 2 or 3 individual jamo
  2119. initial = (code/28)/21;
  2120. medial = (code/28) % 21;
  2121. final = code % 28;
  2122. if(initial == 11)
  2123. {
  2124. // null initial
  2125. c = medial + 0x1161;
  2126. if(final > 0)
  2127. *insert = final + 0x11a7;
  2128. }
  2129. else
  2130. {
  2131. // extact the initial and insert the remainder with a null initial
  2132. c = initial + 0x1100;
  2133. *insert = (11*28*21) + (medial*28) + final + 0xac00;
  2134. }
  2135. return(c);
  2136. }
  2137. else if(((code = c - 0x3130) >= 0) && (code < 0x34))
  2138. {
  2139. // Hangul compatibility jamo
  2140. return(hangul_compatibility[code] + 0x1100);
  2141. }
  2142. switch(tr->translator_name)
  2143. {
  2144. case L('a','f'):
  2145. case L('n','l'):
  2146. // look for 'n and replace by a special character (unicode: schwa)
  2147. if(!iswalpha(prev_in))
  2148. {
  2149. utf8_in(&next2, &ptr[1]);
  2150. if((c == '\'') && IsSpace(next2))
  2151. {
  2152. if((next_in == 'n') && (tr->translator_name == L('a','f')))
  2153. {
  2154. // n preceded by either apostrophe or U2019 "right single quotation mark"
  2155. ptr[0] = ' '; // delete the n
  2156. return(0x0259); // replace ' by unicode schwa character
  2157. }
  2158. if((next_in == 'n') || (next_in == 't'))
  2159. {
  2160. // Dutch, [@n] and [@t]
  2161. return(0x0259); // replace ' by unicode schwa character
  2162. }
  2163. }
  2164. }
  2165. break;
  2166. }
  2167. return(SubstituteChar(tr, c, next_in, insert, wordflags));
  2168. }
  2169. static const char *UCase_ga[] = {"bp","bhf","dt","gc","hA","mb","nd","ng","ts","tA","nA",NULL};
  2170. int UpperCaseInWord(Translator *tr, char *word, int c)
  2171. {//=====================================================
  2172. int ix;
  2173. int len;
  2174. const char *p;
  2175. if(tr->translator_name == L('g','a'))
  2176. {
  2177. // Irish
  2178. for(ix=0; ; ix++)
  2179. {
  2180. if((p = UCase_ga[ix]) == NULL)
  2181. break;
  2182. len = strlen(p);
  2183. if((word[-len]==' ') && (memcmp(&word[-len+1], p, len-1) == 0))
  2184. {
  2185. if((c == p[len-1]) || ((p[len-1]=='A') && IsVowel(tr, c)))
  2186. return(1);
  2187. }
  2188. }
  2189. }
  2190. return(0);
  2191. }
  2192. void *TranslateClause(Translator *tr, FILE *f_text, const void *vp_input, int *tone_out, char **voice_change)
  2193. {//==========================================================================================================
  2194. int ix;
  2195. int c;
  2196. int cc;
  2197. unsigned int source_index=0;
  2198. unsigned int prev_source_index=0;
  2199. int source_index_word=0;
  2200. int prev_in;
  2201. int prev_out=' ';
  2202. int prev_out2;
  2203. int prev_in_save=0;
  2204. int next_in;
  2205. int next_in_nbytes;
  2206. int char_inserted=0;
  2207. int clause_pause;
  2208. int pre_pause_add=0;
  2209. int word_mark = 0;
  2210. int all_upper_case=FLAG_ALL_UPPER;
  2211. int finished;
  2212. int single_quoted;
  2213. int phoneme_mode = 0;
  2214. int dict_flags = 0; // returned from dictionary lookup
  2215. int word_flags; // set here
  2216. int next_word_flags;
  2217. int embedded_count = 0;
  2218. int letter_count = 0;
  2219. int space_inserted = 0;
  2220. int syllable_marked = 0;
  2221. int decimal_sep_count = 0;
  2222. char *word;
  2223. char *p;
  2224. int j, k;
  2225. int n_digits;
  2226. int charix_top=0;
  2227. short charix[N_TR_SOURCE+4];
  2228. WORD_TAB words[N_CLAUSE_WORDS];
  2229. static char voice_change_name[40];
  2230. int word_count=0; // index into words
  2231. char sbuf[N_TR_SOURCE];
  2232. int terminator;
  2233. int tone;
  2234. int tone2;
  2235. if(tr==NULL)
  2236. {
  2237. return(NULL);
  2238. }
  2239. p_textinput = (unsigned char *)vp_input;
  2240. p_wchar_input = (wchar_t *)vp_input;
  2241. embedded_ix = 0;
  2242. embedded_read = 0;
  2243. pre_pause = 0;
  2244. any_stressed_words = 0;
  2245. if((clause_start_char = count_characters) < 0)
  2246. clause_start_char = 0;
  2247. clause_start_word = count_words + 1;
  2248. for(ix=0; ix<N_TR_SOURCE; ix++)
  2249. charix[ix] = 0;
  2250. terminator = ReadClause(tr, f_text, source, charix, &charix_top, N_TR_SOURCE, &tone2, voice_change_name);
  2251. if((f_logespeak != NULL) && (logging_type & 4))
  2252. {
  2253. fprintf(f_logespeak,"CLAUSE %x:\n",terminator);
  2254. for(p=source; *p != 0; p++)
  2255. fputc(*p, f_logespeak);
  2256. fprintf(f_logespeak,"ENDCLAUSE\n");
  2257. fflush(f_logespeak);
  2258. }
  2259. p = source;
  2260. charix[charix_top+1] = 0;
  2261. charix[charix_top+2] = 0x7fff;
  2262. charix[charix_top+3] = 0;
  2263. clause_pause = (terminator & 0xfff) * 10; // mS
  2264. tone = (terminator >> 12) & 0x7;
  2265. if(tone2 != 0)
  2266. {
  2267. // override the tone type
  2268. tone = tone2;
  2269. }
  2270. for(p=source; *p != 0; p++)
  2271. {
  2272. if(!isspace2(*p))
  2273. {
  2274. break;
  2275. }
  2276. }
  2277. if(*p == 0)
  2278. {
  2279. // No characters except spaces. This is not a sentence.
  2280. // Don't add this pause, just make up the previous pause to this value;
  2281. clause_pause -= max_clause_pause;
  2282. if(clause_pause < 0)
  2283. clause_pause = 0;
  2284. terminator &= ~CLAUSE_BIT_SENTENCE; // clear sentence bit
  2285. max_clause_pause += clause_pause;
  2286. }
  2287. else
  2288. {
  2289. max_clause_pause = clause_pause;
  2290. }
  2291. tr->clause_terminator = terminator;
  2292. if(new_sentence)
  2293. {
  2294. count_sentences++;
  2295. if(skip_sentences > 0)
  2296. {
  2297. skip_sentences--;
  2298. if(skip_sentences == 0)
  2299. skipping_text = 0;
  2300. }
  2301. }
  2302. memset(&ph_list2[0],0,sizeof(ph_list2[0]));
  2303. ph_list2[0].phcode = phonPAUSE_SHORT;
  2304. n_ph_list2 = 1;
  2305. tr->prev_last_stress = 0;
  2306. tr->prepause_timeout = 0;
  2307. tr->expect_verb=0;
  2308. tr->expect_noun=0;
  2309. tr->expect_past=0;
  2310. tr->expect_verb_s=0;
  2311. tr->phonemes_repeat_count = 0;
  2312. tr->end_stressed_vowel=0;
  2313. tr->prev_dict_flags[0] = 0;
  2314. tr->prev_dict_flags[1] = 0;
  2315. word_count = 0;
  2316. single_quoted = 0;
  2317. word_flags = 0;
  2318. next_word_flags = 0;
  2319. sbuf[0] = 0;
  2320. sbuf[1] = ' ';
  2321. sbuf[2] = ' ';
  2322. ix = 3;
  2323. prev_in = ' ';
  2324. words[0].start = ix;
  2325. words[0].flags = 0;
  2326. finished = 0;
  2327. for(j=0; charix[j]<=0; j++);
  2328. words[0].sourceix = charix[j];
  2329. k = 0;
  2330. while(charix[j] != 0)
  2331. {
  2332. // count the number of characters (excluding multibyte continuation bytes)
  2333. if(charix[j++] != -1)
  2334. k++;
  2335. }
  2336. words[0].length = k;
  2337. while(!finished && (ix < (int)sizeof(sbuf))&& (n_ph_list2 < N_PHONEME_LIST-4))
  2338. {
  2339. prev_out2 = prev_out;
  2340. utf8_in2(&prev_out,&sbuf[ix-1],1); // prev_out = sbuf[ix-1];
  2341. if(tr->langopts.tone_numbers && IsDigit09(prev_out) && IsAlpha(prev_out2))
  2342. {
  2343. // tone numbers can be part of a word, consider them as alphabetic
  2344. prev_out = 'a';
  2345. }
  2346. if(prev_in_save != 0)
  2347. {
  2348. prev_in = prev_in_save;
  2349. prev_in_save = 0;
  2350. }
  2351. else if(source_index > 0)
  2352. {
  2353. utf8_in2(&prev_in,&source[source_index-1],1); // prev_in = source[source_index-1];
  2354. }
  2355. prev_source_index = source_index;
  2356. if(char_inserted)
  2357. {
  2358. c = char_inserted;
  2359. char_inserted = 0;
  2360. }
  2361. else
  2362. {
  2363. source_index += utf8_in(&cc,&source[source_index]); // cc = source[source_index++];
  2364. c = cc;
  2365. }
  2366. next_in_nbytes = utf8_in(&next_in,&source[source_index]);
  2367. if(c == 0)
  2368. {
  2369. finished = 1;
  2370. c = ' ';
  2371. }
  2372. if((c == CTRL_EMBEDDED) || (c == ctrl_embedded))
  2373. {
  2374. // start of embedded command in the text
  2375. int srcix = source_index-1;
  2376. if(prev_in != ' ')
  2377. {
  2378. c = ' ';
  2379. prev_in_save = c;
  2380. source_index--;
  2381. }
  2382. else
  2383. {
  2384. embedded_count += EmbeddedCommand(source_index);
  2385. prev_in_save = prev_in;
  2386. // replace the embedded command by spaces
  2387. memset(&source[srcix],' ',source_index-srcix);
  2388. source_index = srcix;
  2389. continue;
  2390. }
  2391. }
  2392. if((option_sayas2 == SAYAS_KEY) && (c != ' '))
  2393. {
  2394. if((prev_in == ' ') && (next_in == ' '))
  2395. option_sayas2 = SAYAS_SINGLE_CHARS; // single character, speak its name
  2396. c = towlower2(c);
  2397. }
  2398. if(phoneme_mode)
  2399. {
  2400. all_upper_case = FLAG_PHONEMES;
  2401. if((c == ']') && (next_in == ']'))
  2402. {
  2403. phoneme_mode = 0;
  2404. source_index++;
  2405. c = ' ';
  2406. }
  2407. }
  2408. else if((option_sayas2 & 0xf0) == SAYAS_DIGITS)
  2409. {
  2410. if(iswdigit(c))
  2411. {
  2412. count_sayas_digits++;
  2413. if(count_sayas_digits > (option_sayas2 & 0xf))
  2414. {
  2415. // break after the specified number of digits
  2416. c = ' ';
  2417. space_inserted = 1;
  2418. count_sayas_digits = 0;
  2419. }
  2420. }
  2421. else
  2422. {
  2423. count_sayas_digits = 0;
  2424. if(iswdigit(prev_out))
  2425. {
  2426. c = ' ';
  2427. space_inserted = 1;
  2428. }
  2429. }
  2430. }
  2431. else if((option_sayas2 & 0x10) == 0)
  2432. {
  2433. // speak as words
  2434. #ifdef deleted
  2435. if((c == '/') && (tr->langopts.testing & 2) && IsDigit09(next_in) && IsAlpha(prev_out))
  2436. {
  2437. // TESTING, explicit indication of stressed syllable by /2 after the word
  2438. word_mark = next_in-'0';
  2439. source_index++;
  2440. c = ' ';
  2441. }
  2442. #endif
  2443. if((c == 0x92) || (c == 0xb4) || (c == 0x2019) || (c == 0x2032))
  2444. c = '\''; // 'microsoft' quote or sexed closing single quote, or prime - possibly used as apostrophe
  2445. if(((c == 0x2018) || (c == '?')) && IsAlpha(prev_out) && IsAlpha(next_in))
  2446. {
  2447. // ? between two letters may be a smart-quote replaced by ?
  2448. c = '\'';
  2449. }
  2450. if(c == CHAR_EMPHASIS)
  2451. {
  2452. // this character is a marker that the previous word is the focus of the clause
  2453. c = ' ';
  2454. word_flags |= FLAG_FOCUS;
  2455. }
  2456. if(c == CHAR_COMMA_BREAK)
  2457. {
  2458. c = ' ';
  2459. word_flags |= FLAG_COMMA_AFTER;
  2460. }
  2461. c = TranslateChar(tr, &source[source_index], prev_in,c, next_in, &char_inserted, &word_flags); // optional language specific function
  2462. if(c == 8)
  2463. continue; // ignore this character
  2464. if(char_inserted)
  2465. next_in = char_inserted;
  2466. // allow certain punctuation within a word (usually only apostrophe)
  2467. if(!IsAlpha(c) && !IsSpace(c) && (wcschr(tr->punct_within_word,c) == 0))
  2468. {
  2469. if(IsAlpha(prev_out))
  2470. {
  2471. if(tr->langopts.tone_numbers && IsDigit09(c) && !IsDigit09(next_in))
  2472. {
  2473. // allow a tone number as part of the word
  2474. }
  2475. else
  2476. {
  2477. c = ' '; // ensure we have an end-of-word terminator
  2478. space_inserted = 1;
  2479. }
  2480. }
  2481. }
  2482. if(iswdigit(prev_out))
  2483. {
  2484. if(!iswdigit(c) && (c != '.') && (c != ',') && (c != ' '))
  2485. {
  2486. c = ' '; // terminate digit string with a space
  2487. space_inserted = 1;
  2488. }
  2489. }
  2490. else
  2491. {
  2492. if(prev_in != ',')
  2493. {
  2494. decimal_sep_count = 0;
  2495. }
  2496. }
  2497. if(c == '[')
  2498. {
  2499. if((next_in == '\002') || ((next_in == '[') && option_phoneme_input))
  2500. {
  2501. // "[\002" is used internally to start phoneme mode
  2502. phoneme_mode = FLAG_PHONEMES;
  2503. source_index++;
  2504. continue;
  2505. }
  2506. }
  2507. if(IsAlpha(c))
  2508. {
  2509. if(!IsAlpha(prev_out) || (tr->langopts.ideographs && ((c > 0x3040) || (prev_out > 0x3040))))
  2510. {
  2511. if(wcschr(tr->punct_within_word,prev_out) == 0)
  2512. letter_count = 0; // don't reset count for an apostrophy within a word
  2513. if((prev_out != ' ') && (wcschr(tr->punct_within_word,prev_out) == 0))
  2514. {
  2515. // start of word, insert space if not one there already
  2516. c = ' ';
  2517. space_inserted = 1;
  2518. if(!IsBracket(prev_out)) // ?? perhaps only set FLAG_NOSPACE for . - / (hyphenated words, URLs, etc)
  2519. {
  2520. next_word_flags |= FLAG_NOSPACE;
  2521. }
  2522. }
  2523. else
  2524. {
  2525. if(iswupper(c))
  2526. word_flags |= FLAG_FIRST_UPPER;
  2527. if((prev_out == ' ') && iswdigit(sbuf[ix-2]) && !iswdigit(prev_in))
  2528. {
  2529. // word, following a number, but with a space between
  2530. // Add an extra space, to distinguish "2 a" from "2a"
  2531. sbuf[ix++] = ' ';
  2532. words[word_count].start++;
  2533. }
  2534. }
  2535. }
  2536. letter_count++;
  2537. if(tr->letter_bits_offset > 0)
  2538. {
  2539. if(((c < 0x250) && (prev_out >= tr->letter_bits_offset)) ||
  2540. ((c >= tr->letter_bits_offset) && (letter_count > 1) && (prev_out < 0x250)))
  2541. {
  2542. // Don't mix native and Latin characters in the same word
  2543. // Break into separate words
  2544. c = ' ';
  2545. space_inserted = 1;
  2546. word_flags |= FLAG_HYPHEN_AFTER;
  2547. next_word_flags |= FLAG_HYPHEN;
  2548. }
  2549. }
  2550. if(iswupper(c))
  2551. {
  2552. c = towlower2(c);
  2553. if((j = tr->langopts.param[LOPT_CAPS_IN_WORD]) > 0)
  2554. {
  2555. if((j == 2) && (syllable_marked == 0))
  2556. {
  2557. char_inserted = c;
  2558. c = 0x2c8; // stress marker
  2559. syllable_marked = 1;
  2560. }
  2561. }
  2562. else
  2563. {
  2564. if((iswlower(prev_in)) && (prev_in != 0xba)) // Windows thinks masc.ordinal (0xba) is lower-case
  2565. {
  2566. // lower case followed by upper case in a word
  2567. if(UpperCaseInWord(tr, &sbuf[ix], c) == 1)
  2568. {
  2569. // convert to lower case and continue
  2570. c = towlower2(c);
  2571. }
  2572. else
  2573. {
  2574. c = ' '; // lower case followed by upper case, treat as new word
  2575. space_inserted = 1;
  2576. prev_in_save = c;
  2577. // next_word_flags |= FLAG_NOSPACE; // problem: prevents FLAG_HAS_DOT being set
  2578. }
  2579. }
  2580. else if((c != ' ') && iswupper(prev_in) && iswlower(next_in))
  2581. {
  2582. int next2_in;
  2583. utf8_in(&next2_in,&source[source_index + next_in_nbytes]);
  2584. if(IsAlpha(next2_in))
  2585. {
  2586. // changing from upper to lower case, start new word at the last uppercase, if 3 or more letters
  2587. c = ' ';
  2588. space_inserted = 1;
  2589. prev_in_save = c;
  2590. next_word_flags |= FLAG_NOSPACE;
  2591. }
  2592. }
  2593. }
  2594. }
  2595. else
  2596. {
  2597. if((all_upper_case) && (letter_count > 2))
  2598. {
  2599. if((c == 's') && (next_in==' '))
  2600. {
  2601. c = ' ';
  2602. all_upper_case |= FLAG_HAS_PLURAL;
  2603. if(sbuf[ix-1] == '\'')
  2604. sbuf[ix-1] = ' ';
  2605. }
  2606. else
  2607. all_upper_case = 0; // current word contains lower case letters, not "'s"
  2608. }
  2609. else
  2610. all_upper_case = 0;
  2611. }
  2612. }
  2613. else if(c=='-')
  2614. {
  2615. if(!IsSpace(prev_in) && IsAlpha(next_in))
  2616. {
  2617. if(prev_out != ' ')
  2618. {
  2619. // previous 'word' not yet ended (not alpha or numeric), start new word now.
  2620. c = ' ';
  2621. space_inserted = 1;
  2622. }
  2623. else
  2624. {
  2625. // '-' between two letters is a hyphen, treat as a space
  2626. word_flags |= FLAG_HYPHEN;
  2627. if(word_count > 0)
  2628. words[word_count-1].flags |= FLAG_HYPHEN_AFTER;
  2629. c = ' ';
  2630. }
  2631. }
  2632. else if((prev_in==' ') && (next_in==' '))
  2633. {
  2634. // ' - ' dash between two spaces, treat as pause
  2635. c = ' ';
  2636. pre_pause_add = 4;
  2637. }
  2638. else if(next_in=='-')
  2639. {
  2640. // double hyphen, treat as pause
  2641. source_index++;
  2642. c = ' ';
  2643. pre_pause_add = 4;
  2644. }
  2645. else if((prev_out == ' ') && IsAlpha(sbuf[ix-2]) && !IsAlpha(prev_in))
  2646. {
  2647. // insert extra space between a word + space + hyphen, to distinguish 'a -2' from 'a-2'
  2648. sbuf[ix++] = ' ';
  2649. words[word_count].start++;
  2650. }
  2651. }
  2652. else if(c == '.')
  2653. {
  2654. if(prev_out == '.')
  2655. {
  2656. // multiple dots, separate by spaces. Note >3 dots has been replaced by elipsis
  2657. c = ' ';
  2658. space_inserted = 1;
  2659. }
  2660. else if((word_count > 0) && !(words[word_count-1].flags & FLAG_NOSPACE) && IsAlpha(prev_in))
  2661. {
  2662. // dot after a word, with space following, probably an abbreviation
  2663. words[word_count-1].flags |= FLAG_HAS_DOT;
  2664. if(IsSpace(next_in) || (next_in == '-'))
  2665. c = ' '; // remove the dot if it's followed by a space or hyphen, so that it's not pronounced
  2666. }
  2667. }
  2668. else if(c == '\'')
  2669. {
  2670. if(((prev_in == '.') || iswalnum(prev_in)) && IsAlpha(next_in))
  2671. {
  2672. // between two letters, or in an abbreviation (eg. u.s.a.'s). Consider the apostrophe as part of the word
  2673. single_quoted = 0;
  2674. }
  2675. else if((tr->langopts.param[LOPT_APOSTROPHE] & 1) && IsAlpha(next_in))
  2676. {
  2677. single_quoted = 0; // apostrophe at start of word is part of the word
  2678. }
  2679. else if((tr->langopts.param[LOPT_APOSTROPHE] & 2) && IsAlpha(prev_in))
  2680. {
  2681. single_quoted = 0; // apostrophe at end of word is part of the word
  2682. }
  2683. else if((wcschr(tr->char_plus_apostrophe,prev_in) != 0) && (prev_out2 == ' '))
  2684. {
  2685. // consider single character plus apostrophe as a word
  2686. single_quoted = 0;
  2687. if(next_in == ' ')
  2688. {
  2689. source_index++; // skip following space
  2690. }
  2691. }
  2692. else
  2693. {
  2694. if((prev_out == 's') && (single_quoted==0))
  2695. {
  2696. // looks like apostrophe after an 's'
  2697. c = ' ';
  2698. }
  2699. else
  2700. {
  2701. if(IsSpace(prev_out))
  2702. single_quoted = 1;
  2703. else
  2704. single_quoted = 0;
  2705. pre_pause_add = 4; // single quote
  2706. c = ' ';
  2707. }
  2708. }
  2709. }
  2710. else
  2711. #ifdef deleted
  2712. // Brackets are now recognised in TranslateRules()
  2713. if(IsBracket(c))
  2714. {
  2715. pre_pause_add = 4;
  2716. c = ' ';
  2717. }
  2718. else
  2719. #endif
  2720. if(lookupwchar(breaks,c) != 0)
  2721. {
  2722. c = ' '; // various characters to treat as space
  2723. }
  2724. else if(iswdigit(c))
  2725. {
  2726. if(tr->langopts.tone_numbers && IsAlpha(prev_out) && !IsDigit(next_in))
  2727. {
  2728. }
  2729. else if((prev_out != ' ') && !iswdigit(prev_out))
  2730. {
  2731. if((prev_out != tr->langopts.decimal_sep) || ((decimal_sep_count > 0) && (tr->langopts.decimal_sep == ',')))
  2732. {
  2733. c = ' ';
  2734. space_inserted = 1;
  2735. }
  2736. else
  2737. {
  2738. decimal_sep_count = 1;
  2739. }
  2740. }
  2741. else if((prev_out == ' ') && IsAlpha(sbuf[ix-2]) && !IsAlpha(prev_in))
  2742. {
  2743. // insert extra space between a word and a number, to distinguish 'a 2' from 'a2'
  2744. sbuf[ix++] = ' ';
  2745. words[word_count].start++;
  2746. }
  2747. }
  2748. }
  2749. if(IsSpace(c))
  2750. {
  2751. if(prev_out == ' ')
  2752. {
  2753. word_flags |= FLAG_MULTIPLE_SPACES;
  2754. continue; // multiple spaces
  2755. }
  2756. if((cc == 0x09) || (cc == 0x0a))
  2757. {
  2758. next_word_flags |= FLAG_MULTIPLE_SPACES; // tab or newline, not a simple space
  2759. }
  2760. if(space_inserted)
  2761. {
  2762. // count the number of characters since the start of the word
  2763. j = 0;
  2764. k = source_index - 1;
  2765. while((k >= source_index_word) && (charix[k] != 0))
  2766. {
  2767. if(charix[k] > 0) // don't count initial bytes of multi-byte character
  2768. j++;
  2769. k--;
  2770. }
  2771. words[word_count].length = j;
  2772. }
  2773. source_index_word = source_index;
  2774. // end of 'word'
  2775. sbuf[ix++] = ' ';
  2776. if((word_count < N_CLAUSE_WORDS-1) && (ix > words[word_count].start))
  2777. {
  2778. if(embedded_count > 0)
  2779. {
  2780. // there are embedded commands before this word
  2781. embedded_list[embedded_ix-1] |= 0x80; // terminate list of commands for this word
  2782. words[word_count].flags |= FLAG_EMBEDDED;
  2783. embedded_count = 0;
  2784. }
  2785. words[word_count].pre_pause = pre_pause;
  2786. words[word_count].flags |= (all_upper_case | word_flags | word_emphasis);
  2787. words[word_count].wmark = word_mark;
  2788. if(pre_pause > 0)
  2789. {
  2790. // insert an extra space before the word, to prevent influence from previous word across the pause
  2791. for(j=ix; j>words[word_count].start; j--)
  2792. {
  2793. sbuf[j] = sbuf[j-1];
  2794. }
  2795. sbuf[j] = ' ';
  2796. words[word_count].start++;
  2797. ix++;
  2798. }
  2799. word_count++;
  2800. words[word_count].start = ix;
  2801. words[word_count].flags = 0;
  2802. for(j=source_index; charix[j] <= 0; j++); // skip blanks
  2803. words[word_count].sourceix = charix[j];
  2804. k = 0;
  2805. while(charix[j] != 0)
  2806. {
  2807. // count the number of characters (excluding multibyte continuation bytes)
  2808. if(charix[j++] != -1)
  2809. k++;
  2810. }
  2811. words[word_count].length = k;
  2812. word_flags = next_word_flags;
  2813. next_word_flags = 0;
  2814. pre_pause = 0;
  2815. word_mark = 0;
  2816. all_upper_case = FLAG_ALL_UPPER;
  2817. syllable_marked = 0;
  2818. }
  2819. if(space_inserted)
  2820. {
  2821. source_index = prev_source_index; // rewind to the previous character
  2822. char_inserted = 0;
  2823. space_inserted = 0;
  2824. }
  2825. }
  2826. else
  2827. {
  2828. if((ix < (N_TR_SOURCE - 4)))
  2829. ix += utf8_out(c,&sbuf[ix]); // sbuf[ix++] = c;
  2830. }
  2831. if(pre_pause_add > pre_pause)
  2832. pre_pause = pre_pause_add;
  2833. pre_pause_add = 0;
  2834. }
  2835. if((word_count==0) && (embedded_count > 0))
  2836. {
  2837. // add a null 'word' to carry the embedded command flag
  2838. embedded_list[embedded_ix-1] |= 0x80;
  2839. words[word_count].flags |= FLAG_EMBEDDED;
  2840. word_count = 1;
  2841. }
  2842. tr->clause_end = &sbuf[ix-1];
  2843. sbuf[ix] = 0;
  2844. words[0].pre_pause = 0; // don't add extra pause at beginning of clause
  2845. words[word_count].pre_pause = 8;
  2846. if(word_count > 0)
  2847. {
  2848. ix = word_count-1;
  2849. while((ix > 0) && (IsBracket(sbuf[words[ix].start])))
  2850. ix--; // the last word is a bracket, mark the previous word as last
  2851. words[ix].flags |= FLAG_LAST_WORD;
  2852. // FLAG_NOSPACE check to avoid recognizing .mr -mr
  2853. if((terminator & CLAUSE_DOT) && !(words[word_count-1].flags & FLAG_NOSPACE))
  2854. words[word_count-1].flags |= FLAG_HAS_DOT;
  2855. }
  2856. words[0].flags |= FLAG_FIRST_WORD;
  2857. for(ix=0; ix < word_count; ix++)
  2858. {
  2859. int nx;
  2860. int c_temp;
  2861. char *pn;
  2862. char *pw;
  2863. int nw;
  2864. char number_buf[150];
  2865. WORD_TAB num_wtab[50]; // copy of 'words', when splitting numbers into parts
  2866. // start speaking at a specified word position in the text?
  2867. count_words++;
  2868. if(skip_words > 0)
  2869. {
  2870. skip_words--;
  2871. if(skip_words == 0)
  2872. skipping_text = 0;
  2873. }
  2874. if(skipping_text)
  2875. continue;
  2876. current_alphabet = NULL;
  2877. // digits should have been converted to Latin alphabet ('0' to '9')
  2878. word = pw = &sbuf[words[ix].start];
  2879. if(iswdigit(word[0]) && (tr->langopts.break_numbers != BREAK_THOUSANDS))
  2880. {
  2881. // Languages with 100000 numbers. Remove thousands separators so that we can insert them again later
  2882. pn = number_buf;
  2883. while(pn < &number_buf[sizeof(number_buf)-20])
  2884. {
  2885. if(iswdigit(*pw))
  2886. {
  2887. *pn++ = *pw++;
  2888. }
  2889. else if((*pw == tr->langopts.thousands_sep) && (pw[1] == ' ')
  2890. && iswdigit(pw[2]) && (pw[3] != ' ') && (pw[4] != ' ')) // don't allow only 1 or 2 digits in the final part
  2891. {
  2892. pw += 2;
  2893. ix++; // skip "word"
  2894. }
  2895. else
  2896. {
  2897. nx = pw - word;
  2898. memset(word,' ',nx);
  2899. nx = pn - number_buf;
  2900. memcpy(word,number_buf,nx);
  2901. break;
  2902. }
  2903. }
  2904. pw = word;
  2905. }
  2906. for(n_digits=0; iswdigit(word[n_digits]); n_digits++); // count consecutive digits
  2907. if(n_digits > 4)
  2908. {
  2909. // word is entirely digits, insert commas and break into 3 digit "words"
  2910. number_buf[0] = ' ';
  2911. pn = &number_buf[1];
  2912. nx = n_digits;
  2913. nw = 0;
  2914. if((n_digits > tr->langopts.max_digits) || (word[0] == '0'))
  2915. words[ix].flags |= FLAG_INDIVIDUAL_DIGITS;
  2916. while(pn < &number_buf[sizeof(number_buf)-20])
  2917. {
  2918. if(!IsDigit09(c = *pw++) && (c != tr->langopts.decimal_sep))
  2919. break;
  2920. *pn++ = c;
  2921. nx--;
  2922. if((nx > 0) && (tr->langopts.break_numbers & (1 << nx)))
  2923. {
  2924. memcpy(&num_wtab[nw++], &words[ix], sizeof(WORD_TAB)); // copy the 'words' entry for each word of numbers
  2925. if(tr->langopts.thousands_sep != ' ')
  2926. {
  2927. *pn++ = tr->langopts.thousands_sep;
  2928. }
  2929. *pn++ = ' ';
  2930. if((words[ix].flags & FLAG_INDIVIDUAL_DIGITS) == 0)
  2931. {
  2932. if(tr->langopts.break_numbers & (1 << (nx-1)))
  2933. {
  2934. // the next group only has 1 digits, make it three
  2935. *pn++ = '0';
  2936. *pn++ = '0';
  2937. }
  2938. if(tr->langopts.break_numbers & (1 << (nx-2)))
  2939. {
  2940. // the next group only has 2 digits (eg. Indian languages), make it three
  2941. *pn++ = '0';
  2942. }
  2943. }
  2944. }
  2945. }
  2946. pw--;
  2947. memcpy(&num_wtab[nw], &words[ix], sizeof(WORD_TAB)*2); // the original number word, and the word after it
  2948. for(j=1; j<=nw; j++)
  2949. {
  2950. num_wtab[j].flags &= ~(FLAG_MULTIPLE_SPACES | FLAG_EMBEDDED); // don't use these flags for subsequent parts when splitting a number
  2951. }
  2952. // include the next few characters, in case there are an ordinal indicator or other suffix
  2953. memcpy(pn, pw, 16);
  2954. pn[16] = 0;
  2955. nw = 0;
  2956. for(pw = &number_buf[1]; pw < pn;)
  2957. {
  2958. // keep wflags for each part, for FLAG_HYPHEN_AFTER
  2959. dict_flags = TranslateWord2(tr, pw, &num_wtab[nw++], words[ix].pre_pause,0 );
  2960. while(*pw++ != ' ');
  2961. words[ix].pre_pause = 0;
  2962. }
  2963. }
  2964. else
  2965. {
  2966. pre_pause = 0;
  2967. dict_flags = TranslateWord2(tr, word, &words[ix], words[ix].pre_pause, words[ix+1].pre_pause);
  2968. if(pre_pause > words[ix+1].pre_pause)
  2969. {
  2970. words[ix+1].pre_pause = pre_pause;
  2971. pre_pause = 0;
  2972. }
  2973. if(dict_flags & FLAG_SPELLWORD)
  2974. {
  2975. // redo the word, speaking single letters
  2976. for(pw = word; *pw != ' ';)
  2977. {
  2978. memset(number_buf,' ',9);
  2979. nx = utf8_in(&c_temp, pw);
  2980. memcpy(&number_buf[2],pw,nx);
  2981. TranslateWord2(tr, &number_buf[2], &words[ix], 0, 0 );
  2982. pw += nx;
  2983. }
  2984. }
  2985. if((dict_flags & (FLAG_ALLOW_DOT | FLAG_NEEDS_DOT)) && (ix == word_count - 1 - dictionary_skipwords) && (terminator & CLAUSE_DOT))
  2986. {
  2987. // probably an abbreviation such as Mr. or B. rather than end of sentence
  2988. clause_pause = 10;
  2989. tone = 4;
  2990. }
  2991. }
  2992. if(dict_flags & FLAG_SKIPWORDS)
  2993. {
  2994. // dictionary indicates skip next word(s)
  2995. while(dictionary_skipwords > 0)
  2996. {
  2997. words[ix+dictionary_skipwords].flags |= FLAG_DELETE_WORD;
  2998. dictionary_skipwords--;
  2999. }
  3000. }
  3001. }
  3002. if(embedded_read < embedded_ix)
  3003. {
  3004. // any embedded commands not yet processed?
  3005. Word_EmbeddedCmd();
  3006. }
  3007. for(ix=0; ix<2; ix++)
  3008. {
  3009. // terminate the clause with 2 PAUSE phonemes
  3010. PHONEME_LIST2 *p2;
  3011. p2 = &ph_list2[n_ph_list2 + ix];
  3012. p2->phcode = phonPAUSE;
  3013. p2->stresslevel = 0;
  3014. p2->sourceix = source_index;
  3015. p2->synthflags = 0;
  3016. }
  3017. n_ph_list2 += 2;
  3018. if(count_words == 0)
  3019. {
  3020. clause_pause = 0;
  3021. }
  3022. if(Eof() && ((word_count == 0) || (option_endpause==0)))
  3023. {
  3024. clause_pause = 10;
  3025. }
  3026. MakePhonemeList(tr, clause_pause, new_sentence);
  3027. phoneme_list[N_PHONEME_LIST].ph = NULL; // recognize end of phoneme_list array, in Generate()
  3028. phoneme_list[N_PHONEME_LIST].sourceix = 1;
  3029. if(embedded_count) // ???? is this needed
  3030. {
  3031. phoneme_list[n_phoneme_list-2].synthflags = SFLAG_EMBEDDED;
  3032. embedded_list[embedded_ix-1] |= 0x80;
  3033. embedded_list[embedded_ix] = 0x80;
  3034. }
  3035. prev_clause_pause = clause_pause;
  3036. if(tone_out != NULL)
  3037. *tone_out = tone;
  3038. new_sentence = 0;
  3039. if(terminator & CLAUSE_BIT_SENTENCE)
  3040. {
  3041. new_sentence = 1; // next clause is a new sentence
  3042. }
  3043. if(voice_change != NULL)
  3044. {
  3045. // return new voice name if an embedded voice change command terminated the clause
  3046. if(terminator & CLAUSE_BIT_VOICE)
  3047. *voice_change = voice_change_name;
  3048. else
  3049. *voice_change = NULL;
  3050. }
  3051. if(Eof() || (vp_input==NULL))
  3052. return(NULL);
  3053. if(option_multibyte == espeakCHARS_WCHAR)
  3054. return((void *)p_wchar_input);
  3055. else
  3056. return((void *)p_textinput);
  3057. } // end of TranslateClause
  3058. void InitText(int control)
  3059. {//=======================
  3060. count_sentences = 0;
  3061. count_words = 0;
  3062. end_character_position = 0;
  3063. skip_sentences = 0;
  3064. skip_marker[0] = 0;
  3065. skip_words = 0;
  3066. skip_characters = 0;
  3067. skipping_text = 0;
  3068. new_sentence = 1;
  3069. prev_clause_pause = 0;
  3070. option_sayas = 0;
  3071. option_sayas2 = 0;
  3072. option_emphasis = 0;
  3073. word_emphasis = 0;
  3074. embedded_flag = 0;
  3075. InitText2();
  3076. if((control & espeakKEEP_NAMEDATA) == 0)
  3077. {
  3078. InitNamedata();
  3079. }
  3080. }