2014-10-27 21:22:29 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "wx/glcanvas.h"
|
|
|
|
#include "wx/timer.h"
|
|
|
|
|
2014-10-28 22:59:17 -04:00
|
|
|
#include <vector>
|
2014-11-06 01:33:59 -05:00
|
|
|
#include <queue>
|
|
|
|
|
2014-10-30 22:51:33 -04:00
|
|
|
#include "CubicSDRDefs.h"
|
|
|
|
#include "fftw3.h"
|
2014-10-28 22:59:17 -04:00
|
|
|
|
2014-11-04 23:05:04 -05:00
|
|
|
#include "Demodulate.h"
|
|
|
|
|
2014-11-06 01:33:59 -05:00
|
|
|
#ifdef WIN32
|
2014-11-05 19:10:18 -05:00
|
|
|
#include <AL/al.h>
|
|
|
|
#include <AL/alc.h>
|
2014-11-06 01:33:59 -05:00
|
|
|
#else
|
|
|
|
#include <OpenAL/al.h>
|
|
|
|
#include <OpenAL/alc.h>
|
|
|
|
#endif
|
2014-11-05 19:10:18 -05:00
|
|
|
|
2014-11-06 01:33:59 -05:00
|
|
|
#define AL_NUM_BUFFERS 16
|
2014-11-05 21:05:56 -05:00
|
|
|
#define AL_BUFFER_SIZE 4096
|
2014-11-05 19:10:18 -05:00
|
|
|
|
2014-11-04 19:52:11 -05:00
|
|
|
class PrimaryGLContext: public wxGLContext {
|
2014-10-27 21:22:29 -04:00
|
|
|
public:
|
|
|
|
PrimaryGLContext(wxGLCanvas *canvas);
|
|
|
|
|
2014-11-05 21:05:56 -05:00
|
|
|
void Plot(std::vector<float> &points, std::vector<float> &points2);
|
2014-10-27 21:22:29 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
// textures for the cube faces
|
|
|
|
GLuint m_textures[6];
|
|
|
|
};
|
|
|
|
|
2014-11-04 19:52:11 -05:00
|
|
|
class TestGLCanvas: public wxGLCanvas {
|
2014-10-27 21:22:29 -04:00
|
|
|
public:
|
|
|
|
TestGLCanvas(wxWindow *parent, int *attribList = NULL);
|
2014-11-05 19:10:18 -05:00
|
|
|
~TestGLCanvas();
|
2014-10-27 21:22:29 -04:00
|
|
|
|
2014-10-28 22:59:17 -04:00
|
|
|
void setData(std::vector<signed char> *data);
|
|
|
|
|
2014-11-04 19:52:11 -05:00
|
|
|
private:
|
|
|
|
void OnPaint(wxPaintEvent& event);
|
|
|
|
void OnKeyDown(wxKeyEvent& event);
|
|
|
|
|
|
|
|
void OnIdle(wxIdleEvent &event);
|
|
|
|
|
|
|
|
wxWindow *parent;
|
2014-11-05 18:12:42 -05:00
|
|
|
std::vector<float> spectrum_points;
|
|
|
|
std::vector<float> waveform_points;
|
2014-10-28 22:59:17 -04:00
|
|
|
|
2014-10-31 01:37:01 -04:00
|
|
|
fftw_complex *in, *out[2];
|
|
|
|
fftw_plan plan[2];
|
2014-10-30 22:51:33 -04:00
|
|
|
|
2014-11-04 18:39:08 -05:00
|
|
|
float fft_ceil_ma, fft_ceil_maa;
|
|
|
|
|
2014-11-04 17:25:04 -05:00
|
|
|
std::vector<float> fft_result;
|
|
|
|
std::vector<float> fft_result_ma;
|
|
|
|
std::vector<float> fft_result_maa;
|
2014-10-28 22:59:17 -04:00
|
|
|
|
2014-11-06 01:33:59 -05:00
|
|
|
std::queue< std::vector <ALuint> * > audio_queue;
|
|
|
|
|
2014-11-04 23:05:04 -05:00
|
|
|
Demodulate demod;
|
|
|
|
|
2014-11-05 19:10:18 -05:00
|
|
|
ALCdevice *dev;
|
|
|
|
ALCcontext *ctx;
|
|
|
|
|
2014-11-05 21:05:56 -05:00
|
|
|
ALuint source, buffers[AL_NUM_BUFFERS];
|
|
|
|
ALuint frequency;
|
|
|
|
ALenum format;
|
|
|
|
|
2014-11-04 19:52:11 -05:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
2014-10-27 21:22:29 -04:00
|
|
|
};
|