2018-06-05 18:53:49 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-26 15:33:51 +02:00
|
|
|
#include "common/SignalVector.hpp"
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "util/ConcurrentMap.hpp"
|
2018-06-26 15:33:51 +02:00
|
|
|
#include "common/Emotemap.hpp"
|
2018-06-05 18:53:49 +02:00
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QRegularExpression>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
|
|
|
struct EmojiData {
|
|
|
|
// actual byte-representation of the emoji (i.e. \154075\156150 which is :male:)
|
|
|
|
QString value;
|
|
|
|
|
2018-06-06 01:29:43 +02:00
|
|
|
// i.e. 204e-50a2
|
|
|
|
QString unifiedCode;
|
|
|
|
QString nonQualifiedCode;
|
2018-06-05 18:53:49 +02:00
|
|
|
|
|
|
|
// i.e. thinking
|
2018-06-22 22:42:53 +02:00
|
|
|
std::vector<QString> shortCodes;
|
2018-06-05 18:53:49 +02:00
|
|
|
|
2018-06-06 01:29:43 +02:00
|
|
|
std::set<QString> capabilities;
|
|
|
|
|
|
|
|
std::vector<EmojiData> variations;
|
|
|
|
|
2018-06-05 18:53:49 +02:00
|
|
|
util::EmoteData emoteData;
|
|
|
|
};
|
|
|
|
|
2018-06-06 01:29:43 +02:00
|
|
|
using EmojiMap = util::ConcurrentMap<QString, std::shared_ptr<EmojiData>>;
|
2018-06-05 18:53:49 +02:00
|
|
|
|
|
|
|
class Emojis
|
|
|
|
{
|
|
|
|
public:
|
2018-06-06 01:29:43 +02:00
|
|
|
void initialize();
|
|
|
|
|
2018-06-05 18:53:49 +02:00
|
|
|
EmojiMap emojis;
|
|
|
|
|
2018-06-07 13:10:07 +02:00
|
|
|
std::vector<QString> shortCodes;
|
2018-06-05 18:53:49 +02:00
|
|
|
|
|
|
|
void load();
|
2018-06-06 01:29:43 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void loadEmojis();
|
|
|
|
void loadEmojiOne2Capabilities();
|
2018-06-06 11:43:02 +02:00
|
|
|
void sortEmojis();
|
|
|
|
void loadEmojiSet();
|
2018-06-06 01:29:43 +02:00
|
|
|
|
|
|
|
public:
|
2018-06-05 18:53:49 +02:00
|
|
|
QString replaceShortCodes(const QString &text);
|
|
|
|
|
|
|
|
void parse(std::vector<std::tuple<util::EmoteData, QString>> &parsedWords, const QString &text);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Emojis
|
|
|
|
QRegularExpression findShortCodesRegex{":([-+\\w]+):"};
|
|
|
|
|
|
|
|
// shortCodeToEmoji maps strings like "sunglasses" to its emoji
|
2018-06-06 01:29:43 +02:00
|
|
|
QMap<QString, std::shared_ptr<EmojiData>> emojiShortCodeToEmoji;
|
2018-06-05 18:53:49 +02:00
|
|
|
|
|
|
|
// Maps the first character of the emoji unicode string to a vector of possible emojis
|
2018-06-06 01:29:43 +02:00
|
|
|
QMap<QChar, QVector<std::shared_ptr<EmojiData>>> emojiFirstByte;
|
2018-06-05 18:53:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace chatterino
|