2017-06-07 10:09:24 +02:00
|
|
|
#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"
|
2017-06-26 16:41:20 +02:00
|
|
|
#include "emojis.hpp"
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "messages/lazyloadedimage.hpp"
|
2017-07-23 14:16:13 +02:00
|
|
|
#include "signalvector.hpp"
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "twitch/emotevalue.hpp"
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QMutex>
|
2017-07-31 22:15:02 +02:00
|
|
|
#include <QRegularExpression>
|
2017-06-26 16:41:20 +02:00
|
|
|
#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 {
|
2017-06-13 21:13:58 +02:00
|
|
|
|
|
|
|
class WindowManager;
|
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
struct EmoteData {
|
|
|
|
EmoteData()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
EmoteData(messages::LazyLoadedImage *_image)
|
|
|
|
: image(_image)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
messages::LazyLoadedImage *image = nullptr;
|
|
|
|
};
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
typedef ConcurrentMap<QString, EmoteData> EmoteMap;
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
class EmoteManager
|
|
|
|
{
|
|
|
|
public:
|
2017-08-12 15:58:46 +02:00
|
|
|
explicit EmoteManager(WindowManager &_windowManager);
|
2017-06-13 21:13:58 +02:00
|
|
|
|
2017-10-11 10:34:04 +02:00
|
|
|
static EmoteManager *instance;
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
void loadGlobalEmotes();
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void reloadBTTVChannelEmotes(const QString &channelName,
|
|
|
|
std::weak_ptr<EmoteMap> channelEmoteMap);
|
|
|
|
void reloadFFZChannelEmotes(const QString &channelName,
|
|
|
|
std::weak_ptr<EmoteMap> channelEmoteMap);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
ConcurrentMap<QString, twitch::EmoteValue *> &getTwitchEmotes();
|
2017-07-09 17:58:59 +02:00
|
|
|
EmoteMap &getFFZEmotes();
|
|
|
|
EmoteMap &getChatterinoEmotes();
|
|
|
|
EmoteMap &getBTTVChannelEmoteFromCaches();
|
2017-09-16 16:20:10 +02:00
|
|
|
EmoteMap &getEmojis();
|
2017-07-09 17:58:59 +02:00
|
|
|
ConcurrentMap<int, EmoteData> &getFFZChannelEmoteFromCaches();
|
|
|
|
ConcurrentMap<long, EmoteData> &getTwitchEmoteFromCache();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
EmoteData getCheerImage(long long int amount, bool animated);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-09 17:58:59 +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++;
|
|
|
|
}
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
boost::signals2::signal<void()> &getGifUpdateSignal();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
// Bit badge/emotes?
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> miscImageCache;
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
private:
|
2017-06-13 21:13:58 +02:00
|
|
|
WindowManager &windowManager;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
/// Emojis
|
2017-07-31 22:15:02 +02:00
|
|
|
QRegularExpression findShortCodesRegex;
|
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
// shortCodeToEmoji maps strings like "sunglasses" to its emoji
|
|
|
|
QMap<QString, EmojiData> emojiShortCodeToEmoji;
|
2017-06-26 16:41:20 +02:00
|
|
|
|
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-06-26 16:41:20 +02:00
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
// url Emoji-one image
|
2017-07-09 17:58:59 +02:00
|
|
|
EmoteMap emojiCache;
|
2017-09-16 16:20:10 +02:00
|
|
|
EmoteMap emojis;
|
2017-06-26 16:41:20 +02:00
|
|
|
|
|
|
|
void loadEmojis();
|
|
|
|
|
|
|
|
public:
|
2017-07-09 17:58:59 +02:00
|
|
|
void parseEmojis(std::vector<std::tuple<EmoteData, QString>> &parsedWords, const QString &text);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-31 22:15:02 +02:00
|
|
|
QString replaceShortCodes(const QString &text);
|
|
|
|
|
2017-08-01 00:10:02 +02:00
|
|
|
std::vector<std::string> emojiShortCodes;
|
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
/// Twitch emotes
|
2017-07-23 14:16:13 +02:00
|
|
|
void refreshTwitchEmotes(const std::string &roomID);
|
|
|
|
|
|
|
|
struct TwitchAccountEmoteData {
|
|
|
|
struct TwitchEmote {
|
|
|
|
std::string id;
|
|
|
|
std::string code;
|
|
|
|
};
|
|
|
|
|
|
|
|
// emote set
|
|
|
|
std::map<std::string, std::vector<TwitchEmote>> emoteSets;
|
|
|
|
|
|
|
|
std::vector<std::string> emoteCodes;
|
2017-07-23 09:53:50 +02:00
|
|
|
|
2017-07-23 14:16:13 +02:00
|
|
|
bool filled = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::map<std::string, TwitchAccountEmoteData> twitchAccountEmotes;
|
|
|
|
|
|
|
|
private:
|
2017-07-23 09:53:50 +02:00
|
|
|
// 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
|
2017-07-09 17:58:59 +02:00
|
|
|
ConcurrentMap<long, EmoteData> _twitchEmoteFromCache;
|
2017-06-26 16:41:20 +02:00
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
/// BTTV emotes
|
2017-07-09 17:58:59 +02:00
|
|
|
EmoteMap bttvChannelEmotes;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ConcurrentMap<QString, EmoteMap> bttvChannels;
|
2017-07-23 09:53:50 +02:00
|
|
|
EmoteMap bttvGlobalEmotes;
|
2017-07-23 14:16:13 +02:00
|
|
|
SignalVector<std::string> bttvGlobalEmoteCodes;
|
|
|
|
// roomID
|
|
|
|
std::map<std::string, SignalVector<std::string>> bttvChannelEmoteCodes;
|
2017-07-09 17:58:59 +02:00
|
|
|
EmoteMap _bttvChannelEmoteFromCaches;
|
2017-06-26 16:41:20 +02:00
|
|
|
|
2017-07-23 09:53:50 +02:00
|
|
|
private:
|
2017-06-26 16:41:20 +02:00
|
|
|
void loadBTTVEmotes();
|
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
/// FFZ emotes
|
2017-07-09 17:58:59 +02:00
|
|
|
EmoteMap ffzChannelEmotes;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ConcurrentMap<QString, EmoteMap> ffzChannels;
|
2017-07-23 09:53:50 +02:00
|
|
|
EmoteMap ffzGlobalEmotes;
|
2017-07-23 14:16:13 +02:00
|
|
|
SignalVector<std::string> ffzGlobalEmoteCodes;
|
|
|
|
std::map<std::string, SignalVector<std::string>> ffzChannelEmoteCodes;
|
2017-07-09 17:58:59 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
ConcurrentMap<int, EmoteData> _ffzChannelEmoteFromCaches;
|
2017-06-26 16:41:20 +02:00
|
|
|
|
|
|
|
void loadFFZEmotes();
|
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
/// Chatterino emotes
|
2017-07-09 17:58:59 +02:00
|
|
|
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;
|
2017-06-13 21:13:58 +02:00
|
|
|
bool _gifUpdateTimerInitiated = false;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-06-13 21:13:58 +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
|