55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
#include <QJsonArray>
|
|
#include <QJsonDocument>
|
|
|
|
#include <QDebug>
|
|
|
|
#include "minecraft/VersionFile.h"
|
|
#include "minecraft/Library.h"
|
|
#include "minecraft/MinecraftProfile.h"
|
|
#include "minecraft/JarMod.h"
|
|
#include "ParseUtils.h"
|
|
|
|
#include "VersionBuildError.h"
|
|
#include <Version.h>
|
|
|
|
bool VersionFile::isMinecraftVersion()
|
|
{
|
|
return fileId == "net.minecraft";
|
|
}
|
|
|
|
bool VersionFile::hasJarMods()
|
|
{
|
|
return !jarMods.isEmpty();
|
|
}
|
|
|
|
void VersionFile::applyTo(MinecraftProfile *version)
|
|
{
|
|
auto theirVersion = version->getMinecraftVersion();
|
|
if (!theirVersion.isNull() && !mcVersion.isNull())
|
|
{
|
|
if (QRegExp(mcVersion, Qt::CaseInsensitive, QRegExp::Wildcard).indexIn(theirVersion) == -1)
|
|
{
|
|
throw MinecraftVersionMismatch(fileId, mcVersion, theirVersion);
|
|
}
|
|
}
|
|
bool is_minecraft = isMinecraftVersion();
|
|
version->applyMinecraftVersion(id);
|
|
version->applyMainClass(mainClass);
|
|
version->applyAppletClass(appletClass);
|
|
version->applyMinecraftArguments(minecraftArguments, is_minecraft);
|
|
if (is_minecraft)
|
|
{
|
|
version->applyMinecraftVersionType(type);
|
|
}
|
|
version->applyMinecraftAssets(assets);
|
|
version->applyTweakers(addTweakers);
|
|
|
|
version->applyJarMods(jarMods);
|
|
version->applyTraits(traits);
|
|
|
|
for (auto addedLibrary : addLibs)
|
|
{
|
|
version->applyLibrary(addedLibrary, isMinecraftVersion());
|
|
}
|
|
}
|