diff options
Diffstat (limited to 'logic/minecraft')
-rw-r--r-- | logic/minecraft/MinecraftProfile.cpp | 6 | ||||
-rw-r--r-- | logic/minecraft/MinecraftVersion.cpp | 1 | ||||
-rw-r--r-- | logic/minecraft/MinecraftVersionList.cpp | 1 | ||||
-rw-r--r-- | logic/minecraft/VersionBuilder.cpp | 83 | ||||
-rw-r--r-- | logic/minecraft/VersionBuilder.h | 43 |
5 files changed, 4 insertions, 130 deletions
diff --git a/logic/minecraft/MinecraftProfile.cpp b/logic/minecraft/MinecraftProfile.cpp index f38f8378..e9ff87d8 100644 --- a/logic/minecraft/MinecraftProfile.cpp +++ b/logic/minecraft/MinecraftProfile.cpp @@ -20,7 +20,6 @@ #include <pathutils.h> #include "minecraft/MinecraftProfile.h" -#include "minecraft/VersionBuilder.h" #include "ProfileUtils.h" #include "NullProfileStrategy.h" @@ -241,7 +240,10 @@ std::shared_ptr<MinecraftProfile> MinecraftProfile::fromJson(const QJsonObject & std::shared_ptr<MinecraftProfile> version(new MinecraftProfile(new NullProfileStrategy())); try { - VersionBuilder::readJsonAndApplyToVersion(version.get(), obj); + version->clear(); + auto file = VersionFile::fromJson(QJsonDocument(obj), QString(), false); + file->applyTo(version.get()); + version->appendPatch(file); } catch(MMCError & err) { diff --git a/logic/minecraft/MinecraftVersion.cpp b/logic/minecraft/MinecraftVersion.cpp index 977a1892..5a759421 100644 --- a/logic/minecraft/MinecraftVersion.cpp +++ b/logic/minecraft/MinecraftVersion.cpp @@ -1,7 +1,6 @@ #include "MinecraftVersion.h" #include "MinecraftProfile.h" #include "VersionBuildError.h" -#include "VersionBuilder.h" #include "ProfileUtils.h" #include "settings/SettingsObject.h" diff --git a/logic/minecraft/MinecraftVersionList.cpp b/logic/minecraft/MinecraftVersionList.cpp index 34c1e3d4..7b3325e0 100644 --- a/logic/minecraft/MinecraftVersionList.cpp +++ b/logic/minecraft/MinecraftVersionList.cpp @@ -26,7 +26,6 @@ #include "ParseUtils.h" #include "ProfileUtils.h" -#include "VersionBuilder.h" #include "VersionFilterData.h" #include <pathutils.h> diff --git a/logic/minecraft/VersionBuilder.cpp b/logic/minecraft/VersionBuilder.cpp deleted file mode 100644 index 4d58b060..00000000 --- a/logic/minecraft/VersionBuilder.cpp +++ /dev/null @@ -1,83 +0,0 @@ -/* 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> -#include <qresource.h> -#include <modutils.h> -#include <pathutils.h> - -#include "minecraft/VersionBuilder.h" -#include "minecraft/MinecraftProfile.h" -#include "minecraft/OneSixRule.h" -#include "minecraft/ProfilePatch.h" -#include "minecraft/VersionFile.h" -#include "VersionBuildError.h" -#include "MinecraftVersionList.h" -#include "ProfileUtils.h" - -#include "minecraft/OneSixInstance.h" -#include "MMCJson.h" - -#include <QDebug> - -VersionBuilder::VersionBuilder() -{ -} - -void VersionBuilder::build(MinecraftProfile *version, OneSixInstance *instance) -{ - VersionBuilder builder; - builder.m_version = version; - builder.m_instance = instance; - builder.buildInternal(); -} - -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(); - - auto file = VersionFile::fromJson(QJsonDocument(obj), QString(), false); - - file->applyTo(m_version); - m_version->appendPatch(file); -} - - -void VersionBuilder::readInstancePatches() -{ - -} - -void VersionBuilder::buildInternal() -{ - -} - diff --git a/logic/minecraft/VersionBuilder.h b/logic/minecraft/VersionBuilder.h deleted file mode 100644 index b2d23da5..00000000 --- a/logic/minecraft/VersionBuilder.h +++ /dev/null @@ -1,43 +0,0 @@ -/* 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. - */ - -#pragma once - -#include <QString> -#include <QMap> -#include "VersionFile.h" - -class MinecraftProfile; -class OneSixInstance; -class QJsonObject; -class QFileInfo; - -class VersionBuilder -{ - VersionBuilder(); -public: - static void build(MinecraftProfile *version, OneSixInstance *instance); - static void readJsonAndApplyToVersion(MinecraftProfile *version, const QJsonObject &obj); - -private: - MinecraftProfile *m_version; - OneSixInstance *m_instance; - - void buildInternal(); - - void readInstancePatches(); - - void readJsonAndApply(const QJsonObject &obj); -}; |