2020-07-10 15:20:13 +02:00
|
|
|
#include "../../headers/client/scstwremotesettings.h"
|
|
|
|
|
|
|
|
ScStwRemoteSettings::ScStwRemoteSettings(ScStwClient * scStwClient, QObject * parent) : ScStwSettings(parent)
|
|
|
|
{
|
|
|
|
this->scStwClient = scStwClient;
|
2020-07-11 11:17:20 +02:00
|
|
|
this->scStwClient->addSignalSubscription(ScStw::SettingChanged);
|
2020-07-10 15:20:13 +02:00
|
|
|
|
|
|
|
connect(this->scStwClient, &ScStwClient::gotSignal, this, &ScStwRemoteSettings::handleBaseStationSignal);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScStwRemoteSettings::SettingsMode ScStwRemoteSettings::getMode() {
|
|
|
|
if(this->scStwClient->getState() == ScStwClient::CONNECTED)
|
|
|
|
return ScStwRemoteSettings::REMOTE;
|
|
|
|
else
|
|
|
|
return ScStwRemoteSettings::LOCAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ScStwRemoteSettings::readSetting(QString key, int keyInt, int keyLevel) {
|
|
|
|
if(this->getMode() == LOCAL || keyLevel > 0)
|
|
|
|
return ScStwSettings::readSetting(key, keyInt, keyLevel);
|
|
|
|
|
|
|
|
return this->scStwClient->readRemoteSetting(ScStwSettings::BaseStationSetting(keyInt));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScStwRemoteSettings::writeSetting(QString key, QVariant value, int keyInt, int keyLevel) {
|
|
|
|
if(this->getMode() == LOCAL || keyLevel > 0)
|
|
|
|
return ScStwSettings::writeSetting(key, value, keyInt, keyLevel);
|
|
|
|
|
2020-07-11 11:17:20 +02:00
|
|
|
qDebug() << "changing setting";
|
|
|
|
ScStw::StatusCode res = this->scStwClient->writeRemoteSetting(ScStwSettings::BaseStationSetting(keyInt), value);
|
|
|
|
qDebug() << "changed setting " << res;
|
2020-07-10 15:20:13 +02:00
|
|
|
|
2020-07-11 11:17:20 +02:00
|
|
|
return res == ScStw::Success;
|
2020-07-10 15:20:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScStwRemoteSettings::setDefaultSetting(QString key, QVariant defaultVariant, int keyInt, int keyLevel) {
|
|
|
|
if(this->getMode() == LOCAL || keyLevel > 0)
|
|
|
|
return ScStwSettings::setDefaultSetting(key, defaultVariant, keyInt, keyLevel);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScStwRemoteSettings::handleClientStateChange() {
|
|
|
|
if(this->scStwClient->getState() == ScStwClient::DISCONNECTED)
|
2020-07-11 14:00:31 +02:00
|
|
|
emit this->settingChanged(-1, 0, QVariant());
|
2020-07-10 15:20:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScStwRemoteSettings::handleBaseStationSignal(ScStw::SignalKey key, QVariant data) {
|
|
|
|
switch (key) {
|
|
|
|
case ScStw::SettingChanged:
|
2020-07-11 14:00:31 +02:00
|
|
|
emit this->settingChanged(data.toMap()["key"].toInt(), 0, data.toMap()["value"]);
|
2020-07-10 15:20:13 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|