pollymc/logic/minecraft/VersionFile.cpp

55 lines
1.3 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();
}
2015-01-28 03:01:07 +05:30
void VersionFile::applyTo(MinecraftProfile *version)
2014-03-02 03:36:47 +05:30
{
auto theirVersion = version->getMinecraftVersion();
if (!theirVersion.isNull() && !mcVersion.isNull())
2014-03-02 03:36:47 +05:30
{
if (QRegExp(mcVersion, Qt::CaseInsensitive, QRegExp::Wildcard).indexIn(theirVersion) == -1)
{
throw MinecraftVersionMismatch(fileId, mcVersion, theirVersion);
}
2014-03-02 03:36:47 +05:30
}
bool is_minecraft = isMinecraftVersion();
version->applyMinecraftVersion(id);
version->applyMainClass(mainClass);
version->applyAppletClass(appletClass);
version->applyMinecraftArguments(minecraftArguments, is_minecraft);
if (is_minecraft)
2014-03-02 03:36:47 +05:30
{
version->applyMinecraftVersionType(type);
2014-03-02 03:36:47 +05:30
}
version->applyMinecraftAssets(assets);
version->applyTweakers(addTweakers);
version->applyJarMods(jarMods);
version->applyTraits(traits);
for (auto addedLibrary : addLibs)
2014-03-02 03:36:47 +05:30
{
version->applyLibrary(addedLibrary, isMinecraftVersion());
2014-03-02 03:36:47 +05:30
}
}