mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
66 lines
1.4 KiB
C++
66 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "util/ConcurrentMap.hpp"
|
|
|
|
#include <QMap>
|
|
#include <QRegularExpression>
|
|
#include <boost/variant.hpp>
|
|
#include <map>
|
|
#include <set>
|
|
#include <vector>
|
|
|
|
namespace chatterino {
|
|
|
|
struct Emote;
|
|
using EmotePtr = std::shared_ptr<const Emote>;
|
|
|
|
struct EmojiData {
|
|
// actual byte-representation of the emoji (i.e. \154075\156150 which is
|
|
// :male:)
|
|
QString value;
|
|
|
|
// i.e. 204e-50a2
|
|
QString unifiedCode;
|
|
QString nonQualifiedCode;
|
|
|
|
// i.e. thinking
|
|
std::vector<QString> shortCodes;
|
|
|
|
std::set<QString> capabilities;
|
|
|
|
std::vector<EmojiData> variations;
|
|
|
|
EmotePtr emote;
|
|
};
|
|
|
|
using EmojiMap = ConcurrentMap<QString, std::shared_ptr<EmojiData>>;
|
|
|
|
class Emojis
|
|
{
|
|
public:
|
|
void initialize();
|
|
void load();
|
|
std::vector<boost::variant<EmotePtr, QString>> parse(const QString &text);
|
|
|
|
EmojiMap emojis;
|
|
std::vector<QString> shortCodes;
|
|
QString replaceShortCodes(const QString &text);
|
|
|
|
private:
|
|
void loadEmojis();
|
|
void sortEmojis();
|
|
void loadEmojiSet();
|
|
|
|
/// Emojis
|
|
QRegularExpression findShortCodesRegex_{":([-+\\w]+):"};
|
|
|
|
// shortCodeToEmoji maps strings like "sunglasses" to its emoji
|
|
QMap<QString, std::shared_ptr<EmojiData>> emojiShortCodeToEmoji_;
|
|
|
|
// Maps the first character of the emoji unicode string to a vector of
|
|
// possible emojis
|
|
QMap<QChar, QVector<std::shared_ptr<EmojiData>>> emojiFirstByte_;
|
|
};
|
|
|
|
} // namespace chatterino
|