2014-05-18 11:52:39 -04:00
|
|
|
#include "settings/preferences.h"
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
|
|
|
|
Preferences::Preferences()
|
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Preferences::resetToDefaults()
|
|
|
|
{
|
|
|
|
m_sourceType.clear();
|
|
|
|
m_sourceDevice.clear();
|
|
|
|
m_audioType.clear();
|
|
|
|
m_audioDevice.clear();
|
2015-10-04 22:47:23 -04:00
|
|
|
m_sourceIndex = 0;
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray Preferences::serialize() const
|
|
|
|
{
|
|
|
|
SimpleSerializer s(1);
|
|
|
|
s.writeString(1, m_sourceType);
|
|
|
|
s.writeString(2, m_sourceDevice);
|
|
|
|
s.writeString(3, m_audioType);
|
|
|
|
s.writeString(4, m_audioDevice);
|
2015-10-01 20:22:56 -04:00
|
|
|
s.writeS32(5, m_sourceIndex);
|
2014-05-18 11:52:39 -04:00
|
|
|
return s.final();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Preferences::deserialize(const QByteArray& data)
|
|
|
|
{
|
|
|
|
SimpleDeserializer d(data);
|
|
|
|
|
|
|
|
if(!d.isValid()) {
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(d.getVersion() == 1) {
|
|
|
|
d.readString(1, &m_sourceType);
|
|
|
|
d.readString(2, &m_sourceDevice);
|
|
|
|
d.readString(3, &m_audioType);
|
|
|
|
d.readString(4, &m_audioDevice);
|
2015-10-04 22:47:23 -04:00
|
|
|
d.readS32(5, &m_sourceIndex, 0);
|
2014-05-18 11:52:39 -04:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|