2016-02-28 02:32:56 +05:30
|
|
|
#include "OneSixVersionFormat.h"
|
|
|
|
#include <Json.h>
|
|
|
|
#include "minecraft/ParseUtils.h"
|
2016-02-28 23:31:54 +05:30
|
|
|
#include <minecraft/MinecraftVersion.h>
|
|
|
|
#include <minecraft/VersionBuildError.h>
|
2016-03-07 06:31:28 +05:30
|
|
|
#include <minecraft/MojangVersionFormat.h>
|
2016-02-28 02:32:56 +05:30
|
|
|
|
|
|
|
using namespace Json;
|
|
|
|
|
|
|
|
static void readString(const QJsonObject &root, const QString &key, QString &variable)
|
|
|
|
{
|
|
|
|
if (root.contains(key))
|
|
|
|
{
|
|
|
|
variable = requireString(root.value(key));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-07 06:31:28 +05:30
|
|
|
LibraryPtr OneSixVersionFormat::libraryFromJson(const QJsonObject &libObj, const QString &filename)
|
2016-02-28 23:31:54 +05:30
|
|
|
{
|
2016-03-07 06:31:28 +05:30
|
|
|
LibraryPtr out = MojangVersionFormat::libraryFromJson(libObj, filename);
|
2016-02-28 23:31:54 +05:30
|
|
|
readString(libObj, "MMC-hint", out->m_hint);
|
2016-03-26 21:26:57 +05:30
|
|
|
readString(libObj, "MMC-absulute_url", out->m_absoluteURL);
|
|
|
|
readString(libObj, "MMC-absoluteUrl", out->m_absoluteURL);
|
2016-02-28 23:31:54 +05:30
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2016-03-07 06:31:28 +05:30
|
|
|
QJsonObject OneSixVersionFormat::libraryToJson(Library *library)
|
2016-02-28 23:31:54 +05:30
|
|
|
{
|
2016-03-07 06:31:28 +05:30
|
|
|
QJsonObject libRoot = MojangVersionFormat::libraryToJson(library);
|
2016-03-26 21:26:57 +05:30
|
|
|
if (library->m_absoluteURL.size())
|
|
|
|
libRoot.insert("MMC-absoluteUrl", library->m_absoluteURL);
|
2016-02-28 23:31:54 +05:30
|
|
|
if (library->m_hint.size())
|
|
|
|
libRoot.insert("MMC-hint", library->m_hint);
|
|
|
|
return libRoot;
|
|
|
|
}
|
|
|
|
|
|
|
|
VersionFilePtr OneSixVersionFormat::versionFileFromJson(const QJsonDocument &doc, const QString &filename, const bool requireOrder)
|
2016-02-28 02:32:56 +05:30
|
|
|
{
|
|
|
|
VersionFilePtr out(new VersionFile());
|
|
|
|
if (doc.isEmpty() || doc.isNull())
|
|
|
|
{
|
|
|
|
throw JSONValidationError(filename + " is empty or null");
|
|
|
|
}
|
|
|
|
if (!doc.isObject())
|
|
|
|
{
|
|
|
|
throw JSONValidationError(filename + " is not an object");
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonObject root = doc.object();
|
|
|
|
|
|
|
|
if (requireOrder)
|
|
|
|
{
|
|
|
|
if (root.contains("order"))
|
|
|
|
{
|
|
|
|
out->order = requireInteger(root.value("order"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// FIXME: evaluate if we don't want to throw exceptions here instead
|
|
|
|
qCritical() << filename << "doesn't contain an order field";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out->name = root.value("name").toString();
|
|
|
|
out->fileId = root.value("fileId").toString();
|
|
|
|
out->version = root.value("version").toString();
|
2016-03-26 21:26:57 +05:30
|
|
|
out->dependsOnMinecraftVersion = root.value("mcVersion").toString();
|
2016-02-28 02:32:56 +05:30
|
|
|
out->filename = filename;
|
|
|
|
|
2016-03-19 07:36:32 +05:30
|
|
|
MojangVersionFormat::readVersionProperties(root, out.get());
|
2016-02-28 02:32:56 +05:30
|
|
|
|
2016-03-19 07:36:32 +05:30
|
|
|
// added for legacy Minecraft window embedding, TODO: remove
|
2016-02-28 02:32:56 +05:30
|
|
|
readString(root, "appletClass", out->appletClass);
|
|
|
|
|
|
|
|
if (root.contains("+tweakers"))
|
|
|
|
{
|
|
|
|
for (auto tweakerVal : requireArray(root.value("+tweakers")))
|
|
|
|
{
|
|
|
|
out->addTweakers.append(requireString(tweakerVal));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (root.contains("+traits"))
|
|
|
|
{
|
|
|
|
for (auto tweakerVal : requireArray(root.value("+traits")))
|
|
|
|
{
|
|
|
|
out->traits.insert(requireString(tweakerVal));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (root.contains("+jarMods"))
|
|
|
|
{
|
|
|
|
for (auto libVal : requireArray(root.value("+jarMods")))
|
|
|
|
{
|
|
|
|
QJsonObject libObj = requireObject(libVal);
|
|
|
|
// parse the jarmod
|
2016-02-28 23:31:54 +05:30
|
|
|
auto lib = OneSixVersionFormat::jarModFromJson(libObj, filename, out->name);
|
2016-02-28 02:32:56 +05:30
|
|
|
if(lib->originalName.isEmpty())
|
|
|
|
{
|
|
|
|
auto fixed = out->name;
|
|
|
|
fixed.remove(" (jar mod)");
|
|
|
|
lib->originalName = out->name;
|
|
|
|
}
|
|
|
|
// and add to jar mods
|
|
|
|
out->jarMods.append(lib);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-13 04:53:45 +05:30
|
|
|
auto readLibs = [&](const char * which)
|
2016-02-28 02:32:56 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
for (auto libVal : requireArray(root.value(which)))
|
2016-02-28 02:32:56 +05:30
|
|
|
{
|
|
|
|
QJsonObject libObj = requireObject(libVal);
|
|
|
|
// parse the library
|
2016-02-28 23:31:54 +05:30
|
|
|
auto lib = libraryFromJson(libObj, filename);
|
2016-03-13 06:58:55 +05:30
|
|
|
out->libraries.append(lib);
|
2016-02-28 02:32:56 +05:30
|
|
|
}
|
2016-03-13 04:53:45 +05:30
|
|
|
};
|
|
|
|
bool hasPlusLibs = root.contains("+libraries");
|
|
|
|
bool hasLibs = root.contains("libraries");
|
|
|
|
if (hasPlusLibs && hasLibs)
|
|
|
|
{
|
|
|
|
out->addProblem(PROBLEM_WARNING, QObject::tr("Version file has both '+libraries' and 'libraries'. This is no longer supported."));
|
|
|
|
readLibs("libraries");
|
|
|
|
readLibs("+libraries");
|
|
|
|
}
|
|
|
|
else if (hasLibs)
|
|
|
|
{
|
|
|
|
readLibs("libraries");
|
|
|
|
}
|
|
|
|
else if(hasPlusLibs)
|
|
|
|
{
|
|
|
|
readLibs("+libraries");
|
2016-02-28 02:32:56 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* removed features that shouldn't be used */
|
2016-03-13 04:53:45 +05:30
|
|
|
if (root.contains("tweakers"))
|
|
|
|
{
|
|
|
|
out->addProblem(PROBLEM_ERROR, QObject::tr("Version file contains unsupported element 'tweakers'"));
|
|
|
|
}
|
2016-02-28 02:32:56 +05:30
|
|
|
if (root.contains("-libraries"))
|
|
|
|
{
|
|
|
|
out->addProblem(PROBLEM_ERROR, QObject::tr("Version file contains unsupported element '-libraries'"));
|
|
|
|
}
|
|
|
|
if (root.contains("-tweakers"))
|
|
|
|
{
|
|
|
|
out->addProblem(PROBLEM_ERROR, QObject::tr("Version file contains unsupported element '-tweakers'"));
|
|
|
|
}
|
|
|
|
if (root.contains("-minecraftArguments"))
|
|
|
|
{
|
|
|
|
out->addProblem(PROBLEM_ERROR, QObject::tr("Version file contains unsupported element '-minecraftArguments'"));
|
|
|
|
}
|
2016-03-13 04:53:45 +05:30
|
|
|
if (root.contains("+minecraftArguments"))
|
|
|
|
{
|
|
|
|
out->addProblem(PROBLEM_ERROR, QObject::tr("Version file contains unsupported element '+minecraftArguments'"));
|
|
|
|
}
|
2016-02-28 02:32:56 +05:30
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2016-03-19 07:36:32 +05:30
|
|
|
QJsonDocument OneSixVersionFormat::versionFileToJson(const VersionFilePtr &patch, bool saveOrder)
|
2016-02-28 02:32:56 +05:30
|
|
|
{
|
|
|
|
QJsonObject root;
|
|
|
|
if (saveOrder)
|
|
|
|
{
|
|
|
|
root.insert("order", patch->order);
|
|
|
|
}
|
|
|
|
writeString(root, "name", patch->name);
|
|
|
|
writeString(root, "fileId", patch->fileId);
|
|
|
|
writeString(root, "version", patch->version);
|
2016-03-26 21:26:57 +05:30
|
|
|
writeString(root, "mcVersion", patch->dependsOnMinecraftVersion);
|
2016-03-19 07:36:32 +05:30
|
|
|
|
|
|
|
MojangVersionFormat::writeVersionProperties(patch.get(), root);
|
|
|
|
|
2016-02-28 02:32:56 +05:30
|
|
|
writeString(root, "appletClass", patch->appletClass);
|
|
|
|
writeStringList(root, "+tweakers", patch->addTweakers);
|
|
|
|
writeStringList(root, "+traits", patch->traits.toList());
|
2016-03-13 06:58:55 +05:30
|
|
|
if (!patch->libraries.isEmpty())
|
2016-02-28 23:31:54 +05:30
|
|
|
{
|
|
|
|
QJsonArray array;
|
2016-03-13 06:58:55 +05:30
|
|
|
for (auto value: patch->libraries)
|
2016-02-28 23:31:54 +05:30
|
|
|
{
|
|
|
|
array.append(OneSixVersionFormat::libraryToJson(value.get()));
|
|
|
|
}
|
2016-03-13 04:53:45 +05:30
|
|
|
root.insert("libraries", array);
|
2016-02-28 23:31:54 +05:30
|
|
|
}
|
|
|
|
if (!patch->jarMods.isEmpty())
|
|
|
|
{
|
|
|
|
QJsonArray array;
|
|
|
|
for (auto value: patch->jarMods)
|
|
|
|
{
|
|
|
|
array.append(OneSixVersionFormat::jarModtoJson(value.get()));
|
|
|
|
}
|
|
|
|
root.insert("+jarMods", array);
|
|
|
|
}
|
2016-02-28 02:32:56 +05:30
|
|
|
// write the contents to a json document.
|
|
|
|
{
|
|
|
|
QJsonDocument out;
|
|
|
|
out.setObject(root);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 23:31:54 +05:30
|
|
|
JarmodPtr OneSixVersionFormat::jarModFromJson(const QJsonObject &libObj, const QString &filename, const QString &originalName)
|
|
|
|
{
|
|
|
|
JarmodPtr out(new Jarmod());
|
|
|
|
if (!libObj.contains("name"))
|
|
|
|
{
|
|
|
|
throw JSONValidationError(filename +
|
|
|
|
"contains a jarmod that doesn't have a 'name' field");
|
|
|
|
}
|
|
|
|
out->name = libObj.value("name").toString();
|
|
|
|
out->originalName = libObj.value("originalName").toString();
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonObject OneSixVersionFormat::jarModtoJson(Jarmod *jarmod)
|
|
|
|
{
|
|
|
|
QJsonObject out;
|
|
|
|
writeString(out, "name", jarmod->name);
|
|
|
|
if(!jarmod->originalName.isEmpty())
|
|
|
|
{
|
|
|
|
writeString(out, "originalName", jarmod->originalName);
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|