mirror-chatterino2/src/Application.hpp
pajlada 4958d08036
Change sound backend from Qt to miniaudio (#4334)
Thanks Greenlandicsmiley, Nerixyz, Yoitsu, and helmak for helping debug & test this

* Remove QMediaPlayer includes

* Prefer local path when generating the sound path

* Update changelog entry number

* Disable pitch & spatialization control
2023-01-29 10:36:25 +01:00

176 lines
4.1 KiB
C++

#pragma once
#include "common/Singleton.hpp"
#include "singletons/NativeMessaging.hpp"
#include <QApplication>
#include <memory>
namespace chatterino {
class TwitchIrcServer;
class PubSub;
class CommandController;
class AccountController;
class NotificationController;
class HighlightController;
class HotkeyController;
class IUserDataController;
class UserDataController;
class SoundController;
class Theme;
class WindowManager;
class Logging;
class Paths;
class Emotes;
class IEmotes;
class Settings;
class Fonts;
class Toasts;
class ChatterinoBadges;
class FfzBadges;
class SeventvBadges;
class IApplication
{
public:
IApplication();
virtual ~IApplication() = default;
static IApplication *instance;
virtual Theme *getThemes() = 0;
virtual Fonts *getFonts() = 0;
virtual IEmotes *getEmotes() = 0;
virtual AccountController *getAccounts() = 0;
virtual HotkeyController *getHotkeys() = 0;
virtual WindowManager *getWindows() = 0;
virtual Toasts *getToasts() = 0;
virtual CommandController *getCommands() = 0;
virtual HighlightController *getHighlights() = 0;
virtual NotificationController *getNotifications() = 0;
virtual TwitchIrcServer *getTwitch() = 0;
virtual ChatterinoBadges *getChatterinoBadges() = 0;
virtual FfzBadges *getFfzBadges() = 0;
virtual IUserDataController *getUserData() = 0;
};
class Application : public IApplication
{
std::vector<std::unique_ptr<Singleton>> singletons_;
int argc_;
char **argv_;
public:
static Application *instance;
Application(Settings &settings, Paths &paths);
void initialize(Settings &settings, Paths &paths);
void load();
void save();
int run(QApplication &qtApp);
friend void test();
Theme *const themes{};
Fonts *const fonts{};
Emotes *const emotes{};
AccountController *const accounts{};
HotkeyController *const hotkeys{};
WindowManager *const windows{};
Toasts *const toasts{};
CommandController *const commands{};
NotificationController *const notifications{};
HighlightController *const highlights{};
TwitchIrcServer *const twitch{};
ChatterinoBadges *const chatterinoBadges{};
FfzBadges *const ffzBadges{};
SeventvBadges *const seventvBadges{};
UserDataController *const userData{};
SoundController *const sound{};
/*[[deprecated]]*/ Logging *const logging{};
Theme *getThemes() override
{
return this->themes;
}
Fonts *getFonts() override
{
return this->fonts;
}
IEmotes *getEmotes() override;
AccountController *getAccounts() override
{
return this->accounts;
}
HotkeyController *getHotkeys() override
{
return this->hotkeys;
}
WindowManager *getWindows() override
{
return this->windows;
}
Toasts *getToasts() override
{
return this->toasts;
}
CommandController *getCommands() override
{
return this->commands;
}
NotificationController *getNotifications() override
{
return this->notifications;
}
HighlightController *getHighlights() override
{
return this->highlights;
}
TwitchIrcServer *getTwitch() override
{
return this->twitch;
}
ChatterinoBadges *getChatterinoBadges() override
{
return this->chatterinoBadges;
}
FfzBadges *getFfzBadges() override
{
return this->ffzBadges;
}
IUserDataController *getUserData() override;
private:
void addSingleton(Singleton *singleton);
void initPubSub();
void initBttvLiveUpdates();
void initSeventvEventAPI();
void initNm(Paths &paths);
template <typename T,
typename = std::enable_if_t<std::is_base_of<Singleton, T>::value>>
T &emplace()
{
auto t = new T;
this->singletons_.push_back(std::unique_ptr<T>(t));
return *t;
}
NativeMessagingServer nmServer{};
};
Application *getApp();
// Get an interface version of the Application class - should be preferred when possible for new code
IApplication *getIApp();
} // namespace chatterino