2018-06-05 17:13:29 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-08-13 13:54:39 +02:00
|
|
|
#include <QColor>
|
|
|
|
#include <QRegularExpression>
|
2018-08-02 14:23:27 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
2018-08-11 22:23:06 +02:00
|
|
|
#include "common/Aliases.hpp"
|
2018-08-02 14:23:27 +02:00
|
|
|
#include "common/UniqueAccess.hpp"
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "providers/twitch/TwitchEmotes.hpp"
|
2018-06-05 17:13:29 +02:00
|
|
|
|
2018-08-06 21:17:03 +02:00
|
|
|
#define TWITCH_EMOTE_TEMPLATE \
|
|
|
|
"https://static-cdn.jtvnw.net/emoticons/v1/{id}/{scale}"
|
2018-06-24 14:42:40 +02:00
|
|
|
|
2018-06-05 17:13:29 +02:00
|
|
|
namespace chatterino {
|
2018-08-11 22:23:06 +02:00
|
|
|
struct Emote;
|
|
|
|
using EmotePtr = std::shared_ptr<const Emote>;
|
|
|
|
|
2018-08-13 13:54:39 +02:00
|
|
|
struct CheerEmote {
|
|
|
|
QColor color;
|
|
|
|
int minBits;
|
|
|
|
|
|
|
|
EmotePtr animatedEmote;
|
|
|
|
EmotePtr staticEmote;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CheerEmoteSet {
|
|
|
|
QRegularExpression regex;
|
|
|
|
std::vector<CheerEmote> cheerEmotes;
|
|
|
|
};
|
|
|
|
|
2018-06-05 17:13:29 +02:00
|
|
|
class TwitchEmotes
|
|
|
|
{
|
|
|
|
public:
|
2018-11-05 17:04:52 +01:00
|
|
|
static QString cleanUpEmoteCode(const EmoteName &dirtyEmoteCode);
|
2018-06-24 14:42:40 +02:00
|
|
|
TwitchEmotes();
|
|
|
|
|
2018-08-02 14:23:27 +02:00
|
|
|
EmotePtr getOrCreateEmote(const EmoteId &id, const EmoteName &name);
|
|
|
|
Url getEmoteLink(const EmoteId &id, const QString &emoteScale);
|
|
|
|
AccessGuard<std::unordered_map<EmoteName, EmotePtr>> accessAll();
|
2018-06-05 17:13:29 +02:00
|
|
|
|
|
|
|
private:
|
2018-08-02 14:23:27 +02:00
|
|
|
UniqueAccess<std::unordered_map<EmoteName, EmotePtr>> twitchEmotes_;
|
2018-08-06 21:17:03 +02:00
|
|
|
UniqueAccess<std::unordered_map<EmoteId, std::weak_ptr<Emote>>>
|
|
|
|
twitchEmotesCache_;
|
2018-06-05 17:13:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace chatterino
|