#include "AppFrame.h" #include "wx/wxprec.h" #ifndef WX_PRECOMP #include "wx/wx.h" #endif #if !wxUSE_GLCANVAS #error "OpenGL required: set wxUSE_GLCANVAS to 1 and rebuild the library" #endif #include #include "SDRThread.h" wxBEGIN_EVENT_TABLE(AppFrame, wxFrame) //EVT_MENU(wxID_NEW, AppFrame::OnNewWindow) EVT_MENU(wxID_CLOSE, AppFrame::OnClose) EVT_THREAD(EVENT_SDR_INPUT, AppFrame::OnEventInput) EVT_IDLE(AppFrame::OnIdle) wxEND_EVENT_TABLE() AppFrame::AppFrame() : wxFrame(NULL, wxID_ANY, wxT("CubicSDR")), frequency(DEFAULT_FREQ) { wxBoxSizer *vbox = new wxBoxSizer(wxVERTICAL); scopeCanvas = new ScopeCanvas(this, NULL); vbox->Add(scopeCanvas, 1, wxEXPAND | wxALL, 0); vbox->AddSpacer(2); spectrumCanvas = new SpectrumCanvas(this, NULL); vbox->Add(spectrumCanvas, 1, wxEXPAND | wxALL, 0); vbox->AddSpacer(2); waterfallCanvas = new WaterfallCanvas(this, NULL); vbox->Add(waterfallCanvas, 4, wxEXPAND | wxALL, 0); this->SetSizer(vbox); // SetIcon(wxICON(sample)); // Make a menubar wxMenu *menu = new wxMenu; // menu->Append(wxID_NEW); // menu->AppendSeparator(); menu->Append(wxID_CLOSE); wxMenuBar *menuBar = new wxMenuBar; menuBar->Append(menu, wxT("&File")); SetMenuBar(menuBar); CreateStatusBar(); SetClientSize(1280, 400); Centre(); Show(); m_pQueue = new SDRThreadQueue(this); t_SDR = new SDRThread(m_pQueue); if (t_SDR->Run() != wxTHREAD_NO_ERROR) { wxLogError ("Can't create the thread!"); delete t_SDR; t_SDR = NULL; } // t_IQBuffer = new IQBufferThread(this); // if (t_IQBuffer->Run() != wxTHREAD_NO_ERROR) { // wxLogError // ("Can't create the thread!"); // delete t_IQBuffer; t_IQBuffer = NULL; // } // static const int attribs[] = { WX_GL_RGBA, WX_GL_DOUBLEBUFFER, 0 }; // wxLogStatus("Double-buffered display %s supported", wxGLCanvas::IsDisplaySupported(attribs) ? "is" : "not"); // ShowFullScreen(true); } AppFrame::~AppFrame() { { wxCriticalSectionLocker enter(m_pThreadCS); if (t_SDR) { wxMessageOutputDebug().Printf("CubicSDR: deleting thread"); if (t_SDR->Delete() != wxTHREAD_NO_ERROR) { wxLogError ("Can't delete the thread!"); } } } // { // wxCriticalSectionLocker enter(m_pThreadCS); // if (t_IQBuffer) { // wxMessageOutputDebug().Printf("CubicSDR: deleting thread"); // if (t_IQBuffer->Delete() != wxTHREAD_NO_ERROR) { // wxLogError // ("Can't delete the thread!"); // } // } // } delete t_SDR; // delete t_IQBuffer; delete m_pQueue; } void AppFrame::OnClose(wxCommandEvent& WXUNUSED(event)) { // true is to force the frame to close Close(true); } void AppFrame::OnNewWindow(wxCommandEvent& WXUNUSED(event)) { new AppFrame(); } void AppFrame::OnEventInput(wxThreadEvent& event) { std::vector *new_buffer = event.GetPayload *>(); test_demod.writeBuffer(new_buffer); scopeCanvas->setWaveformPoints(test_demod.waveform_points); spectrumCanvas->setData(new_buffer); waterfallCanvas->setData(new_buffer); delete new_buffer; } void AppFrame::OnIdle(wxIdleEvent& event) { event.Skip(); } void AppFrame::setFrequency(unsigned int freq) { frequency = freq; SDRThreadTask task = SDRThreadTask(SDRThreadTask::SDR_THREAD_TUNING); task.setUInt(freq); m_pQueue->addTask(task, SDRThreadQueue::SDR_PRIORITY_HIGHEST); } int AppFrame::getFrequency() { return frequency; }