sdrangel/plugins/channelrx/demodam/amdemodgui.cpp

356 lines
9.6 KiB
C++
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016 Edouard Griffiths, F4EXB //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation as version 3 of the License, or //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
2015-05-11 20:53:35 -04:00
#include <QDockWidget>
#include <QMainWindow>
#include "amdemodgui.h"
#include "device/devicesourceapi.h"
#include "dsp/downchannelizer.h"
#include "dsp/threadedbasebandsamplesink.h"
2015-05-11 20:53:35 -04:00
#include "ui_amdemodgui.h"
#include "plugin/pluginapi.h"
#include "util/simpleserializer.h"
#include "util/db.h"
#include "gui/basicchannelsettingsdialog.h"
2015-08-17 02:29:34 -04:00
#include "dsp/dspengine.h"
#include "mainwindow.h"
2015-05-11 20:53:35 -04:00
#include "amdemod.h"
2015-05-11 20:53:35 -04:00
const QString AMDemodGUI::m_channelID = "de.maintech.sdrangelove.channel.am";
AMDemodGUI* AMDemodGUI::create(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI)
2015-05-11 20:53:35 -04:00
{
AMDemodGUI* gui = new AMDemodGUI(pluginAPI, deviceAPI);
2015-05-11 20:53:35 -04:00
return gui;
}
void AMDemodGUI::destroy()
{
delete this; // TODO: is this really useful?
2015-05-11 20:53:35 -04:00
}
void AMDemodGUI::setName(const QString& name)
{
setObjectName(name);
}
QString AMDemodGUI::getName() const
{
return objectName();
}
qint64 AMDemodGUI::getCenterFrequency() const {
return m_channelMarker.getCenterFrequency();
}
void AMDemodGUI::setCenterFrequency(qint64 centerFrequency)
{
m_channelMarker.setCenterFrequency(centerFrequency);
applySettings();
}
2015-05-11 20:53:35 -04:00
void AMDemodGUI::resetToDefaults()
{
blockApplySettings(true);
ui->rfBW->setValue(50);
2015-05-11 20:53:35 -04:00
ui->volume->setValue(20);
ui->squelch->setValue(-40);
ui->deltaFrequency->setValue(0);
blockApplySettings(false);
2015-05-11 20:53:35 -04:00
applySettings();
}
QByteArray AMDemodGUI::serialize() const
{
SimpleSerializer s(1);
s.writeS32(1, m_channelMarker.getCenterFrequency());
2015-05-11 20:53:35 -04:00
s.writeS32(2, ui->rfBW->value());
s.writeS32(4, ui->volume->value());
s.writeS32(5, ui->squelch->value());
s.writeBlob(6, m_channelMarker.serialize());
s.writeU32(7, m_channelMarker.getColor().rgb());
s.writeBool(8, ui->bandpassEnable->isChecked());
2015-05-11 20:53:35 -04:00
return s.final();
}
bool AMDemodGUI::deserialize(const QByteArray& data)
{
SimpleDeserializer d(data);
if(!d.isValid())
{
2015-05-11 20:53:35 -04:00
resetToDefaults();
return false;
}
if(d.getVersion() == 1)
{
2015-05-11 20:53:35 -04:00
QByteArray bytetmp;
quint32 u32tmp;
qint32 tmp;
bool boolTmp;
QString strtmp;
blockApplySettings(true);
m_channelMarker.blockSignals(true);
d.readBlob(6, &bytetmp);
m_channelMarker.deserialize(bytetmp);
2015-05-11 20:53:35 -04:00
d.readS32(1, &tmp, 0);
m_channelMarker.setCenterFrequency(tmp);
2015-05-11 20:53:35 -04:00
d.readS32(2, &tmp, 4);
ui->rfBW->setValue(tmp);
d.readS32(3, &tmp, 3);
//ui->afBW->setValue(tmp);
2015-05-11 20:53:35 -04:00
d.readS32(4, &tmp, 20);
ui->volume->setValue(tmp);
d.readS32(5, &tmp, -40);
ui->squelch->setValue(tmp);
if(d.readU32(7, &u32tmp)) {
m_channelMarker.setColor(u32tmp);
}
d.readBool(8, &boolTmp, false);
ui->bandpassEnable->setChecked(boolTmp);
this->setWindowTitle(m_channelMarker.getTitle());
displayUDPAddress();
blockApplySettings(false);
m_channelMarker.blockSignals(false);
applySettings(true);
2015-05-11 20:53:35 -04:00
return true;
}
else
{
2015-05-11 20:53:35 -04:00
resetToDefaults();
return false;
}
}
2017-05-25 14:13:34 -04:00
bool AMDemodGUI::handleMessage(const Message& message __attribute__((unused)))
2015-05-11 20:53:35 -04:00
{
return false;
}
void AMDemodGUI::channelMarkerChanged()
2015-05-11 20:53:35 -04:00
{
this->setWindowTitle(m_channelMarker.getTitle());
displayUDPAddress();
2015-05-11 20:53:35 -04:00
applySettings();
}
void AMDemodGUI::on_deltaFrequency_changed(qint64 value)
2015-05-11 20:53:35 -04:00
{
m_channelMarker.setCenterFrequency(value);
2015-05-11 20:53:35 -04:00
}
2017-05-25 14:13:34 -04:00
void AMDemodGUI::on_bandpassEnable_toggled(bool checked __attribute__((unused)))
{
applySettings();
}
2015-05-11 20:53:35 -04:00
void AMDemodGUI::on_rfBW_valueChanged(int value)
{
2016-11-30 18:10:34 -05:00
ui->rfBWText->setText(QString("%1 kHz").arg(value / 10.0, 0, 'f', 1));
m_channelMarker.setBandwidth(value * 100);
2015-05-11 20:53:35 -04:00
applySettings();
}
void AMDemodGUI::on_volume_valueChanged(int value)
{
ui->volumeText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1));
applySettings();
}
void AMDemodGUI::on_squelch_valueChanged(int value)
{
ui->squelchText->setText(QString("%1 dB").arg(value));
applySettings();
}
2017-05-25 14:13:34 -04:00
void AMDemodGUI::on_audioMute_toggled(bool checked __attribute__((unused)))
2015-12-26 12:23:55 -05:00
{
applySettings();
}
2015-05-11 20:53:35 -04:00
void AMDemodGUI::on_copyAudioToUDP_toggled(bool checked __attribute__((unused)))
{
applySettings();
}
2017-05-25 14:13:34 -04:00
void AMDemodGUI::onWidgetRolled(QWidget* widget __attribute__((unused)), bool rollDown __attribute__((unused)))
2015-05-11 20:53:35 -04:00
{
/*
if((widget == ui->spectrumContainer) && (m_nfmDemod != NULL))
m_nfmDemod->setSpectrum(m_threadedSampleSink->getMessageQueue(), rollDown);
*/
}
void AMDemodGUI::onMenuDialogCalled(const QPoint &p)
2015-05-11 20:53:35 -04:00
{
BasicChannelSettingsDialog dialog(&m_channelMarker, this);
dialog.move(p);
dialog.exec();
2015-05-11 20:53:35 -04:00
}
AMDemodGUI::AMDemodGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget* parent) :
2015-05-11 20:53:35 -04:00
RollupWidget(parent),
ui(new Ui::AMDemodGUI),
m_pluginAPI(pluginAPI),
m_deviceAPI(deviceAPI),
m_channelMarker(this),
m_doApplySettings(true),
m_squelchOpen(false),
m_tickCount(0)
2015-05-11 20:53:35 -04:00
{
ui->setupUi(this);
setAttribute(Qt::WA_DeleteOnClose, true);
connect(this, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool)));
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &)));
2015-05-11 20:53:35 -04:00
m_amDemod = new AMDemod();
m_channelizer = new DownChannelizer(m_amDemod);
m_threadedChannelizer = new ThreadedBasebandSampleSink(m_channelizer, this);
//m_pluginAPI->addThreadedSink(m_threadedChannelizer);
m_deviceAPI->addThreadedSink(m_threadedChannelizer);
connect(&m_pluginAPI->getMainWindow()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick())); // 50 ms
2015-05-11 20:53:35 -04:00
ui->deltaFrequencyLabel->setText(QString("%1f").arg(QChar(0x94, 0x03)));
ui->deltaFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
ui->deltaFrequency->setValueRange(false, 7, -9999999, 9999999);
2016-12-05 18:25:59 -05:00
ui->channelPowerMeter->setColorTheme(LevelMeterSignalDB::ColorGreenAndBlue);
//m_channelMarker = new ChannelMarker(this);
m_channelMarker.setColor(Qt::yellow);
m_channelMarker.setBandwidth(5000);
m_channelMarker.setCenterFrequency(0);
m_channelMarker.setTitle("AM Demodulator");
m_channelMarker.setUDPAddress("127.0.0.1");
m_channelMarker.setUDPSendPort(9999);
m_channelMarker.setVisible(true);
setTitleColor(m_channelMarker.getColor());
connect(&m_channelMarker, SIGNAL(changed()), this, SLOT(channelMarkerChanged()));
m_deviceAPI->registerChannelInstance(m_channelID, this);
m_deviceAPI->addChannelMarker(&m_channelMarker);
m_deviceAPI->addRollupWidget(this);
2015-05-11 20:53:35 -04:00
applySettings(true);
2015-05-11 20:53:35 -04:00
}
AMDemodGUI::~AMDemodGUI()
{
m_deviceAPI->removeChannelInstance(this);
m_deviceAPI->removeThreadedSink(m_threadedChannelizer);
delete m_threadedChannelizer;
2015-05-11 20:53:35 -04:00
delete m_channelizer;
delete m_amDemod;
//delete m_channelMarker;
2015-05-11 20:53:35 -04:00
delete ui;
}
void AMDemodGUI::blockApplySettings(bool block)
{
m_doApplySettings = !block;
}
void AMDemodGUI::applySettings(bool force)
2015-05-11 20:53:35 -04:00
{
if (m_doApplySettings)
{
setTitleColor(m_channelMarker.getColor());
2015-08-17 02:29:34 -04:00
m_channelizer->configure(m_channelizer->getInputMessageQueue(),
48000,
m_channelMarker.getCenterFrequency());
2015-08-17 02:29:34 -04:00
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
2015-08-17 02:29:34 -04:00
m_amDemod->configure(m_amDemod->getInputMessageQueue(),
ui->rfBW->value() * 100.0,
ui->volume->value() / 10.0,
2015-12-26 12:23:55 -05:00
ui->squelch->value(),
ui->audioMute->isChecked(),
ui->bandpassEnable->isChecked(),
ui->copyAudioToUDP->isChecked(),
m_channelMarker.getUDPAddress(),
m_channelMarker.getUDPSendPort(),
force);
}
2015-05-11 20:53:35 -04:00
}
void AMDemodGUI::displayUDPAddress()
{
ui->copyAudioToUDP->setToolTip(QString("Copy audio output to UDP %1:%2").arg(m_channelMarker.getUDPAddress()).arg(m_channelMarker.getUDPSendPort()));
}
2015-05-11 20:53:35 -04:00
void AMDemodGUI::leaveEvent(QEvent*)
{
blockApplySettings(true);
m_channelMarker.setHighlighted(false);
blockApplySettings(false);
2015-05-11 20:53:35 -04:00
}
void AMDemodGUI::enterEvent(QEvent*)
{
blockApplySettings(true);
m_channelMarker.setHighlighted(true);
blockApplySettings(false);
2015-05-11 20:53:35 -04:00
}
void AMDemodGUI::tick()
{
2017-05-16 17:39:49 -04:00
double magsqAvg, magsqPeak;
int nbMagsqSamples;
m_amDemod->getMagSqLevels(magsqAvg, magsqPeak, nbMagsqSamples);
2017-05-16 17:39:49 -04:00
double powDbAvg = CalcDb::dbPower(magsqAvg);
double powDbPeak = CalcDb::dbPower(magsqPeak);
ui->channelPowerMeter->levelChanged(
(100.0f + powDbAvg) / 100.0f,
(100.0f + powDbPeak) / 100.0f,
nbMagsqSamples);
if (m_tickCount % 4 == 0) {
ui->channelPower->setText(QString::number(powDbAvg, 'f', 1));
}
bool squelchOpen = m_amDemod->getSquelchOpen();
if (squelchOpen != m_squelchOpen)
{
m_squelchOpen = squelchOpen;
if (m_squelchOpen) {
ui->audioMute->setStyleSheet("QToolButton { background-color : green; }");
} else {
ui->audioMute->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
}
}
m_tickCount++;
}