mirror-chatterino2/src/messages/ImageSet.cpp

95 lines
1.8 KiB
C++
Raw Normal View History

#include "messages/ImageSet.hpp"
2018-08-02 14:23:27 +02:00
#include "singletons/Settings.hpp"
namespace chatterino {
ImageSet::ImageSet()
: imageX1_(Image::getEmpty())
, imageX2_(Image::getEmpty())
, imageX3_(Image::getEmpty())
{
}
2018-08-06 21:17:03 +02:00
ImageSet::ImageSet(const ImagePtr &image1, const ImagePtr &image2,
const ImagePtr &image3)
2018-08-02 14:23:27 +02:00
: imageX1_(image1)
, imageX2_(image2)
, imageX3_(image3)
{
}
ImageSet::ImageSet(const Url &image1, const Url &image2, const Url &image3)
: imageX1_(Image::fromUrl(image1, 1))
, imageX2_(Image::fromUrl(image2, 0.5))
, imageX3_(Image::fromUrl(image3, 0.25))
{
}
void ImageSet::setImage1(const ImagePtr &image)
{
this->imageX1_ = image;
}
void ImageSet::setImage2(const ImagePtr &image)
{
this->imageX2_ = image;
}
void ImageSet::setImage3(const ImagePtr &image)
{
this->imageX3_ = image;
}
const ImagePtr &ImageSet::getImage1() const
{
return this->imageX1_;
}
const ImagePtr &ImageSet::getImage2() const
{
return this->imageX2_;
}
const ImagePtr &ImageSet::getImage3() const
{
return this->imageX3_;
}
const ImagePtr &ImageSet::getImage(float scale) const
{
scale *= getSettings()->emoteScale;
int quality = 1;
2018-12-02 17:49:15 +01:00
if (scale > 2.001f)
quality = 3;
2018-12-02 17:49:15 +01:00
else if (scale > 1.001f)
quality = 2;
2018-08-02 14:23:27 +02:00
2018-10-21 13:43:02 +02:00
if (!this->imageX3_->isEmpty() && quality == 3)
{
2018-08-02 14:23:27 +02:00
return this->imageX3_;
}
2018-10-21 13:43:02 +02:00
if (!this->imageX2_->isEmpty() && quality == 2)
{
2018-08-11 23:53:20 +02:00
return this->imageX2_;
2018-08-02 14:23:27 +02:00
}
return this->imageX1_;
}
bool ImageSet::operator==(const ImageSet &other) const
{
return std::tie(this->imageX1_, this->imageX2_, this->imageX3_) ==
std::tie(other.imageX1_, other.imageX2_, other.imageX3_);
}
bool ImageSet::operator!=(const ImageSet &other) const
{
return !this->operator==(other);
}
} // namespace chatterino