pollymc/logic/minecraft/VersionBuilder.cpp

85 lines
2.0 KiB
C++
Raw Normal View History

2015-02-03 03:55:30 +05:30
/* Copyright 2013-2015 MultiMC Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <QList>
#include <QJsonObject>
#include <QJsonArray>
#include <QJsonDocument>
#include <QFile>
#include <QFileInfo>
#include <QMessageBox>
#include <QObject>
#include <QDir>
2014-05-10 05:23:32 +05:30
#include <qresource.h>
2014-05-09 00:50:10 +05:30
#include <modutils.h>
2015-01-28 03:01:07 +05:30
#include <pathutils.h>
2014-05-09 00:50:10 +05:30
2014-05-10 05:23:32 +05:30
#include "MultiMC.h"
#include "logic/minecraft/VersionBuilder.h"
2015-01-28 03:01:07 +05:30
#include "logic/minecraft/MinecraftProfile.h"
2014-05-09 00:50:10 +05:30
#include "logic/minecraft/OneSixRule.h"
2015-01-28 03:01:07 +05:30
#include "logic/minecraft/ProfilePatch.h"
2014-05-09 00:50:10 +05:30
#include "logic/minecraft/VersionFile.h"
2014-05-10 05:23:32 +05:30
#include "VersionBuildError.h"
#include "MinecraftVersionList.h"
2015-01-28 03:01:07 +05:30
#include "ProfileUtils.h"
2014-05-09 00:50:10 +05:30
#include "logic/OneSixInstance.h"
#include "logic/MMCJson.h"
#include "logger/QsLog.h"
VersionBuilder::VersionBuilder()
{
}
2015-01-28 03:01:07 +05:30
void VersionBuilder::build(MinecraftProfile *version, OneSixInstance *instance)
{
VersionBuilder builder;
builder.m_version = version;
builder.m_instance = instance;
2014-05-10 05:23:32 +05:30
builder.buildInternal();
}
2015-01-28 03:01:07 +05:30
void VersionBuilder::readJsonAndApplyToVersion(MinecraftProfile *version, const QJsonObject &obj)
{
VersionBuilder builder;
builder.m_version = version;
builder.m_instance = 0;
builder.readJsonAndApply(obj);
}
void VersionBuilder::readJsonAndApply(const QJsonObject &obj)
{
m_version->clear();
2014-03-05 06:20:05 +05:30
auto file = VersionFile::fromJson(QJsonDocument(obj), QString(), false);
2014-03-05 06:20:05 +05:30
file->applyTo(m_version);
2015-01-28 03:01:07 +05:30
m_version->appendPatch(file);
}
2015-01-28 03:01:07 +05:30
void VersionBuilder::readInstancePatches()
{
2015-01-28 03:01:07 +05:30
}
2014-03-05 06:20:05 +05:30
2015-01-28 03:01:07 +05:30
void VersionBuilder::buildInternal()
{
2014-03-05 06:20:05 +05:30
}
2014-03-02 03:36:47 +05:30