mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-10-31 23:17:11 -04:00
143 lines
4.5 KiB
C++
143 lines
4.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2020 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 //
|
|
// (at your option) any later version. //
|
|
// //
|
|
// 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/>. //
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <QColor>
|
|
|
|
#include "util/simpleserializer.h"
|
|
#include "settings/serializable.h"
|
|
#include "audio/audiodevicemanager.h"
|
|
|
|
#include "simplepttsettings.h"
|
|
|
|
SimplePTTSettings::SimplePTTSettings() :
|
|
m_rollupState(nullptr)
|
|
{
|
|
resetToDefaults();
|
|
}
|
|
|
|
void SimplePTTSettings::resetToDefaults()
|
|
{
|
|
m_title = "Simple PTT";
|
|
m_rgbColor = QColor(255, 0, 0).rgb();
|
|
m_rxDeviceSetIndex = -1;
|
|
m_txDeviceSetIndex = -1;
|
|
m_rx2TxDelayMs = 100;
|
|
m_tx2RxDelayMs = 100;
|
|
m_audioDeviceName = AudioDeviceManager::m_defaultDeviceName;
|
|
m_voxLevel = -20;
|
|
m_voxHold = 500;
|
|
m_vox = false;
|
|
m_voxEnable = false;
|
|
m_useReverseAPI = false;
|
|
m_reverseAPIAddress = "127.0.0.1";
|
|
m_reverseAPIPort = 8888;
|
|
m_reverseAPIFeatureSetIndex = 0;
|
|
m_reverseAPIFeatureIndex = 0;
|
|
m_workspaceIndex = 0;
|
|
}
|
|
|
|
QByteArray SimplePTTSettings::serialize() const
|
|
{
|
|
SimpleSerializer s(1);
|
|
|
|
s.writeString(1, m_title);
|
|
s.writeU32(2, m_rgbColor);
|
|
s.writeS32(3, m_rxDeviceSetIndex);
|
|
s.writeS32(4, m_txDeviceSetIndex);
|
|
s.writeU32(5, m_rx2TxDelayMs);
|
|
s.writeU32(6, m_tx2RxDelayMs);
|
|
s.writeBool(7, m_useReverseAPI);
|
|
s.writeString(8, m_reverseAPIAddress);
|
|
s.writeU32(9, m_reverseAPIPort);
|
|
s.writeU32(10, m_reverseAPIFeatureSetIndex);
|
|
s.writeU32(11, m_reverseAPIFeatureIndex);
|
|
|
|
if (m_rollupState) {
|
|
s.writeBlob(12, m_rollupState->serialize());
|
|
}
|
|
|
|
s.writeString(13, m_audioDeviceName);
|
|
s.writeS32(14, m_voxLevel);
|
|
s.writeBool(15, m_vox);
|
|
s.writeBool(16, m_voxEnable);
|
|
s.writeS32(17, m_voxHold);
|
|
s.writeS32(18, m_workspaceIndex);
|
|
s.writeBlob(19, m_geometryBytes);
|
|
|
|
return s.final();
|
|
}
|
|
|
|
bool SimplePTTSettings::deserialize(const QByteArray& data)
|
|
{
|
|
SimpleDeserializer d(data);
|
|
|
|
if(!d.isValid())
|
|
{
|
|
resetToDefaults();
|
|
return false;
|
|
}
|
|
|
|
if(d.getVersion() == 1)
|
|
{
|
|
QByteArray bytetmp;
|
|
uint32_t utmp;
|
|
QString strtmp;
|
|
|
|
d.readString(1, &m_title, "Simple PTT");
|
|
d.readU32(2, &m_rgbColor, QColor(255, 0, 0).rgb());
|
|
d.readS32(3, &m_rxDeviceSetIndex, -1);
|
|
d.readS32(4, &m_txDeviceSetIndex, -1);
|
|
d.readU32(5, &m_rx2TxDelayMs, 100);
|
|
d.readU32(6, &m_tx2RxDelayMs, 100);
|
|
d.readBool(7, &m_useReverseAPI, false);
|
|
d.readString(8, &m_reverseAPIAddress, "127.0.0.1");
|
|
d.readU32(9, &utmp, 0);
|
|
|
|
if ((utmp > 1023) && (utmp < 65535)) {
|
|
m_reverseAPIPort = utmp;
|
|
} else {
|
|
m_reverseAPIPort = 8888;
|
|
}
|
|
|
|
d.readU32(10, &utmp, 0);
|
|
m_reverseAPIFeatureSetIndex = utmp > 99 ? 99 : utmp;
|
|
d.readU32(11, &utmp, 0);
|
|
m_reverseAPIFeatureIndex = utmp > 99 ? 99 : utmp;
|
|
|
|
if (m_rollupState)
|
|
{
|
|
d.readBlob(12, &bytetmp);
|
|
m_rollupState->deserialize(bytetmp);
|
|
}
|
|
|
|
d.readString(13, &m_audioDeviceName, AudioDeviceManager::m_defaultDeviceName);
|
|
d.readS32(14, &m_voxLevel, -20);
|
|
d.readBool(15, &m_vox, false);
|
|
d.readBool(16, &m_voxEnable, false);
|
|
d.readS32(17, &m_voxHold, 500);
|
|
d.readS32(18, &m_workspaceIndex, 0);
|
|
d.readBlob(19, &m_geometryBytes);
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
resetToDefaults();
|
|
return false;
|
|
}
|
|
}
|