| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2018 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                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  | #include <QLocale>
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | #include "device/deviceuiset.h"
 | 
					
						
							|  |  |  | #include "gui/basicchannelsettingsdialog.h"
 | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  | #include "dsp/hbfilterchainconverter.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | #include "mainwindow.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  | #include "remotesinkgui.h"
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | #include "remotesink.h"
 | 
					
						
							|  |  |  | #include "ui_remotesinkgui.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | RemoteSinkGUI* RemoteSinkGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *channelRx) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |     RemoteSinkGUI* gui = new RemoteSinkGUI(pluginAPI, deviceUISet, channelRx); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     return gui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::destroy() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     delete this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::setName(const QString& name) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     setObjectName(name); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | QString RemoteSinkGUI::getName() const | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     return objectName(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | qint64 RemoteSinkGUI::getCenterFrequency() const { | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::setCenterFrequency(qint64 centerFrequency) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  |     (void) centerFrequency; | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::resetToDefaults() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_settings.resetToDefaults(); | 
					
						
							|  |  |  |     displaySettings(); | 
					
						
							|  |  |  |     applySettings(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | QByteArray RemoteSinkGUI::serialize() const | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     return m_settings.serialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | bool RemoteSinkGUI::deserialize(const QByteArray& data) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if(m_settings.deserialize(data)) { | 
					
						
							|  |  |  |         displaySettings(); | 
					
						
							|  |  |  |         applySettings(true); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         resetToDefaults(); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | bool RemoteSinkGUI::handleMessage(const Message& message) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |     if (RemoteSink::MsgSampleRateNotification::match(message)) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |         RemoteSink::MsgSampleRateNotification& notif = (RemoteSink::MsgSampleRateNotification&) message; | 
					
						
							| 
									
										
										
										
											2019-04-26 01:27:36 +02:00
										 |  |  |         //m_channelMarker.setBandwidth(notif.getSampleRate());
 | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |         m_sampleRate = notif.getSampleRate(); | 
					
						
							| 
									
										
										
										
											2018-09-06 04:23:27 +02:00
										 |  |  |         updateTxDelayTime(); | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  |         displayRateAndShift(); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |     else if (RemoteSink::MsgConfigureRemoteSink::match(message)) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |         const RemoteSink::MsgConfigureRemoteSink& cfg = (RemoteSink::MsgConfigureRemoteSink&) message; | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |         m_settings = cfg.getSettings(); | 
					
						
							|  |  |  |         blockApplySettings(true); | 
					
						
							|  |  |  |         displaySettings(); | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | RemoteSinkGUI::RemoteSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *channelrx, QWidget* parent) : | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |         RollupWidget(parent), | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |         ui(new Ui::RemoteSinkGUI), | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |         m_pluginAPI(pluginAPI), | 
					
						
							|  |  |  |         m_deviceUISet(deviceUISet), | 
					
						
							|  |  |  |         m_sampleRate(0), | 
					
						
							|  |  |  |         m_tickCount(0) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->setupUi(this); | 
					
						
							|  |  |  |     setAttribute(Qt::WA_DeleteOnClose, true); | 
					
						
							|  |  |  |     connect(this, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool))); | 
					
						
							| 
									
										
										
										
											2018-12-21 17:39:04 +01:00
										 |  |  |     connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &))); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |     m_remoteSink = (RemoteSink*) channelrx; | 
					
						
							|  |  |  |     m_remoteSink->setMessageQueueToGUI(getInputMessageQueue()); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     m_channelMarker.blockSignals(true); | 
					
						
							|  |  |  |     m_channelMarker.setColor(m_settings.m_rgbColor); | 
					
						
							|  |  |  |     m_channelMarker.setCenterFrequency(0); | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |     m_channelMarker.setTitle("Remote source"); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     m_channelMarker.blockSignals(false); | 
					
						
							|  |  |  |     m_channelMarker.setVisible(true); // activate signal on the last setting only
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_settings.setChannelMarker(&m_channelMarker); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |     m_deviceUISet->registerRxChannelInstance(RemoteSink::m_channelIdURI, this); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     m_deviceUISet->addChannelMarker(&m_channelMarker); | 
					
						
							|  |  |  |     m_deviceUISet->addRollupWidget(this); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages())); | 
					
						
							| 
									
										
										
										
											2018-09-05 18:25:58 +02:00
										 |  |  |     //connect(&(m_deviceUISet->m_deviceSourceAPI->getMasterTimer()), SIGNAL(timeout()), this, SLOT(tick()));
 | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     m_time.start(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     displaySettings(); | 
					
						
							|  |  |  |     applySettings(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | RemoteSinkGUI::~RemoteSinkGUI() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_deviceUISet->removeRxChannelInstance(this); | 
					
						
							| 
									
										
										
										
											2019-04-20 23:28:51 +02:00
										 |  |  |     delete m_remoteSink; // TODO: check this: when the GUI closes it has to delete the demodulator
 | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     delete ui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::blockApplySettings(bool block) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_doApplySettings = !block; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::applySettings(bool force) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (m_doApplySettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         setTitleColor(m_channelMarker.getColor()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |         RemoteSink::MsgConfigureRemoteSink* message = RemoteSink::MsgConfigureRemoteSink::create(m_settings, force); | 
					
						
							|  |  |  |         m_remoteSink->getInputMessageQueue()->push(message); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-26 01:27:36 +02:00
										 |  |  | void RemoteSinkGUI::applyChannelSettings() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_doApplySettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         RemoteSink::MsgConfigureChannelizer *msgChan = RemoteSink::MsgConfigureChannelizer::create( | 
					
						
							|  |  |  |                 m_settings.m_log2Decim, | 
					
						
							|  |  |  |                 m_settings.m_filterChainHash); | 
					
						
							|  |  |  |         m_remoteSink->getInputMessageQueue()->push(msgChan); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::displaySettings() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_channelMarker.blockSignals(true); | 
					
						
							|  |  |  |     m_channelMarker.setCenterFrequency(0); | 
					
						
							|  |  |  |     m_channelMarker.setTitle(m_settings.m_title); | 
					
						
							| 
									
										
										
										
											2018-09-06 05:32:11 +02:00
										 |  |  |     m_channelMarker.setBandwidth(m_sampleRate); // TODO
 | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  |     m_channelMarker.setMovable(false); // do not let user move the center arbitrarily
 | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     m_channelMarker.blockSignals(false); | 
					
						
							|  |  |  |     m_channelMarker.setColor(m_settings.m_rgbColor); // activate signal on the last setting only
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     setTitleColor(m_settings.m_rgbColor); | 
					
						
							|  |  |  |     setWindowTitle(m_channelMarker.getTitle()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     blockApplySettings(true); | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  |     ui->decimationFactor->setCurrentIndex(m_settings.m_log2Decim); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     ui->dataAddress->setText(m_settings.m_dataAddress); | 
					
						
							|  |  |  |     ui->dataPort->setText(tr("%1").arg(m_settings.m_dataPort)); | 
					
						
							| 
									
										
										
										
											2018-09-05 18:25:58 +02:00
										 |  |  |     QString s = QString::number(128 + m_settings.m_nbFECBlocks, 'f', 0); | 
					
						
							|  |  |  |     QString s1 = QString::number(m_settings.m_nbFECBlocks, 'f', 0); | 
					
						
							|  |  |  |     ui->nominalNbBlocksText->setText(tr("%1/%2").arg(s).arg(s1)); | 
					
						
							| 
									
										
										
										
											2018-09-06 04:23:27 +02:00
										 |  |  |     ui->txDelayText->setText(tr("%1%").arg(m_settings.m_txDelay)); | 
					
						
							| 
									
										
										
										
											2018-09-06 04:36:56 +02:00
										 |  |  |     ui->txDelay->setValue(m_settings.m_txDelay); | 
					
						
							| 
									
										
										
										
											2018-09-06 04:23:27 +02:00
										 |  |  |     updateTxDelayTime(); | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  |     applyDecimation(); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     blockApplySettings(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  | void RemoteSinkGUI::displayRateAndShift() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int shift = m_shiftFrequencyFactor * m_sampleRate; | 
					
						
							|  |  |  |     double channelSampleRate = ((double) m_sampleRate) / (1<<m_settings.m_log2Decim); | 
					
						
							|  |  |  |     QLocale loc; | 
					
						
							|  |  |  |     ui->offsetFrequencyText->setText(tr("%1 Hz").arg(loc.toString(shift))); | 
					
						
							|  |  |  |     ui->channelRateText->setText(tr("%1k").arg(QString::number(channelSampleRate / 1000.0, 'g', 5))); | 
					
						
							|  |  |  |     m_channelMarker.setCenterFrequency(shift); | 
					
						
							|  |  |  |     m_channelMarker.setBandwidth(channelSampleRate); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::leaveEvent(QEvent*) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_channelMarker.setHighlighted(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::enterEvent(QEvent*) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_channelMarker.setHighlighted(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::handleSourceMessages() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     Message* message; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while ((message = getInputMessageQueue()->pop()) != 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (handleMessage(*message)) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             delete message; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::onWidgetRolled(QWidget* widget, bool rollDown) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  |     (void) widget; | 
					
						
							|  |  |  |     (void) rollDown; | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::onMenuDialogCalled(const QPoint &p) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-09 21:07:05 +02:00
										 |  |  |     if (m_contextMenuType == ContextMenuChannelSettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         BasicChannelSettingsDialog dialog(&m_channelMarker, this); | 
					
						
							|  |  |  |         dialog.setUseReverseAPI(m_settings.m_useReverseAPI); | 
					
						
							|  |  |  |         dialog.setReverseAPIAddress(m_settings.m_reverseAPIAddress); | 
					
						
							|  |  |  |         dialog.setReverseAPIPort(m_settings.m_reverseAPIPort); | 
					
						
							|  |  |  |         dialog.setReverseAPIDeviceIndex(m_settings.m_reverseAPIDeviceIndex); | 
					
						
							|  |  |  |         dialog.setReverseAPIChannelIndex(m_settings.m_reverseAPIChannelIndex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         dialog.move(p); | 
					
						
							|  |  |  |         dialog.exec(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_settings.m_rgbColor = m_channelMarker.getColor().rgb(); | 
					
						
							|  |  |  |         m_settings.m_title = m_channelMarker.getTitle(); | 
					
						
							|  |  |  |         m_settings.m_useReverseAPI = dialog.useReverseAPI(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIAddress = dialog.getReverseAPIAddress(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIPort = dialog.getReverseAPIPort(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIDeviceIndex = dialog.getReverseAPIDeviceIndex(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIChannelIndex = dialog.getReverseAPIChannelIndex(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         setWindowTitle(m_settings.m_title); | 
					
						
							|  |  |  |         setTitleColor(m_settings.m_rgbColor); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         applySettings(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-09 21:07:05 +02:00
										 |  |  |     resetContextMenuType(); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  | void RemoteSinkGUI::on_decimationFactor_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_log2Decim = index; | 
					
						
							|  |  |  |     applyDecimation(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RemoteSinkGUI::on_position_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_filterChainHash = value; | 
					
						
							|  |  |  |     applyPosition(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::on_dataAddress_returnPressed() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_settings.m_dataAddress = ui->dataAddress->text(); | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::on_dataPort_returnPressed() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int dataPort = ui->dataPort->text().toInt(&dataOk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if((!dataOk) || (dataPort < 1024) || (dataPort > 65535)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_dataPort = dataPort; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::on_dataApplyButton_clicked(bool checked) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  |     (void) checked; | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     m_settings.m_dataAddress = ui->dataAddress->text(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int udpDataPort = ui->dataPort->text().toInt(&dataOk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if((dataOk) && (udpDataPort >= 1024) && (udpDataPort < 65535)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_dataPort = udpDataPort; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::on_txDelay_valueChanged(int value) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-05 18:25:58 +02:00
										 |  |  |     m_settings.m_txDelay = value; // percentage
 | 
					
						
							| 
									
										
										
										
											2018-09-06 04:23:27 +02:00
										 |  |  |     ui->txDelayText->setText(tr("%1%").arg(value)); | 
					
						
							|  |  |  |     updateTxDelayTime(); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::on_nbFECBlocks_valueChanged(int value) | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_settings.m_nbFECBlocks = value; | 
					
						
							|  |  |  |     int nbOriginalBlocks = 128; | 
					
						
							|  |  |  |     int nbFECBlocks = value; | 
					
						
							|  |  |  |     QString s = QString::number(nbOriginalBlocks + nbFECBlocks, 'f', 0); | 
					
						
							|  |  |  |     QString s1 = QString::number(nbFECBlocks, 'f', 0); | 
					
						
							|  |  |  |     ui->nominalNbBlocksText->setText(tr("%1/%2").arg(s).arg(s1)); | 
					
						
							| 
									
										
										
										
											2018-09-06 04:23:27 +02:00
										 |  |  |     updateTxDelayTime(); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::updateTxDelayTime() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-05 18:25:58 +02:00
										 |  |  |     double txDelayRatio = m_settings.m_txDelay / 100.0; | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     int samplesPerBlock = RemoteNbBytesPerBlock / sizeof(Sample); | 
					
						
							| 
									
										
										
										
											2018-09-10 18:52:40 +02:00
										 |  |  |     double delay = m_sampleRate == 0 ? 0.0 : (127*samplesPerBlock*txDelayRatio) / m_sampleRate; | 
					
						
							| 
									
										
										
										
											2018-09-05 18:25:58 +02:00
										 |  |  |     delay /= 128 + m_settings.m_nbFECBlocks; | 
					
						
							| 
									
										
										
										
											2018-09-06 04:23:27 +02:00
										 |  |  |     ui->txDelayTime->setText(tr("%1µs").arg(QString::number(delay*1e6, 'f', 0))); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  | void RemoteSinkGUI::applyDecimation() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t maxHash = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (uint32_t i = 0; i < m_settings.m_log2Decim; i++) { | 
					
						
							|  |  |  |         maxHash *= 3; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ui->position->setMaximum(maxHash-1); | 
					
						
							| 
									
										
										
										
											2019-04-26 19:36:23 +02:00
										 |  |  |     ui->position->setValue(m_settings.m_filterChainHash); | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  |     m_settings.m_filterChainHash = ui->position->value(); | 
					
						
							|  |  |  |     applyPosition(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RemoteSinkGUI::applyPosition() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->filterChainIndex->setText(tr("%1").arg(m_settings.m_filterChainHash)); | 
					
						
							|  |  |  |     QString s; | 
					
						
							|  |  |  |     m_shiftFrequencyFactor = HBFilterChainConverter::convertToString(m_settings.m_log2Decim, m_settings.m_filterChainHash, s); | 
					
						
							|  |  |  |     ui->filterChainText->setText(s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     displayRateAndShift(); | 
					
						
							| 
									
										
										
										
											2019-04-26 01:27:36 +02:00
										 |  |  |     applyChannelSettings(); | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | void RemoteSinkGUI::tick() | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (++m_tickCount == 20) { // once per second
 | 
					
						
							|  |  |  |         m_tickCount = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |