mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
103 lines
2.4 KiB
C++
103 lines
2.4 KiB
C++
#ifndef EMOTES_H
|
|
#define EMOTES_H
|
|
|
|
#include "QMap"
|
|
#include "QMutex"
|
|
#include "concurrentmap.h"
|
|
#include "lazyloadedimage.h"
|
|
#include "twitchemotevalue.h"
|
|
|
|
class Emotes
|
|
{
|
|
public:
|
|
static ConcurrentMap<QString, TwitchEmoteValue *> &
|
|
twitchEmotes()
|
|
{
|
|
return m_twitchEmotes;
|
|
}
|
|
|
|
static ConcurrentMap<QString, LazyLoadedImage *> &
|
|
bttvEmotes()
|
|
{
|
|
return m_bttvEmotes;
|
|
}
|
|
|
|
static ConcurrentMap<QString, LazyLoadedImage *> &
|
|
ffzEmotes()
|
|
{
|
|
return m_ffzEmotes;
|
|
}
|
|
|
|
static ConcurrentMap<QString, LazyLoadedImage *> &
|
|
chatterinoEmotes()
|
|
{
|
|
return m_chatterinoEmotes;
|
|
}
|
|
|
|
static ConcurrentMap<QString, LazyLoadedImage *> &
|
|
bttvChannelEmoteFromCaches()
|
|
{
|
|
return m_bttvChannelEmoteFromCaches;
|
|
}
|
|
|
|
static ConcurrentMap<QString, LazyLoadedImage *> &
|
|
ffzChannelEmoteFromCaches()
|
|
{
|
|
return m_ffzChannelEmoteFromCaches;
|
|
}
|
|
|
|
static ConcurrentMap<long, LazyLoadedImage *> &
|
|
twitchEmoteFromCache()
|
|
{
|
|
return m_twitchEmoteFromCache;
|
|
}
|
|
|
|
static ConcurrentMap<QString, LazyLoadedImage *> &
|
|
miscImageFromCache()
|
|
{
|
|
return m_miscImageFromCache;
|
|
}
|
|
|
|
static void loadGlobalEmotes();
|
|
|
|
static LazyLoadedImage *getCheerImage(long long int amount, bool animated);
|
|
static LazyLoadedImage *getCheerBadge(long long int amount);
|
|
|
|
static LazyLoadedImage *getTwitchEmoteById(const QString &name,
|
|
long int id);
|
|
|
|
static int
|
|
generation()
|
|
{
|
|
return m_generation;
|
|
}
|
|
|
|
static void
|
|
incGeneration()
|
|
{
|
|
m_generation++;
|
|
}
|
|
|
|
private:
|
|
Emotes();
|
|
|
|
static QString m_twitchEmoteTemplate;
|
|
|
|
static ConcurrentMap<QString, TwitchEmoteValue *> m_twitchEmotes;
|
|
static ConcurrentMap<QString, LazyLoadedImage *> m_bttvEmotes;
|
|
static ConcurrentMap<QString, LazyLoadedImage *> m_ffzEmotes;
|
|
static ConcurrentMap<QString, LazyLoadedImage *> m_chatterinoEmotes;
|
|
static ConcurrentMap<QString, LazyLoadedImage *>
|
|
m_bttvChannelEmoteFromCaches;
|
|
static ConcurrentMap<QString, LazyLoadedImage *>
|
|
m_ffzChannelEmoteFromCaches;
|
|
static ConcurrentMap<long, LazyLoadedImage *> m_twitchEmoteFromCache;
|
|
static ConcurrentMap<QString, LazyLoadedImage *> m_miscImageFromCache;
|
|
|
|
static QString getTwitchEmoteLink(long id, qreal &scale);
|
|
|
|
static int m_generation;
|
|
};
|
|
|
|
#endif // EMOTES_H
|