2014-10-27 21:22:29 -04:00
|
|
|
#include "PrimaryGLContext.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"
|
2014-10-30 22:51:33 -04:00
|
|
|
#include "CubicSDRDefs.h"
|
2014-11-04 19:52:11 -05:00
|
|
|
#include "AppFrame.h"
|
2014-10-30 22:51:33 -04:00
|
|
|
#include <algorithm>
|
2014-11-09 04:38:33 -05:00
|
|
|
|
2014-12-09 21:28:08 -05:00
|
|
|
GLFont PrimaryGLContext::fonts[GLFONT_MAX];
|
2014-12-08 02:16:06 -05:00
|
|
|
|
2014-11-12 21:55:11 -05:00
|
|
|
wxString PrimaryGLContext::glGetwxString(GLenum name) {
|
2014-10-27 21:22:29 -04:00
|
|
|
const GLubyte *v = glGetString(name);
|
|
|
|
if (v == 0) {
|
|
|
|
// The error is not important. It is GL_INVALID_ENUM.
|
|
|
|
// We just want to clear the error stack.
|
|
|
|
glGetError();
|
|
|
|
|
|
|
|
return wxString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return wxString((const char*) v);
|
|
|
|
}
|
|
|
|
|
2014-11-12 21:55:11 -05:00
|
|
|
void PrimaryGLContext::CheckGLError() {
|
2014-10-27 21:22:29 -04:00
|
|
|
GLenum errLast = GL_NO_ERROR;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
GLenum err = glGetError();
|
|
|
|
if (err == GL_NO_ERROR)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (err == errLast) {
|
2015-02-17 21:26:14 -05:00
|
|
|
std::cout << "OpenGL error state couldn't be reset." << std::endl;
|
2014-10-27 21:22:29 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
errLast = err;
|
|
|
|
|
2015-02-17 21:26:14 -05:00
|
|
|
std::cout << "OpenGL Error " << err << std::endl;
|
2014-10-27 21:22:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-12 21:55:11 -05:00
|
|
|
PrimaryGLContext::PrimaryGLContext(wxGLCanvas *canvas, wxGLContext *sharedContext) :
|
2015-03-06 21:11:14 -05:00
|
|
|
wxGLContext(canvas, sharedContext), hoverAlpha(1.0) {
|
2015-01-20 19:13:49 -05:00
|
|
|
//#ifndef __linux__
|
|
|
|
// SetCurrent(*canvas);
|
|
|
|
// // Pre-load fonts
|
|
|
|
// for (int i = 0; i < GLFONT_MAX; i++) {
|
|
|
|
// getFont((GLFontSize) i);
|
|
|
|
// }
|
|
|
|
// CheckGLError();
|
|
|
|
//#endif
|
2014-10-27 21:22:29 -04:00
|
|
|
}
|
|
|
|
|
2014-12-09 21:28:08 -05:00
|
|
|
GLFont &PrimaryGLContext::getFont(GLFontSize esize) {
|
|
|
|
if (!fonts[esize].isLoaded()) {
|
|
|
|
|
|
|
|
std::string fontName;
|
|
|
|
switch (esize) {
|
2014-12-10 00:34:27 -05:00
|
|
|
case GLFONT_SIZE12:
|
|
|
|
fontName = "vera_sans_mono12.fnt";
|
|
|
|
break;
|
|
|
|
case GLFONT_SIZE16:
|
|
|
|
fontName = "vera_sans_mono16.fnt";
|
|
|
|
break;
|
|
|
|
case GLFONT_SIZE18:
|
|
|
|
fontName = "vera_sans_mono18.fnt";
|
|
|
|
break;
|
|
|
|
case GLFONT_SIZE24:
|
|
|
|
fontName = "vera_sans_mono24.fnt";
|
|
|
|
break;
|
|
|
|
case GLFONT_SIZE32:
|
|
|
|
fontName = "vera_sans_mono32.fnt";
|
|
|
|
break;
|
|
|
|
case GLFONT_SIZE48:
|
|
|
|
fontName = "vera_sans_mono48.fnt";
|
|
|
|
break;
|
2015-01-20 19:13:49 -05:00
|
|
|
default:
|
|
|
|
fontName = "vera_sans_mono12.fnt";
|
|
|
|
break;
|
2014-12-09 21:28:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fonts[esize].loadFont(fontName);
|
2014-12-08 02:16:06 -05:00
|
|
|
}
|
|
|
|
|
2014-12-09 21:28:08 -05:00
|
|
|
return fonts[esize];
|
2014-12-08 02:16:06 -05:00
|
|
|
}
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
void PrimaryGLContext::DrawDemodInfo(DemodulatorInstance *demod, RGBColor color, long long center_freq, long long srate) {
|
2014-12-09 21:28:08 -05:00
|
|
|
if (!demod) {
|
|
|
|
return;
|
|
|
|
}
|
2015-01-11 17:08:16 -05:00
|
|
|
if (!srate) {
|
|
|
|
srate = wxGetApp().getSampleRate();
|
|
|
|
}
|
2014-12-09 21:28:08 -05:00
|
|
|
|
2014-12-10 00:34:27 -05:00
|
|
|
GLint vp[4];
|
|
|
|
glGetIntegerv( GL_VIEWPORT, vp);
|
|
|
|
|
|
|
|
float viewHeight = (float) vp[3];
|
|
|
|
float viewWidth = (float) vp[2];
|
|
|
|
|
2014-12-28 05:13:46 -05:00
|
|
|
if (center_freq == -1) {
|
|
|
|
center_freq = wxGetApp().getFrequency();
|
|
|
|
}
|
|
|
|
|
2015-01-04 13:20:31 -05:00
|
|
|
float uxPos = (float) (demod->getFrequency() - (center_freq - srate / 2)) / (float) srate;
|
2014-12-10 00:34:27 -05:00
|
|
|
uxPos = (uxPos - 0.5) * 2.0;
|
2014-12-09 21:28:08 -05:00
|
|
|
|
|
|
|
glDisable(GL_TEXTURE_2D);
|
|
|
|
|
|
|
|
glEnable(GL_BLEND);
|
2015-01-15 20:37:51 -05:00
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
2015-02-16 20:47:58 -05:00
|
|
|
glColor4f(color.r, color.g, color.b, 0.6);
|
2014-12-09 21:28:08 -05:00
|
|
|
|
2015-01-04 13:20:31 -05:00
|
|
|
float ofs = ((float) demod->getBandwidth()) / (float) srate;
|
2015-02-16 02:15:04 -05:00
|
|
|
float ofsLeft = (demod->getDemodulatorType()!=DEMOD_TYPE_USB)?ofs:0, ofsRight = (demod->getDemodulatorType()!=DEMOD_TYPE_LSB)?ofs:0;
|
2015-01-06 19:15:27 -05:00
|
|
|
|
|
|
|
float labelHeight = 20.0 / viewHeight;
|
|
|
|
float hPos = -1.0 + labelHeight;
|
|
|
|
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
|
|
|
|
glColor4f(0, 0, 0, 0.35);
|
|
|
|
glBegin(GL_QUADS);
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f(uxPos - ofsLeft, hPos + labelHeight, 0.0);
|
|
|
|
glVertex3f(uxPos - ofsLeft, -1.0, 0.0);
|
2015-01-06 19:15:27 -05:00
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f(uxPos + ofsRight, -1.0, 0.0);
|
|
|
|
glVertex3f(uxPos + ofsRight, hPos + labelHeight, 0.0);
|
2015-01-06 19:15:27 -05:00
|
|
|
glEnd();
|
|
|
|
|
2015-01-20 22:26:34 -05:00
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
|
2015-01-06 19:15:27 -05:00
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
glColor4f(color.r, color.g, color.b, 0.2);
|
2014-12-09 21:28:08 -05:00
|
|
|
glBegin(GL_QUADS);
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f(uxPos - ofsLeft, 1.0, 0.0);
|
|
|
|
glVertex3f(uxPos - ofsLeft, -1.0, 0.0);
|
2014-12-09 21:28:08 -05:00
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f(uxPos + ofsRight, -1.0, 0.0);
|
|
|
|
glVertex3f(uxPos + ofsRight, 1.0, 0.0);
|
2014-12-09 21:28:08 -05:00
|
|
|
glEnd();
|
|
|
|
|
2014-12-10 00:34:27 -05:00
|
|
|
if (ofs * 2.0 < 16.0 / viewWidth) {
|
|
|
|
ofs = 16.0 / viewWidth;
|
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
glColor4f(color.r, color.g, color.b, 0.2);
|
2014-12-10 00:34:27 -05:00
|
|
|
glBegin(GL_QUADS);
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f(uxPos - ofsLeft, hPos + labelHeight, 0.0);
|
|
|
|
glVertex3f(uxPos - ofsLeft, -1.0, 0.0);
|
2014-12-10 00:34:27 -05:00
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f(uxPos + ofsRight, -1.0, 0.0);
|
|
|
|
glVertex3f(uxPos + ofsRight, hPos + labelHeight, 0.0);
|
2014-12-10 00:34:27 -05:00
|
|
|
glEnd();
|
|
|
|
}
|
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
|
2014-12-10 00:34:27 -05:00
|
|
|
glColor4f(1.0, 1.0, 1.0, 0.8);
|
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
if (demod->getDemodulatorType() == DEMOD_TYPE_USB) {
|
|
|
|
getFont(PrimaryGLContext::GLFONT_SIZE16).drawString(demod->getLabel(), uxPos, hPos, 16, GLFont::GLFONT_ALIGN_LEFT, GLFont::GLFONT_ALIGN_CENTER);
|
|
|
|
} else if (demod->getDemodulatorType() == DEMOD_TYPE_LSB) {
|
|
|
|
getFont(PrimaryGLContext::GLFONT_SIZE16).drawString(demod->getLabel(), uxPos, hPos, 16, GLFont::GLFONT_ALIGN_RIGHT, GLFont::GLFONT_ALIGN_CENTER);
|
|
|
|
} else {
|
|
|
|
getFont(PrimaryGLContext::GLFONT_SIZE16).drawString(demod->getLabel(), uxPos, hPos, 16, GLFont::GLFONT_ALIGN_CENTER, GLFont::GLFONT_ALIGN_CENTER);
|
|
|
|
}
|
2014-12-10 00:34:27 -05:00
|
|
|
|
2014-12-09 21:28:08 -05:00
|
|
|
glDisable(GL_BLEND);
|
2014-12-10 00:34:27 -05:00
|
|
|
|
2014-12-09 21:28:08 -05:00
|
|
|
}
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
void PrimaryGLContext::DrawDemod(DemodulatorInstance *demod, RGBColor color, long long center_freq, long long srate) {
|
2014-12-08 21:08:03 -05:00
|
|
|
if (!demod) {
|
|
|
|
return;
|
|
|
|
}
|
2015-01-11 17:08:16 -05:00
|
|
|
if (!srate) {
|
|
|
|
srate = wxGetApp().getSampleRate();
|
|
|
|
}
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2014-12-28 05:13:46 -05:00
|
|
|
if (center_freq == -1) {
|
|
|
|
center_freq = wxGetApp().getFrequency();
|
|
|
|
}
|
|
|
|
|
2015-01-04 13:20:31 -05:00
|
|
|
float uxPos = (float) (demod->getFrequency() - (center_freq - srate / 2)) / (float) srate;
|
2014-12-08 21:08:03 -05:00
|
|
|
|
|
|
|
glDisable(GL_TEXTURE_2D);
|
|
|
|
|
|
|
|
glEnable(GL_BLEND);
|
2015-01-20 22:26:34 -05:00
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
|
2015-02-16 20:47:58 -05:00
|
|
|
glColor4f(color.r, color.g, color.b, 0.6);
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
float ofs = ((float) demod->getBandwidth()) / (float) srate;
|
|
|
|
float ofsLeft = (demod->getDemodulatorType()!=DEMOD_TYPE_USB)?ofs:0, ofsRight = (demod->getDemodulatorType()!=DEMOD_TYPE_LSB)?ofs:0;
|
2014-12-08 21:08:03 -05:00
|
|
|
|
|
|
|
glBegin(GL_LINES);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0, -1.0, 0.0);
|
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 - ofsLeft, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 - ofsLeft, -1.0, 0.0);
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 + ofsRight, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 + ofsRight, -1.0, 0.0);
|
2014-12-08 21:08:03 -05:00
|
|
|
|
|
|
|
glEnd();
|
|
|
|
|
2015-01-20 22:26:34 -05:00
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
|
2015-03-06 21:11:14 -05:00
|
|
|
glColor4f(color.r, color.g, color.b, 0.2*hoverAlpha);
|
2014-12-08 21:08:03 -05:00
|
|
|
glBegin(GL_QUADS);
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 - ofsLeft, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 - ofsLeft, -1.0, 0.0);
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2015-02-16 02:15:04 -05:00
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 + ofsRight, -1.0, 0.0);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 + ofsRight, 1.0, 0.0);
|
2014-12-08 21:08:03 -05:00
|
|
|
glEnd();
|
|
|
|
|
2015-01-03 18:45:34 -05:00
|
|
|
GLint vp[4];
|
|
|
|
glGetIntegerv( GL_VIEWPORT, vp);
|
|
|
|
|
|
|
|
float viewHeight = (float) vp[3];
|
|
|
|
float viewWidth = (float) vp[2];
|
|
|
|
|
|
|
|
float labelHeight = 20.0 / viewHeight;
|
|
|
|
float xOfs = (2.0 / viewWidth);
|
|
|
|
float yOfs = (2.0 / viewHeight);
|
|
|
|
float hPos = labelHeight;
|
|
|
|
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glDisable(GL_COLOR_MATERIAL);
|
|
|
|
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
|
|
|
|
std::string demodStr;
|
|
|
|
GLFont::Align demodAlign;
|
|
|
|
|
|
|
|
switch (demod->getDemodulatorType()) {
|
|
|
|
case DEMOD_TYPE_FM:
|
|
|
|
demodStr = "FM";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_AM:
|
|
|
|
demodStr = "AM";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_LSB:
|
|
|
|
demodStr = "LSB";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_RIGHT;
|
2015-02-16 02:15:04 -05:00
|
|
|
uxPos -= xOfs;
|
2015-01-03 18:45:34 -05:00
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_USB:
|
|
|
|
demodStr = "USB";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_LEFT;
|
2015-02-16 02:15:04 -05:00
|
|
|
uxPos += xOfs;
|
2015-01-03 18:45:34 -05:00
|
|
|
break;
|
2015-06-03 05:23:16 -04:00
|
|
|
// advanced demodulators start here
|
|
|
|
case DEMOD_TYPE_ASK:
|
|
|
|
demodStr = "ASK";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_APSK:
|
|
|
|
demodStr = "APSK";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_BPSK:
|
|
|
|
demodStr = "BPSK";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_DPSK:
|
|
|
|
demodStr = "DPSK";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_PSK:
|
|
|
|
demodStr = "PSK";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_OOK:
|
|
|
|
demodStr = "OOK";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_SQAM:
|
|
|
|
demodStr = "SQAM";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_ST:
|
|
|
|
demodStr = "ST";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_QAM:
|
|
|
|
demodStr = "QAM";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case DEMOD_TYPE_QPSK:
|
|
|
|
demodStr = "QPSK";
|
|
|
|
demodAlign = GLFont::GLFONT_ALIGN_CENTER;
|
|
|
|
break;
|
2015-01-03 18:45:34 -05:00
|
|
|
}
|
2015-06-05 03:51:46 -04:00
|
|
|
|
|
|
|
// add lock to string if we have an lock
|
|
|
|
if(demod->getDemodulatorLock()) {
|
|
|
|
demodStr = demodStr + " Lock";
|
2015-06-10 04:50:14 -04:00
|
|
|
}
|
|
|
|
// else {
|
|
|
|
// demodStr = demodStr + " UnLock";
|
|
|
|
// }
|
2015-01-03 18:45:34 -05:00
|
|
|
|
|
|
|
glColor3f(0, 0, 0);
|
|
|
|
getFont(PrimaryGLContext::GLFONT_SIZE16).drawString(demodStr, 2.0 * (uxPos - 0.5) + xOfs, -1.0 + hPos - yOfs, 16, demodAlign,
|
|
|
|
GLFont::GLFONT_ALIGN_CENTER);
|
|
|
|
glColor3f(0.8, 0.8, 0.8);
|
|
|
|
getFont(PrimaryGLContext::GLFONT_SIZE16).drawString(demodStr, 2.0 * (uxPos - 0.5), -1.0 + hPos, 16, demodAlign, GLFont::GLFONT_ALIGN_CENTER);
|
|
|
|
|
2014-12-08 21:08:03 -05:00
|
|
|
glDisable(GL_BLEND);
|
2015-01-03 18:45:34 -05:00
|
|
|
|
2014-12-08 21:08:03 -05:00
|
|
|
}
|
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
void PrimaryGLContext::DrawFreqSelector(float uxPos, RGBColor color, float w, long long center_freq, long long srate) {
|
2014-12-10 18:52:24 -05:00
|
|
|
DemodulatorInstance *demod = wxGetApp().getDemodMgr().getLastActiveDemodulator();
|
|
|
|
|
2015-01-04 17:11:20 -05:00
|
|
|
long long bw = 0;
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
int last_type = wxGetApp().getDemodMgr().getLastDemodulatorType();
|
|
|
|
|
2014-12-08 21:08:03 -05:00
|
|
|
if (!demod) {
|
2015-02-02 20:10:55 -05:00
|
|
|
bw = wxGetApp().getDemodMgr().getLastBandwidth();
|
2014-12-10 18:52:24 -05:00
|
|
|
} else {
|
2015-01-04 13:20:31 -05:00
|
|
|
bw = demod->getBandwidth();
|
2014-12-08 21:08:03 -05:00
|
|
|
}
|
|
|
|
|
2015-01-11 17:08:16 -05:00
|
|
|
if (!srate) {
|
|
|
|
srate = wxGetApp().getSampleRate();
|
|
|
|
}
|
|
|
|
|
2014-12-08 21:08:03 -05:00
|
|
|
glDisable(GL_TEXTURE_2D);
|
|
|
|
|
|
|
|
glEnable(GL_BLEND);
|
2015-01-20 22:26:34 -05:00
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
|
2015-02-16 20:47:58 -05:00
|
|
|
glColor4f(color.r, color.g, color.b, 0.6);
|
2014-12-08 21:08:03 -05:00
|
|
|
|
|
|
|
glBegin(GL_LINES);
|
2015-02-16 20:47:58 -05:00
|
|
|
|
2014-12-08 21:08:03 -05:00
|
|
|
glVertex3f((uxPos - 0.5) * 2.0, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0, -1.0, 0.0);
|
|
|
|
|
2014-12-11 20:50:58 -05:00
|
|
|
float ofs;
|
|
|
|
|
|
|
|
if (w) {
|
|
|
|
ofs = w;
|
|
|
|
} else {
|
2014-12-28 05:13:46 -05:00
|
|
|
ofs = ((float) bw) / (float) srate;
|
2014-12-11 20:50:58 -05:00
|
|
|
}
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
if (last_type != DEMOD_TYPE_USB) {
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 - ofs, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 - ofs, -1.0, 0.0);
|
|
|
|
}
|
2014-12-08 21:08:03 -05:00
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
if (last_type != DEMOD_TYPE_LSB) {
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 + ofs, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos - 0.5) * 2.0 + ofs, -1.0, 0.0);
|
|
|
|
}
|
2014-12-08 21:08:03 -05:00
|
|
|
|
|
|
|
glEnd();
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-02-16 20:47:58 -05:00
|
|
|
void PrimaryGLContext::DrawRangeSelector(float uxPos1, float uxPos2, RGBColor color) {
|
|
|
|
if (uxPos2 < uxPos1) {
|
|
|
|
float temp = uxPos2;
|
|
|
|
uxPos2=uxPos1;
|
|
|
|
uxPos1=temp;
|
|
|
|
}
|
|
|
|
|
|
|
|
int last_type = wxGetApp().getDemodMgr().getLastDemodulatorType();
|
|
|
|
|
|
|
|
glDisable(GL_TEXTURE_2D);
|
|
|
|
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
|
|
|
|
glColor4f(color.r, color.g, color.b, 0.6);
|
|
|
|
|
|
|
|
glLineWidth((last_type == DEMOD_TYPE_USB)?2.0:1.0);
|
|
|
|
|
|
|
|
glBegin(GL_LINES);
|
|
|
|
glVertex3f((uxPos1 - 0.5) * 2.0, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos1 - 0.5) * 2.0, -1.0, 0.0);
|
|
|
|
glEnd();
|
|
|
|
|
|
|
|
glLineWidth((last_type == DEMOD_TYPE_LSB)?2.0:1.0);
|
|
|
|
|
|
|
|
glBegin(GL_LINES);
|
|
|
|
glVertex3f((uxPos2 - 0.5) * 2.0, 1.0, 0.0);
|
|
|
|
glVertex3f((uxPos2 - 0.5) * 2.0, -1.0, 0.0);
|
|
|
|
glEnd();
|
|
|
|
|
|
|
|
glLineWidth(1.0);
|
|
|
|
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
}
|
|
|
|
|
2015-01-15 00:59:33 -05:00
|
|
|
void PrimaryGLContext::BeginDraw(float r, float g, float b) {
|
|
|
|
glClearColor(r,g,b, 1);
|
2014-12-08 21:08:03 -05:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
|
|
|
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
glLoadIdentity();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrimaryGLContext::EndDraw() {
|
|
|
|
glFlush();
|
|
|
|
|
|
|
|
CheckGLError();
|
|
|
|
}
|
|
|
|
|
2015-03-06 21:11:14 -05:00
|
|
|
void PrimaryGLContext::setHoverAlpha(float hoverAlpha) {
|
|
|
|
this->hoverAlpha = hoverAlpha;
|
|
|
|
}
|