Some checks failed
CodeQL Code Scanning / CodeQL (push) Has been cancelled
Build Application / Build Debug (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (macos-13, x86_64-darwin) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (macos-14, aarch64-darwin) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (ubuntu-22.04, x86_64-linux) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (ubuntu-22.04-arm, aarch64-linux) (push) Has been cancelled
Update Flake Lockfile / update-flake (push) Has been cancelled
146 lines
5.3 KiB
C++
Executable File
146 lines
5.3 KiB
C++
Executable File
#include "ResourcePack.h"
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
#include <QMap>
|
|
#include <QRegularExpression>
|
|
|
|
#include "MTPixmapCache.h"
|
|
#include "Version.h"
|
|
|
|
#include "minecraft/mod/tasks/LocalResourcePackParseTask.h"
|
|
|
|
// Values taken from:
|
|
// https://minecraft.wiki/w/Pack_format#List_of_resource_pack_formats
|
|
static const QMap<int, std::pair<Version, Version>> s_pack_format_versions = {
|
|
{ 1, { Version("1.6.1"), Version("1.8.9") } }, { 2, { Version("1.9"), Version("1.10.2") } },
|
|
{ 3, { Version("1.11"), Version("1.12.2") } }, { 4, { Version("1.13"), Version("1.14.4") } },
|
|
{ 5, { Version("1.15"), Version("1.16.1") } }, { 6, { Version("1.16.2"), Version("1.16.5") } },
|
|
{ 7, { Version("1.17"), Version("1.17.1") } }, { 8, { Version("1.18"), Version("1.18.2") } },
|
|
{ 9, { Version("1.19"), Version("1.19.2") } }, { 11, { Version("22w42a"), Version("22w44a") } },
|
|
{ 12, { Version("1.19.3"), Version("1.19.3") } }, { 13, { Version("1.19.4"), Version("1.19.4") } },
|
|
{ 14, { Version("23w14a"), Version("23w16a") } }, { 15, { Version("1.20"), Version("1.20.1") } },
|
|
{ 16, { Version("23w31a"), Version("23w31a") } }, { 17, { Version("23w32a"), Version("23w35a") } },
|
|
{ 18, { Version("1.20.2"), Version("23w16a") } }, { 19, { Version("23w42a"), Version("23w42a") } },
|
|
{ 20, { Version("23w43a"), Version("23w44a") } }, { 21, { Version("23w45a"), Version("23w46a") } },
|
|
{ 22, { Version("1.20.3-pre1"), Version("23w51b") } }, { 24, { Version("24w03a"), Version("24w04a") } },
|
|
{ 25, { Version("24w05a"), Version("24w05b") } }, { 26, { Version("24w06a"), Version("24w07a") } },
|
|
{ 28, { Version("24w09a"), Version("24w10a") } }, { 29, { Version("24w11a"), Version("24w11a") } },
|
|
{ 30, { Version("24w12a"), Version("23w12a") } }, { 31, { Version("24w13a"), Version("1.20.5-pre3") } },
|
|
{ 32, { Version("1.20.5-pre4"), Version("1.20.6") } }, { 33, { Version("24w18a"), Version("24w20a") } },
|
|
{ 34, { Version("24w21a"), Version("1.21") } }
|
|
};
|
|
|
|
void ResourcePack::setPackFormat(int new_format_id)
|
|
{
|
|
QMutexLocker locker(&m_data_lock);
|
|
|
|
if (!s_pack_format_versions.contains(new_format_id)) {
|
|
qWarning() << "Pack format '" << new_format_id << "' is not a recognized resource pack id!";
|
|
}
|
|
|
|
m_pack_format = new_format_id;
|
|
}
|
|
|
|
void ResourcePack::setDescription(QString new_description)
|
|
{
|
|
QMutexLocker locker(&m_data_lock);
|
|
|
|
m_description = new_description;
|
|
}
|
|
|
|
void ResourcePack::setImage(QImage new_image) const
|
|
{
|
|
QMutexLocker locker(&m_data_lock);
|
|
|
|
Q_ASSERT(!new_image.isNull());
|
|
|
|
if (m_pack_image_cache_key.key.isValid())
|
|
PixmapCache::instance().remove(m_pack_image_cache_key.key);
|
|
|
|
// scale the image to avoid flooding the pixmapcache
|
|
auto pixmap =
|
|
QPixmap::fromImage(new_image.scaled({ 64, 64 }, Qt::AspectRatioMode::KeepAspectRatioByExpanding, Qt::SmoothTransformation));
|
|
|
|
m_pack_image_cache_key.key = PixmapCache::instance().insert(pixmap);
|
|
m_pack_image_cache_key.was_ever_used = true;
|
|
|
|
// This can happen if the pixmap is too big to fit in the cache :c
|
|
if (!m_pack_image_cache_key.key.isValid()) {
|
|
qWarning() << "Could not insert a image cache entry! Ignoring it.";
|
|
m_pack_image_cache_key.was_ever_used = false;
|
|
}
|
|
}
|
|
|
|
QPixmap ResourcePack::image(QSize size, Qt::AspectRatioMode mode) const
|
|
{
|
|
QPixmap cached_image;
|
|
if (PixmapCache::instance().find(m_pack_image_cache_key.key, &cached_image)) {
|
|
if (size.isNull())
|
|
return cached_image;
|
|
return cached_image.scaled(size, mode, Qt::SmoothTransformation);
|
|
}
|
|
|
|
// No valid image we can get
|
|
if (!m_pack_image_cache_key.was_ever_used) {
|
|
return {};
|
|
} else {
|
|
qDebug() << "Resource Pack" << name() << "Had it's image evicted from the cache. reloading...";
|
|
PixmapCache::markCacheMissByEviciton();
|
|
}
|
|
|
|
// Imaged got evicted from the cache. Re-process it and retry.
|
|
ResourcePackUtils::processPackPNG(*this);
|
|
return image(size);
|
|
}
|
|
|
|
std::pair<Version, Version> ResourcePack::compatibleVersions() const
|
|
{
|
|
if (!s_pack_format_versions.contains(m_pack_format)) {
|
|
return { {}, {} };
|
|
}
|
|
|
|
return s_pack_format_versions.constFind(m_pack_format).value();
|
|
}
|
|
|
|
int ResourcePack::compare(const Resource& other, SortType type) const
|
|
{
|
|
auto const& cast_other = static_cast<ResourcePack const&>(other);
|
|
switch (type) {
|
|
default:
|
|
return Resource::compare(other, type);
|
|
case SortType::PACK_FORMAT: {
|
|
auto this_ver = packFormat();
|
|
auto other_ver = cast_other.packFormat();
|
|
|
|
if (this_ver > other_ver)
|
|
return 1;
|
|
if (this_ver < other_ver)
|
|
return -1;
|
|
break;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
bool ResourcePack::applyFilter(QRegularExpression filter) const
|
|
{
|
|
if (filter.match(description()).hasMatch())
|
|
return true;
|
|
|
|
if (filter.match(QString::number(packFormat())).hasMatch())
|
|
return true;
|
|
|
|
if (filter.match(compatibleVersions().first.toString()).hasMatch())
|
|
return true;
|
|
if (filter.match(compatibleVersions().second.toString()).hasMatch())
|
|
return true;
|
|
|
|
return Resource::applyFilter(filter);
|
|
}
|
|
|
|
bool ResourcePack::valid() const
|
|
{
|
|
return m_pack_format != 0;
|
|
}
|