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"
|
|
|
|
#include "messages/lazyloadedimage.hpp"
|
|
|
|
#include "twitch/emotevalue.hpp"
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QMutex>
|
|
|
|
#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;
|
|
|
|
class Resources;
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
class EmoteManager
|
|
|
|
{
|
|
|
|
public:
|
2017-06-13 21:13:58 +02:00
|
|
|
using FFZEmoteMap = ConcurrentMap<QString, messages::LazyLoadedImage *>;
|
|
|
|
using BTTVEmoteMap = ConcurrentMap<QString, messages::LazyLoadedImage *>;
|
|
|
|
using ChatterinoEmoteMap = ConcurrentMap<QString, messages::LazyLoadedImage *>;
|
|
|
|
|
|
|
|
EmoteManager(WindowManager &_windowManager, Resources &_resources);
|
|
|
|
|
|
|
|
void loadGlobalEmotes();
|
|
|
|
|
|
|
|
void reloadBTTVChannelEmotes(const QString &channelName, BTTVEmoteMap &channelEmoteMap);
|
|
|
|
void reloadFFZChannelEmotes(const QString &channelName, FFZEmoteMap &channelEmoteMap);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
ConcurrentMap<QString, twitch::EmoteValue *> &getTwitchEmotes();
|
2017-06-13 21:13:58 +02:00
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> &getBTTVEmotes();
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> &getFFZEmotes();
|
2017-04-12 17:46:44 +02:00
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> &getChatterinoEmotes();
|
2017-06-13 21:13:58 +02:00
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> &getBTTVChannelEmoteFromCaches();
|
|
|
|
ConcurrentMap<int, messages::LazyLoadedImage *> &getFFZChannelEmoteFromCaches();
|
2017-04-12 17:46:44 +02:00
|
|
|
ConcurrentMap<long, messages::LazyLoadedImage *> &getTwitchEmoteFromCache();
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> &getMiscImageFromCache();
|
|
|
|
|
|
|
|
messages::LazyLoadedImage *getCheerImage(long long int amount, bool animated);
|
|
|
|
messages::LazyLoadedImage *getCheerBadge(long long int amount);
|
|
|
|
|
|
|
|
messages::LazyLoadedImage *getTwitchEmoteById(const QString &name, long int id);
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
private:
|
2017-06-13 21:13:58 +02:00
|
|
|
WindowManager &windowManager;
|
|
|
|
Resources &resources;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> bttvChannelEmotes;
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> ffzChannelEmotes;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
ConcurrentMap<QString, twitch::EmoteValue *> _twitchEmotes;
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> _bttvEmotes;
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> _ffzEmotes;
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> _chatterinoEmotes;
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> _bttvChannelEmoteFromCaches;
|
|
|
|
ConcurrentMap<int, messages::LazyLoadedImage *> _ffzChannelEmoteFromCaches;
|
|
|
|
ConcurrentMap<long, messages::LazyLoadedImage *> _twitchEmoteFromCache;
|
|
|
|
ConcurrentMap<QString, messages::LazyLoadedImage *> _miscImageFromCache;
|
|
|
|
|
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-06-13 21:13:58 +02:00
|
|
|
void loadFFZEmotes();
|
|
|
|
void loadBTTVEmotes();
|
2017-04-12 17:46:44 +02:00
|
|
|
};
|
2017-05-27 16:16:39 +02:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace chatterino
|