2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-02-25 19:24:46 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2013-02-25 19:24:46 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "settings/SettingsObject.h"
|
2015-02-02 01:14:14 +00:00
|
|
|
#include <QDebug>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "PassthroughSetting.h"
|
|
|
|
#include "settings/OverrideSetting.h"
|
|
|
|
#include "settings/Setting.h"
|
2013-02-25 19:24:46 +00:00
|
|
|
|
|
|
|
#include <QVariant>
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
SettingsObject::SettingsObject(QObject* parent) : QObject(parent) {}
|
2013-02-25 19:24:46 +00:00
|
|
|
|
2014-01-01 14:08:40 +00:00
|
|
|
SettingsObject::~SettingsObject()
|
2013-02-25 19:24:46 +00:00
|
|
|
{
|
2014-01-01 14:08:40 +00:00
|
|
|
m_settings.clear();
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
std::shared_ptr<Setting> SettingsObject::registerOverride(std::shared_ptr<Setting> original, std::shared_ptr<Setting> gate)
|
2014-01-01 14:08:40 +00:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (contains(original->id())) {
|
|
|
|
qCritical() << QString("Failed to register setting %1. ID already exists.").arg(original->id());
|
|
|
|
return nullptr; // Fail
|
2013-02-25 19:24:46 +00:00
|
|
|
}
|
2015-09-04 01:10:29 +01:00
|
|
|
auto override = std::make_shared<OverrideSetting>(original, gate);
|
2014-01-01 14:08:40 +00:00
|
|
|
override->m_storage = this;
|
|
|
|
connectSignals(*override);
|
|
|
|
m_settings.insert(override->id(), override);
|
|
|
|
return override;
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
std::shared_ptr<Setting> SettingsObject::registerPassthrough(std::shared_ptr<Setting> original, std::shared_ptr<Setting> gate)
|
2015-05-04 00:20:48 +01:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (contains(original->id())) {
|
|
|
|
qCritical() << QString("Failed to register setting %1. ID already exists.").arg(original->id());
|
|
|
|
return nullptr; // Fail
|
2015-05-04 00:20:48 +01:00
|
|
|
}
|
|
|
|
auto passthrough = std::make_shared<PassthroughSetting>(original, gate);
|
|
|
|
passthrough->m_storage = this;
|
|
|
|
connectSignals(*passthrough);
|
|
|
|
m_settings.insert(passthrough->id(), passthrough);
|
|
|
|
return passthrough;
|
|
|
|
}
|
|
|
|
|
2014-01-01 14:08:40 +00:00
|
|
|
std::shared_ptr<Setting> SettingsObject::registerSetting(QStringList synonyms, QVariant defVal)
|
|
|
|
{
|
|
|
|
if (synonyms.empty())
|
|
|
|
return nullptr;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (contains(synonyms.first())) {
|
|
|
|
qCritical() << QString("Failed to register setting %1. ID already exists.").arg(synonyms.first());
|
|
|
|
return nullptr; // Fail
|
2014-01-01 14:08:40 +00:00
|
|
|
}
|
|
|
|
auto setting = std::make_shared<Setting>(synonyms, defVal);
|
|
|
|
setting->m_storage = this;
|
|
|
|
connectSignals(*setting);
|
|
|
|
m_settings.insert(setting->id(), setting);
|
|
|
|
return setting;
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
std::shared_ptr<Setting> SettingsObject::getSetting(const QString& id) const
|
2013-02-25 19:24:46 +00:00
|
|
|
{
|
|
|
|
// Make sure there is a setting with the given ID.
|
|
|
|
if (!m_settings.contains(id))
|
|
|
|
return NULL;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-02-25 19:24:46 +00:00
|
|
|
return m_settings[id];
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QVariant SettingsObject::get(const QString& id) const
|
2013-02-25 19:24:46 +00:00
|
|
|
{
|
2014-01-01 14:08:40 +00:00
|
|
|
auto setting = getSetting(id);
|
2013-02-25 19:24:46 +00:00
|
|
|
return (setting ? setting->get() : QVariant());
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool SettingsObject::set(const QString& id, QVariant value)
|
2013-02-25 19:24:46 +00:00
|
|
|
{
|
2014-01-01 14:08:40 +00:00
|
|
|
auto setting = getSetting(id);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!setting) {
|
2015-02-02 01:14:14 +00:00
|
|
|
qCritical() << QString("Error changing setting %1. Setting doesn't exist.").arg(id);
|
2013-02-25 19:24:46 +00:00
|
|
|
return false;
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2013-02-25 19:24:46 +00:00
|
|
|
setting->set(value);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void SettingsObject::reset(const QString& id) const
|
2013-07-15 23:30:32 +01:00
|
|
|
{
|
2014-01-01 14:08:40 +00:00
|
|
|
auto setting = getSetting(id);
|
2013-11-04 01:53:05 +00:00
|
|
|
if (setting)
|
2013-07-15 23:30:32 +01:00
|
|
|
setting->reset();
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool SettingsObject::contains(const QString& id)
|
2013-02-25 19:24:46 +00:00
|
|
|
{
|
|
|
|
return m_settings.contains(id);
|
|
|
|
}
|
|
|
|
|
2014-03-09 07:43:08 +00:00
|
|
|
bool SettingsObject::reload()
|
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto setting : m_settings.values()) {
|
2014-03-09 07:43:08 +00:00
|
|
|
setting->set(setting->get());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void SettingsObject::connectSignals(const Setting& setting)
|
2013-02-25 19:24:46 +00:00
|
|
|
{
|
2023-04-18 01:51:34 +01:00
|
|
|
connect(&setting, &Setting::SettingChanged, this, &SettingsObject::changeSetting);
|
2023-08-02 17:35:35 +01:00
|
|
|
connect(&setting, SIGNAL(SettingChanged(const Setting&, QVariant)), this, SIGNAL(SettingChanged(const Setting&, QVariant)));
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2023-04-18 01:51:34 +01:00
|
|
|
connect(&setting, &Setting::settingReset, this, &SettingsObject::resetSetting);
|
2023-08-02 17:35:35 +01:00
|
|
|
connect(&setting, SIGNAL(settingReset(Setting)), this, SIGNAL(settingReset(const Setting&)));
|
2013-02-25 19:24:46 +00:00
|
|
|
}
|