2020-08-11 18:33:42 +02:00
|
|
|
#include <imgui.h>
|
|
|
|
#include <module.h>
|
2020-08-12 16:43:44 +02:00
|
|
|
#include <watcher.h>
|
2020-09-24 19:36:57 +02:00
|
|
|
#include <config.h>
|
2020-10-07 14:44:39 +02:00
|
|
|
#include <core.h>
|
2020-12-06 16:13:47 +01:00
|
|
|
#include <signal_path/signal_path.h>
|
|
|
|
#include <radio_demod.h>
|
|
|
|
#include <wfm_demod.h>
|
|
|
|
#include <fm_demod.h>
|
|
|
|
#include <am_demod.h>
|
|
|
|
#include <usb_demod.h>
|
|
|
|
#include <lsb_demod.h>
|
|
|
|
#include <dsb_demod.h>
|
|
|
|
#include <raw_demod.h>
|
|
|
|
#include <cw_demod.h>
|
2020-08-11 18:33:42 +02:00
|
|
|
|
2020-08-21 15:34:50 +02:00
|
|
|
#define CONCAT(a, b) ((std::string(a) + b).c_str())
|
2020-08-11 18:33:42 +02:00
|
|
|
|
2020-10-01 01:21:15 +02:00
|
|
|
MOD_INFO {
|
|
|
|
/* Name: */ "radio",
|
|
|
|
/* Description: */ "Radio module for SDR++",
|
|
|
|
/* Author: */ "Ryzerth",
|
2020-12-06 16:13:47 +01:00
|
|
|
/* Version: */ "0.3.0"
|
2020-10-01 01:21:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class RadioModule {
|
|
|
|
public:
|
|
|
|
RadioModule(std::string name) {
|
|
|
|
this->name = name;
|
2020-10-07 14:44:39 +02:00
|
|
|
|
2020-12-06 16:13:47 +01:00
|
|
|
vfo = sigpath::vfoManager.createVFO(name, ImGui::WaterfallVFO::REF_CENTER, 0, 200000, 200000, 1);
|
|
|
|
|
|
|
|
wfmDemod.init(name, vfo, audioSampRate, 200000);
|
|
|
|
fmDemod.init(name, vfo, audioSampRate, 12500);
|
|
|
|
amDemod.init(name, vfo, audioSampRate, 12500);
|
|
|
|
usbDemod.init(name, vfo, audioSampRate, 3000);
|
|
|
|
lsbDemod.init(name, vfo, audioSampRate, 3000);
|
|
|
|
dsbDemod.init(name, vfo, audioSampRate, 6000);
|
|
|
|
rawDemod.init(name, vfo, audioSampRate, audioSampRate);
|
|
|
|
cwDemod.init(name, vfo, audioSampRate, 200);
|
|
|
|
|
|
|
|
srChangeHandler.ctx = this;
|
|
|
|
srChangeHandler.handler = sampleRateChangeHandler;
|
|
|
|
stream.init(wfmDemod.getOutput(), srChangeHandler, audioSampRate);
|
|
|
|
sigpath::sinkManager.registerStream(name, &stream);
|
|
|
|
|
|
|
|
// TODO: Replace with config load
|
|
|
|
demodId = 1;
|
|
|
|
selectDemod(&wfmDemod);
|
|
|
|
|
|
|
|
stream.start();
|
|
|
|
|
|
|
|
gui::menu.registerEntry(name, menuHandler, this);
|
2020-10-01 01:21:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
~RadioModule() {
|
2020-12-06 16:13:47 +01:00
|
|
|
|
2020-10-01 01:21:15 +02:00
|
|
|
}
|
2020-08-11 18:33:42 +02:00
|
|
|
|
2020-10-01 01:21:15 +02:00
|
|
|
private:
|
|
|
|
static void menuHandler(void* ctx) {
|
|
|
|
RadioModule* _this = (RadioModule*)ctx;
|
2020-12-06 16:13:47 +01:00
|
|
|
float menuWidth = ImGui::GetContentRegionAvailWidth();
|
2020-10-01 01:21:15 +02:00
|
|
|
ImGui::BeginGroup();
|
|
|
|
|
|
|
|
// TODO: Change VFO ref in signal path
|
|
|
|
|
|
|
|
ImGui::Columns(4, CONCAT("RadioModeColumns##_", _this->name), false);
|
2020-12-06 16:13:47 +01:00
|
|
|
if (ImGui::RadioButton(CONCAT("NFM##_", _this->name), _this->demodId == 0) && _this->demodId != 0) {
|
|
|
|
_this->demodId = 0;
|
|
|
|
_this->selectDemod(&_this->fmDemod);
|
2020-10-01 01:21:15 +02:00
|
|
|
}
|
2020-12-06 16:13:47 +01:00
|
|
|
if (ImGui::RadioButton(CONCAT("WFM##_", _this->name), _this->demodId == 1) && _this->demodId != 1) {
|
|
|
|
_this->demodId = 1;
|
|
|
|
_this->selectDemod(&_this->wfmDemod);
|
2020-10-01 01:21:15 +02:00
|
|
|
}
|
|
|
|
ImGui::NextColumn();
|
2020-12-06 16:13:47 +01:00
|
|
|
if (ImGui::RadioButton(CONCAT("AM##_", _this->name), _this->demodId == 2) && _this->demodId != 2) {
|
|
|
|
_this->demodId = 2;
|
|
|
|
_this->selectDemod(&_this->amDemod);
|
2020-10-01 01:21:15 +02:00
|
|
|
}
|
2020-12-06 16:13:47 +01:00
|
|
|
if (ImGui::RadioButton(CONCAT("DSB##_", _this->name), _this->demodId == 3) && _this->demodId != 3) {
|
|
|
|
_this->demodId = 3;
|
|
|
|
_this->selectDemod(&_this->dsbDemod);
|
2020-10-01 01:21:15 +02:00
|
|
|
}
|
|
|
|
ImGui::NextColumn();
|
2020-12-06 16:13:47 +01:00
|
|
|
if (ImGui::RadioButton(CONCAT("USB##_", _this->name), _this->demodId == 4) && _this->demodId != 4) {
|
|
|
|
_this->demodId = 4;
|
|
|
|
_this->selectDemod(&_this->usbDemod);
|
2020-10-01 01:21:15 +02:00
|
|
|
}
|
2020-12-06 16:13:47 +01:00
|
|
|
if (ImGui::RadioButton(CONCAT("CW##_", _this->name), _this->demodId == 5) && _this->demodId != 5) {
|
|
|
|
_this->demodId = 5;
|
|
|
|
_this->selectDemod(&_this->cwDemod);
|
|
|
|
};
|
2020-10-01 01:21:15 +02:00
|
|
|
ImGui::NextColumn();
|
2020-12-06 16:13:47 +01:00
|
|
|
if (ImGui::RadioButton(CONCAT("LSB##_", _this->name), _this->demodId == 6) && _this->demodId != 6) {
|
|
|
|
_this->demodId = 6;
|
|
|
|
_this->selectDemod(&_this->lsbDemod);
|
2020-10-01 01:21:15 +02:00
|
|
|
}
|
2020-12-06 16:13:47 +01:00
|
|
|
if (ImGui::RadioButton(CONCAT("RAW##_", _this->name), _this->demodId == 7) && _this->demodId != 7) {
|
|
|
|
_this->demodId = 7;
|
|
|
|
_this->selectDemod(&_this->rawDemod);
|
2020-10-01 01:21:15 +02:00
|
|
|
};
|
|
|
|
ImGui::Columns(1, CONCAT("EndRadioModeColumns##_", _this->name), false);
|
|
|
|
|
|
|
|
ImGui::EndGroup();
|
|
|
|
|
2020-12-06 16:13:47 +01:00
|
|
|
_this->currentDemod->showMenu();
|
2020-10-07 14:44:39 +02:00
|
|
|
}
|
|
|
|
|
2020-12-06 16:13:47 +01:00
|
|
|
static void sampleRateChangeHandler(float sampleRate, void* ctx) {
|
|
|
|
RadioModule* _this = (RadioModule*)ctx;
|
|
|
|
// TODO: If too slow, change all demods here and not when setting
|
|
|
|
_this->audioSampRate = sampleRate;
|
|
|
|
if (_this->currentDemod != NULL) {
|
|
|
|
_this->currentDemod->setAudioSampleRate(_this->audioSampRate);
|
2020-10-07 22:44:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-06 16:13:47 +01:00
|
|
|
void selectDemod(Demodulator* demod) {
|
|
|
|
if (currentDemod != NULL) { currentDemod->stop(); }
|
|
|
|
currentDemod = demod;
|
|
|
|
currentDemod->setAudioSampleRate(audioSampRate);
|
|
|
|
stream.setInput(currentDemod->getOutput());
|
|
|
|
currentDemod->select();
|
2020-12-06 16:46:50 +01:00
|
|
|
vfo->output->flush();
|
2020-12-06 16:13:47 +01:00
|
|
|
currentDemod->start();
|
2020-10-07 22:44:54 +02:00
|
|
|
}
|
|
|
|
|
2020-08-11 18:33:42 +02:00
|
|
|
std::string name;
|
2020-12-06 16:13:47 +01:00
|
|
|
int demodId = 0;
|
|
|
|
float audioSampRate = 48000;
|
|
|
|
Demodulator* currentDemod = NULL;
|
|
|
|
|
|
|
|
VFOManager::VFO* vfo;
|
|
|
|
|
|
|
|
WFMDemodulator wfmDemod;
|
|
|
|
FMDemodulator fmDemod;
|
|
|
|
AMDemodulator amDemod;
|
|
|
|
USBDemodulator usbDemod;
|
|
|
|
LSBDemodulator lsbDemod;
|
|
|
|
DSBDemodulator dsbDemod;
|
|
|
|
RAWDemodulator rawDemod;
|
|
|
|
CWDemodulator cwDemod;
|
|
|
|
|
|
|
|
Event<float>::EventHandler srChangeHandler;
|
|
|
|
SinkManager::Stream stream;
|
2020-08-11 18:33:42 +02:00
|
|
|
|
2020-10-01 01:21:15 +02:00
|
|
|
};
|
2020-08-11 18:33:42 +02:00
|
|
|
|
2020-10-01 01:21:15 +02:00
|
|
|
MOD_EXPORT void _INIT_() {
|
|
|
|
// Do your one time init here
|
2020-08-12 16:43:44 +02:00
|
|
|
}
|
|
|
|
|
2020-10-01 01:21:15 +02:00
|
|
|
MOD_EXPORT void* _CREATE_INSTANCE_(std::string name) {
|
|
|
|
return new RadioModule(name);
|
2020-08-11 18:33:42 +02:00
|
|
|
}
|
|
|
|
|
2020-10-01 01:21:15 +02:00
|
|
|
MOD_EXPORT void _DELETE_INSTANCE_(void* instance) {
|
|
|
|
delete (RadioModule*)instance;
|
2020-08-11 18:33:42 +02:00
|
|
|
}
|
|
|
|
|
2020-10-01 01:21:15 +02:00
|
|
|
MOD_EXPORT void _STOP_() {
|
|
|
|
// Do your one shutdown here
|
2020-08-11 18:33:42 +02:00
|
|
|
}
|