123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662 |
- /***************************************************************************
- * 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 "wx/wx.h"
-
-
- #include "wx/wfstream.h"
- #include "wx/notebook.h"
- #include "wx/image.h"
- #include "wx/filename.h"
- #include "wx/numdlg.h"
- #include "wx/mdi.h"
- #include "wx/laywin.h"
- #include "wx/sashwin.h"
- #include <locale.h>
-
- #include "speak_lib.h"
- #include "main.h"
- #include "speech.h"
- #include "options.h"
- #include "phoneme.h"
- #include "synthesize.h"
- #include "voice.h"
- #include "spect.h"
- #include "translate.h"
- #include "prosodydisplay.h"
-
-
- static char *about_string = "espeakedit: %s\nAuthor: Jonathan Duddington (c) 2007\n\n"
- "Licensed under GNU General Public License version 3\n"
- "http://espeak.sourceforge.net/";
-
-
- const char *path_data = "/home/jsd1/speechdata/phsource";
-
- extern void TestTest(int control);
- extern void CompareLexicon(int);
- extern void ConvertToUtf8();
-
- extern void init_z();
- extern void CompileInit(void);
- extern void CompileMbrola();
- extern void InitSpectrumDisplay();
- extern void InitProsodyDisplay();
- extern void InitWaveDisplay();
-
- extern void VowelChart(int control, char *fname);
- extern void MakeVowelLists(void);
- extern void MakeWordFreqList();
-
- extern const char *dict_name;
-
- MyFrame *myframe = NULL;
- SpectDisplay *currentcanvas = NULL;
-
- ChildFrProsody *prosodyframe = NULL;
- ProsodyDisplay *prosodycanvas = NULL;
- wxNotebook *notebook = NULL;
- wxProgressDialog *progress;
- int progress_max;
- int gui_flag = 0;
-
- wxList my_children;
-
- wxFont FONT_SMALL(8,wxSWISS,wxNORMAL,wxNORMAL);
- wxFont FONT_MEDIUM(9,wxSWISS,wxNORMAL,wxNORMAL);
- wxFont FONT_NORMAL(10,wxSWISS,wxNORMAL,wxNORMAL);
-
- IMPLEMENT_APP(MyApp)
-
- wxString AppName = _T("espeakedit");
-
-
-
-
-
- int MyApp::OnExit()
- {//================
- ConfigSave(1);
- return(0);
- }
-
-
- static const char *help_text =
- "\n\nespeakedit\n"
- "\tRun with GUI\n"
- "espeakedit --compile\n"
- "\tCompile phoneme data in espeak-data/phsource\n"
- "\tand dictionary data in espeak-data/dictsource\n";
-
-
- // Initialise this in OnInit, not statically
- bool MyApp::OnInit(void)
- {//=====================
-
- int j;
- wxChar *p;
- char param[80];
-
-
- if(argc > 1)
- {
- extern void VoiceReset(int control);
-
- p = argv[1];
- j = 0;
- while((param[j] = p[j]) != 0) j++;
-
- if((strcmp(param,"--help")==0) || (strcmp(param,"-h")==0))
- {
- printf(about_string,espeak_Info(NULL));
- printf(help_text);
- exit(0);
- }
-
- ConfigInit();
- VoiceReset(0);
- WavegenSetVoice(voice);
- WavegenInitSound();
-
- if(strcmp(param,"--compile")==0)
- {
- CompileInit();
- exit(0);
- }
- }
-
- gui_flag = 1;
- // It seems that the wctype functions don't work until the locale has been set
- // to something other than the default "C". Then, not only Latin1 but also the
- // other characters give the correct results with iswalpha() etc.
- if(setlocale(LC_CTYPE,"en_US.UTF-8") == NULL)
- {
- if(setlocale(LC_CTYPE,"UTF-8") == NULL)
- setlocale(LC_CTYPE,"");
- }
-
-
- // Create the main frame window
- myframe = new MyFrame(NULL, -1, AppName, wxPoint(0, 0), wxSize(1024, 768),
- wxDEFAULT_FRAME_STYLE |
- wxNO_FULL_REPAINT_ON_RESIZE |
- wxHSCROLL | wxVSCROLL);
-
-
- // Make a menubar
- myframe->SetMenuBar(MakeMenu(0));
-
- myframe->CreateStatusBar();
-
- myframe->Show(TRUE);
-
- SetTopWindow(myframe);
- wxInitAllImageHandlers();
- // wxImage::AddHandler(wxPNGHandler);
- return TRUE;
- }
-
- BEGIN_EVENT_TABLE(MyFrame, wxMDIParentFrame)
- EVT_CHAR(MyFrame::OnKey)
- EVT_MENU(MENU_ABOUT, MyFrame::OnAbout)
- EVT_MENU(MENU_SPECTRUM, MyFrame::OnNewWindow)
- EVT_MENU(MENU_SPECTRUM2, MyFrame::OnNewWindow)
- EVT_MENU(MENU_PROSODY, MyFrame::OnProsody)
- EVT_MENU(MENU_PARAMS, MyFrame::OnOptions)
- EVT_MENU(MENU_PATH0, MyFrame::OnOptions)
- EVT_MENU(MENU_PATH1, MyFrame::OnOptions)
- EVT_MENU(MENU_PATH2, MyFrame::OnOptions)
- EVT_MENU(MENU_PATH3, MyFrame::OnOptions)
- EVT_MENU(MENU_PATH4, MyFrame::OnOptions)
- EVT_MENU(MENU_COMPILE_PH, MyFrame::OnTools)
- EVT_MENU(MENU_COMPILE_DICT, MyFrame::OnTools)
- EVT_MENU(MENU_COMPILE_MBROLA, MyFrame::OnTools)
- EVT_MENU(MENU_CLOSE_ALL, MyFrame::OnQuit)
- EVT_MENU(MENU_QUIT, MyFrame::OnQuit)
- EVT_MENU(MENU_SPEAK_TRANSLATE, MyFrame::OnSpeak)
- EVT_MENU(MENU_SPEAK_RULES, MyFrame::OnSpeak)
- EVT_MENU(MENU_SPEAK_TEXT, MyFrame::OnSpeak)
- EVT_MENU(MENU_SPEAK_FILE, MyFrame::OnSpeak)
- EVT_MENU(MENU_SPEAK_STOP, MyFrame::OnSpeak)
- EVT_MENU(MENU_SPEAK_PAUSE, MyFrame::OnSpeak)
- EVT_MENU(MENU_SPEAK_VOICE, MyFrame::OnSpeak)
- EVT_MENU(MENU_SPEAK_VOICE_VARIANT, MyFrame::OnSpeak)
- EVT_MENU(MENU_LOAD_WAV, MyFrame::OnTools)
- EVT_MENU(MENU_VOWELCHART1, MyFrame::OnTools)
- EVT_MENU(MENU_VOWELCHART2, MyFrame::OnTools)
- EVT_MENU(MENU_VOWELCHART3, MyFrame::OnTools)
- EVT_MENU(MENU_LEXICON_RU, MyFrame::OnTools)
- EVT_MENU(MENU_LEXICON_DE, MyFrame::OnTools)
- EVT_MENU(MENU_TO_UTF8, MyFrame::OnTools)
- EVT_MENU(MENU_COUNT_WORDS, MyFrame::OnTools)
- EVT_MENU(MENU_TEST, MyFrame::OnTools)
- EVT_MENU(MENU_TEST2, MyFrame::OnTools)
-
- EVT_TIMER(1, MyFrame::OnTimer)
- EVT_SIZE(MyFrame::OnSize)
- EVT_SASH_DRAGGED_RANGE(ID_WINDOW_TOP, ID_WINDOW_BOTTOM, MyFrame::OnSashDrag)
- END_EVENT_TABLE()
-
-
- MyFrame::MyFrame(wxWindow *parent, const wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size,
- const long style):
- wxMDIParentFrame(parent, id, title, pos, size, style)
- {//===================================================================================================================
- // Main Frame constructor
-
- int error_flag = 0;
- int result;
- int param;
-
- // Create some dummy layout windows
- wxSashLayoutWindow *win;
-
- // Another window to the left of the client window
- win = new wxSashLayoutWindow(this, ID_WINDOW_LEFT2,
- wxDefaultPosition, wxSize(200, 30),
- wxNO_BORDER | wxSW_3D | wxCLIP_CHILDREN);
- win->SetDefaultSize(wxSize(208, 1000));
- win->SetOrientation(wxLAYOUT_VERTICAL);
- win->SetAlignment(wxLAYOUT_LEFT);
- // win->SetBackgroundColour(wxColour(0, 255, 255));
- win->SetSashVisible(wxSASH_RIGHT, TRUE);
-
- m_leftWindow2 = win;
-
- notebook = new wxNotebook(m_leftWindow2,-1);
- // notebook->AddPage(voicedlg,_T("Voice"),FALSE);
- formantdlg = new FormantDlg(notebook);
- notebook->AddPage(formantdlg,_T(" Spect"),FALSE);
- voicedlg = new VoiceDlg(notebook);
-
- transldlg = new TranslDlg(notebook);
- notebook->AddPage(transldlg,_T("Text"),TRUE);
-
-
- ConfigInit();
- WavegenInitSound();
-
- if((result = LoadPhData()) != 1)
- {
- if(result == -1)
- wxLogError(_T("Failed to load phoneme data,\nneeds espeak-data/phontab,phondata,phonindex\nPath = ")+wxString(path_home,wxConvLocal));
- else
- wxLogError(_T("Wrong version of espeak-data: 0x%x (expects 0x%x)"),result,version_phdata);
-
- error_flag = 1;
- }
-
- f_trans = stdout;
- option_ssml = 1;
-
-
- // if(LoadVoice(voice_name,0) == NULL)
- if(SetVoiceByName(voice_name2) != EE_OK)
- {
- if(error_flag==0)
- wxLogError(_T("Failed to load voice data"));
- strcpy(dictionary_name,"en");
- }
- else
- {
- SetVoiceTitle(voice_name2);
- }
- WavegenSetVoice(voice);
-
- for(param=0; param<N_SPEECH_PARAM; param++)
- param_stack[0].parameter[param] = param_defaults[param];
-
- SetParameter(espeakRATE,option_speed,0);
-
- SetSpeed(3);
- SynthesizeInit();
-
- InitSpectrumDisplay();
- InitProsodyDisplay();
- // InitWaveDisplay();
- espeak_ListVoices(NULL);
-
- m_timer.SetOwner(this,1);
-
- m_timer.Start(500); /* 0.5 timer */
-
- } // end of MyFrame::MyFrame
-
-
- void MyFrame::SetVoiceTitle(char *voice_name)
- {//==========================================
- SetTitle(AppName + _T(" - ") + wxString(voice_name,wxConvLocal) + _T(" voice"));
- }
-
-
-
- void MyFrame::OnKey(wxKeyEvent& event)
- {
- int key;
-
- key = event.GetKeyCode();
-
- if((currentcanvas != NULL) && (currentcanvas != FindFocus()))
- {
- if((key == WXK_F1) || (key == WXK_F2))
- {
- currentcanvas->OnKey(event);
- currentcanvas->SetFocus();
- return;
- }
- }
-
- event.Skip();
- }
-
- void MyFrame::OnTimer(wxTimerEvent &event)
- //****************************************
- {
- SynthOnTimer();
- }
-
-
- void MyFrame::OnQuit(wxCommandEvent& event)
- {
- switch(event.GetId())
- {
- case MENU_QUIT:
- Close(TRUE);
- break;
- case MENU_CLOSE_ALL:
- break;
- }
- }
-
-
- void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
- {//===================================================
- char buf[300];
-
- sprintf(buf,about_string,espeak_Info(NULL));
- (void)wxMessageBox(wxString(buf,wxConvLocal), _T("About eSpeak Editor"));
- }
-
-
- void OnOptions2(int event_id)
- {//==========================
- wxString string;
- int value;
-
- switch(event_id)
- {
- case MENU_PARAMS:
- value = wxGetNumberFromUser(_T(""),_T(""),_T("Speed"),option_speed,80,320);
- if(value > 0)
- {
- option_speed = value;
- SetParameter(espeakRATE,option_speed,0);
- SetSpeed(3);
- }
- break;
-
- case MENU_PATH0:
- string = wxFileSelector(_T("Master phonemes file"),wxFileName(path_phfile).GetPath(),
- _T(""),_T(""),_T("*"),wxOPEN);
- if(!string.IsEmpty())
- {
- path_phfile = string;
- }
- break;
-
- case MENU_PATH1:
- string = wxDirSelector(_T("Phoneme source directory"),path_phsource);
- if(!string.IsEmpty())
- {
- path_phsource = string;
- }
- break;
-
- case MENU_PATH2:
- string = wxDirSelector(_T("Dictionary source directory"),path_dictsource);
- if(!string.IsEmpty())
- {
- path_dictsource = string;
- }
- break;
-
- case MENU_PATH3:
- string = wxFileSelector(_T("Sound output file"),wxFileName(path_speech).GetPath(),
- _T(""),_T("WAV"),_T("*"),wxSAVE);
- if(!string.IsEmpty())
- {
- path_speech = string;
- }
- break;
-
- case MENU_PATH4:
- string = wxFileSelector(_T("Voice file to modify formant peaks"),wxFileName(path_speech).GetPath(),
- _T(""),_T(""),_T("*"),wxOPEN);
- if(!string.IsEmpty())
- {
- path_modifiervoice = string;
- }
- break;
- }
-
- ConfigSetPaths();
- }
-
-
- void MyFrame::OnOptions(wxCommandEvent& event)
- {//===========================================
- OnOptions2(event.GetId());
- }
-
-
-
-
- void MyFrame::OnTools(wxCommandEvent& event)
- {//=========================================
- int err;
- FILE *log;
- char fname_log[sizeof(path_dsource)+12];
- char err_fname[sizeof(path_home)+15];
-
- switch(event.GetId())
- {
- case MENU_TEST:
- TestTest(0);
- break;
-
- case MENU_TEST2:
- TestTest(2);
- break;
-
- case MENU_TO_UTF8:
- ConvertToUtf8();
- break;
-
- case MENU_COUNT_WORDS:
- MakeWordFreqList();
- break;
-
- case MENU_LEXICON_RU:
- case MENU_LEXICON_DE:
- CompareLexicon(event.GetId()); // Compare a lexicon with _rules translation
- break;
-
- case MENU_COMPILE_PH:
- CompileInit();
- break;
-
- case MENU_COMPILE_MBROLA:
- CompileMbrola();
- break;
-
- case MENU_COMPILE_DICT:
- sprintf(fname_log,"%s%s",path_dsource,"dict_log");
- log = fopen(fname_log,"w");
-
- if((err = CompileDictionary(path_dsource,dictionary_name,log,err_fname)) < 0)
- {
- wxLogError(_T("Can't access file:\n")+wxString(err_fname,wxConvLocal));
-
- wxString dir = wxDirSelector(_T("Directory containing dictionary files"),path_dictsource);
- if(!dir.IsEmpty())
- {
- path_dictsource = dir;
- strncpy0(path_dsource,path_dictsource.mb_str(wxConvLocal),sizeof(path_dsource)-1);
- strcat(path_dsource,"/");
- }
- break;
- }
- wxLogStatus(_T("Compiled '")+wxString(dictionary_name,wxConvLocal)+_T("', %d errors"),err);
-
- if(log != NULL)
- fclose(log);
- break;
-
- case MENU_VOWELCHART1:
- MakeVowelLists();
- break;
-
- case MENU_VOWELCHART2:
- VowelChart(2,NULL);
- break;
-
- case MENU_VOWELCHART3:
- VowelChart(3,NULL);
- break;
-
- case MENU_LOAD_WAV:
- // LoadWavFile();
- break;
- }
- }
-
- extern wxMenu *speak_menu;
-
- void MyFrame::OnSpeak(wxCommandEvent& event)
- {//=========================================
- switch(event.GetId())
- {
- case MENU_SPEAK_TRANSLATE:
- case MENU_SPEAK_RULES:
- case MENU_SPEAK_TEXT:
- transldlg->OnCommand(event);
- break;
-
- case MENU_SPEAK_FILE:
- transldlg->SpeakFile();
- break;
-
- case MENU_SPEAK_STOP:
- SpeakNextClause(NULL,NULL,2);
- break;
-
- case MENU_SPEAK_PAUSE:
- SpeakNextClause(NULL,NULL,3);
- if(SynthStatus() & 2)
- speak_menu->SetLabel(MENU_SPEAK_PAUSE,_T("&Resume"));
- else
- speak_menu->SetLabel(MENU_SPEAK_PAUSE,_T("&Pause"));
- break;
-
- case MENU_SPEAK_VOICE:
- transldlg->ReadVoice(0);
- SetVoiceTitle(voice_name2);
- break;
-
- case MENU_SPEAK_VOICE_VARIANT:
- transldlg->ReadVoice(1);
- SetVoiceTitle(voice_name2);
- break;
- }
- }
-
-
- void MyFrame::OnSashDrag(wxSashEvent& event)
- {
- if (event.GetDragStatus() == wxSASH_STATUS_OUT_OF_RANGE)
- return;
-
- switch (event.GetId())
- {
- case ID_WINDOW_TOP:
- {
- m_topWindow->SetDefaultSize(wxSize(1000, event.GetDragRect().height));
- break;
- }
- case ID_WINDOW_LEFT1:
- {
- m_leftWindow1->SetDefaultSize(wxSize(event.GetDragRect().width, 1000));
- break;
- }
- case ID_WINDOW_LEFT2:
- {
- m_leftWindow2->SetDefaultSize(wxSize(event.GetDragRect().width, 1000));
- break;
- }
- case ID_WINDOW_BOTTOM:
- {
- m_bottomWindow->SetDefaultSize(wxSize(1000, event.GetDragRect().height));
- break;
- }
- }
- wxLayoutAlgorithm layout;
- layout.LayoutMDIFrame(this);
-
- // Leaves bits of itself behind sometimes
- GetClientWindow()->Refresh();
- }
-
-
-
- void MyFrame::OnSize(wxSizeEvent& WXUNUSED(event))
- {
- wxLayoutAlgorithm layout;
- layout.LayoutMDIFrame(this);
- }
-
- // Note that SASHTEST_NEW_WINDOW and SASHTEST_ABOUT commands get passed
- // to the parent window for processing, so no need to
- // duplicate event handlers here.
-
- BEGIN_EVENT_TABLE(MyChild, wxMDIChildFrame)
- EVT_MENU(SPECTSEQ_CLOSE, MyChild::OnQuit)
- EVT_MENU(SPECTSEQ_SAVE, MyChild::OnSave)
- EVT_MENU(SPECTSEQ_SAVEAS, MyChild::OnSaveAs)
- EVT_MENU(SPECTSEQ_SAVESELECT, MyChild::OnSaveSelect)
- EVT_MENU(SPECTSEQ_SAVEPITCH, MyChild::OnSavePitchenv)
-
- EVT_ACTIVATE(MyChild::OnActivate)
- END_EVENT_TABLE()
-
- MyChild::MyChild(wxMDIParentFrame *parent, const wxString& title, const wxPoint& pos, const wxSize& size,
- const long style):
- wxMDIChildFrame(parent, -1, title, pos, size, style)
- {
- canvas = NULL;
- my_children.Append(this);
- }
-
- MyChild::~MyChild(void)
- {
- wxWindow *w;
- canvas = NULL;
- #ifndef PLATFORM_WINDOWS
- // bug in wxMDIChildFrame, we need to explicitly remove the ChildFrame from the ClientWindow
- w = myframe->GetClientWindow();
- w->RemoveChild(this);
- #endif
- my_children.DeleteObject(this);
- }
-
- //extern void CloseCanvas();
-
- void MyChild::OnQuit(wxCommandEvent& WXUNUSED(event))
- {
- Destroy();
-
- }
-
- void MyChild::OnSave(wxCommandEvent& WXUNUSED(event))
- {
- canvas->Save(canvas->savepath);
- }
-
- void MyChild::OnSaveAs(wxCommandEvent& WXUNUSED(event))
- {
- canvas->Save();
- }
-
- void MyChild::OnSaveSelect(wxCommandEvent& WXUNUSED(event))
- {
- canvas->Save(_T(""),1);
- }
-
- void MyChild::OnSavePitchenv(wxCommandEvent& WXUNUSED(event))
- {
- canvas->SavePitchenv(canvas->spectseq->pitchenv);
- }
-
- void MyChild::OnActivate(wxActivateEvent& event)
- {
- if(canvas)
- canvas->OnActivate(event.GetActive());
-
-
- }
|