mirror-chatterino2/src/messages/image.cpp

217 lines
4.8 KiB
C++
Raw Normal View History

#include "messages/image.hpp"
2017-12-31 00:50:07 +01:00
#include "singletons/emotemanager.hpp"
#include "singletons/ircmanager.hpp"
#include "singletons/windowmanager.hpp"
#include "util/networkmanager.hpp"
2018-01-19 23:41:02 +01:00
#include "util/posttothread.hpp"
2017-06-11 09:31:45 +02:00
#include "util/urlfetch.hpp"
2017-01-11 18:52:09 +01:00
2017-02-06 17:42:28 +01:00
#include <QBuffer>
#include <QImageReader>
2017-01-11 18:52:09 +01:00
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include <QNetworkRequest>
2017-02-06 17:42:28 +01:00
#include <QTimer>
2017-06-06 21:18:05 +02:00
2017-01-11 18:52:09 +01:00
#include <functional>
#include <thread>
2017-01-11 18:52:09 +01:00
2017-01-18 21:30:23 +01:00
namespace chatterino {
namespace messages {
Image::Image(const QString &url, qreal scale, const QString &name, const QString &tooltip,
const QMargins &margin, bool isHat)
2017-12-17 02:18:13 +01:00
: currentPixmap(nullptr)
2017-09-12 19:06:16 +02:00
, url(url)
, name(name)
, tooltip(tooltip)
, margin(margin)
, ishat(isHat)
, scale(scale)
, isLoading(false)
2017-01-05 16:07:20 +01:00
{
2018-04-06 16:37:30 +02:00
util::DebugCount::increase("images");
2017-01-05 16:07:20 +01:00
}
Image::Image(QPixmap *image, qreal scale, const QString &name, const QString &tooltip,
const QMargins &margin, bool isHat)
2017-12-17 02:18:13 +01:00
: currentPixmap(image)
2017-09-12 19:06:16 +02:00
, name(name)
, tooltip(tooltip)
, margin(margin)
, ishat(isHat)
, scale(scale)
, isLoading(true)
2018-01-19 23:41:02 +01:00
, isLoaded(true)
2017-01-11 18:52:09 +01:00
{
2018-04-06 16:37:30 +02:00
util::DebugCount::increase("images");
}
Image::~Image()
{
util::DebugCount::decrease("images");
if (this->isAnimated()) {
util::DebugCount::decrease("animated images");
}
if (this->isLoaded) {
util::DebugCount::decrease("loaded images");
}
2017-01-11 18:52:09 +01:00
}
void Image::loadImage()
2017-01-04 15:12:31 +01:00
{
util::NetworkRequest req(this->getUrl());
req.setCaller(this);
2018-01-19 22:45:33 +01:00
req.setUseQuickLoadCache(true);
req.get([lli = this](QByteArray bytes) {
QByteArray copy = QByteArray::fromRawData(bytes.constData(), bytes.length());
QBuffer buffer(&copy);
buffer.open(QIODevice::ReadOnly);
QImage image;
QImageReader reader(&buffer);
bool first = true;
for (int index = 0; index < reader.imageCount(); ++index) {
if (reader.read(&image)) {
auto pixmap = new QPixmap(QPixmap::fromImage(image));
if (first) {
first = false;
2018-01-19 22:45:33 +01:00
lli->loadedPixmap = pixmap;
}
chatterino::messages::Image::FrameData data;
data.duration = std::max(20, reader.nextImageDelay());
data.image = pixmap;
lli->allFrames.push_back(data);
}
}
if (lli->allFrames.size() > 1) {
lli->animated = true;
2018-04-06 16:37:30 +02:00
util::DebugCount::increase("animated images");
}
2018-01-19 22:45:33 +01:00
lli->currentPixmap = lli->loadedPixmap;
lli->isLoaded = true;
2018-04-06 16:37:30 +02:00
util::DebugCount::increase("loaded images");
2018-01-19 22:45:33 +01:00
2017-12-31 22:58:35 +01:00
singletons::EmoteManager::getInstance().incGeneration();
2018-02-05 15:11:50 +01:00
util::postToThread(
[] { singletons::WindowManager::getInstance().layoutVisibleChatWidgets(); });
});
2017-09-28 22:24:03 +02:00
2017-12-31 22:58:35 +01:00
singletons::EmoteManager::getInstance().getGifUpdateSignal().connect([=]() {
this->gifUpdateTimout();
}); // For some reason when Boost signal is in thread scope and thread deletes the signal
// doesn't work, so this is the fix.
2017-02-06 17:42:28 +01:00
}
void Image::gifUpdateTimout()
2017-02-06 17:42:28 +01:00
{
2018-01-19 22:45:33 +01:00
if (this->animated) {
this->currentFrameOffset += GIF_FRAME_LENGTH;
while (true) {
if (this->currentFrameOffset > this->allFrames.at(this->currentFrame).duration) {
this->currentFrameOffset -= this->allFrames.at(this->currentFrame).duration;
this->currentFrame = (this->currentFrame + 1) % this->allFrames.size();
} else {
break;
}
}
this->currentPixmap = this->allFrames[this->currentFrame].image;
}
2017-01-04 15:12:31 +01:00
}
2017-09-12 19:06:16 +02:00
const QPixmap *Image::getPixmap()
2017-09-12 19:06:16 +02:00
{
if (!this->isLoading) {
this->isLoading = true;
2018-01-19 22:45:33 +01:00
this->loadImage();
return nullptr;
}
if (this->isLoaded) {
return this->currentPixmap;
} else {
return nullptr;
2017-09-12 19:06:16 +02:00
}
}
qreal Image::getScale() const
2017-09-12 19:06:16 +02:00
{
return this->scale;
}
const QString &Image::getUrl() const
2017-09-12 19:06:16 +02:00
{
return this->url;
}
const QString &Image::getName() const
2017-09-12 19:06:16 +02:00
{
return this->name;
}
const QString &Image::getTooltip() const
2017-09-12 19:06:16 +02:00
{
return this->tooltip;
}
const QMargins &Image::getMargin() const
2017-09-12 19:06:16 +02:00
{
return this->margin;
}
bool Image::isAnimated() const
2017-09-12 19:06:16 +02:00
{
return this->animated;
}
bool Image::isHat() const
2017-09-12 19:06:16 +02:00
{
return this->ishat;
}
int Image::getWidth() const
2017-09-12 19:06:16 +02:00
{
if (this->currentPixmap == nullptr) {
return 16;
}
2018-01-19 22:45:33 +01:00
2017-09-12 19:06:16 +02:00
return this->currentPixmap->width();
}
int Image::getScaledWidth() const
2017-09-12 19:06:16 +02:00
{
return static_cast<int>(this->getWidth() * this->scale);
2017-09-12 19:06:16 +02:00
}
int Image::getHeight() const
2017-09-12 19:06:16 +02:00
{
if (this->currentPixmap == nullptr) {
return 16;
}
return this->currentPixmap->height();
}
int Image::getScaledHeight() const
2017-09-12 19:06:16 +02:00
{
return static_cast<int>(this->getHeight() * this->scale);
2017-09-12 19:06:16 +02:00
}
2017-04-14 17:52:22 +02:00
} // namespace messages
} // namespace chatterino