2015-01-04 17:11:20 -05:00
|
|
|
#include "TuningCanvas.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(TuningCanvas, wxGLCanvas) EVT_PAINT(TuningCanvas::OnPaint)
|
|
|
|
EVT_IDLE(TuningCanvas::OnIdle)
|
|
|
|
EVT_MOTION(TuningCanvas::OnMouseMoved)
|
|
|
|
EVT_LEFT_DOWN(TuningCanvas::OnMouseDown)
|
|
|
|
EVT_LEFT_UP(TuningCanvas::OnMouseReleased)
|
|
|
|
EVT_LEAVE_WINDOW(TuningCanvas::OnMouseLeftWindow)
|
|
|
|
EVT_ENTER_WINDOW(TuningCanvas::OnMouseEnterWindow)
|
|
|
|
wxEND_EVENT_TABLE()
|
|
|
|
|
|
|
|
TuningCanvas::TuningCanvas(wxWindow *parent, int *attribList) :
|
2015-01-14 22:14:57 -05:00
|
|
|
InteractiveCanvas(parent, attribList), dragAccum(0) {
|
2015-01-04 17:11:20 -05:00
|
|
|
|
|
|
|
glContext = new TuningContext(this, &wxGetApp().GetContext(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
TuningCanvas::~TuningCanvas() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::OnPaint(wxPaintEvent& WXUNUSED(event)) {
|
|
|
|
wxPaintDC dc(this);
|
2015-02-10 23:49:34 -05:00
|
|
|
#ifdef __APPLE__ // force half-rate?
|
|
|
|
glFinish();
|
|
|
|
#endif
|
2015-01-04 17:11:20 -05:00
|
|
|
const wxSize ClientSize = GetClientSize();
|
|
|
|
|
|
|
|
glContext->SetCurrent(*this);
|
2015-02-09 20:49:21 -05:00
|
|
|
initGLExtensions();
|
2015-01-04 17:11:20 -05:00
|
|
|
glViewport(0, 0, ClientSize.x, ClientSize.y);
|
|
|
|
|
|
|
|
glContext->DrawBegin();
|
|
|
|
|
|
|
|
DemodulatorInstance *activeDemod = wxGetApp().getDemodMgr().getLastActiveDemodulator();
|
|
|
|
|
|
|
|
if (activeDemod != NULL) {
|
2015-01-04 19:32:51 -05:00
|
|
|
glContext->DrawDemodFreqBw(activeDemod->getFrequency(), activeDemod->getBandwidth(), wxGetApp().getFrequency());
|
|
|
|
} else {
|
2015-02-02 20:10:55 -05:00
|
|
|
glContext->DrawDemodFreqBw(0, wxGetApp().getDemodMgr().getLastBandwidth(), wxGetApp().getFrequency());
|
2015-01-04 17:11:20 -05:00
|
|
|
}
|
|
|
|
|
2015-01-07 20:23:15 -05:00
|
|
|
if (mouseTracker.mouseDown()) {
|
2015-01-14 22:14:57 -05:00
|
|
|
glContext->Draw(ThemeMgr::mgr.currentTheme->tuningBar.r, ThemeMgr::mgr.currentTheme->tuningBar.g, ThemeMgr::mgr.currentTheme->tuningBar.b,
|
|
|
|
0.6, mouseTracker.getOriginMouseX(), mouseTracker.getMouseX());
|
2015-01-07 20:23:15 -05:00
|
|
|
}
|
|
|
|
|
2015-01-04 17:11:20 -05:00
|
|
|
glContext->DrawEnd();
|
|
|
|
|
|
|
|
SwapBuffers();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::OnIdle(wxIdleEvent &event) {
|
2015-01-04 19:32:51 -05:00
|
|
|
if (mouseTracker.mouseDown()) {
|
|
|
|
DemodulatorInstance *activeDemod = wxGetApp().getDemodMgr().getLastActiveDemodulator();
|
|
|
|
|
2015-01-14 22:14:57 -05:00
|
|
|
float dragDelta = mouseTracker.getMouseX() - mouseTracker.getOriginMouseX();
|
2015-01-04 19:32:51 -05:00
|
|
|
|
2015-01-14 22:14:57 -05:00
|
|
|
dragAccum += dragDelta;
|
|
|
|
|
|
|
|
float moveVal = dragAccum * 10.0;
|
2015-01-04 19:32:51 -05:00
|
|
|
|
2015-01-14 22:14:57 -05:00
|
|
|
if (uxDown > 0.275) {
|
|
|
|
wxGetApp().setFrequency(
|
|
|
|
wxGetApp().getFrequency()
|
|
|
|
+ (int) (dragAccum * fabs(dragAccum * 10.0) * fabs(dragAccum * 10.0) * (float) wxGetApp().getSampleRate()));
|
|
|
|
} else if (fabs(moveVal) >= 1.0) {
|
2015-02-02 20:10:55 -05:00
|
|
|
if (uxDown < -0.275) {
|
|
|
|
if (activeDemod != NULL) {
|
2015-02-22 23:02:39 -05:00
|
|
|
long long freq = activeDemod->getFrequency() + (int) (moveVal * fabs(moveVal) * fabs(moveVal) * fabs(moveVal));
|
|
|
|
activeDemod->setFrequency(freq);
|
|
|
|
activeDemod->updateLabel(freq);
|
2015-02-02 20:10:55 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int amt = (int) (moveVal * fabs(moveVal) * fabs(moveVal) * fabs(moveVal));
|
|
|
|
if (activeDemod != NULL) {
|
|
|
|
activeDemod->setBandwidth(activeDemod->getBandwidth() + amt);
|
|
|
|
} else {
|
|
|
|
wxGetApp().getDemodMgr().setLastBandwidth(wxGetApp().getDemodMgr().getLastBandwidth() + amt);
|
|
|
|
}
|
2015-01-04 19:32:51 -05:00
|
|
|
}
|
2015-01-14 22:14:57 -05:00
|
|
|
}
|
2015-01-07 20:23:15 -05:00
|
|
|
|
2015-01-14 22:14:57 -05:00
|
|
|
while (fabs(dragAccum * 10.0) >= 1.0) {
|
|
|
|
if (dragAccum > 0) {
|
2015-01-07 20:23:15 -05:00
|
|
|
dragAccum -= 1.0 / 10.0;
|
2015-01-14 22:14:57 -05:00
|
|
|
} else {
|
2015-01-07 20:23:15 -05:00
|
|
|
dragAccum += 1.0 / 10.0;
|
2015-01-04 19:32:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-07 20:23:15 -05:00
|
|
|
|
|
|
|
Refresh(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::OnMouseMoved(wxMouseEvent& event) {
|
|
|
|
InteractiveCanvas::OnMouseMoved(event);
|
2015-03-25 21:35:42 -04:00
|
|
|
int index;
|
|
|
|
|
|
|
|
index = glContext->GetTunerDigitIndex(mouseTracker.getMouseX(),11,-1.0,(1.0/3.0)*2.0); // freq
|
|
|
|
if (index > 0) {
|
|
|
|
std::cout << "freq " << index << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
index = glContext->GetTunerDigitIndex(mouseTracker.getMouseX(),7,-1.0+(2.25/3.0),(1.0/4.0)*2.0); // bw
|
|
|
|
if (index > 0) {
|
|
|
|
std::cout << "bw " << index << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
index = glContext->GetTunerDigitIndex(mouseTracker.getMouseX(),11,-1.0+(2.0/3.0)*2.0,(1.0/3.0)*2.0); // center
|
|
|
|
if (index > 0) {
|
|
|
|
std::cout << "ctr " << index << std::endl;
|
|
|
|
}
|
|
|
|
|
2015-01-04 17:11:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::OnMouseDown(wxMouseEvent& event) {
|
|
|
|
InteractiveCanvas::OnMouseDown(event);
|
2015-01-04 19:32:51 -05:00
|
|
|
mouseTracker.setVertDragLock(true);
|
|
|
|
|
2015-01-07 20:23:15 -05:00
|
|
|
uxDown = 2.0 * (mouseTracker.getMouseX() - 0.5);
|
|
|
|
|
2015-01-04 19:32:51 -05:00
|
|
|
dragAccum = 0;
|
2015-01-14 22:14:57 -05:00
|
|
|
SetCursor(wxCURSOR_IBEAM);
|
2015-01-04 17:11:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::OnMouseWheelMoved(wxMouseEvent& event) {
|
|
|
|
InteractiveCanvas::OnMouseWheelMoved(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::OnMouseReleased(wxMouseEvent& event) {
|
|
|
|
InteractiveCanvas::OnMouseReleased(event);
|
2015-01-04 19:32:51 -05:00
|
|
|
mouseTracker.setVertDragLock(false);
|
2015-01-14 22:14:57 -05:00
|
|
|
SetCursor(wxCURSOR_SIZEWE);
|
2015-01-04 17:11:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::OnMouseLeftWindow(wxMouseEvent& event) {
|
|
|
|
InteractiveCanvas::OnMouseLeftWindow(event);
|
2015-01-14 22:14:57 -05:00
|
|
|
SetCursor(wxCURSOR_CROSS);
|
2015-01-04 17:11:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::OnMouseEnterWindow(wxMouseEvent& event) {
|
|
|
|
InteractiveCanvas::mouseTracker.OnMouseEnterWindow(event);
|
2015-01-14 22:14:57 -05:00
|
|
|
SetCursor(wxCURSOR_SIZEWE);
|
2015-01-04 17:11:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TuningCanvas::setHelpTip(std::string tip) {
|
|
|
|
helpTip = tip;
|
|
|
|
}
|