2014-11-12 21:55:11 -05:00
|
|
|
#include "ScopeCanvas.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 "CubicSDR.h"
|
|
|
|
#include "CubicSDRDefs.h"
|
|
|
|
#include "AppFrame.h"
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
wxBEGIN_EVENT_TABLE(ScopeCanvas, wxGLCanvas) EVT_PAINT(ScopeCanvas::OnPaint)
|
|
|
|
EVT_IDLE(ScopeCanvas::OnIdle)
|
|
|
|
wxEND_EVENT_TABLE()
|
|
|
|
|
|
|
|
ScopeCanvas::ScopeCanvas(wxWindow *parent, int *attribList) :
|
|
|
|
wxGLCanvas(parent, wxID_ANY, attribList, wxDefaultPosition, wxDefaultSize,
|
2014-12-29 00:24:10 -05:00
|
|
|
wxFULL_REPAINT_ON_RESIZE), parent(parent), frameTimer(0), stereo(false) {
|
2014-11-12 21:55:11 -05:00
|
|
|
|
|
|
|
glContext = new ScopeContext(this, &wxGetApp().GetContext(this));
|
2014-11-16 23:20:48 -05:00
|
|
|
timer.start();
|
2014-11-12 21:55:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ScopeCanvas::~ScopeCanvas() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-11-15 23:41:41 -05:00
|
|
|
void ScopeCanvas::setWaveformPoints(std::vector<float> &waveform_points_in) {
|
|
|
|
waveform_points = waveform_points_in;
|
|
|
|
}
|
|
|
|
|
2014-12-29 00:24:10 -05:00
|
|
|
void ScopeCanvas::setStereo(bool state) {
|
|
|
|
stereo = state;
|
2014-12-26 23:28:18 -05:00
|
|
|
}
|
|
|
|
|
2014-11-12 21:55:11 -05:00
|
|
|
void ScopeCanvas::OnPaint(wxPaintEvent& WXUNUSED(event)) {
|
|
|
|
wxPaintDC dc(this);
|
|
|
|
const wxSize ClientSize = GetClientSize();
|
|
|
|
|
|
|
|
glContext->SetCurrent(*this);
|
|
|
|
glViewport(0, 0, ClientSize.x, ClientSize.y);
|
|
|
|
|
2014-12-26 23:28:18 -05:00
|
|
|
glContext->DrawBegin();
|
2014-12-29 00:24:10 -05:00
|
|
|
glContext->Plot(waveform_points, stereo);
|
2014-12-26 23:28:18 -05:00
|
|
|
glContext->DrawEnd();
|
2014-11-12 21:55:11 -05:00
|
|
|
|
|
|
|
SwapBuffers();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScopeCanvas::OnIdle(wxIdleEvent &event) {
|
2014-11-21 00:49:41 -05:00
|
|
|
// timer.update();
|
|
|
|
// frameTimer += timer.lastUpdateSeconds();
|
|
|
|
// if (frameTimer > 1.0/30.0) {
|
2014-11-25 22:51:14 -05:00
|
|
|
Refresh(false);
|
2014-11-21 00:49:41 -05:00
|
|
|
// frameTimer = 0;
|
|
|
|
// }
|
2014-11-12 21:55:11 -05:00
|
|
|
}
|