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"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "minecraft/MinecraftProfile.h"
|
|
|
|
#include "minecraft/JarMod.h"
|
2014-05-10 05:23:32 +05:30
|
|
|
#include "ParseUtils.h"
|
2014-03-02 03:36:47 +05:30
|
|
|
|
2014-05-10 05:23:32 +05:30
|
|
|
#include "VersionBuildError.h"
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <Version.h>
|
2014-05-10 05:23:32 +05:30
|
|
|
|
2014-05-11 16:07:21 +05:30
|
|
|
bool VersionFile::isMinecraftVersion()
|
2014-04-23 05:57:40 +05:30
|
|
|
{
|
2015-01-28 03:01:07 +05:30
|
|
|
return fileId == "net.minecraft";
|
2014-04-23 05:57:40 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool VersionFile::hasJarMods()
|
|
|
|
{
|
|
|
|
return !jarMods.isEmpty();
|
|
|
|
}
|
|
|
|
|
2016-03-14 01:27:01 +05:30
|
|
|
void VersionFile::applyTo(MinecraftProfile *profile)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2016-03-14 01:27:01 +05:30
|
|
|
auto theirVersion = profile->getMinecraftVersion();
|
2016-03-13 04:53:45 +05:30
|
|
|
if (!theirVersion.isNull() && !mcVersion.isNull())
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
if (QRegExp(mcVersion, Qt::CaseInsensitive, QRegExp::Wildcard).indexIn(theirVersion) == -1)
|
2014-04-23 05:57:40 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
throw MinecraftVersionMismatch(fileId, mcVersion, theirVersion);
|
2014-04-23 05:57:40 +05:30
|
|
|
}
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2016-03-14 01:27:01 +05:30
|
|
|
profile->applyMinecraftVersion(id);
|
|
|
|
profile->applyMainClass(mainClass);
|
|
|
|
profile->applyAppletClass(appletClass);
|
|
|
|
profile->applyMinecraftArguments(minecraftArguments);
|
2016-03-13 06:58:55 +05:30
|
|
|
if (isMinecraftVersion())
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2016-03-14 01:27:01 +05:30
|
|
|
profile->applyMinecraftVersionType(type);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2016-03-14 01:27:01 +05:30
|
|
|
profile->applyMinecraftAssets(assets);
|
|
|
|
profile->applyTweakers(addTweakers);
|
2016-03-13 04:53:45 +05:30
|
|
|
|
2016-03-14 01:27:01 +05:30
|
|
|
profile->applyJarMods(jarMods);
|
|
|
|
profile->applyTraits(traits);
|
2016-03-13 04:53:45 +05:30
|
|
|
|
2016-03-13 06:58:55 +05:30
|
|
|
for (auto library : libraries)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2016-03-14 01:27:01 +05:30
|
|
|
profile->applyLibrary(library);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2016-03-18 19:32:54 +05:30
|
|
|
profile->applyProblemSeverity(getProblemSeverity());
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|