/*************************************************************************** * Copyright (C) 2005, 2006 by Jonathan Duddington * * jonsd@users.sourceforge.net * * * * 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 2 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, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wx.h" #include "wx/mdi.h" #include "main.h" #include "speech.h" #include "voice.h" #include "spect.h" #include "wx/textctrl.h" #include "wx/checkbox.h" FormantDlg *formantdlg=NULL; ByteGraph *pitchgraph=NULL; BEGIN_EVENT_TABLE(FormantDlg, wxPanel) EVT_BUTTON(T_ZOOMOUT,FormantDlg::OnCommand) EVT_BUTTON(T_ZOOMIN,FormantDlg::OnCommand) EVT_SPINCTRL(T_AMPLITUDE,FormantDlg::OnSpin) EVT_SPINCTRL(T_TIMESEQ,FormantDlg::OnSpin) EVT_SPINCTRL(T_AMPFRAME,FormantDlg::OnSpin) EVT_SPINCTRL(T_TIMEFRAME,FormantDlg::OnSpin) END_EVENT_TABLE() void FormantDlg::OnCommand(wxCommandEvent& event) {//============================================= int id; switch(id = event.GetId()) { case T_ZOOMIN: case T_ZOOMOUT: currentcanvas->OnZoom(id); break; case T_AMPLITUDE: currentcanvas->RefreshDialogValues(0); break; case T_TIMEFRAME: case T_AMPFRAME: currentcanvas->RefreshDialogValues(1); break; } currentcanvas->SetFocus(); } void FormantDlg::OnSpin(wxSpinEvent& event) {//============================================= int id; switch(id = event.GetId()) { case T_AMPLITUDE: case T_TIMESEQ: case T_TIMEFRAME: currentcanvas->RefreshDialogValues(0); break; case T_AMPFRAME: currentcanvas->RefreshDialogValues(1); break; } currentcanvas->SetFocus(); } FormantDlg::FormantDlg(wxWindow *parent) : wxPanel(parent,-1,wxDefaultPosition,wxSize(400,1000)) {//========================================================================== int ix; int y; int xplace; int id; wxString string; y = 24; xplace = 28; id = 201; new wxStaticText(this,-1,_T("Formants"),wxPoint(4,5)); for(ix=0; ix5) t_pkwidth[ix]->Hide(); } t_ampframe = new wxSpinCtrl(this,T_AMPFRAME,_T(""), wxPoint(6,244),wxSize(52,24),wxTE_CENTRE,0,500); t_lab[3] = new wxStaticText(this,-1,_T("% amp - Frame"),wxPoint(61,248)); t_timeframe = new wxSpinCtrl(this,T_TIMEFRAME,_T(""), wxPoint(6,272),wxSize(52,24),wxTE_CENTRE,0,500); t_orig_frame = new wxStaticText(this,-1,_T("mS"),wxPoint(61,276)); t_zoomout = new wxButton(this,T_ZOOMOUT,_T("Zoom-"),wxPoint(16,310)); t_zoomin = new wxButton(this,T_ZOOMIN,_T("Zoom+"),wxPoint(106,310)); // usepitchenv = new wxCheckBox(this,T_USEPITCHENV,_T("???"),wxPoint(20,320)); t_amplitude = new wxSpinCtrl(this,T_AMPLITUDE,_T(""), wxPoint(6,370),wxSize(52,24),wxTE_CENTRE,0,500); t_lab[2] = new wxStaticText(this,-1,_T("% amp - Sequence"),wxPoint(61,374)); // t_timeseq = new wxSpinCtrl(this,T_TIMESEQ,_T(""), // wxPoint(6,400),wxSize(52,24),wxTE_CENTRE,0,500); t_orig_seq = new wxStaticText(this,-1,_T("mS"),wxPoint(61,404)); t_pitch = new wxStaticText(this,-1,_T(""),wxPoint(4,440),wxSize(192,24)); pitchgraph = new ByteGraph(this,wxPoint(0,460),wxSize(200,140)); pitchgraph->SetData(128,env_fall); pitchgraph->ShowSpectrum(1); pitchgraph->Show(); } void FormantDlg::ShowFrame(SpectSeq *spectseq, int frame, int pk, int field) {//============================================================== int ix; SpectFrame *sf; wxString value; int original_mS; if(spectseq->frames == NULL) return; sf = spectseq->frames[frame]; if(field == 0xff) { // indicate the selected peak // t_select_peak[pk]->SetValue(TRUE); } for(ix=0; ixSetLabel(value); } if(field & 1) { value.Printf(_T("%4d"),sf->peaks[ix].pkfreq); t_pkfreq[ix]->SetValue(value); } if(field & 2) { value.Printf(_T("%3d"),sf->peaks[ix].pkheight >> 6); t_pkheight[ix]->SetValue(value); } if(field & 4) { value.Printf(_T("%3d"),sf->peaks[ix].pkwidth); t_pkwidth[ix]->SetValue(value); #ifdef WIDTH2 value.Printf(_T("%3d"),sf->peaks[ix].pkright); t_pkright[ix]->SetValue(value); #endif } } // find the time until the next keyframe SetSpinCtrl(t_timeframe,int(spectseq->GetFrameLength(frame,1,&original_mS)+0.5)); // round to nearest integer value.Printf(_T("%d mS"),original_mS); t_orig_frame->SetLabel(value); value.Printf(_T("%3d"),sf->amp_adjust); t_ampframe->SetValue(value); } // end of FormantDlg::ShowFrame BEGIN_EVENT_TABLE(ByteGraph,wxScrolledWindow) EVT_LEFT_DOWN(ByteGraph::OnMouse) END_EVENT_TABLE() static wxBrush BRUSH_FORMANT(wxColour(255,100,50),wxSOLID); static wxPen PEN_KEYFRAME(wxColour(255,220,100),2,wxSOLID); static wxPen PEN_KEYFORMANT(wxColour(0,0,0),2,wxSOLID); ByteGraph::ByteGraph(wxWindow *parent, const wxPoint& pos, const wxSize &size): wxScrolledWindow(parent,-1,pos,size,wxSUNKEN_BORDER) {//============================================================ npoints = 0; show_spectrum = 0; } // end of ByteGraph::ByteGraph void ByteGraph::SetData(int nx, unsigned char *data) {//================================================= npoints = nx; graph = data; Refresh(); } // end of ByteGraph::SetData void ByteGraph::ShowSpectrum(int yes) {//================================== show_spectrum = yes; } void ByteGraph::DrawSpectrum(wxDC& dc) {//=================================== SpectSeq *seq; SpectFrame *sf; int ix; int x, y; int pk; double length; int numframes; int width, height; double xscale, yscale; spectrum_scale = 0; if(currentcanvas==NULL) return; if((seq = currentcanvas->spectseq) == NULL) return; numframes = seq->numframes; if(numframes == 0) return; GetClientSize(&width,&height); if(((length = seq->frames[numframes-1]->time)==0) && (numframes>1)) length = seq->frames[numframes-2]->time; length = length - seq->frames[0]->time; yscale = height/3000.0; spectrum_scale = xscale = width/length; dc.SetBrush(BRUSH_FORMANT); dc.SetPen(*wxTRANSPARENT_PEN); for(ix=0; ixframes[ix]; x = int(sf->time*xscale); if(sf->keyframe) { dc.SetPen(PEN_KEYFRAME); dc.DrawLine(x,0,x,height); } dc.SetPen(*wxTRANSPARENT_PEN); dc.DrawCircle(x,int(height-(sf->formants[1].freq-200)*yscale),3); dc.DrawCircle(x,int(height-(sf->formants[2].freq-200)*yscale),3); dc.DrawCircle(x,int(height-(sf->formants[3].freq-200)*yscale),3); if(sf->keyframe) { dc.SetPen(PEN_KEYFORMANT); for(pk=1; pk<6; pk++) { y = height-int((sf->peaks[pk].pkfreq-200)*yscale); dc.DrawLine(x-3,y,x+3,y); } } } } void ByteGraph::OnDraw(wxDC &dc) {//============================ int x, y, x2, y2, ix; int width, height; double xscale, yscale; if(show_spectrum) DrawSpectrum(dc); if(npoints==0) return; GetClientSize(&width,&height); xscale = double(width) / npoints; yscale = double(height) / 256.0; if(npoints > 8) { // draw pitch profile dc.SetPen(*wxMEDIUM_GREY_PEN); x = 0; y = height - int(graph[0]*yscale); for(ix=1; ixspectseq) == NULL) return; wxClientDC dc(this); PrepareDC(dc); wxPoint pt(event.GetLogicalPosition(dc)); t0 = t2 = seq->frames[0]->time; time = (double(pt.x) / spectrum_scale) + t0; for(ix=1; ixnumframes; ix++) { t1=t2; t2 = seq->frames[ix]->time; if(time <= t1 + (t2-t1)/2) { currentcanvas->SelectFrame(ix-1); break; } } } // end of ByteGraph::OnMouse