move around files
This commit is contained in:
Symlink
+1
@@ -0,0 +1 @@
|
||||
../.clang-format
|
||||
@@ -0,0 +1,34 @@
|
||||
#ifndef TWITCHEMOTEVALUE_H
|
||||
#define TWITCHEMOTEVALUE_H
|
||||
|
||||
#include "QString"
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
|
||||
struct EmoteValue {
|
||||
public:
|
||||
int getSet()
|
||||
{
|
||||
return _set;
|
||||
}
|
||||
|
||||
int getId()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
const QString &getChannelName()
|
||||
{
|
||||
return _channelName;
|
||||
}
|
||||
|
||||
private:
|
||||
int _set;
|
||||
int _id;
|
||||
QString _channelName;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
#endif // TWITCHEMOTEVALUE_H
|
||||
@@ -0,0 +1,347 @@
|
||||
#include "twitch/twitchmessagebuilder.h"
|
||||
#include "colorscheme.h"
|
||||
#include "emojis.h"
|
||||
#include "emotemanager.h"
|
||||
#include "ircmanager.h"
|
||||
#include "resources.h"
|
||||
|
||||
using namespace chatterino::messages;
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
TwitchMessageBuilder::TwitchMessageBuilder()
|
||||
: MessageBuilder()
|
||||
, messageId()
|
||||
, userName()
|
||||
{
|
||||
}
|
||||
|
||||
void TwitchMessageBuilder::appendTwitchBadges(const QStringList &badges)
|
||||
{
|
||||
for (QString badge : badges) {
|
||||
if (badge.startsWith("bits/")) {
|
||||
long long int cheer = std::strtoll(badge.mid(5).toStdString().c_str(), NULL, 10);
|
||||
appendWord(Word(EmoteManager::getInstance().getCheerBadge(cheer), Word::BadgeCheer,
|
||||
QString(), QString("Twitch Cheer" + QString::number(cheer))));
|
||||
} else if (badge == "staff/1") {
|
||||
appendWord(Word(Resources::getBadgeStaff(), Word::BadgeStaff, QString(),
|
||||
QString("Twitch Staff")));
|
||||
} else if (badge == "admin/1") {
|
||||
appendWord(Word(Resources::getBadgeAdmin(), Word::BadgeAdmin, QString(),
|
||||
QString("Twitch Admin")));
|
||||
} else if (badge == "global_mod/1") {
|
||||
appendWord(Word(Resources::getBadgeGlobalmod(), Word::BadgeGlobalMod, QString(),
|
||||
QString("Global Moderator")));
|
||||
} else if (badge == "moderator/1") {
|
||||
// TODO: implement this xD
|
||||
appendWord(Word(Resources::getBadgeTurbo(), Word::BadgeModerator, QString(),
|
||||
QString("Channel Moderator"))); // custom badge
|
||||
} else if (badge == "turbo/1") {
|
||||
appendWord(Word(Resources::getBadgeStaff(), Word::BadgeTurbo, QString(),
|
||||
QString("Turbo Subscriber")));
|
||||
} else if (badge == "broadcaster/1") {
|
||||
appendWord(Word(Resources::getBadgeBroadcaster(), Word::BadgeBroadcaster, QString(),
|
||||
QString("Channel Broadcaster")));
|
||||
} else if (badge == "premium/1") {
|
||||
appendWord(Word(Resources::getBadgePremium(), Word::BadgePremium, QString(),
|
||||
QString("Twitch Prime")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SharedMessage TwitchMessageBuilder::parse(const Communi::IrcPrivateMessage *ircMessage,
|
||||
Channel *channel, const MessageParseArgs &args)
|
||||
{
|
||||
TwitchMessageBuilder b;
|
||||
|
||||
// timestamp
|
||||
b.appendTimestamp();
|
||||
|
||||
auto tags = ircMessage->tags();
|
||||
|
||||
auto iterator = tags.find("id");
|
||||
|
||||
if (iterator != tags.end()) {
|
||||
b.messageId = iterator.value().toString();
|
||||
}
|
||||
|
||||
// timestamps
|
||||
iterator = tags.find("tmi-sent-ts");
|
||||
|
||||
// mod buttons
|
||||
static QString buttonBanTooltip("Ban user");
|
||||
static QString buttonTimeoutTooltip("Timeout user");
|
||||
|
||||
b.appendWord(Word(Resources::getButtonBan(), Word::ButtonBan, QString(), buttonBanTooltip,
|
||||
Link(Link::UserBan, ircMessage->account())));
|
||||
b.appendWord(Word(Resources::getButtonTimeout(), Word::ButtonTimeout, QString(),
|
||||
buttonTimeoutTooltip, Link(Link::UserTimeout, ircMessage->account())));
|
||||
|
||||
// badges
|
||||
iterator = tags.find("badges");
|
||||
|
||||
if (iterator != tags.end()) {
|
||||
auto badges = iterator.value().toString().split(',');
|
||||
|
||||
b.appendTwitchBadges(badges);
|
||||
}
|
||||
|
||||
// color
|
||||
QColor usernameColor = ColorScheme::getInstance().SystemMessageColor;
|
||||
|
||||
iterator = tags.find("color");
|
||||
if (iterator != tags.end()) {
|
||||
usernameColor = QColor(iterator.value().toString());
|
||||
}
|
||||
|
||||
// channel name
|
||||
if (args.includeChannelName) {
|
||||
QString channelName("#" + channel->getName());
|
||||
b.appendWord(Word(channelName, Word::Misc, ColorScheme::getInstance().SystemMessageColor,
|
||||
QString(channelName), QString(),
|
||||
Link(Link::Url, channel->getName() + "\n" + b.messageId)));
|
||||
}
|
||||
|
||||
// username
|
||||
b.userName = ircMessage->nick();
|
||||
|
||||
if (b.userName.isEmpty()) {
|
||||
b.userName = tags.value(QLatin1String("login")).toString();
|
||||
}
|
||||
|
||||
QString displayName;
|
||||
|
||||
iterator = tags.find("display-name");
|
||||
if (iterator == tags.end()) {
|
||||
displayName = ircMessage->account();
|
||||
} else {
|
||||
displayName = iterator.value().toString();
|
||||
}
|
||||
|
||||
bool hasLocalizedName = QString::compare(displayName, ircMessage->account()) == 0;
|
||||
QString userDisplayString =
|
||||
displayName + (hasLocalizedName ? (" (" + ircMessage->account() + ")") : QString());
|
||||
|
||||
if (args.isSentWhisper) {
|
||||
userDisplayString += IrcManager::getInstance().getUser().getUserName() + " -> ";
|
||||
}
|
||||
|
||||
if (args.isReceivedWhisper) {
|
||||
userDisplayString += " -> " + IrcManager::getInstance().getUser().getUserName();
|
||||
}
|
||||
|
||||
if (!ircMessage->isAction()) {
|
||||
userDisplayString += ": ";
|
||||
}
|
||||
|
||||
b.appendWord(Word(userDisplayString, Word::Username, usernameColor, userDisplayString,
|
||||
QString(), Link(Link::UserInfo, b.userName)));
|
||||
|
||||
// highlights
|
||||
// TODO: implement this xD
|
||||
|
||||
// bits
|
||||
QString bits = "";
|
||||
|
||||
iterator = tags.find("bits");
|
||||
if (iterator != tags.end()) {
|
||||
bits = iterator.value().toString();
|
||||
}
|
||||
|
||||
// twitch emotes
|
||||
std::vector<std::pair<long int, LazyLoadedImage *>> twitchEmotes;
|
||||
|
||||
iterator = tags.find("emotes");
|
||||
|
||||
if (iterator != tags.end()) {
|
||||
auto emotes = iterator.value().toString().split('/');
|
||||
|
||||
for (QString emote : emotes) {
|
||||
if (!emote.contains(':'))
|
||||
continue;
|
||||
|
||||
QStringList parameters = emote.split(':');
|
||||
|
||||
if (parameters.length() < 2)
|
||||
continue;
|
||||
|
||||
long int id = std::stol(parameters.at(0).toStdString(), NULL, 10);
|
||||
|
||||
QStringList occurences = parameters.at(1).split(',');
|
||||
|
||||
for (QString occurence : occurences) {
|
||||
QStringList coords = occurence.split('-');
|
||||
|
||||
if (coords.length() < 2)
|
||||
continue;
|
||||
|
||||
long int start = std::stol(coords.at(0).toStdString(), NULL, 10);
|
||||
long int end = std::stol(coords.at(1).toStdString(), NULL, 10);
|
||||
|
||||
if (start >= end || start < 0 || end > ircMessage->content().length())
|
||||
continue;
|
||||
|
||||
QString name = ircMessage->content().mid(start, end - start + 1);
|
||||
|
||||
twitchEmotes.push_back(std::pair<long int, LazyLoadedImage *>(
|
||||
start, EmoteManager::getInstance().getTwitchEmoteById(name, id)));
|
||||
}
|
||||
}
|
||||
|
||||
struct {
|
||||
bool operator()(const std::pair<long int, messages::LazyLoadedImage *> &a,
|
||||
const std::pair<long int, messages::LazyLoadedImage *> &b)
|
||||
{
|
||||
return a.first < b.first;
|
||||
}
|
||||
} customLess;
|
||||
|
||||
std::sort(twitchEmotes.begin(), twitchEmotes.end(), customLess);
|
||||
}
|
||||
|
||||
auto currentTwitchEmote = twitchEmotes.begin();
|
||||
|
||||
// words
|
||||
QColor textColor = ircMessage->isAction() ? usernameColor : ColorScheme::getInstance().Text;
|
||||
|
||||
QStringList splits = ircMessage->content().split(' ');
|
||||
|
||||
long int i = 0;
|
||||
|
||||
for (QString split : splits) {
|
||||
// twitch emote
|
||||
if (currentTwitchEmote != twitchEmotes.end() && currentTwitchEmote->first == i) {
|
||||
b.appendWord(Word(currentTwitchEmote->second, Word::TwitchEmoteImage,
|
||||
currentTwitchEmote->second->getName(),
|
||||
currentTwitchEmote->second->getName() + QString("\nTwitch Emote")));
|
||||
b.appendWord(Word(currentTwitchEmote->second->getName(), Word::TwitchEmoteText,
|
||||
textColor, currentTwitchEmote->second->getName(),
|
||||
currentTwitchEmote->second->getName() + QString("\nTwitch Emote")));
|
||||
|
||||
i += split.length() + 1;
|
||||
currentTwitchEmote = std::next(currentTwitchEmote);
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
// split words
|
||||
std::vector<std::tuple<LazyLoadedImage *, QString>> parsed;
|
||||
|
||||
Emojis::parseEmojis(parsed, split);
|
||||
|
||||
for (const std::tuple<LazyLoadedImage *, QString> &tuple : parsed) {
|
||||
LazyLoadedImage *image = std::get<0>(tuple);
|
||||
|
||||
if (image == NULL) { // is text
|
||||
QString string = std::get<1>(tuple);
|
||||
|
||||
static QRegularExpression cheerRegex("cheer[1-9][0-9]*");
|
||||
|
||||
// cheers
|
||||
if (!bits.isEmpty() && string.length() >= 6 && cheerRegex.match(string).isValid()) {
|
||||
auto cheer = string.mid(5).toInt();
|
||||
|
||||
QString color;
|
||||
|
||||
QColor bitsColor;
|
||||
|
||||
if (cheer >= 10000) {
|
||||
color = "red";
|
||||
bitsColor = QColor::fromHslF(0, 1, 0.5);
|
||||
} else if (cheer >= 5000) {
|
||||
color = "blue";
|
||||
bitsColor = QColor::fromHslF(0.61, 1, 0.4);
|
||||
} else if (cheer >= 1000) {
|
||||
color = "green";
|
||||
bitsColor = QColor::fromHslF(0.5, 1, 0.5);
|
||||
} else if (cheer >= 100) {
|
||||
color = "purple";
|
||||
bitsColor = QColor::fromHslF(0.8, 1, 0.5);
|
||||
} else {
|
||||
color = "gray";
|
||||
bitsColor = QColor::fromHslF(0.5f, 0.5f, 0.5f);
|
||||
}
|
||||
|
||||
QString bitsLinkAnimated =
|
||||
QString("http://static-cdn.jtvnw.net/bits/dark/animated/" + color + "/1");
|
||||
QString bitsLink =
|
||||
QString("http://static-cdn.jtvnw.net/bits/dark/static/" + color + "/1");
|
||||
|
||||
LazyLoadedImage *imageAnimated =
|
||||
EmoteManager::getInstance().getMiscImageFromCache().getOrAdd(
|
||||
bitsLinkAnimated,
|
||||
[&bitsLinkAnimated] { return new LazyLoadedImage(bitsLinkAnimated); });
|
||||
LazyLoadedImage *image =
|
||||
EmoteManager::getInstance().getMiscImageFromCache().getOrAdd(
|
||||
bitsLink, [&bitsLink] { return new LazyLoadedImage(bitsLink); });
|
||||
|
||||
b.appendWord(Word(imageAnimated, Word::BitsAnimated, QString("cheer"),
|
||||
QString("Twitch Cheer"),
|
||||
Link(Link::Url, QString("https://blog.twitch.tv/"
|
||||
"introducing-cheering-celebrate-"
|
||||
"together-da62af41fac6"))));
|
||||
b.appendWord(Word(image, Word::BitsStatic, QString("cheer"),
|
||||
QString("Twitch Cheer"),
|
||||
Link(Link::Url, QString("https://blog.twitch.tv/"
|
||||
"introducing-cheering-celebrate-"
|
||||
"together-da62af41fac6"))));
|
||||
|
||||
b.appendWord(Word(QString("x" + string.mid(5)), Word::BitsAmount, bitsColor,
|
||||
QString(string.mid(5)), QString("Twitch Cheer"),
|
||||
Link(Link::Url, QString("https://blog.twitch.tv/"
|
||||
"introducing-cheering-celebrate-"
|
||||
"together-da62af41fac6"))));
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
// bttv / ffz emotes
|
||||
LazyLoadedImage *bttvEmote;
|
||||
|
||||
// TODO: Implement this (ignored emotes)
|
||||
if (EmoteManager::getInstance().getBttvEmotes().tryGet(string, bttvEmote) ||
|
||||
channel->getBttvChannelEmotes().tryGet(string, bttvEmote) ||
|
||||
EmoteManager::getInstance().getFfzEmotes().tryGet(string, bttvEmote) ||
|
||||
channel->getFfzChannelEmotes().tryGet(string, bttvEmote) ||
|
||||
EmoteManager::getInstance().getChatterinoEmotes().tryGet(string, bttvEmote)) {
|
||||
b.appendWord(Word(bttvEmote, Word::BttvEmoteImage, bttvEmote->getName(),
|
||||
bttvEmote->getTooltip(),
|
||||
Link(Link::Url, bttvEmote->getUrl())));
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
// actually just a word
|
||||
QString link = b.matchLink(string);
|
||||
|
||||
b.appendWord(Word(string, Word::Text, textColor, string, QString(),
|
||||
link.isEmpty() ? Link() : Link(Link::Url, link)));
|
||||
} else { // is emoji
|
||||
static QString emojiTooltip("Emoji");
|
||||
|
||||
b.appendWord(Word(image, Word::EmojiImage, image->getName(), emojiTooltip));
|
||||
Word(image->getName(), Word::EmojiText, textColor, image->getName(), emojiTooltip);
|
||||
}
|
||||
}
|
||||
|
||||
i += split.length() + 1;
|
||||
}
|
||||
|
||||
// TODO: Implement this xD
|
||||
// if (!isReceivedWhisper &&
|
||||
// AppSettings.HighlightIgnoredUsers.ContainsKey(Username))
|
||||
// {
|
||||
// HighlightTab = false;
|
||||
// }
|
||||
|
||||
return b.build();
|
||||
}
|
||||
|
||||
// bool
|
||||
// sortTwitchEmotes(const std::pair<long int, LazyLoadedImage *> &a,
|
||||
// const std::pair<long int, LazyLoadedImage *> &b)
|
||||
//{
|
||||
// return a.first < b.first;
|
||||
//}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
#ifndef TWITCHMESSAGEBUILDER_H
|
||||
#define TWITCHMESSAGEBUILDER_H
|
||||
|
||||
#include "channel.h"
|
||||
#include "messages/messagebuilder.h"
|
||||
|
||||
#include <QString>
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
|
||||
class TwitchMessageBuilder : public messages::MessageBuilder
|
||||
{
|
||||
public:
|
||||
TwitchMessageBuilder();
|
||||
|
||||
void appendTwitchBadges(const QStringList &badges);
|
||||
|
||||
QString messageId;
|
||||
QString userName;
|
||||
|
||||
static messages::SharedMessage parse(const Communi::IrcPrivateMessage *ircMessage,
|
||||
Channel *channel, const messages::MessageParseArgs &args);
|
||||
|
||||
// static bool sortTwitchEmotes(
|
||||
// const std::pair<long int, messages::LazyLoadedImage *> &a,
|
||||
// const std::pair<long int, messages::LazyLoadedImage *> &b);
|
||||
};
|
||||
}
|
||||
}
|
||||
#endif // TWITCHMESSAGEBUILDER_H
|
||||
@@ -0,0 +1,349 @@
|
||||
//#include "twitchparsemessage.h"
|
||||
//#include "colorscheme.h"
|
||||
//#include "emojis.h"
|
||||
//#include "emotemanager.h"
|
||||
//#include "ircmanager.h"
|
||||
//#include "resources.h"
|
||||
//#include "twitch/twitchmessagebuilder.h"
|
||||
//
|
||||
//#include <QRegularExpression>
|
||||
//
|
||||
// using namespace chatterino::messages;
|
||||
//
|
||||
// namespace chatterino {
|
||||
// namespace twitch {
|
||||
// SharedMessage
|
||||
// twitchParseMessage(const Communi::IrcPrivateMessage *ircMessage,
|
||||
// Channel *channel, const MessageParseArgs &args)
|
||||
//{
|
||||
// TwitchMessageBuilder b;
|
||||
//
|
||||
// // timestamp
|
||||
// b.appendTimestamp();
|
||||
//
|
||||
// auto tags = ircMessage->tags();
|
||||
//
|
||||
// auto iterator = tags.find("id");
|
||||
//
|
||||
// if (iterator != tags.end()) {
|
||||
// b.messageId = iterator.value().toString();
|
||||
// }
|
||||
//
|
||||
// // timestamps
|
||||
// iterator = tags.find("tmi-sent-ts");
|
||||
//
|
||||
// // mod buttons
|
||||
// static QString buttonBanTooltip("Ban user");
|
||||
// static QString buttonTimeoutTooltip("Timeout user");
|
||||
//
|
||||
// b.appendWord(Word(Resources::getButtonBan(), Word::ButtonBan, QString(),
|
||||
// buttonBanTooltip,
|
||||
// Link(Link::UserBan, ircMessage->account())));
|
||||
// b.appendWord(Word(Resources::getButtonTimeout(), Word::ButtonTimeout,
|
||||
// QString(), buttonTimeoutTooltip,
|
||||
// Link(Link::UserTimeout, ircMessage->account())));
|
||||
//
|
||||
// // badges
|
||||
// iterator = tags.find("badges");
|
||||
//
|
||||
// if (iterator != tags.end()) {
|
||||
// auto badges = iterator.value().toString().split(',');
|
||||
//
|
||||
// b.appendTwitchBadges(badges);
|
||||
// }
|
||||
//
|
||||
// // color
|
||||
// QColor usernameColor = ColorScheme::getInstance().SystemMessageColor;
|
||||
//
|
||||
// iterator = tags.find("color");
|
||||
// if (iterator != tags.end()) {
|
||||
// usernameColor = QColor(iterator.value().toString());
|
||||
// }
|
||||
//
|
||||
// // channel name
|
||||
// if (args.includeChannelName) {
|
||||
// QString channelName("#" + channel->getName());
|
||||
// b.appendWord(
|
||||
// Word(channelName, Word::Misc,
|
||||
// ColorScheme::getInstance().SystemMessageColor,
|
||||
// QString(channelName), QString(),
|
||||
// Link(Link::Url, channel->getName() + "\n" + b.messageId)));
|
||||
// }
|
||||
//
|
||||
// // username
|
||||
// b.userName = ircMessage->nick();
|
||||
//
|
||||
// if (b.userName.isEmpty()) {
|
||||
// b.userName = tags.value(QLatin1String("login")).toString();
|
||||
// }
|
||||
//
|
||||
// QString displayName;
|
||||
//
|
||||
// iterator = tags.find("display-name");
|
||||
// if (iterator == tags.end()) {
|
||||
// displayName = ircMessage->account();
|
||||
// } else {
|
||||
// displayName = iterator.value().toString();
|
||||
// }
|
||||
//
|
||||
// bool hasLocalizedName =
|
||||
// QString::compare(displayName, ircMessage->account()) == 0;
|
||||
// QString userDisplayString =
|
||||
// displayName +
|
||||
// (hasLocalizedName ? (" (" + ircMessage->account() + ")") : QString());
|
||||
//
|
||||
// if (args.isSentWhisper) {
|
||||
// userDisplayString +=
|
||||
// IrcManager::getInstance().getUser().getUserName() + " -> ";
|
||||
// }
|
||||
//
|
||||
// if (args.isReceivedWhisper) {
|
||||
// userDisplayString +=
|
||||
// " -> " + IrcManager::getInstance().getUser().getUserName();
|
||||
// }
|
||||
//
|
||||
// if (!ircMessage->isAction()) {
|
||||
// userDisplayString += ": ";
|
||||
// }
|
||||
//
|
||||
// b.appendWord(Word(userDisplayString, Word::Username, usernameColor,
|
||||
// userDisplayString, QString()));
|
||||
//
|
||||
// // highlights
|
||||
// // TODO: implement this xD
|
||||
//
|
||||
// // bits
|
||||
// QString bits = "";
|
||||
//
|
||||
// iterator = tags.find("bits");
|
||||
// if (iterator != tags.end()) {
|
||||
// bits = iterator.value().toString();
|
||||
// }
|
||||
//
|
||||
// // twitch emotes
|
||||
// std::vector<std::pair<long int, LazyLoadedImage *>> twitchEmotes;
|
||||
//
|
||||
// iterator = tags.find("emotes");
|
||||
//
|
||||
// if (iterator != tags.end()) {
|
||||
// auto emotes = iterator.value().toString().split('/');
|
||||
//
|
||||
// for (QString emote : emotes) {
|
||||
// if (!emote.contains(':'))
|
||||
// continue;
|
||||
//
|
||||
// QStringList parameters = emote.split(':');
|
||||
//
|
||||
// if (parameters.length() < 2)
|
||||
// continue;
|
||||
//
|
||||
// long int id = std::stol(parameters.at(0).toStdString(), NULL, 10);
|
||||
//
|
||||
// QStringList occurences = parameters.at(1).split(',');
|
||||
//
|
||||
// for (QString occurence : occurences) {
|
||||
// QStringList coords = occurence.split('-');
|
||||
//
|
||||
// if (coords.length() < 2)
|
||||
// continue;
|
||||
//
|
||||
// long int start =
|
||||
// std::stol(coords.at(0).toStdString(), NULL, 10);
|
||||
// long int end = std::stol(coords.at(1).toStdString(), NULL,
|
||||
// 10);
|
||||
//
|
||||
// if (start >= end || start < 0 ||
|
||||
// end > ircMessage->content().length())
|
||||
// continue;
|
||||
//
|
||||
// QString name =
|
||||
// ircMessage->content().mid(start, end - start + 1);
|
||||
//
|
||||
// twitchEmotes.push_back(std::pair<long int, LazyLoadedImage *>(
|
||||
// start,
|
||||
// EmoteManager::getInstance().getTwitchEmoteById(name,
|
||||
// id)));
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// std::sort(twitchEmotes.begin(), twitchEmotes.end(), sortTwitchEmotes);
|
||||
// }
|
||||
//
|
||||
// auto currentTwitchEmote = twitchEmotes.begin();
|
||||
//
|
||||
// // words
|
||||
// QColor textColor = ircMessage->isAction() ? usernameColor
|
||||
// :
|
||||
// ColorScheme::getInstance().Text;
|
||||
//
|
||||
// QStringList splits = ircMessage->content().split(' ');
|
||||
//
|
||||
// long int i = 0;
|
||||
//
|
||||
// for (QString split : splits) {
|
||||
// // twitch emote
|
||||
// if (currentTwitchEmote != twitchEmotes.end() &&
|
||||
// currentTwitchEmote->first == i) {
|
||||
// b.appendWord(Word(currentTwitchEmote->second,
|
||||
// Word::TwitchEmoteImage,
|
||||
// currentTwitchEmote->second->getName(),
|
||||
// currentTwitchEmote->second->getName() +
|
||||
// QString("\nTwitch Emote")));
|
||||
// b.appendWord(Word(currentTwitchEmote->second->getName(),
|
||||
// Word::TwitchEmoteText, textColor,
|
||||
// currentTwitchEmote->second->getName(),
|
||||
// currentTwitchEmote->second->getName() +
|
||||
// QString("\nTwitch Emote")));
|
||||
//
|
||||
// i += split.length() + 1;
|
||||
// currentTwitchEmote = std::next(currentTwitchEmote);
|
||||
//
|
||||
// continue;
|
||||
// }
|
||||
//
|
||||
// // split words
|
||||
// std::vector<std::tuple<LazyLoadedImage *, QString>> parsed;
|
||||
//
|
||||
// Emojis::parseEmojis(parsed, split);
|
||||
//
|
||||
// for (const std::tuple<LazyLoadedImage *, QString> &tuple : parsed) {
|
||||
// LazyLoadedImage *image = std::get<0>(tuple);
|
||||
//
|
||||
// if (image == NULL) { // is text
|
||||
// QString string = std::get<1>(tuple);
|
||||
//
|
||||
// static QRegularExpression cheerRegex("cheer[1-9][0-9]*");
|
||||
//
|
||||
// // cheers
|
||||
// if (!bits.isEmpty() && string.length() >= 6 &&
|
||||
// cheerRegex.match(string).isValid()) {
|
||||
// auto cheer = string.mid(5).toInt();
|
||||
//
|
||||
// QString color;
|
||||
//
|
||||
// QColor bitsColor;
|
||||
//
|
||||
// if (cheer >= 10000) {
|
||||
// color = "red";
|
||||
// bitsColor = QColor::fromHslF(0, 1, 0.5);
|
||||
// } else if (cheer >= 5000) {
|
||||
// color = "blue";
|
||||
// bitsColor = QColor::fromHslF(0.61, 1, 0.4);
|
||||
// } else if (cheer >= 1000) {
|
||||
// color = "green";
|
||||
// bitsColor = QColor::fromHslF(0.5, 1, 0.5);
|
||||
// } else if (cheer >= 100) {
|
||||
// color = "purple";
|
||||
// bitsColor = QColor::fromHslF(0.8, 1, 0.5);
|
||||
// } else {
|
||||
// color = "gray";
|
||||
// bitsColor = QColor::fromHslF(0.5f, 0.5f, 0.5f);
|
||||
// }
|
||||
//
|
||||
// QString bitsLinkAnimated = QString(
|
||||
// "http://static-cdn.jtvnw.net/bits/dark/animated/" +
|
||||
// color + "/1");
|
||||
// QString bitsLink = QString(
|
||||
// "http://static-cdn.jtvnw.net/bits/dark/static/" +
|
||||
// color + "/1");
|
||||
//
|
||||
// LazyLoadedImage *imageAnimated =
|
||||
// EmoteManager::getInstance()
|
||||
// .getMiscImageFromCache()
|
||||
// .getOrAdd(bitsLinkAnimated, [&bitsLinkAnimated] {
|
||||
// return new LazyLoadedImage(bitsLinkAnimated);
|
||||
// });
|
||||
// LazyLoadedImage *image =
|
||||
// EmoteManager::getInstance()
|
||||
// .getMiscImageFromCache()
|
||||
// .getOrAdd(bitsLink, [&bitsLink] {
|
||||
// return new LazyLoadedImage(bitsLink);
|
||||
// });
|
||||
//
|
||||
// b.appendWord(
|
||||
// Word(imageAnimated, Word::BitsAnimated,
|
||||
// QString("cheer"), QString("Twitch Cheer"),
|
||||
// Link(Link::Url,
|
||||
// QString("https://blog.twitch.tv/"
|
||||
// "introducing-cheering-celebrate-"
|
||||
// "together-da62af41fac6"))));
|
||||
// b.appendWord(
|
||||
// Word(image, Word::BitsStatic, QString("cheer"),
|
||||
// QString("Twitch Cheer"),
|
||||
// Link(Link::Url,
|
||||
// QString("https://blog.twitch.tv/"
|
||||
// "introducing-cheering-celebrate-"
|
||||
// "together-da62af41fac6"))));
|
||||
//
|
||||
// b.appendWord(
|
||||
// Word(QString("x" + string.mid(5)), Word::BitsAmount,
|
||||
// bitsColor, QString(string.mid(5)),
|
||||
// QString("Twitch Cheer"),
|
||||
// Link(Link::Url,
|
||||
// QString("https://blog.twitch.tv/"
|
||||
// "introducing-cheering-celebrate-"
|
||||
// "together-da62af41fac6"))));
|
||||
//
|
||||
// continue;
|
||||
// }
|
||||
//
|
||||
// // bttv / ffz emotes
|
||||
// LazyLoadedImage *bttvEmote;
|
||||
//
|
||||
// // TODO: Implement this (ignored emotes)
|
||||
// if (EmoteManager::getInstance().getBttvEmotes().tryGet(
|
||||
// string, bttvEmote) ||
|
||||
// channel->getBttvChannelEmotes().tryGet(string, bttvEmote)
|
||||
// ||
|
||||
// EmoteManager::getInstance().getFfzEmotes().tryGet(
|
||||
// string, bttvEmote) ||
|
||||
// channel->getFfzChannelEmotes().tryGet(string, bttvEmote)
|
||||
// ||
|
||||
// EmoteManager::getInstance().getChatterinoEmotes().tryGet(
|
||||
// string, bttvEmote)) {
|
||||
// b.appendWord(Word(bttvEmote, Word::BttvEmoteImage,
|
||||
// bttvEmote->getName(),
|
||||
// bttvEmote->getTooltip(),
|
||||
// Link(Link::Url, bttvEmote->getUrl())));
|
||||
//
|
||||
// continue;
|
||||
// }
|
||||
//
|
||||
// // actually just a word
|
||||
// QString link = b.matchLink(string);
|
||||
//
|
||||
// b.appendWord(
|
||||
// Word(string, Word::Text, textColor, string, QString(),
|
||||
// link.isEmpty() ? Link() : Link(Link::Url, link)));
|
||||
// } else { // is emoji
|
||||
// static QString emojiTooltip("Emoji");
|
||||
//
|
||||
// b.appendWord(Word(image, Word::EmojiImage, image->getName(),
|
||||
// emojiTooltip));
|
||||
// Word(image->getName(), Word::EmojiText, textColor,
|
||||
// image->getName(), emojiTooltip);
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// i += split.length() + 1;
|
||||
// }
|
||||
//
|
||||
// // TODO: Implement this xD
|
||||
// // if (!isReceivedWhisper &&
|
||||
// // AppSettings.HighlightIgnoredUsers.ContainsKey(Username))
|
||||
// // {
|
||||
// // HighlightTab = false;
|
||||
// // }
|
||||
//
|
||||
// return b.build();
|
||||
//}
|
||||
//
|
||||
// bool
|
||||
// sortTwitchEmotes(const std::pair<long int, LazyLoadedImage *> &a,
|
||||
// const std::pair<long int, LazyLoadedImage *> &b)
|
||||
//{
|
||||
// return a.first < b.first;
|
||||
//}
|
||||
//}
|
||||
//}
|
||||
//
|
||||
@@ -0,0 +1,13 @@
|
||||
//#ifndef MESSAGEPARSER_H
|
||||
//#define MESSAGEPARSER_H
|
||||
//
|
||||
//#include "messages/lazyloadedimage.h"
|
||||
//#include "messages/messagebuilder.h"
|
||||
//#include "messages/messageparseargs.h"
|
||||
//
|
||||
// namespace chatterino {
|
||||
// namespace twitch {
|
||||
//}
|
||||
//}
|
||||
//
|
||||
//#endif // MESSAGEPARSER_H
|
||||
@@ -0,0 +1,28 @@
|
||||
#include "twitchuser.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
TwitchUser::TwitchUser(const QString &username, const QString &oauthToken,
|
||||
const QString &oauthClient)
|
||||
: IrcUser2(username, username, username, "oauth:" + oauthToken)
|
||||
, _oauthClient(oauthClient)
|
||||
, _oauthToken(oauthToken)
|
||||
{
|
||||
}
|
||||
|
||||
const QString &TwitchUser::getOAuthClient() const
|
||||
{
|
||||
return _oauthClient;
|
||||
}
|
||||
|
||||
const QString &TwitchUser::getOAuthToken() const
|
||||
{
|
||||
return _oauthToken;
|
||||
}
|
||||
|
||||
bool TwitchUser::isAnon() const
|
||||
{
|
||||
return IrcUser2::getNickName().startsWith("justinfan");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
#ifndef ACCOUNT_H
|
||||
#define ACCOUNT_H
|
||||
|
||||
#include "ircaccount.h"
|
||||
|
||||
#include <QString>
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
|
||||
class TwitchUser : public IrcUser2
|
||||
{
|
||||
public:
|
||||
TwitchUser(const QString &username, const QString &oauthToken, const QString &oauthClient);
|
||||
|
||||
const QString &getOAuthToken() const;
|
||||
const QString &getOAuthClient() const;
|
||||
|
||||
bool isAnon() const;
|
||||
|
||||
private:
|
||||
QString _oauthClient;
|
||||
QString _oauthToken;
|
||||
};
|
||||
|
||||
} // namespace twitch
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // ACCOUNT_H
|
||||
Reference in New Issue
Block a user