mirror-chatterino2/src/emotemanager.hpp

139 lines
3.2 KiB
C++
Raw Normal View History

#pragma once
2017-04-12 17:46:44 +02:00
#define GIF_FRAME_LENGTH 33
2017-06-11 09:31:45 +02:00
#include "concurrentmap.hpp"
#include "emojis.hpp"
2017-06-11 09:31:45 +02:00
#include "messages/lazyloadedimage.hpp"
#include "twitch/emotevalue.hpp"
2017-04-12 17:46:44 +02:00
#include <QMap>
#include <QMutex>
#include <QString>
2017-04-12 17:46:44 +02:00
#include <QTimer>
#include <boost/signals2.hpp>
2017-04-14 17:52:22 +02:00
namespace chatterino {
class WindowManager;
class Resources;
struct EmoteData {
EmoteData()
{
}
EmoteData(messages::LazyLoadedImage *_image)
: image(_image)
{
}
messages::LazyLoadedImage *image = nullptr;
};
2017-04-12 17:46:44 +02:00
class EmoteManager
{
public:
using EmoteMap = ConcurrentMap<QString, EmoteData>;
EmoteManager(WindowManager &_windowManager, Resources &_resources);
void loadGlobalEmotes();
void reloadBTTVChannelEmotes(const QString &channelName);
void reloadFFZChannelEmotes(const QString &channelName);
2017-04-12 17:46:44 +02:00
ConcurrentMap<QString, twitch::EmoteValue *> &getTwitchEmotes();
EmoteMap &getFFZEmotes();
EmoteMap &getChatterinoEmotes();
EmoteMap &getBTTVChannelEmoteFromCaches();
ConcurrentMap<int, EmoteData> &getFFZChannelEmoteFromCaches();
ConcurrentMap<long, EmoteData> &getTwitchEmoteFromCache();
2017-04-12 17:46:44 +02:00
EmoteData getCheerImage(long long int amount, bool animated);
2017-04-12 17:46:44 +02:00
EmoteData getTwitchEmoteById(long int id, const QString &emoteName);
2017-04-12 17:46:44 +02:00
int getGeneration()
{
return _generation;
}
void incGeneration()
{
_generation++;
}
boost::signals2::signal<void()> &getGifUpdateSignal();
2017-04-12 17:46:44 +02:00
// Bit badge/emotes?
ConcurrentMap<QString, messages::LazyLoadedImage *> miscImageCache;
2017-04-12 17:46:44 +02:00
private:
WindowManager &windowManager;
Resources &resources;
2017-04-12 17:46:44 +02:00
2017-07-02 17:37:17 +02:00
/// Emojis
// shortCodeToEmoji maps strings like "sunglasses" to its emoji
QMap<QString, EmojiData> emojiShortCodeToEmoji;
2017-07-02 17:37:17 +02:00
// Maps the first character of the emoji unicode string to a vector of possible emojis
QMap<QChar, QVector<EmojiData>> emojiFirstByte;
2017-07-02 17:37:17 +02:00
// url Emoji-one image
EmoteMap emojiCache;
void loadEmojis();
public:
void parseEmojis(std::vector<std::tuple<EmoteData, QString>> &parsedWords, const QString &text);
2017-04-12 17:46:44 +02:00
private:
2017-07-02 17:37:17 +02:00
/// Twitch emotes
2017-07-23 09:53:50 +02:00
// username emote code
ConcurrentStdMap<QString, std::vector<QString>> twitchAccountEmotes;
// emote code
2017-04-12 17:46:44 +02:00
ConcurrentMap<QString, twitch::EmoteValue *> _twitchEmotes;
2017-07-23 09:53:50 +02:00
// emote id
ConcurrentMap<long, EmoteData> _twitchEmoteFromCache;
2017-07-02 17:37:17 +02:00
/// BTTV emotes
EmoteMap bttvChannelEmotes;
public:
ConcurrentMap<QString, EmoteMap> bttvChannels;
2017-07-23 09:53:50 +02:00
EmoteMap bttvGlobalEmotes;
EmoteMap _bttvChannelEmoteFromCaches;
2017-07-23 09:53:50 +02:00
private:
void loadBTTVEmotes();
2017-07-02 17:37:17 +02:00
/// FFZ emotes
EmoteMap ffzChannelEmotes;
public:
ConcurrentMap<QString, EmoteMap> ffzChannels;
2017-07-23 09:53:50 +02:00
EmoteMap ffzGlobalEmotes;
private:
ConcurrentMap<int, EmoteData> _ffzChannelEmoteFromCaches;
void loadFFZEmotes();
2017-07-02 17:37:17 +02:00
/// Chatterino emotes
EmoteMap _chatterinoEmotes;
2017-04-12 17:46:44 +02:00
2017-05-27 16:16:39 +02:00
boost::signals2::signal<void()> _gifUpdateTimerSignal;
2017-04-12 17:46:44 +02:00
QTimer _gifUpdateTimer;
bool _gifUpdateTimerInitiated = false;
2017-04-12 17:46:44 +02:00
int _generation = 0;
2017-04-12 17:46:44 +02:00
// methods
static QString getTwitchEmoteLink(long id, qreal &scale);
};
2017-05-27 16:16:39 +02:00
2017-04-14 17:52:22 +02:00
} // namespace chatterino