123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581 |
- /***************************************************************************
- * Copyright (C) 2005 to 2007 by Jonathan Duddington *
- * email: [email protected] *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 3 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, see: *
- * <http://www.gnu.org/licenses/>. *
- ***************************************************************************/
-
- #include "StdAfx.h"
-
- #include <stdio.h>
- #include <ctype.h>
- #include <wctype.h>
- #include <stdlib.h>
- #include <string.h>
- #include <math.h>
-
- #include "speak_lib.h"
- #include "speech.h"
- #include "voice.h"
- #include "phoneme.h"
- #include "synthesize.h"
- #include "translate.h"
-
- #define PITCHfall 0
- #define PITCHrise 1
-
-
- extern FILE *f_log;
- static void SmoothSpect(void);
-
-
- // list of phonemes in a clause
- int n_phoneme_list=0;
- PHONEME_LIST phoneme_list[N_PHONEME_LIST];
-
- char mbrola_name[20];
-
- int speed_factor1;
- int speed_factor2;
-
- static int last_pitch_cmd;
- static int last_amp_cmd;
- static frame_t *last_frame;
- static int last_wcmdq;
- static int pitch_length;
- static int amp_length;
- static int modn_flags;
-
- static int syllable_start;
- static int syllable_end;
- static int syllable_centre;
-
- static voice_t *new_voice=NULL;
-
- int n_soundicon_tab=0;
- SOUND_ICON soundicon_tab[N_SOUNDICON_TAB];
-
- #define RMS_GLOTTAL1 35 // vowel before glottal stop
- #define RMS_START 28 // 14 - 30
-
- #define VOWEL_FRONT_LENGTH 50
-
-
-
- // a dummy phoneme_list entry which looks like a pause
- static PHONEME_LIST next_pause;
-
-
- const char *WordToString(unsigned int word)
- {//========================================
- // Convert a phoneme mnemonic word into a string
- int ix;
- static char buf[5];
-
- for(ix=0; ix<3; ix++)
- buf[ix] = word >> (ix*8);
- buf[4] = 0;
- return(buf);
- }
-
-
- void SynthesizeInit()
- {//==================
- last_pitch_cmd = 0;
- last_amp_cmd = 0;
- last_frame = NULL;
- syllable_centre = -1;
-
- // initialise next_pause, a dummy phoneme_list entry
- // next_pause.ph = phoneme_tab[phonPAUSE]; // this must be done after voice selection
- next_pause.type = phPAUSE;
- next_pause.newword = 0;
- }
-
-
-
- static void EndAmplitude(void)
- {//===========================
- if(amp_length > 0)
- {
- if(wcmdq[last_amp_cmd][1] == 0)
- wcmdq[last_amp_cmd][1] = amp_length;
- amp_length = 0;
- }
- }
-
-
-
- static void EndPitch(int voice_break)
- {//==================================
- // posssible end of pitch envelope, fill in the length
- if((pitch_length > 0) && (last_pitch_cmd >= 0))
- {
- if(wcmdq[last_pitch_cmd][1] == 0)
- wcmdq[last_pitch_cmd][1] = pitch_length;
- pitch_length = 0;
- }
-
- if(voice_break)
- {
- last_wcmdq = -1;
- last_frame = NULL;
- syllable_end = wcmdq_tail;
- SmoothSpect();
- syllable_centre = -1;
- memset(vowel_transition,0,sizeof(vowel_transition));
- }
- } // end of Synthesize::EndPitch
-
-
-
- static void DoAmplitude(int amp, unsigned char *amp_env)
- {//=====================================================
- long *q;
-
- last_amp_cmd = wcmdq_tail;
- amp_length = 0; // total length of vowel with this amplitude envelope
-
- q = wcmdq[wcmdq_tail];
- q[0] = WCMD_AMPLITUDE;
- q[1] = 0; // fill in later from amp_length
- q[2] = (long)amp_env;
- q[3] = amp;
- WcmdqInc();
- } // end of Synthesize::DoAmplitude
-
-
-
- static void DoPitch(unsigned char *env, int pitch1, int pitch2)
- {//============================================================
- long *q;
-
- EndPitch(0);
-
- if(pitch1 == 1024)
- {
- // pitch was not set
- pitch1 = 24;
- pitch2 = 33;
- env = envelope_data[PITCHfall];
- }
- last_pitch_cmd = wcmdq_tail;
- pitch_length = 0; // total length of spect with this pitch envelope
-
- if(pitch2 < 0)
- pitch2 = 0;
-
- q = wcmdq[wcmdq_tail];
- q[0] = WCMD_PITCH;
- q[1] = 0; // length, fill in later from pitch_length
- q[2] = (long)env;
- q[3] = (pitch1 << 16) + pitch2;
- WcmdqInc();
- } // end of Synthesize::DoPitch
-
-
-
- int PauseLength(int pause)
- {//=======================
- int len;
- len = (pause * speed_factor1)/256;
- if(len < 5) len = 5; // mS, limit the amount to which pauses can be shortened
- return(len);
- }
-
-
- static void DoPause(int length)
- {//============================
- int len;
-
- len = PauseLength(length);
-
- len = (len * samplerate) / 1000; // convert from mS to number of samples
-
- EndPitch(1);
- wcmdq[wcmdq_tail][0] = WCMD_PAUSE;
- wcmdq[wcmdq_tail][1] = len;
- WcmdqInc();
- last_frame = NULL;
- } // end of Synthesize::DoPause
-
-
- extern int seq_len_adjust; // temporary fix to advance the start point for playing the wav sample
-
-
- static int DoSample2(int index, int which, int length_mod, int amp)
- {//================================================================
- int length;
- int length1;
- int format;
- int start=0;
- long *q;
- unsigned char *p;
-
- index = index & 0x7fffff;
- p = &wavefile_data[index];
- format = p[2];
- length1 = (p[1] * 256);
- length1 += p[0]; // length in bytes
-
- if(seq_len_adjust > 0)
- {
- start = (seq_len_adjust * samplerate)/1000;
- if(format == 0)
- start *= 2;
- length1 -= start;
- index += start;
- }
-
-
- if(length_mod > 0)
- length = (length1 * length_mod) / 256;
- else
- length = length1;
-
-
- length = (length * speed_factor2)/256;
- if(length > length1)
- length = length1; // don't exceed wavefile length
-
- if(format==0)
- length /= 2; // 2 byte samples
-
- index += 4;
-
- if(amp >= 0)
- {
- last_wcmdq = wcmdq_tail;
- q = wcmdq[wcmdq_tail];
- if(which & 0x100)
- q[0] = WCMD_WAVE2; // mix this with synthesised wave
- else
- q[0] = WCMD_WAVE;
- q[1] = length; // length in samples
- q[2] = long(&wavefile_data[index]);
- q[3] = format + (amp << 8);
- WcmdqInc();
- }
- return(length);
- } // end of Synthesize::DoSample2
-
-
- int DoSample(PHONEME_TAB *ph1, PHONEME_TAB *ph2, int which, int length_mod, int amp)
- {//====================== ==========================================================
- int index;
- int match_level;
- int amp2;
- int result;
-
- EndPitch(1);
- index = LookupSound(ph1,ph2,which & 0xff,&match_level,0);
- if((index & 0x800000) == 0)
- return(0); // not wavefile data
-
- amp2 = wavefile_amp;
- if(amp != 0)
- amp2 = (amp * wavefile_amp)/20;
-
- if(amp == -1)
- amp2 = amp;
-
- result = DoSample2(index,which,length_mod,amp2);
- last_frame = NULL;
- return(result);
- } // end of Synthesize::DoSample
-
-
-
-
- static frame_t *AllocFrame()
- {//=========================
- // Allocate a temporary spectrum frame for the wavegen queue. Use a pool which is big
- // enough to use a round-robin without checks.
- // Only needed for modifying spectra for blending to consonants
-
- #define N_FRAME_POOL N_WCMDQ
- static int ix=0;
- static frame_t frame_pool[N_FRAME_POOL];
-
- ix++;
- if(ix >= N_FRAME_POOL)
- ix = 0;
- return(&frame_pool[ix]);
- }
-
-
- static void set_frame_rms(frame_t *fr, int new_rms)
- {//=================================================
- // Each frame includes its RMS amplitude value, so to set a new
- // RMS just adjust the formant amplitudes by the appropriate ratio
-
- int x;
- int h;
- int ix;
-
- static const short sqrt_tab[200] = {
- 0, 64, 90,110,128,143,156,169,181,192,202,212,221,230,239,247,
- 256,263,271,278,286,293,300,306,313,320,326,332,338,344,350,356,
- 362,367,373,378,384,389,394,399,404,409,414,419,424,429,434,438,
- 443,448,452,457,461,465,470,474,478,483,487,491,495,499,503,507,
- 512,515,519,523,527,531,535,539,543,546,550,554,557,561,565,568,
- 572,576,579,583,586,590,593,596,600,603,607,610,613,617,620,623,
- 627,630,633,636,640,643,646,649,652,655,658,662,665,668,671,674,
- 677,680,683,686,689,692,695,698,701,704,706,709,712,715,718,721,
- 724,726,729,732,735,738,740,743,746,749,751,754,757,759,762,765,
- 768,770,773,775,778,781,783,786,789,791,794,796,799,801,804,807,
- 809,812,814,817,819,822,824,827,829,832,834,836,839,841,844,846,
- 849,851,853,856,858,861,863,865,868,870,872,875,877,879,882,884,
- 886,889,891,893,896,898,900,902};
-
- if(fr->rms == 0) return; // check for divide by zero
- x = (new_rms * 64)/fr->rms;
- if(x >= 200) x = 199;
-
- x = sqrt_tab[x]; // sqrt(new_rms/fr->rms)*0x200;
-
- for(ix=0; ix<N_PEAKS; ix++)
- {
- h = fr->fheight[ix] * x;
- fr->fheight[ix] = h/0x200;
- }
- } /* end of set_frame_rms */
-
-
-
- static void formants_reduce_hf(frame_t *fr, int level)
- {//====================================================
- // change height of peaks 2 to 8, percentage
- int ix;
- int x;
-
- for(ix=2; ix<N_PEAKS; ix++)
- {
- x = fr->fheight[ix] * level;
- fr->fheight[ix] = x/100;
- }
- }
-
-
- static frame_t *CopyFrame(frame_t *frame1, int copy)
- {//=================================================
- // create a copy of the specified frame in temporary buffer
- frame_t *frame2;
-
- if((copy==0) && (frame1->frflags & FRFLAG_COPIED))
- {
- // this frame has already been copied in temporary rw memory
- return(frame1);
- }
-
- frame2 = AllocFrame();
- if(frame2 != NULL)
- {
- memcpy(frame2,frame1,sizeof(frame_t));
- frame2->length = 0;
- frame2->frflags |= FRFLAG_COPIED;
- }
- return(frame2);
- }
-
-
- static frame_t *DuplicateLastFrame(frameref_t *seq, int n_frames, int length)
- {//==========================================================================
- frame_t *fr;
-
- seq[n_frames-1].length = length;
- fr = CopyFrame(seq[n_frames-1].frame,1);
- seq[n_frames].frame = fr;
- seq[n_frames].length = 0;
- return fr;
- }
-
-
- static void AdjustFormants(frame_t *fr, int target, int min, int max, int f1_adj, int f3_adj, int hf_reduce, int flags)
- {//====================================================================================================================
- int x;
-
- //hf_reduce = 70; // ?? using fixed amount rather than the parameter??
-
- target = (target * voice->formant_factor)/256;
-
- x = (target - fr->ffreq[2]) / 2;
- if(x > max) x = max;
- if(x < min) x = min;
- fr->ffreq[2] += x;
- fr->ffreq[3] += f3_adj;
-
- if(flags & 0x20)
- {
- f3_adj = -f3_adj; //. reverse direction for f4,f5 change
- }
- fr->ffreq[4] += f3_adj;
- fr->ffreq[5] += f3_adj;
-
- if(f1_adj==1)
- {
- x = (235 - fr->ffreq[1]);
- if(x < -100) x = -100;
- if(x > -60) x = -60;
- fr->ffreq[1] += x;
- }
- if(f1_adj==2)
- {
- x = (235 - fr->ffreq[1]);
- if(x < -300) x = -300;
- if(x > -150) x = -150;
- fr->ffreq[1] += x;
- fr->ffreq[0] += x;
- }
- if(f1_adj==3)
- {
- x = (100 - fr->ffreq[1]);
- if(x < -400) x = -400;
- if(x > -300) x = -400;
- fr->ffreq[1] += x;
- fr->ffreq[0] += x;
- }
- formants_reduce_hf(fr,hf_reduce);
- }
-
-
- int VowelCloseness(frame_t *fr)
- {//============================
- // return a value 0-3 depending on the vowel's f1
- int f1;
-
- if((f1 = fr->ffreq[1]) < 300)
- return(3);
- if(f1 < 400)
- return(2);
- if(f1 < 500)
- return(1);
- return(0);
- }
-
-
- int FormantTransition2(frameref_t *seq, int &n_frames, unsigned int data1, unsigned int data2, PHONEME_TAB *other_ph, int which)
- {//==============================================================================================================================
- int ix;
- int formant;
- int next_rms;
-
- int len;
- int rms;
- int f1;
- int f2;
- int f2_min;
- int f2_max;
- int f3_adj;
- int f3_amp;
- int flags;
- int vcolour;
-
- #define N_VCOLOUR 2
- // percentage change for each formant in 256ths
- static short vcolouring[N_VCOLOUR][5] = {
- {243,272,256,256,256}, // palatal consonant follows
- {256,256,240,240,240}, // retroflex
- };
-
- frame_t *fr = NULL;
-
- if(n_frames < 2)
- return(0);
-
- len = (data1 & 0x3f) * 2;
- rms = (data1 >> 6) & 0x3f;
- flags = (data1 >> 12);
-
- f2 = (data2 & 0x3f) * 50;
- f2_min = (((data2 >> 6) & 0x1f) - 15) * 50;
- f2_max = (((data2 >> 11) & 0x1f) - 15) * 50;
- f3_adj = (((data2 >> 16) & 0x1f) - 15) * 50;
- f3_amp = ((data2 >> 21) & 0x1f) * 8;
- f1 = ((data2 >> 26) & 0x7);
- vcolour = (data2 >> 29);
-
- // fprintf(stderr,"FMT%d %3s %3d-%3d f1=%d f2=%4d %4d %4d f3=%4d %3d\n",
- // which,WordToString(other_ph->mnemonic),len,rms,f1,f2,f2_min,f2_max,f3_adj,f3_amp);
-
- if(other_ph->mnemonic == '?')
- flags |= 8;
-
- if(which == 1)
- {
- /* entry to vowel */
- fr = CopyFrame(seq[0].frame,0);
- seq[0].frame = fr;
- seq[0].length = VOWEL_FRONT_LENGTH;
- if(len > 0)
- seq[0].length = len;
- seq[0].frflags |= FRFLAG_LEN_MOD; // reduce length modification
- fr->frflags |= FRFLAG_LEN_MOD;
-
- next_rms = seq[1].frame->rms;
-
- if(f2 != 0)
- {
- if(rms & 0x20)
- {
- set_frame_rms(fr,(next_rms * (rms & 0x1f))/30);
- }
- AdjustFormants(fr, f2, f2_min, f2_max, f1, f3_adj, f3_amp, flags);
-
- if((rms & 0x20) == 0)
- {
- set_frame_rms(fr,rms*2);
- }
- }
- else
- {
- if(flags & 8)
- set_frame_rms(fr,(next_rms*24)/32);
- else
- set_frame_rms(fr,RMS_START);
- }
-
- if(flags & 8)
- {
- // set_frame_rms(fr,next_rms - 5);
- modn_flags = 0x800 + (VowelCloseness(fr) << 8);
- }
- }
- else
- {
- // exit from vowel
- rms = rms*2;
- if((f2 != 0) || (flags != 0))
- {
-
- if(flags & 8)
- {
- fr = CopyFrame(seq[n_frames-1].frame,0);
- seq[n_frames-1].frame = fr;
- rms = RMS_GLOTTAL1;
-
- // degree of glottal-stop effect depends on closeness of vowel (indicated by f1 freq)
- modn_flags = 0x400 + (VowelCloseness(fr) << 8);
- }
- else
- {
- fr = DuplicateLastFrame(seq,n_frames++,len);
-
- if(f2 != 0)
- {
- AdjustFormants(fr, f2, f2_min, f2_max, f1, f3_adj, f3_amp, flags);
- }
- }
-
- set_frame_rms(fr,rms);
-
- if((vcolour > 0) && (vcolour <= N_VCOLOUR))
- {
- for(ix=0; ix<n_frames; ix++)
- {
- fr = CopyFrame(seq[ix].frame,0);
- seq[ix].frame = fr;
-
- for(formant=1; formant<=5; formant++)
- {
- int x;
- x = fr->ffreq[formant] * vcolouring[vcolour-1][formant-1];
- fr->ffreq[formant] = x / 256;
- }
- }
- }
- }
- }
-
- if(fr != NULL)
- {
- if(flags & 4)
- fr->frflags |= FRFLAG_FORMANT_RATE;
- if(flags & 2)
- fr->frflags |= FRFLAG_BREAK; // don't merge with next frame
- }
-
- if(flags & 0x40)
- DoPause(12); // add a short pause after the consonant
-
- if(flags & 16)
- return(len);
- return(0);
- } // end of FormantTransition2
-
-
-
- static void SmoothSpect(void)
- {//==========================
- // Limit the rate of frequence change of formants, to reduce chirping
-
- long *q;
- frame_t *frame;
- frame_t *frame2;
- frame_t *frame1;
- frame_t *frame_centre;
- int ix;
- int len;
- int pk;
- int modified;
- int allowed;
- int diff;
-
- if(syllable_start == syllable_end)
- return;
-
- if((syllable_centre < 0) || (syllable_centre == syllable_start))
- {
- syllable_start = syllable_end;
- return;
- }
-
- q = wcmdq[syllable_centre];
- frame_centre = (frame_t *)q[2];
-
- // backwards
- ix = syllable_centre -1;
- frame = frame2 = frame_centre;
- for(;;)
- {
- if(ix < 0) ix = N_WCMDQ-1;
- q = wcmdq[ix];
-
- if(q[0] == WCMD_PAUSE || q[0] == WCMD_WAVE)
- break;
-
- if(q[0] == WCMD_SPECT || q[0] == WCMD_SPECT2)
- {
- len = q[1] & 0xffff;
-
- frame1 = (frame_t *)q[3];
- if(frame1 == frame)
- {
- q[3] = (long)frame2;
- frame1 = frame2;
- }
- else
- break; // doesn't follow on from previous frame
-
- frame = frame2 = (frame_t *)q[2];
- modified = 0;
-
- if(frame->frflags & FRFLAG_BREAK)
- break;
-
- if(frame->frflags & FRFLAG_FORMANT_RATE)
- len = (len * 12)/10; // allow slightly greater rate of change for this frame (was 12/10)
-
- for(pk=0; pk<6; pk++)
- {
- int f1, f2;
-
- if((frame->frflags & FRFLAG_BREAK_LF) && (pk < 3))
- continue;
-
- f1 = frame1->ffreq[pk];
- f2 = frame->ffreq[pk];
-
- // backwards
- if((diff = f2 - f1) > 0)
- {
- allowed = f1*2 + f2;
- }
- else
- {
- allowed = f1 + f2*2;
- }
-
- // the allowed change is specified as percentage (%*10) of the frequency
- // take "frequency" as 1/3 from the lower freq
- allowed = (allowed * formant_rate[pk])/3000;
- allowed = (allowed * len)/256;
-
- if(diff > allowed)
- {
- if(modified == 0)
- {
- frame2 = CopyFrame(frame,0);
- modified = 1;
- }
- frame2->ffreq[pk] = frame1->ffreq[pk] + allowed;
- q[2] = (long)frame2;
- }
- else
- if(diff < -allowed)
- {
- if(modified == 0)
- {
- frame2 = CopyFrame(frame,0);
- modified = 1;
- }
- frame2->ffreq[pk] = frame1->ffreq[pk] - allowed;
- q[2] = (long)frame2;
- }
- }
- }
-
- if(ix == syllable_start)
- break;
- ix--;
- }
-
- // forwards
- ix = syllable_centre;
-
- frame = NULL;
- for(;;)
- {
- q = wcmdq[ix];
-
- if(q[0] == WCMD_PAUSE || q[0] == WCMD_WAVE)
- break;
-
- if(q[0] == WCMD_SPECT || q[0] == WCMD_SPECT2)
- {
-
- len = q[1] & 0xffff;
-
- frame1 = (frame_t *)q[2];
- if(frame != NULL)
- {
- if(frame1 == frame)
- {
- q[2] = (long)frame2;
- frame1 = frame2;
- }
- else
- break; // doesn't follow on from previous frame
- }
-
- frame = frame2 = (frame_t *)q[3];
- modified = 0;
-
- if(frame1->frflags & FRFLAG_BREAK)
- break;
-
- if(frame1->frflags & FRFLAG_FORMANT_RATE)
- len = (len *6)/5; // allow slightly greater rate of change for this frame
-
- for(pk=0; pk<6; pk++)
- {
- int f1, f2;
- f1 = frame1->ffreq[pk];
- f2 = frame->ffreq[pk];
-
- // forwards
- if((diff = f2 - f1) > 0)
- {
- allowed = f1*2 + f2;
- }
- else
- {
- allowed = f1 + f2*2;
- }
- allowed = (allowed * formant_rate[pk])/3000;
- allowed = (allowed * len)/256;
-
- if(diff > allowed)
- {
- if(modified == 0)
- {
- frame2 = CopyFrame(frame,0);
- modified = 1;
- }
- frame2->ffreq[pk] = frame1->ffreq[pk] + allowed;
- q[3] = (long)frame2;
- }
- else
- if(diff < -allowed)
- {
- if(modified == 0)
- {
- frame2 = CopyFrame(frame,0);
- modified = 1;
- }
- frame2->ffreq[pk] = frame1->ffreq[pk] - allowed;
- q[3] = (long)frame2;
- }
- }
- }
-
- ix++;
- if(ix >= N_WCMDQ) ix = 0;
- if(ix == syllable_end)
- break;
- }
-
- syllable_start = syllable_end;
- }
-
-
- static void StartSyllable(void)
- {//============================
- // start of syllable, if not already started
- if(syllable_end == syllable_start)
- syllable_end = wcmdq_tail;
- }
-
-
- int DoSpect(PHONEME_TAB *this_ph, PHONEME_TAB *prev_ph, PHONEME_TAB *next_ph,
- int which, PHONEME_LIST *plist, int modulation)
- {//===================================================================================
- // which 1 start of phoneme, 2 body and end
- // length_mod: 256 = 100%
- // modulation: -1 = don't write to wcmdq
-
- int n_frames;
- frameref_t *frames;
- int frameix;
- frame_t *frame1;
- frame_t *frame2;
- frame_t *fr;
- int ix;
- long *q;
- int len;
- int match_level;
- int frame_length;
- int frame1_length;
- int frame2_length;
- int length_factor;
- int length_mod;
- int total_len = 0;
- static int wave_flag = 0;
- int wcmd_spect = WCMD_SPECT;
-
- length_mod = plist->length;
- if(length_mod==0) length_mod=256;
-
- if(which==1)
- {
- // limit the shortening of sonorants before shortened (eg. unstressed vowels)
- if((this_ph->type==phLIQUID) || (prev_ph->type==phLIQUID) || (prev_ph->type==phNASAL))
- {
- if(length_mod < (len = translator->langopts.param[LOPT_SONORANT_MIN]))
- {
- length_mod = len;
- }
- }
- }
-
- modn_flags = 0;
- frames = LookupSpect(this_ph,prev_ph,next_ph,which,&match_level,&n_frames, plist);
- if(frames == NULL)
- return(0); // not found
-
- if(wavefile_ix == 0)
- {
- if(wave_flag)
- {
- // cancel any wavefile that was playing previously
- wcmd_spect = WCMD_SPECT2;
- wave_flag = 0;
- }
- else
- {
- wcmd_spect = WCMD_SPECT;
- }
- }
-
- frame1 = frames[0].frame;
- frame1_length = frames[0].length;
- if(last_frame != NULL)
- {
- if(((last_frame->length < 2) || (last_frame->frflags & FRFLAG_VOWEL_CENTRE))
- && !(last_frame->frflags & FRFLAG_BREAK))
- {
- // last frame of previous sequence was zero-length, replace with first of this sequence
- wcmdq[last_wcmdq][3] = (long)frame1;
-
- if(last_frame->frflags & FRFLAG_BREAK_LF)
- {
- // but flag indicates keep HF peaks in last segment
- fr = CopyFrame(frame1,1);
- for(ix=3; ix<N_PEAKS; ix++)
- {
- fr->ffreq[ix] = last_frame->ffreq[ix];
- fr->fheight[ix] = last_frame->fheight[ix];
- }
- wcmdq[last_wcmdq][3] = (long)fr;
- }
- }
- }
-
- if((this_ph->type == phVOWEL) && (which == 2))
- {
- SmoothSpect(); // process previous syllable
-
- // remember the point in the output queue of the centre of the vowel
- syllable_centre = wcmdq_tail;
- }
-
- frame_length = frame1_length;
- for(frameix=1; frameix<n_frames; frameix++)
- {
- frame2 = frames[frameix].frame;
- frame2_length = frames[frameix].length;
-
- if((wavefile_ix != 0) && ((frame1->frflags & FRFLAG_DEFER_WAV)==0))
- {
- // there is a wave file to play along with this synthesis
- seq_len_adjust = 0;
- DoSample2(wavefile_ix,which+0x100,0,wavefile_amp);
- wave_flag = 1;
- wavefile_ix = 0;
- }
-
- length_factor = length_mod;
- if(frame1->frflags & FRFLAG_LEN_MOD) // reduce effect of length mod
- {
- length_factor = (length_mod*4 + 256*3)/7;
- }
- len = (frame_length * samplerate)/1000;
- len = (len * length_factor)/256;
-
- if(modulation >= 0)
- {
- if(frame1->frflags & FRFLAG_MODULATE)
- {
- modulation = 6;
- }
- if((frameix == n_frames-1) && (modn_flags & 0xf00))
- modulation |= modn_flags; // before or after a glottal stop
- }
-
- pitch_length += len;
- amp_length += len;
-
- if(frame_length < 2)
- {
- last_frame = NULL;
- frame_length = frame2_length;
- frame1 = frame2;
- }
- else
- {
- last_wcmdq = wcmdq_tail;
-
- if(modulation >= 0)
- {
- q = wcmdq[wcmdq_tail];
- q[0] = wcmd_spect;
- q[1] = len + (modulation << 16);
- q[2] = long(frame1);
- q[3] = long(frame2);
-
- WcmdqInc();
- }
- last_frame = frame1 = frame2;
- frame_length = frame2_length;
- total_len += len;
- }
- }
- return(total_len);
- } // end of Synthesize::DoSpect
-
-
- static void DoMarker(int type, int char_posn, int length, int value)
- {//=================================================================
- // This could be used to return an index to the word currently being spoken
- // Type 1=word, 2=sentence, 3=named marker, 4=play audio, 5=end
- wcmdq[wcmdq_tail][0] = WCMD_MARKER;
- wcmdq[wcmdq_tail][1] = type;
- wcmdq[wcmdq_tail][2] = (char_posn & 0xffffff) | (length << 24);
- wcmdq[wcmdq_tail][3] = value;
- WcmdqInc();
-
- } // end of Synthesize::DoMarker
-
-
- static void DoVoice(voice_t *v)
- {//============================
- // allocate memory for a copy of the voice data, and free it in wavegenfill()
- voice_t *v2;
-
- v2 = (voice_t *)malloc(sizeof(voice_t));
- memcpy(v2,v,sizeof(voice_t));
- wcmdq[wcmdq_tail][0] = WCMD_VOICE;
- wcmdq[wcmdq_tail][1] = (long)(v2);
- WcmdqInc();
- }
-
-
- static void DoEmbedded(int &embix, int sourceix)
- {//=============================================
- // There were embedded commands in the text at this point
- unsigned int word; // bit 7=last command for this word, bits 5,6 sign, bits 0-4 command
- unsigned int value;
- int command;
-
- do {
- word = embedded_list[embix++];
- value = word >> 8;
- command = word & 0x7f;
-
- switch(command & 0x1f)
- {
- case EMBED_S: // speed
- SetEmbedded((command & 0x60) + EMBED_S2,value); // adjusts embedded_value[EMBED_S2]
- SetSpeed(2);
- break;
-
- case EMBED_I: // play dynamically loaded wav data (sound icon)
- if((int)value < n_soundicon_tab)
- {
- if((wcmdq[wcmdq_tail][1] = soundicon_tab[value].length) != 0)
- {
- DoPause(10); // ensure a break in the speech
- wcmdq[wcmdq_tail][0] = WCMD_WAVE;
- wcmdq[wcmdq_tail][1] = soundicon_tab[value].length;
- wcmdq[wcmdq_tail][2] = (long)soundicon_tab[value].data;
- wcmdq[wcmdq_tail][3] = 0; // 16 bit data
- WcmdqInc();
- }
- }
- break;
-
- case EMBED_M: // named marker
- DoMarker(espeakEVENT_MARK, (sourceix & 0x7ff) + clause_start_char, 0, value);
- break;
-
- case EMBED_U: // play sound
- DoMarker(espeakEVENT_PLAY, count_characters+1, 0, value); // always occurs at end of clause
- break;
-
- default:
- DoPause(10); // ensure a break in the speech
- wcmdq[wcmdq_tail][0] = WCMD_EMBEDDED;
- wcmdq[wcmdq_tail][1] = command;
- wcmdq[wcmdq_tail][2] = value;
- WcmdqInc();
- break;
- }
- } while ((word & 0x80) == 0);
- }
-
-
- void SwitchDictionary()
- {//====================
- }
-
-
- int Generate(PHONEME_LIST *phoneme_list, int *n_ph, int resume)
- {//============================================================
- static int ix;
- static int embedded_ix;
- static int word_count;
- PHONEME_LIST *prev;
- PHONEME_LIST *next;
- PHONEME_LIST *next2;
- PHONEME_LIST *p;
- int released;
- int stress;
- int modulation;
- int pre_voiced;
- unsigned char *pitch_env=NULL;
- unsigned char *amp_env;
- PHONEME_TAB *ph;
-
- #ifdef TEST_MBROLA
- if(mbrola_name[0] != 0)
- return(MbrolaGenerate(phoneme_list,n_ph,resume));
- #endif
-
- if(option_quiet)
- return(0);
-
- if(resume == 0)
- {
- ix = 1;
- embedded_ix=0;
- word_count = 0;
- pitch_length = 0;
- amp_length = 0;
- last_frame = NULL;
- last_wcmdq = -1;
- syllable_start = wcmdq_tail;
- syllable_end = wcmdq_tail;
- syllable_centre = -1;
- last_pitch_cmd = -1;
- memset(vowel_transition,0,sizeof(vowel_transition));
- }
-
- while(ix < (*n_ph))
- {
- if(WcmdqFree() <= MIN_WCMDQ)
- return(1); // wait
-
- prev = &phoneme_list[ix-1];
- p = &phoneme_list[ix];
- next = &phoneme_list[ix+1];
- next2 = &phoneme_list[ix+2];
-
- if(p->synthflags & SFLAG_EMBEDDED)
- {
- DoEmbedded(embedded_ix, p->sourceix);
- }
-
- if(p->newword)
- {
- last_frame = NULL;
-
- if(p->newword & 4)
- DoMarker(espeakEVENT_SENTENCE, (p->sourceix & 0x7ff) + clause_start_char, 0, count_sentences); // start of sentence
-
- // if(p->newword & 2)
- // DoMarker(espeakEVENT_END, count_characters, 0, count_sentences); // end of clause
-
- if(p->newword & 1)
- DoMarker(espeakEVENT_WORD, (p->sourceix & 0x7ff) + clause_start_char, p->sourceix >> 11, clause_start_word + word_count++);
- }
-
- if((translator->langopts.word_gap & 1) || (translator->langopts.vowel_pause && (next->type == phVOWEL)))
- {
- // prevent word merging into next, make it look as though next is a pause
- if((next->newword) && (next->type != phPAUSE))
- {
- // next_pause.ph = phoneme_tab[phonPAUSE];
- // next = &next_pause;
- }
- }
-
- EndAmplitude();
-
- if(p->prepause > 0)
- DoPause(p->prepause);
-
- if(option_phoneme_events)
- {
- DoMarker(espeakEVENT_PHONEME, (p->sourceix & 0x7ff) + clause_start_char, 0, p->ph->mnemonic);
- }
-
- switch(p->type)
- {
- case phPAUSE:
- DoPause(p->length);
- break;
-
- case phSTOP:
- released = 0;
- if(next->type==phVOWEL) released = 1;
- if(next->type==phLIQUID && !next->newword) released = 1;
-
- if(released)
- DoSample(p->ph,next->ph,2,0,0);
- else
- DoSample(p->ph,phoneme_tab[phonPAUSE],2,0,0);
- break;
-
- case phFRICATIVE:
- if(p->synthflags & SFLAG_LENGTHEN)
- DoSample(p->ph,next->ph,2,p->length,0); // play it twice for [s:] etc.
- DoSample(p->ph,next->ph,2,p->length,0);
- break;
-
- case phVSTOP:
- pre_voiced = 0;
- if(next->type==phVOWEL)
- {
- DoAmplitude(p->amp,NULL);
- DoPitch(envelope_data[p->env],p->pitch1,p->pitch2);
- pre_voiced = 1;
- }
- else
- if((next->type==phLIQUID) && !next->newword)
- {
- DoAmplitude(next->amp,NULL);
- DoPitch(envelope_data[next->env],next->pitch1,next->pitch2);
- pre_voiced = 1;
- }
- else
- {
- if(last_pitch_cmd < 0)
- {
- DoAmplitude(next->amp,NULL);
- DoPitch(envelope_data[p->env],p->pitch1,p->pitch2);
- }
- }
-
- if((prev->type==phVOWEL) || (prev->ph->phflags & phVOWEL2))
- {
- // a period of voicing before the release
- DoSpect(p->ph,phoneme_tab[phonSCHWA],next->ph,1,p,0);
- if(p->synthflags & SFLAG_LENGTHEN)
- {
- DoPause(20);
- DoSpect(p->ph,phoneme_tab[phonSCHWA],next->ph,1,p,0);
- }
- }
- else
- {
- if(p->synthflags & SFLAG_LENGTHEN)
- {
- DoPause(50);
- }
- }
-
- if(pre_voiced)
- {
- // followed by a vowel, or liquid + vowel
- StartSyllable();
- DoSpect(p->ph,prev->ph,next->ph,2,p,0);
- }
- else
- {
- // if((prev->type != phVOWEL) && ((prev->ph->phflags & phVOICED)==0) && ((next->ph->phflags & phVOICED)==0))
- // DoSpect(p->ph,prev->ph,phoneme_tab[phonPAUSE_SHORT],2,p,0);
- // else
- DoSpect(p->ph,prev->ph,phoneme_tab[phonPAUSE],2,p,0);
- // DoSpect(p->ph,prev->ph,next->ph,2,p,0);
- }
- break;
-
- case phVFRICATIVE:
- if(next->type==phVOWEL)
- {
- DoAmplitude(p->amp,NULL);
- DoPitch(envelope_data[p->env],p->pitch1,p->pitch2);
- }
- else
- if(next->type==phLIQUID)
- {
- DoAmplitude(next->amp,NULL);
- DoPitch(envelope_data[next->env],next->pitch1,next->pitch2);
- }
- else
- {
- if(last_pitch_cmd < 0)
- {
- DoAmplitude(p->amp,NULL);
- DoPitch(envelope_data[p->env],p->pitch1,p->pitch2);
- }
- }
-
- if((next->type==phVOWEL) || (next->type==phLIQUID))
- {
- StartSyllable();
- if(p->synthflags & SFLAG_LENGTHEN)
- DoSpect(p->ph,prev->ph,next->ph,2,p,0);
- DoSpect(p->ph,prev->ph,next->ph,2,p,0);
- }
- else
- {
- if(p->synthflags & SFLAG_LENGTHEN)
- DoSpect(p->ph,prev->ph,phoneme_tab[phonPAUSE],2,p,0);
- DoSpect(p->ph,prev->ph,phoneme_tab[phonPAUSE],2,p,0);
- }
- break;
-
- case phNASAL:
- if(!(p->synthflags & SFLAG_SEQCONTINUE))
- {
- DoAmplitude(p->amp,NULL);
- DoPitch(envelope_data[p->env],p->pitch1,p->pitch2);
- }
-
- if(prev->type==phNASAL)
- {
- last_frame = NULL;
- }
-
- if(next->type==phVOWEL)
- {
- StartSyllable();
- DoSpect(p->ph,prev->ph,next->ph,1,p,0);
- }
- else
- if(prev->type==phVOWEL && (p->synthflags & SFLAG_SEQCONTINUE))
- {
- DoSpect(p->ph,prev->ph,phoneme_tab[phonPAUSE],2,p,0);
- }
- else
- {
- last_frame = NULL; // only for nasal ?
- if(next->type == phLIQUID)
- DoSpect(p->ph,prev->ph,phoneme_tab[phonSONORANT],2,p,0);
- else
- DoSpect(p->ph,prev->ph,phoneme_tab[phonPAUSE],2,p,0);
- last_frame = NULL;
- }
-
- break;
-
- case phLIQUID:
- modulation = 0;
- if(p->ph->phflags & phTRILL)
- modulation = 5;
-
- if(!(p->synthflags & SFLAG_SEQCONTINUE))
- {
- DoAmplitude(p->amp,NULL);
- DoPitch(envelope_data[p->env],p->pitch1,p->pitch2);
- }
-
- if(prev->type==phNASAL)
- {
- last_frame = NULL;
- }
-
- if(next->type==phVOWEL)
- {
- StartSyllable();
- DoSpect(p->ph,prev->ph,next->ph,1,p,modulation); // (,)r
- }
- else
- if(prev->type==phVOWEL && (p->synthflags & SFLAG_SEQCONTINUE))
- {
- DoSpect(p->ph,prev->ph,next->ph,1,p,modulation);
- }
- else
- {
- DoSpect(p->ph,prev->ph,next->ph,1,p,modulation);
- }
-
- break;
-
- case phVOWEL:
- ph = p->ph;
- stress = p->tone & 0xf;
-
- // vowel transition from the preceding phoneme
- vowel_transition0 = vowel_transition[0];
- vowel_transition1 = vowel_transition[1];
-
- pitch_env = envelope_data[p->env];
- amp_env = NULL;
- if(p->tone_ph != 0)
- {
- pitch_env = LookupEnvelope(phoneme_tab[p->tone_ph]->spect);
- amp_env = LookupEnvelope(phoneme_tab[p->tone_ph]->after);
- }
-
- StartSyllable();
-
- modulation = 2;
- if(stress <= 1)
- modulation = 1; // 16ths
- else
- if(stress >= 7)
- modulation = 3;
-
- if(prev->type == phVSTOP || prev->type == phVFRICATIVE)
- {
- DoAmplitude(p->amp,amp_env);
- DoPitch(pitch_env,p->pitch1,p->pitch2); // don't use prevocalic rising tone
- DoSpect(ph,prev->ph,next->ph,1,p,modulation);
- }
- else
- if(prev->type==phLIQUID || prev->type==phNASAL)
- {
- DoAmplitude(p->amp,amp_env);
- DoSpect(ph,prev->ph,next->ph,1,p,modulation); // continue with pre-vocalic rising tone
- DoPitch(pitch_env,p->pitch1,p->pitch2);
- }
- else
- {
- if(!(p->synthflags & SFLAG_SEQCONTINUE))
- {
- DoAmplitude(p->amp,amp_env);
- DoPitch(pitch_env,p->pitch1,p->pitch2);
- }
-
- DoSpect(ph,prev->ph,next->ph,1,p,modulation);
- }
-
- DoSpect(p->ph,prev->ph,next->ph,2,p,modulation);
-
- memset(vowel_transition,0,sizeof(vowel_transition));
- break;
- }
- ix++;
- }
- EndPitch(1);
- if(*n_ph > 0)
- {
- DoMarker(espeakEVENT_END, count_characters, 0, count_sentences); // end of clause
- *n_ph = 0;
- }
-
- if(new_voice)
- {
- // finished the current clause, now change the voice if there was an embedded
- // change voice command at the end of it (i.e. clause was broken at the change voice command)
- DoVoice(new_voice);
- new_voice = NULL;
- }
- return(0); // finished the phoneme list
- } // end of Generate
-
-
-
-
- static int timer_on = 0;
- static int paused = 0;
-
- int SynthOnTimer()
- {//===============
- if(!timer_on)
- {
- return(WavegenCloseSound());
- }
-
- do {
- if(Generate(phoneme_list,&n_phoneme_list,1)==0)
- {
- SpeakNextClause(NULL,NULL,1);
- }
- } while(skipping_text);
-
- return(0);
- }
-
-
- int SynthStatus()
- {//==============
- return(timer_on | paused);
- }
-
-
-
- int SpeakNextClause(FILE *f_in, const void *text_in, int control)
- {//==============================================================
- // Speak text from file (f_in) or memory (text_in)
- // control 0: start
- // either f_in or text_in is set, the other must be NULL
-
- // The other calls have f_in and text_in = NULL
- // control 1: speak next text
- // 2: stop
- // 3: pause (toggle)
- // 4: is file being read (0=no, 1=yes)
- // 5: interrupt and flush current text.
-
- int clause_tone;
- char *voice_change;
- static FILE *f_text=NULL;
- static const void *p_text=NULL;
-
- if(control == 4)
- {
- if((f_text == NULL) && (p_text == NULL))
- return(0);
- else
- return(1);
- }
-
- if(control == 2)
- {
- // stop speaking
- timer_on = 0;
- p_text = NULL;
- if(f_text != NULL)
- {
- fclose(f_text);
- f_text=NULL;
- }
- n_phoneme_list = 0;
- WcmdqStop();
- return(0);
- }
-
- if(control == 3)
- {
- // toggle pause
- if(paused == 0)
- {
- timer_on = 0;
- paused = 2;
- }
- else
- {
- WavegenOpenSound();
- timer_on = 1;
- paused = 0;
- Generate(phoneme_list,&n_phoneme_list,0); // re-start from beginning of clause
- }
- return(0);
- }
-
- if(control == 5)
- {
- // stop speaking, but continue looking for text
- n_phoneme_list = 0;
- WcmdqStop();
- return(0);
- }
-
- if((f_in != NULL) || (text_in != NULL))
- {
- f_text = f_in;
- p_text = text_in;
- timer_on = 1;
- paused = 0;
- }
-
- if((f_text==NULL) && (p_text==NULL))
- {
- skipping_text = 0;
- timer_on = 0;
- return(0);
- }
-
- if((f_text != NULL) && feof(f_text))
- {
- timer_on = 0;
- fclose(f_text);
- f_text=NULL;
- return(0);
- }
-
- // read the next clause from the input text file, translate it, and generate
- // entries in the wavegen command queue
- p_text = translator->TranslateClause(f_text,p_text,&clause_tone,&voice_change);
-
- if(option_phonemes > 0)
- {
- fprintf(f_trans,"%s\n",translator->phon_out);
- }
- translator->CalcPitches(clause_tone);
- translator->CalcLengths();
-
- if(voice_change != NULL)
- {
- // voice change at the end of the clause (i.e. clause was terminated by a voice change)
- new_voice = LoadVoiceVariant(voice_change+1,voice_change[0]); // add a Voice instruction to wavegen at the end of the clause
- if(new_voice != NULL)
- voice = new_voice;
- }
-
- if(skipping_text)
- {
- n_phoneme_list = 0;
- return(1);
- }
-
- if(mbrola_name[0] != 0)
- {
- #ifdef USE_MBROLA_LIB
- MbrolaTranslate(phoneme_list,n_phoneme_list,NULL);
- #else
- MbrolaTranslate(phoneme_list,n_phoneme_list,stdout);
- #endif
- }
-
- Generate(phoneme_list,&n_phoneme_list,0);
- WavegenOpenSound();
-
- return(1);
- } // end of SpeakNextClause
|