mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
10850c0ec7
refactored the rendering process
95 lines
2.2 KiB
C++
95 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include "messages/image.hpp"
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <mutex>
|
|
|
|
namespace chatterino {
|
|
namespace singletons {
|
|
|
|
class ResourceManager
|
|
{
|
|
ResourceManager();
|
|
|
|
public:
|
|
static ResourceManager &getInstance();
|
|
|
|
messages::Image *badgeStaff;
|
|
messages::Image *badgeAdmin;
|
|
messages::Image *badgeGlobalModerator;
|
|
messages::Image *badgeModerator;
|
|
messages::Image *badgeTurbo;
|
|
messages::Image *badgeBroadcaster;
|
|
messages::Image *badgePremium;
|
|
messages::Image *badgeVerified;
|
|
messages::Image *badgeSubscriber;
|
|
messages::Image *badgeCollapsed;
|
|
|
|
messages::Image *cheerBadge100000;
|
|
messages::Image *cheerBadge10000;
|
|
messages::Image *cheerBadge5000;
|
|
messages::Image *cheerBadge1000;
|
|
messages::Image *cheerBadge100;
|
|
messages::Image *cheerBadge1;
|
|
|
|
std::map<std::string, messages::Image *> cheerBadges;
|
|
|
|
struct BadgeVersion {
|
|
BadgeVersion() = delete;
|
|
|
|
explicit BadgeVersion(QJsonObject &&root);
|
|
|
|
messages::Image *badgeImage1x;
|
|
messages::Image *badgeImage2x;
|
|
messages::Image *badgeImage4x;
|
|
std::string description;
|
|
std::string title;
|
|
std::string clickAction;
|
|
std::string clickURL;
|
|
};
|
|
|
|
struct BadgeSet {
|
|
std::map<std::string, BadgeVersion> versions;
|
|
};
|
|
|
|
std::map<std::string, BadgeSet> badgeSets;
|
|
|
|
bool dynamicBadgesLoaded = false;
|
|
|
|
messages::Image *buttonBan;
|
|
messages::Image *buttonTimeout;
|
|
|
|
struct Channel {
|
|
std::map<std::string, BadgeSet> badgeSets;
|
|
|
|
bool loaded = false;
|
|
};
|
|
|
|
// channelId
|
|
std::map<QString, Channel> channels;
|
|
|
|
// Chatterino badges
|
|
struct ChatterinoBadge {
|
|
ChatterinoBadge(const std::string &_tooltip, messages::Image *_image)
|
|
: tooltip(_tooltip)
|
|
, image(_image)
|
|
{
|
|
}
|
|
|
|
std::string tooltip;
|
|
messages::Image *image;
|
|
};
|
|
|
|
// username
|
|
std::map<std::string, std::shared_ptr<ChatterinoBadge>> chatterinoBadges;
|
|
|
|
void loadChannelData(const QString &roomID, bool bypassCache = false);
|
|
void loadDynamicTwitchBadges();
|
|
void loadChatterinoBadges();
|
|
};
|
|
|
|
} // namespace chatterino
|
|
}
|