mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
#include "providers/twitch/TwitchEmotes.hpp"
|
|
|
|
#include "common/NetworkRequest.hpp"
|
|
#include "debug/Benchmark.hpp"
|
|
#include "debug/Log.hpp"
|
|
#include "messages/Emote.hpp"
|
|
#include "messages/Image.hpp"
|
|
#include "util/RapidjsonHelpers.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
TwitchEmotes::TwitchEmotes()
|
|
{
|
|
}
|
|
|
|
// id is used for lookup
|
|
// emoteName is used for giving a name to the emote in case it doesn't exist
|
|
EmotePtr TwitchEmotes::getOrCreateEmote(const EmoteId &id,
|
|
const EmoteName &name_)
|
|
{
|
|
static QMap<QString, QString> replacements{
|
|
{"[oO](_|\\.)[oO]", "O_o"}, {"\\>\\;\\(", ">("},
|
|
{"\\<\\;3", "<3"}, {"\\:-?(o|O)", ":O"},
|
|
{"\\:-?(p|P)", ":P"}, {"\\:-?[\\\\/]", ":/"},
|
|
{"\\:-?[z|Z|\\|]", ":Z"}, {"\\:-?\\(", ":("},
|
|
{"\\:-?\\)", ":)"}, {"\\:-?D", ":D"},
|
|
{"\\;-?(p|P)", ";P"}, {"\\;-?\\)", ";)"},
|
|
{"R-?\\)", "R)"}, {"B-?\\)", "B)"},
|
|
};
|
|
|
|
auto name = name_.string;
|
|
name.detach();
|
|
|
|
// replace < >
|
|
name.replace("<", "<");
|
|
name.replace(">", ">");
|
|
|
|
// replace regexes
|
|
auto it = replacements.find(name);
|
|
if (it != replacements.end())
|
|
{
|
|
name = it.value();
|
|
}
|
|
|
|
// search in cache or create new emote
|
|
auto cache = this->twitchEmotesCache_.access();
|
|
auto shared = (*cache)[id].lock();
|
|
|
|
if (!shared)
|
|
{
|
|
(*cache)[id] = shared = std::make_shared<Emote>(
|
|
Emote{EmoteName{name},
|
|
ImageSet{
|
|
Image::fromUrl(getEmoteLink(id, "1.0"), 1),
|
|
Image::fromUrl(getEmoteLink(id, "2.0"), 0.5),
|
|
Image::fromUrl(getEmoteLink(id, "3.0"), 0.25),
|
|
},
|
|
Tooltip{name + "<br>Twitch Emote"}, Url{}});
|
|
}
|
|
|
|
return shared;
|
|
}
|
|
|
|
Url TwitchEmotes::getEmoteLink(const EmoteId &id, const QString &emoteScale)
|
|
{
|
|
return {QString(TWITCH_EMOTE_TEMPLATE)
|
|
.replace("{id}", id.string)
|
|
.replace("{scale}", emoteScale)};
|
|
}
|
|
|
|
AccessGuard<std::unordered_map<EmoteName, EmotePtr>> TwitchEmotes::accessAll()
|
|
{
|
|
return this->twitchEmotes_.access();
|
|
}
|
|
|
|
} // namespace chatterino
|