2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "messages/MessageBuilder.hpp"
|
|
|
|
#include "messages/MessageParseArgs.hpp"
|
2018-06-28 19:46:45 +02:00
|
|
|
#include "singletons/Emotes.hpp"
|
2017-12-31 00:50:07 +01:00
|
|
|
|
|
|
|
#include <IrcMessage>
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
#include <QString>
|
2017-06-13 21:13:58 +02:00
|
|
|
#include <QVariant>
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
2017-06-13 21:13:58 +02:00
|
|
|
|
2018-06-26 16:37:59 +02:00
|
|
|
class Channel;
|
2017-12-31 00:50:07 +01:00
|
|
|
class TwitchChannel;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-06-28 19:38:57 +02:00
|
|
|
class TwitchMessageBuilder : public MessageBuilder
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
|
|
|
public:
|
2017-07-23 11:59:05 +02:00
|
|
|
enum UsernameDisplayMode : int {
|
|
|
|
Username = 1, // Username
|
|
|
|
LocalizedName = 2, // Localized name
|
|
|
|
UsernameAndLocalizedName = 3, // Username (Localized name)
|
|
|
|
};
|
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
TwitchMessageBuilder() = delete;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-12-31 00:50:07 +01:00
|
|
|
explicit TwitchMessageBuilder(Channel *_channel, const Communi::IrcPrivateMessage *_ircMessage,
|
2018-06-28 19:38:57 +02:00
|
|
|
const MessageParseArgs &_args);
|
2018-02-04 16:33:46 +01:00
|
|
|
explicit TwitchMessageBuilder(Channel *_channel, const Communi::IrcMessage *_ircMessage,
|
2018-07-06 19:23:47 +02:00
|
|
|
const MessageParseArgs &_args, QString content, bool isAction);
|
2017-07-02 18:12:11 +02:00
|
|
|
|
|
|
|
Channel *channel;
|
2017-09-16 00:05:06 +02:00
|
|
|
TwitchChannel *twitchChannel;
|
2018-02-04 16:33:46 +01:00
|
|
|
const Communi::IrcMessage *ircMessage;
|
2018-06-28 19:38:57 +02:00
|
|
|
MessageParseArgs args;
|
2017-07-02 18:12:11 +02:00
|
|
|
const QVariantMap tags;
|
|
|
|
|
|
|
|
QString messageID;
|
2017-04-12 17:46:44 +02:00
|
|
|
QString userName;
|
|
|
|
|
2018-01-23 21:33:49 +01:00
|
|
|
bool isIgnored() const;
|
2018-06-28 19:38:57 +02:00
|
|
|
MessagePtr build();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
private:
|
2017-07-02 18:12:11 +02:00
|
|
|
void parseMessageID();
|
|
|
|
void parseRoomID();
|
2018-01-23 23:28:06 +01:00
|
|
|
void appendChannelName();
|
2017-07-02 18:12:11 +02:00
|
|
|
void parseUsername();
|
2017-08-12 13:18:48 +02:00
|
|
|
void appendUsername();
|
2018-07-08 11:43:44 +02:00
|
|
|
void parseHighlights(bool isPastMsg);
|
2017-07-02 18:12:11 +02:00
|
|
|
|
2018-02-04 16:33:46 +01:00
|
|
|
void appendTwitchEmote(const Communi::IrcMessage *ircMessage, const QString &emote,
|
2018-08-02 14:23:27 +02:00
|
|
|
std::vector<std::pair<int, EmotePtr>> &vec);
|
|
|
|
Outcome tryAppendEmote(const EmoteName &name);
|
|
|
|
|
|
|
|
void addWords(const QStringList &words,
|
|
|
|
const std::vector<std::pair<int, EmotePtr>> &twitchEmotes);
|
|
|
|
void addTextOrEmoji(EmotePtr emote);
|
|
|
|
void addTextOrEmoji(const QString &value);
|
2017-07-02 18:12:11 +02:00
|
|
|
|
2018-01-23 23:28:06 +01:00
|
|
|
void appendTwitchBadges();
|
|
|
|
void appendChatterinoBadges();
|
2018-08-02 14:23:27 +02:00
|
|
|
Outcome tryParseCheermote(const QString &string);
|
2018-07-06 19:23:47 +02:00
|
|
|
|
|
|
|
QString roomID_;
|
2018-08-02 14:23:27 +02:00
|
|
|
bool hasBits_ = false;
|
2018-07-06 19:23:47 +02:00
|
|
|
|
|
|
|
QColor usernameColor_;
|
|
|
|
const QString originalMessage_;
|
|
|
|
bool senderIsBroadcaster{};
|
|
|
|
|
|
|
|
const bool action_ = false;
|
2017-04-12 17:46:44 +02:00
|
|
|
};
|
2017-06-07 10:09:24 +02:00
|
|
|
|
|
|
|
} // namespace chatterino
|