a240797b68
Miniaudio now runs everything in a separate audio thread - this uses boost::asio's io_context. Our miniaudio implementation is now also much simplified - it does not use its own resource manager or device. This might end up being stupid if sounds don't work after changing output device or locking or w/e I've made the sound controller into an interface, meaning we can support multiple sound backends in Chatterino. I've added a Null sound backend that disables all sound. A QMediaPlayer or QSoundEffect or Qt backend could be added. Miniaudio might idle & disable the device now too, not sure I've added some unrelated changes in the form of a new setting type, and a new setting page helper function for it, which will hopefully make adding new enum settings easier in the future. This setting stores its value as a string instead of an int, and uses magic_enum to convert between that string value and its enum value.
144 lines
3.6 KiB
C++
144 lines
3.6 KiB
C++
#pragma once
|
|
|
|
#include <magic_enum.hpp>
|
|
#include <pajlada/settings.hpp>
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
void _registerSetting(std::weak_ptr<pajlada::Settings::SettingData> setting);
|
|
|
|
template <typename Type>
|
|
class ChatterinoSetting : public pajlada::Settings::Setting<Type>
|
|
{
|
|
public:
|
|
ChatterinoSetting(const std::string &path)
|
|
: pajlada::Settings::Setting<Type>(path)
|
|
{
|
|
_registerSetting(this->getData());
|
|
}
|
|
|
|
ChatterinoSetting(const std::string &path, const Type &defaultValue)
|
|
: pajlada::Settings::Setting<Type>(path, defaultValue)
|
|
{
|
|
_registerSetting(this->getData());
|
|
}
|
|
|
|
template <typename T2>
|
|
ChatterinoSetting &operator=(const T2 &newValue)
|
|
{
|
|
this->setValue(newValue);
|
|
|
|
return *this;
|
|
}
|
|
|
|
ChatterinoSetting &operator=(Type &&newValue) noexcept
|
|
{
|
|
pajlada::Settings::Setting<Type>::operator=(newValue);
|
|
|
|
return *this;
|
|
}
|
|
|
|
using pajlada::Settings::Setting<Type>::operator==;
|
|
using pajlada::Settings::Setting<Type>::operator!=;
|
|
|
|
using pajlada::Settings::Setting<Type>::operator Type;
|
|
};
|
|
|
|
using BoolSetting = ChatterinoSetting<bool>;
|
|
using FloatSetting = ChatterinoSetting<float>;
|
|
using DoubleSetting = ChatterinoSetting<double>;
|
|
using IntSetting = ChatterinoSetting<int>;
|
|
using StringSetting = ChatterinoSetting<std::string>;
|
|
using QStringSetting = ChatterinoSetting<QString>;
|
|
|
|
template <typename Enum>
|
|
class EnumSetting
|
|
: public ChatterinoSetting<typename std::underlying_type<Enum>::type>
|
|
{
|
|
using Underlying = typename std::underlying_type<Enum>::type;
|
|
|
|
public:
|
|
using ChatterinoSetting<Underlying>::ChatterinoSetting;
|
|
|
|
EnumSetting(const std::string &path, const Enum &defaultValue)
|
|
: ChatterinoSetting<Underlying>(path, Underlying(defaultValue))
|
|
{
|
|
_registerSetting(this->getData());
|
|
}
|
|
|
|
template <typename T2>
|
|
EnumSetting<Enum> &operator=(Enum newValue)
|
|
{
|
|
this->setValue(Underlying(newValue));
|
|
|
|
return *this;
|
|
}
|
|
|
|
operator Enum()
|
|
{
|
|
return Enum(this->getValue());
|
|
}
|
|
|
|
Enum getEnum()
|
|
{
|
|
return Enum(this->getValue());
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Setters in this class allow for bad values, it's only the enum-specific getters that are protected.
|
|
* If you get a QString from this setting, it will be the raw value from the settings file.
|
|
* Use the explicit Enum conversions or getEnum to get a typed check with a default
|
|
**/
|
|
template <typename Enum>
|
|
class EnumStringSetting : public pajlada::Settings::Setting<QString>
|
|
{
|
|
public:
|
|
EnumStringSetting(const std::string &path, const Enum &defaultValue_)
|
|
: pajlada::Settings::Setting<QString>(path)
|
|
, defaultValue(defaultValue_)
|
|
{
|
|
_registerSetting(this->getData());
|
|
}
|
|
|
|
template <typename T2>
|
|
EnumStringSetting<Enum> &operator=(Enum newValue)
|
|
{
|
|
std::string enumName(magic_enum::enum_name(newValue));
|
|
auto qEnumName = QString::fromStdString(enumName);
|
|
|
|
this->setValue(qEnumName.toLower());
|
|
|
|
return *this;
|
|
}
|
|
|
|
EnumStringSetting<Enum> &operator=(QString newValue)
|
|
{
|
|
this->setValue(newValue.toLower());
|
|
|
|
return *this;
|
|
}
|
|
|
|
operator Enum()
|
|
{
|
|
return this->getEnum();
|
|
}
|
|
|
|
Enum getEnum()
|
|
{
|
|
return magic_enum::enum_cast<Enum>(this->getValue().toStdString(),
|
|
magic_enum::case_insensitive)
|
|
.value_or(this->defaultValue);
|
|
}
|
|
|
|
Enum defaultValue;
|
|
|
|
using pajlada::Settings::Setting<QString>::operator==;
|
|
using pajlada::Settings::Setting<QString>::operator!=;
|
|
|
|
using pajlada::Settings::Setting<QString>::operator QString;
|
|
};
|
|
|
|
} // namespace chatterino
|