SDRPlusPlus/radio/src/main.cpp

198 wiersze
6.0 KiB
C++
Czysty Zwykły widok Historia

2020-08-11 16:33:42 +00:00
#include <imgui.h>
2020-08-12 14:43:44 +00:00
#include <watcher.h>
2020-09-24 17:36:57 +00:00
#include <config.h>
2020-10-07 12:44:39 +00:00
#include <core.h>
2020-12-08 03:36:37 +00:00
#include <gui/style.h>
2020-12-06 15:13:47 +00:00
#include <signal_path/signal_path.h>
#include <radio_demod.h>
2020-12-08 03:36:37 +00:00
#include <new_module.h>
2020-12-06 15:13:47 +00:00
#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 16:33:42 +00:00
2020-08-21 13:34:50 +00:00
#define CONCAT(a, b) ((std::string(a) + b).c_str())
2020-08-11 16:33:42 +00:00
2020-12-08 03:36:37 +00:00
SDRPP_MOD_INFO {
/* Name: */ "radio",
/* Description: */ "Radio module for SDR++",
/* Author: */ "Ryzerth",
/* Version: */ 0, 3, 0,
/* Max instances */ -1
2020-09-30 23:21:15 +00:00
};
2020-12-08 03:36:37 +00:00
class RadioModule : public ModuleManager::Instance {
2020-09-30 23:21:15 +00:00
public:
RadioModule(std::string name) {
this->name = name;
2020-10-07 12:44:39 +00:00
2020-12-06 15:13:47 +00:00
vfo = sigpath::vfoManager.createVFO(name, ImGui::WaterfallVFO::REF_CENTER, 0, 200000, 200000, 1);
2020-12-08 03:36:37 +00:00
ns.init(vfo->output);
2020-12-06 15:13:47 +00:00
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();
2020-12-08 03:36:37 +00:00
gui::menu.registerEntry(name, menuHandler, this, this);
2020-09-30 23:21:15 +00:00
}
~RadioModule() {
2020-12-06 15:13:47 +00:00
2020-09-30 23:21:15 +00:00
}
2020-08-11 16:33:42 +00:00
2020-12-08 03:36:37 +00:00
void enable() {
vfo = sigpath::vfoManager.createVFO(name, ImGui::WaterfallVFO::REF_CENTER, 0, 200000, 200000, 1);
//ns.stop();
currentDemod->setVFO(vfo);
currentDemod->select();
currentDemod->start();
enabled = true;
}
void disable() {
currentDemod->stop();
sigpath::vfoManager.deleteVFO(vfo);
//ns.setInput(vfo->output);
//ns.start();
enabled = false;
}
bool isEnabled() {
return enabled;
}
2020-09-30 23:21:15 +00:00
private:
static void menuHandler(void* ctx) {
RadioModule* _this = (RadioModule*)ctx;
2020-12-08 03:36:37 +00:00
if (!_this->enabled) { style::beginDisabled(); }
2020-12-06 15:13:47 +00:00
float menuWidth = ImGui::GetContentRegionAvailWidth();
2020-09-30 23:21:15 +00:00
ImGui::BeginGroup();
// TODO: Change VFO ref in signal path
ImGui::Columns(4, CONCAT("RadioModeColumns##_", _this->name), false);
2020-12-06 15:13:47 +00:00
if (ImGui::RadioButton(CONCAT("NFM##_", _this->name), _this->demodId == 0) && _this->demodId != 0) {
_this->demodId = 0;
_this->selectDemod(&_this->fmDemod);
2020-09-30 23:21:15 +00:00
}
2020-12-06 15:13:47 +00:00
if (ImGui::RadioButton(CONCAT("WFM##_", _this->name), _this->demodId == 1) && _this->demodId != 1) {
_this->demodId = 1;
_this->selectDemod(&_this->wfmDemod);
2020-09-30 23:21:15 +00:00
}
ImGui::NextColumn();
2020-12-06 15:13:47 +00:00
if (ImGui::RadioButton(CONCAT("AM##_", _this->name), _this->demodId == 2) && _this->demodId != 2) {
_this->demodId = 2;
_this->selectDemod(&_this->amDemod);
2020-09-30 23:21:15 +00:00
}
2020-12-06 15:13:47 +00:00
if (ImGui::RadioButton(CONCAT("DSB##_", _this->name), _this->demodId == 3) && _this->demodId != 3) {
_this->demodId = 3;
_this->selectDemod(&_this->dsbDemod);
2020-09-30 23:21:15 +00:00
}
ImGui::NextColumn();
2020-12-06 15:13:47 +00:00
if (ImGui::RadioButton(CONCAT("USB##_", _this->name), _this->demodId == 4) && _this->demodId != 4) {
_this->demodId = 4;
_this->selectDemod(&_this->usbDemod);
2020-09-30 23:21:15 +00:00
}
2020-12-06 15:13:47 +00:00
if (ImGui::RadioButton(CONCAT("CW##_", _this->name), _this->demodId == 5) && _this->demodId != 5) {
_this->demodId = 5;
_this->selectDemod(&_this->cwDemod);
};
2020-09-30 23:21:15 +00:00
ImGui::NextColumn();
2020-12-06 15:13:47 +00:00
if (ImGui::RadioButton(CONCAT("LSB##_", _this->name), _this->demodId == 6) && _this->demodId != 6) {
_this->demodId = 6;
_this->selectDemod(&_this->lsbDemod);
2020-09-30 23:21:15 +00:00
}
2020-12-06 15:13:47 +00:00
if (ImGui::RadioButton(CONCAT("RAW##_", _this->name), _this->demodId == 7) && _this->demodId != 7) {
_this->demodId = 7;
_this->selectDemod(&_this->rawDemod);
2020-09-30 23:21:15 +00:00
};
ImGui::Columns(1, CONCAT("EndRadioModeColumns##_", _this->name), false);
ImGui::EndGroup();
2020-12-06 15:13:47 +00:00
_this->currentDemod->showMenu();
2020-12-08 03:36:37 +00:00
if (!_this->enabled) { style::endDisabled(); }
2020-10-07 12:44:39 +00:00
}
2020-12-06 15:13:47 +00: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-12-06 15:13:47 +00:00
void selectDemod(Demodulator* demod) {
if (currentDemod != NULL) { currentDemod->stop(); }
currentDemod = demod;
currentDemod->setAudioSampleRate(audioSampRate);
stream.setInput(currentDemod->getOutput());
currentDemod->select();
2020-12-06 15:46:50 +00:00
vfo->output->flush();
2020-12-06 15:13:47 +00:00
currentDemod->start();
}
2020-08-11 16:33:42 +00:00
std::string name;
2020-12-08 03:36:37 +00:00
bool enabled = true;
2020-12-06 15:13:47 +00: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;
2020-12-08 03:36:37 +00:00
dsp::NullSink<dsp::complex_t> ns;
2020-12-06 15:13:47 +00:00
Event<float>::EventHandler srChangeHandler;
SinkManager::Stream stream;
2020-08-11 16:33:42 +00:00
2020-09-30 23:21:15 +00:00
};
2020-08-11 16:33:42 +00:00
2020-09-30 23:21:15 +00:00
MOD_EXPORT void _INIT_() {
// Do your one time init here
2020-08-12 14:43:44 +00:00
}
2020-12-08 03:36:37 +00:00
MOD_EXPORT ModuleManager::Instance* _CREATE_INSTANCE_(std::string name) {
2020-09-30 23:21:15 +00:00
return new RadioModule(name);
2020-08-11 16:33:42 +00:00
}
2020-09-30 23:21:15 +00:00
MOD_EXPORT void _DELETE_INSTANCE_(void* instance) {
delete (RadioModule*)instance;
2020-08-11 16:33:42 +00:00
}
2020-12-08 03:36:37 +00:00
MOD_EXPORT void _END_() {
2020-09-30 23:21:15 +00:00
// Do your one shutdown here
2020-08-11 16:33:42 +00:00
}