mirror-chatterino2/src/singletons/settingsmanager.cpp

187 lines
5.8 KiB
C++
Raw Normal View History

2017-12-31 00:50:07 +01:00
#include "singletons/settingsmanager.hpp"
2017-06-11 09:31:45 +02:00
#include "appdatapath.hpp"
#include "debug/log.hpp"
2017-04-12 17:46:44 +02:00
#include <QDir>
#include <QStandardPaths>
2017-04-14 17:52:22 +02:00
using namespace chatterino::messages;
2017-04-12 17:46:44 +02:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-04-12 17:46:44 +02:00
std::vector<std::weak_ptr<pajlada::Settings::ISettingData>> _settings;
void _registerSetting(std::weak_ptr<pajlada::Settings::ISettingData> setting)
{
_settings.push_back(setting);
}
2017-04-12 17:46:44 +02:00
SettingsManager::SettingsManager()
: streamlinkPath("/behaviour/streamlink/path", "")
, preferredQuality("/behaviour/streamlink/quality", "Choose")
2017-09-21 12:15:01 +02:00
, emoteScale(this->settingsItems, "emoteScale", 1.0)
, pathHighlightSound(this->settingsItems, "pathHighlightSound", "qrc:/sounds/ping2.wav")
, highlightProperties(this->settingsItems, "highlightProperties",
QMap<QString, QPair<bool, bool>>())
, highlightUserBlacklist(this->settingsItems, "highlightUserBlacklist", "")
, snapshot(nullptr)
, settings(Path::getAppdataPath() + "settings.ini", QSettings::IniFormat)
2017-04-12 17:46:44 +02:00
{
this->wordMaskListener.addSetting(this->showTimestamps);
this->wordMaskListener.addSetting(this->showTimestampSeconds);
this->wordMaskListener.addSetting(this->showBadges);
this->wordMaskListener.addSetting(this->enableBttvEmotes);
this->wordMaskListener.addSetting(this->enableEmojis);
this->wordMaskListener.addSetting(this->enableFfzEmotes);
this->wordMaskListener.addSetting(this->enableTwitchEmotes);
this->wordMaskListener.cb = [this](auto) {
this->updateWordTypeMask(); //
};
2017-04-12 17:46:44 +02:00
}
void SettingsManager::save()
{
2017-09-21 12:15:01 +02:00
for (auto &item : this->settingsItems) {
2017-07-31 00:57:42 +02:00
if (item.get().getName() != "highlightProperties") {
2017-09-21 12:15:01 +02:00
this->settings.setValue(item.get().getName(), item.get().getVariant());
} else {
2017-09-21 12:15:01 +02:00
this->settings.beginGroup("Highlights");
QStringList list = highlightProperties.get().keys();
list.removeAll("");
2017-09-21 12:15:01 +02:00
this->settings.remove("");
2017-07-31 00:57:42 +02:00
for (auto string : list) {
2017-09-21 12:15:01 +02:00
this->settings.beginGroup(string);
this->settings.setValue("highlightSound",
highlightProperties.get().value(string).first);
this->settings.setValue("highlightTask",
highlightProperties.get().value(string).second);
this->settings.endGroup();
}
2017-09-21 12:15:01 +02:00
this->settings.endGroup();
}
2017-04-12 17:46:44 +02:00
}
}
void SettingsManager::load()
{
2017-09-21 12:15:01 +02:00
for (auto &item : this->settingsItems) {
2017-07-31 00:57:42 +02:00
if (item.get().getName() != "highlightProperties") {
2017-09-21 12:15:01 +02:00
item.get().setVariant(this->settings.value(item.get().getName()));
} else {
2017-09-21 12:15:01 +02:00
this->settings.beginGroup("Highlights");
QStringList list = this->settings.childGroups();
2017-07-31 00:57:42 +02:00
for (auto string : list) {
2017-09-21 12:15:01 +02:00
this->settings.beginGroup(string);
highlightProperties.insertMap(string,
this->settings.value("highlightSound").toBool(),
this->settings.value("highlightTask").toBool());
this->settings.endGroup();
}
2017-09-21 12:15:01 +02:00
this->settings.endGroup();
}
2017-04-12 17:46:44 +02:00
}
}
Word::Flags SettingsManager::getWordTypeMask()
2017-04-12 17:46:44 +02:00
{
2017-09-21 12:15:01 +02:00
return this->wordTypeMask;
2017-04-12 17:46:44 +02:00
}
bool SettingsManager::isIgnoredEmote(const QString &)
{
return false;
}
QSettings &SettingsManager::getQSettings()
{
2017-09-21 12:15:01 +02:00
return this->settings;
2017-04-12 17:46:44 +02:00
}
void SettingsManager::updateWordTypeMask()
{
uint32_t newMaskUint = Word::Text;
if (this->showTimestamps) {
if (this->showTimestampSeconds) {
newMaskUint |= Word::TimestampWithSeconds;
} else {
newMaskUint |= Word::TimestampNoSeconds;
}
2017-04-12 17:46:44 +02:00
}
newMaskUint |= enableTwitchEmotes ? Word::TwitchEmoteImage : Word::TwitchEmoteText;
newMaskUint |= enableFfzEmotes ? Word::FfzEmoteImage : Word::FfzEmoteText;
newMaskUint |= enableBttvEmotes ? Word::BttvEmoteImage : Word::BttvEmoteText;
newMaskUint |=
(enableBttvEmotes && enableGifAnimations) ? Word::BttvEmoteImage : Word::BttvEmoteText;
newMaskUint |= enableEmojis ? Word::EmojiImage : Word::EmojiText;
newMaskUint |= Word::BitsAmount;
newMaskUint |= enableGifAnimations ? Word::BitsAnimated : Word::BitsStatic;
2017-04-12 17:46:44 +02:00
if (this->showBadges) {
newMaskUint |= Word::Badges;
}
2017-04-12 17:46:44 +02:00
newMaskUint |= Word::Username;
2017-04-12 17:46:44 +02:00
newMaskUint |= Word::AlwaysShow;
Word::Flags newMask = static_cast<Word::Flags>(newMaskUint);
2017-04-12 17:46:44 +02:00
2017-09-21 12:15:01 +02:00
if (newMask != this->wordTypeMask) {
this->wordTypeMask = newMask;
2017-04-12 17:46:44 +02:00
emit wordTypeMaskChanged();
}
}
void SettingsManager::saveSnapshot()
2017-04-12 17:46:44 +02:00
{
rapidjson::Document *d = new rapidjson::Document(rapidjson::kObjectType);
rapidjson::Document::AllocatorType &a = d->GetAllocator();
2017-04-12 17:46:44 +02:00
for (const auto &weakSetting : _settings) {
auto setting = weakSetting.lock();
if (!setting) {
continue;
}
rapidjson::Value key(setting->getPath().c_str(), a);
rapidjson::Value val = setting->marshalInto(*d);
d->AddMember(key.Move(), val.Move(), a);
2017-04-12 17:46:44 +02:00
}
this->snapshot.reset(d);
debug::Log("hehe: {}", pajlada::Settings::SettingManager::stringify(*d));
}
void SettingsManager::recallSnapshot()
{
if (!this->snapshot) {
return;
}
const auto &snapshotObject = this->snapshot->GetObject();
for (const auto &weakSetting : _settings) {
auto setting = weakSetting.lock();
if (!setting) {
debug::Log("Error stage 1 of loading");
continue;
}
const char *path = setting->getPath().c_str();
if (!snapshotObject.HasMember(path)) {
debug::Log("Error stage 2 of loading");
continue;
}
setting->unmarshalValue(snapshotObject[path]);
}
2017-04-12 17:46:44 +02:00
}
2017-04-14 17:52:22 +02:00
} // namespace chatterino