2014-03-02 03:36:47 +05:30
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDebug>
|
2014-05-09 00:50:10 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "minecraft/VersionFile.h"
|
2016-03-07 06:31:28 +05:30
|
|
|
#include "minecraft/Library.h"
|
2020-06-27 15:32:31 +05:30
|
|
|
#include "minecraft/PackProfile.h"
|
2014-05-10 05:23:32 +05:30
|
|
|
#include "ParseUtils.h"
|
2014-03-02 03:36:47 +05:30
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <Version.h>
|
2014-05-10 05:23:32 +05:30
|
|
|
|
2017-03-27 07:04:39 +05:30
|
|
|
static bool isMinecraftVersion(const QString &uid)
|
2014-04-23 05:57:40 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return uid == "net.minecraft";
|
2014-04-23 05:57:40 +05:30
|
|
|
}
|
|
|
|
|
2017-11-05 03:25:25 +05:30
|
|
|
void VersionFile::applyTo(LaunchProfile *profile)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
// Only real Minecraft can set those. Don't let anything override them.
|
|
|
|
if (isMinecraftVersion(uid))
|
|
|
|
{
|
|
|
|
profile->applyMinecraftVersion(minecraftVersion);
|
|
|
|
profile->applyMinecraftVersionType(type);
|
|
|
|
// HACK: ignore assets from other version files than Minecraft
|
|
|
|
// workaround for stupid assets issue caused by amazon:
|
|
|
|
// https://www.theregister.co.uk/2017/02/28/aws_is_awol_as_s3_goes_haywire/
|
|
|
|
profile->applyMinecraftAssets(mojangAssetIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
profile->applyMainJar(mainJar);
|
|
|
|
profile->applyMainClass(mainClass);
|
|
|
|
profile->applyAppletClass(appletClass);
|
|
|
|
profile->applyMinecraftArguments(minecraftArguments);
|
|
|
|
profile->applyTweakers(addTweakers);
|
|
|
|
profile->applyJarMods(jarMods);
|
|
|
|
profile->applyMods(mods);
|
|
|
|
profile->applyTraits(traits);
|
|
|
|
|
|
|
|
for (auto library : libraries)
|
|
|
|
{
|
|
|
|
profile->applyLibrary(library);
|
|
|
|
}
|
2020-03-27 06:53:15 +05:30
|
|
|
for (auto mavenFile : mavenFiles)
|
|
|
|
{
|
|
|
|
profile->applyMavenFile(mavenFile);
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
profile->applyProblemSeverity(getProblemSeverity());
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2017-03-27 07:04:39 +05:30
|
|
|
|
|
|
|
/*
|
2018-07-15 18:21:05 +05:30
|
|
|
auto theirVersion = profile->getMinecraftVersion();
|
|
|
|
if (!theirVersion.isNull() && !dependsOnMinecraftVersion.isNull())
|
|
|
|
{
|
|
|
|
if (QRegExp(dependsOnMinecraftVersion, Qt::CaseInsensitive, QRegExp::Wildcard).indexIn(theirVersion) == -1)
|
|
|
|
{
|
|
|
|
throw MinecraftVersionMismatch(uid, dependsOnMinecraftVersion, theirVersion);
|
|
|
|
}
|
|
|
|
}
|
2020-03-27 06:53:15 +05:30
|
|
|
*/
|