9b984cedac
Signed-off-by: flow <flowlnlnln@gmail.com>
134 lines
3.4 KiB
C++
134 lines
3.4 KiB
C++
#include "LocalResourcePackParseTask.h"
|
|
|
|
#include "FileSystem.h"
|
|
#include "Json.h"
|
|
|
|
#include <quazip/quazip.h>
|
|
#include <quazip/quazipfile.h>
|
|
|
|
LocalResourcePackParseTask::LocalResourcePackParseTask(int token, ResourcePack& rp)
|
|
: Task(nullptr, false), m_token(token), m_resource_pack(rp)
|
|
{}
|
|
|
|
bool LocalResourcePackParseTask::abort()
|
|
{
|
|
m_aborted = true;
|
|
return true;
|
|
}
|
|
|
|
void LocalResourcePackParseTask::executeTask()
|
|
{
|
|
switch (m_resource_pack.type()) {
|
|
case ResourceType::FOLDER:
|
|
processAsFolder();
|
|
break;
|
|
case ResourceType::ZIPFILE:
|
|
processAsZip();
|
|
break;
|
|
default:
|
|
qWarning() << "Invalid type for resource pack parse task!";
|
|
emitFailed(tr("Invalid type."));
|
|
}
|
|
|
|
if (isFinished())
|
|
return;
|
|
|
|
if (m_aborted)
|
|
emitAborted();
|
|
else
|
|
emitSucceeded();
|
|
}
|
|
|
|
// https://minecraft.fandom.com/wiki/Tutorials/Creating_a_resource_pack#Formatting_pack.mcmeta
|
|
void LocalResourcePackParseTask::processMCMeta(QByteArray&& raw_data)
|
|
{
|
|
try {
|
|
auto json_doc = QJsonDocument::fromJson(raw_data);
|
|
auto pack_obj = Json::requireObject(json_doc.object(), "pack", {});
|
|
|
|
m_resource_pack.setPackFormat(Json::ensureInteger(pack_obj, "pack_format", 0));
|
|
m_resource_pack.setDescription(Json::ensureString(pack_obj, "description", ""));
|
|
} catch (Json::JsonException& e) {
|
|
qWarning() << "JsonException: " << e.what() << e.cause();
|
|
emitFailed(tr("Failed to process .mcmeta file."));
|
|
}
|
|
}
|
|
|
|
void LocalResourcePackParseTask::processPackPNG(QByteArray&& raw_data)
|
|
{
|
|
auto img = QImage::fromData(raw_data);
|
|
if (!img.isNull()) {
|
|
m_resource_pack.setImage(img);
|
|
} else {
|
|
qWarning() << "Failed to parse pack.png.";
|
|
}
|
|
}
|
|
|
|
void LocalResourcePackParseTask::processAsFolder()
|
|
{
|
|
QFileInfo mcmeta_file_info(FS::PathCombine(m_resource_pack.fileinfo().filePath(), "pack.mcmeta"));
|
|
if (mcmeta_file_info.isFile()) {
|
|
QFile mcmeta_file(mcmeta_file_info.filePath());
|
|
if (!mcmeta_file.open(QIODevice::ReadOnly))
|
|
return;
|
|
|
|
auto data = mcmeta_file.readAll();
|
|
|
|
processMCMeta(std::move(data));
|
|
|
|
mcmeta_file.close();
|
|
}
|
|
|
|
QFileInfo image_file_info(FS::PathCombine(m_resource_pack.fileinfo().filePath(), "pack.png"));
|
|
if (image_file_info.isFile()) {
|
|
QFile mcmeta_file(image_file_info.filePath());
|
|
if (!mcmeta_file.open(QIODevice::ReadOnly))
|
|
return;
|
|
|
|
auto data = mcmeta_file.readAll();
|
|
|
|
processPackPNG(std::move(data));
|
|
|
|
mcmeta_file.close();
|
|
}
|
|
}
|
|
|
|
void LocalResourcePackParseTask::processAsZip()
|
|
{
|
|
QuaZip zip(m_resource_pack.fileinfo().filePath());
|
|
if (!zip.open(QuaZip::mdUnzip))
|
|
return;
|
|
|
|
QuaZipFile file(&zip);
|
|
|
|
if (zip.setCurrentFile("pack.mcmeta")) {
|
|
if (!file.open(QIODevice::ReadOnly)) {
|
|
qCritical() << "Failed to open file in zip.";
|
|
zip.close();
|
|
return;
|
|
}
|
|
|
|
auto data = file.readAll();
|
|
|
|
processMCMeta(std::move(data));
|
|
|
|
file.close();
|
|
}
|
|
|
|
if (zip.setCurrentFile("pack.png")) {
|
|
if (!file.open(QIODevice::ReadOnly)) {
|
|
qCritical() << "Failed to open file in zip.";
|
|
zip.close();
|
|
return;
|
|
}
|
|
|
|
auto data = file.readAll();
|
|
|
|
processPackPNG(std::move(data));
|
|
|
|
file.close();
|
|
}
|
|
|
|
zip.close();
|
|
}
|