2017-12-24 05:04:30 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
|
|
|
|
#include "filesourcesettings.h"
|
|
|
|
|
2018-10-13 20:58:14 -04:00
|
|
|
const unsigned int FileSourceSettings::m_accelerationMaxScale = 2;
|
2018-10-13 19:16:39 -04:00
|
|
|
|
2017-12-24 05:04:30 -05:00
|
|
|
FileSourceSettings::FileSourceSettings()
|
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSourceSettings::resetToDefaults()
|
|
|
|
{
|
2017-12-24 05:36:38 -05:00
|
|
|
m_centerFrequency = 435000000;
|
|
|
|
m_sampleRate = 48000;
|
2017-12-24 05:04:30 -05:00
|
|
|
m_fileName = "./test.sdriq";
|
2018-10-13 19:16:39 -04:00
|
|
|
m_accelerationFactor = 1;
|
|
|
|
m_loop = true;
|
2017-12-24 05:04:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray FileSourceSettings::serialize() const
|
|
|
|
{
|
|
|
|
SimpleSerializer s(1);
|
|
|
|
s.writeString(1, m_fileName);
|
2018-10-13 19:16:39 -04:00
|
|
|
s.writeU32(2, m_accelerationFactor);
|
|
|
|
s.writeBool(3, m_loop);
|
2017-12-24 05:04:30 -05:00
|
|
|
return s.final();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FileSourceSettings::deserialize(const QByteArray& data)
|
|
|
|
{
|
|
|
|
SimpleDeserializer d(data);
|
|
|
|
|
|
|
|
if(!d.isValid()) {
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(d.getVersion() == 1) {
|
|
|
|
d.readString(1, &m_fileName, "./test.sdriq");
|
2018-10-13 19:16:39 -04:00
|
|
|
d.readU32(2, &m_accelerationFactor, 1);
|
|
|
|
d.readBool(3, &m_loop, true);
|
2017-12-24 05:04:30 -05:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-13 19:16:39 -04:00
|
|
|
int FileSourceSettings::getAccelerationIndex(int accelerationValue)
|
|
|
|
{
|
|
|
|
if (accelerationValue <= 1) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int v = accelerationValue;
|
|
|
|
int j = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i <= accelerationValue; i++)
|
|
|
|
{
|
|
|
|
if (v < 20)
|
|
|
|
{
|
|
|
|
if (v < 2) {
|
|
|
|
j = 0;
|
|
|
|
} else if (v < 5) {
|
|
|
|
j = 1;
|
|
|
|
} else if (v < 10) {
|
|
|
|
j = 2;
|
|
|
|
} else {
|
|
|
|
j = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 3*i + j;
|
|
|
|
}
|
|
|
|
|
|
|
|
v /= 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 3*m_accelerationMaxScale + 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
int FileSourceSettings::getAccelerationValue(int accelerationIndex)
|
|
|
|
{
|
|
|
|
if (accelerationIndex <= 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int v = accelerationIndex - 1;
|
|
|
|
int m = pow(10.0, v/3 > m_accelerationMaxScale ? m_accelerationMaxScale : v/3);
|
2018-11-18 05:06:41 -05:00
|
|
|
int x = 1;
|
2018-10-13 19:16:39 -04:00
|
|
|
|
|
|
|
if (v % 3 == 0) {
|
|
|
|
x = 2;
|
|
|
|
} else if (v % 3 == 1) {
|
|
|
|
x = 5;
|
|
|
|
} else if (v % 3 == 2) {
|
|
|
|
x = 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
return x * m;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-24 05:04:30 -05:00
|
|
|
|
|
|
|
|
|
|
|
|