pollymc/api/logic/minecraft/VersionFile.cpp

61 lines
1.5 KiB
C++
Raw Normal View History

2014-03-02 03:36:47 +05:30
#include <QJsonArray>
#include <QJsonDocument>
#include <QDebug>
2014-05-09 00:50:10 +05:30
2015-02-09 06:21:14 +05:30
#include "minecraft/VersionFile.h"
#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
bool VersionFile::isMinecraftVersion()
{
2015-01-28 03:01:07 +05:30
return fileId == "net.minecraft";
}
bool VersionFile::hasJarMods()
{
return !jarMods.isEmpty();
}
void VersionFile::applyTo(MinecraftProfile *profile)
2014-03-02 03:36:47 +05:30
{
auto theirVersion = profile->getMinecraftVersion();
if (!theirVersion.isNull() && !dependsOnMinecraftVersion.isNull())
2014-03-02 03:36:47 +05:30
{
if (QRegExp(dependsOnMinecraftVersion, Qt::CaseInsensitive, QRegExp::Wildcard).indexIn(theirVersion) == -1)
{
throw MinecraftVersionMismatch(fileId, dependsOnMinecraftVersion, theirVersion);
}
2014-03-02 03:36:47 +05:30
}
profile->applyMinecraftVersion(minecraftVersion);
profile->applyMainClass(mainClass);
profile->applyAppletClass(appletClass);
profile->applyMinecraftArguments(minecraftArguments);
if (isMinecraftVersion())
2014-03-02 03:36:47 +05:30
{
profile->applyMinecraftVersionType(type);
2014-03-02 03:36:47 +05:30
}
profile->applyMinecraftAssets(mojangAssetIndex);
profile->applyTweakers(addTweakers);
profile->applyJarMods(jarMods);
profile->applyTraits(traits);
for (auto library : libraries)
2014-03-02 03:36:47 +05:30
{
profile->applyLibrary(library);
2014-03-02 03:36:47 +05:30
}
profile->applyProblemSeverity(getProblemSeverity());
auto iter = mojangDownloads.begin();
while(iter != mojangDownloads.end())
{
profile->applyMojangDownload(iter.key(), iter.value());
iter++;
}
2014-03-02 03:36:47 +05:30
}