2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-02-01 19:22:21 +05:30
|
|
|
#include <QFile>
|
2016-03-26 21:26:57 +05:30
|
|
|
#include <QCryptographicHash>
|
2016-03-13 04:53:45 +05:30
|
|
|
#include <Version.h>
|
2014-03-15 00:21:56 +05:30
|
|
|
#include <QDir>
|
2014-05-19 05:52:09 +05:30
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonArray>
|
2015-05-28 23:08:29 +05:30
|
|
|
#include <QDebug>
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "minecraft/MinecraftProfile.h"
|
2015-05-28 23:08:29 +05:30
|
|
|
#include "Exception.h"
|
2017-07-24 12:31:37 +05:30
|
|
|
#include <minecraft/OneSixVersionFormat.h>
|
|
|
|
#include <FileSystem.h>
|
|
|
|
#include <QSaveFile>
|
|
|
|
#include <Env.h>
|
|
|
|
#include <meta/Index.h>
|
|
|
|
#include <minecraft/MinecraftInstance.h>
|
|
|
|
#include <QUuid>
|
|
|
|
|
|
|
|
MinecraftProfile::MinecraftProfile(MinecraftInstance * instance)
|
2015-01-28 03:01:07 +05:30
|
|
|
: QAbstractListModel()
|
2014-01-24 22:42:02 +05:30
|
|
|
{
|
2017-07-24 12:31:37 +05:30
|
|
|
m_instance = instance;
|
2014-01-24 22:42:02 +05:30
|
|
|
clear();
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
|
|
|
|
2016-08-19 12:34:58 +05:30
|
|
|
MinecraftProfile::~MinecraftProfile()
|
|
|
|
{
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::reload()
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-28 00:47:29 +05:30
|
|
|
beginResetModel();
|
2017-07-24 12:31:37 +05:30
|
|
|
load_internal();
|
2016-03-18 19:32:54 +05:30
|
|
|
reapplyPatches();
|
2014-01-28 00:47:29 +05:30
|
|
|
endResetModel();
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
void MinecraftProfile::clear()
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
m_minecraftVersion.clear();
|
|
|
|
m_minecraftVersionType.clear();
|
2016-03-21 06:49:23 +05:30
|
|
|
m_minecraftAssets.reset();
|
2016-03-18 19:32:54 +05:30
|
|
|
m_minecraftArguments.clear();
|
|
|
|
m_tweakers.clear();
|
|
|
|
m_mainClass.clear();
|
|
|
|
m_appletClass.clear();
|
|
|
|
m_libraries.clear();
|
|
|
|
m_traits.clear();
|
|
|
|
m_jarMods.clear();
|
2017-04-18 02:21:30 +05:30
|
|
|
m_mainJar.reset();
|
2017-03-27 07:04:39 +05:30
|
|
|
m_problemSeverity = ProblemSeverity::None;
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
void MinecraftProfile::clearPatches()
|
2014-02-01 19:22:21 +05:30
|
|
|
{
|
2015-01-28 03:01:07 +05:30
|
|
|
beginResetModel();
|
2016-03-18 19:32:54 +05:30
|
|
|
m_patches.clear();
|
2015-01-28 03:01:07 +05:30
|
|
|
endResetModel();
|
2014-02-01 19:22:21 +05:30
|
|
|
}
|
2014-03-31 03:49:43 +05:30
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
void MinecraftProfile::appendPatch(ProfilePatchPtr patch)
|
2014-05-05 03:40:59 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
int index = m_patches.size();
|
2015-01-28 03:01:07 +05:30
|
|
|
beginInsertRows(QModelIndex(), index, index);
|
2016-03-18 19:32:54 +05:30
|
|
|
m_patches.append(patch);
|
2015-01-28 03:01:07 +05:30
|
|
|
endInsertRows();
|
2014-05-05 03:40:59 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
bool MinecraftProfile::remove(const int index)
|
2014-03-15 00:21:56 +05:30
|
|
|
{
|
2015-05-18 03:08:28 +05:30
|
|
|
auto patch = versionPatch(index);
|
|
|
|
if (!patch->isRemovable())
|
2015-04-14 02:56:52 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
qDebug() << "Patch" << patch->getID() << "is non-removable";
|
2014-05-05 03:40:59 +05:30
|
|
|
return false;
|
2015-04-14 02:56:52 +05:30
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
if(!removePatch_internal(patch))
|
2014-03-15 00:21:56 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
qCritical() << "Patch" << patch->getID() << "could not be removed";
|
2014-05-05 03:40:59 +05:30
|
|
|
return false;
|
2014-03-15 00:21:56 +05:30
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2014-05-20 04:47:54 +05:30
|
|
|
beginRemoveRows(QModelIndex(), index, index);
|
2016-03-18 19:32:54 +05:30
|
|
|
m_patches.removeAt(index);
|
2014-05-20 04:47:54 +05:30
|
|
|
endRemoveRows();
|
2016-03-18 19:32:54 +05:30
|
|
|
reapplyPatches();
|
2014-05-20 04:47:54 +05:30
|
|
|
saveCurrentOrder();
|
2014-05-05 03:40:59 +05:30
|
|
|
return true;
|
2014-03-15 00:21:56 +05:30
|
|
|
}
|
2014-02-01 19:22:21 +05:30
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
bool MinecraftProfile::remove(const QString id)
|
2014-03-31 03:49:43 +05:30
|
|
|
{
|
|
|
|
int i = 0;
|
2016-03-18 19:32:54 +05:30
|
|
|
for (auto patch : m_patches)
|
2014-03-31 03:49:43 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
if (patch->getID() == id)
|
2014-03-31 03:49:43 +05:30
|
|
|
{
|
|
|
|
return remove(i);
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-05-18 03:08:28 +05:30
|
|
|
bool MinecraftProfile::customize(int index)
|
|
|
|
{
|
|
|
|
auto patch = versionPatch(index);
|
|
|
|
if (!patch->isCustomizable())
|
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
qDebug() << "Patch" << patch->getID() << "is not customizable";
|
2015-05-18 03:08:28 +05:30
|
|
|
return false;
|
|
|
|
}
|
2017-07-24 12:31:37 +05:30
|
|
|
if(!customizePatch_internal(patch))
|
2015-05-18 03:08:28 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
qCritical() << "Patch" << patch->getID() << "could not be customized";
|
2015-05-18 03:08:28 +05:30
|
|
|
return false;
|
|
|
|
}
|
2016-03-18 19:32:54 +05:30
|
|
|
reapplyPatches();
|
2015-05-18 03:08:28 +05:30
|
|
|
saveCurrentOrder();
|
|
|
|
// FIXME: maybe later in unstable
|
|
|
|
// emit dataChanged(createIndex(index, 0), createIndex(index, columnCount(QModelIndex()) - 1));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-09-26 07:34:09 +05:30
|
|
|
bool MinecraftProfile::revertToBase(int index)
|
2015-05-18 03:08:28 +05:30
|
|
|
{
|
|
|
|
auto patch = versionPatch(index);
|
|
|
|
if (!patch->isRevertible())
|
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
qDebug() << "Patch" << patch->getID() << "is not revertible";
|
2015-05-18 03:08:28 +05:30
|
|
|
return false;
|
|
|
|
}
|
2017-07-24 12:31:37 +05:30
|
|
|
if(!revertPatch_internal(patch))
|
2015-05-18 03:08:28 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
qCritical() << "Patch" << patch->getID() << "could not be reverted";
|
2015-05-18 03:08:28 +05:30
|
|
|
return false;
|
|
|
|
}
|
2016-03-18 19:32:54 +05:30
|
|
|
reapplyPatches();
|
2015-05-18 03:08:28 +05:30
|
|
|
saveCurrentOrder();
|
|
|
|
// FIXME: maybe later in unstable
|
|
|
|
// emit dataChanged(createIndex(index, 0), createIndex(index, columnCount(QModelIndex()) - 1));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
ProfilePatchPtr MinecraftProfile::versionPatch(const QString &id)
|
2014-02-01 19:22:21 +05:30
|
|
|
{
|
2017-04-23 06:01:13 +05:30
|
|
|
for (auto patch : m_patches)
|
2014-02-01 19:22:21 +05:30
|
|
|
{
|
2017-04-23 06:01:13 +05:30
|
|
|
if (patch->getID() == id)
|
2014-03-15 00:21:56 +05:30
|
|
|
{
|
2017-04-23 06:01:13 +05:30
|
|
|
return patch;
|
2014-03-15 00:21:56 +05:30
|
|
|
}
|
2014-02-01 19:22:21 +05:30
|
|
|
}
|
2015-05-18 03:08:28 +05:30
|
|
|
return nullptr;
|
2014-02-01 19:22:21 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
ProfilePatchPtr MinecraftProfile::versionPatch(int index)
|
2014-05-10 05:23:32 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
if(index < 0 || index >= m_patches.size())
|
2015-05-18 03:08:28 +05:30
|
|
|
return nullptr;
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_patches[index];
|
2014-05-10 05:23:32 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
bool MinecraftProfile::isVanilla()
|
2014-03-31 03:49:43 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
for(auto patchptr: m_patches)
|
2014-08-11 05:47:48 +05:30
|
|
|
{
|
|
|
|
if(patchptr->isCustom())
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-05 03:40:59 +05:30
|
|
|
return true;
|
2014-04-23 05:57:40 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
bool MinecraftProfile::revertToVanilla()
|
2014-04-23 05:57:40 +05:30
|
|
|
{
|
2014-06-09 00:56:48 +05:30
|
|
|
// remove patches, if present
|
2016-03-18 19:32:54 +05:30
|
|
|
auto VersionPatchesCopy = m_patches;
|
2015-05-18 03:08:28 +05:30
|
|
|
for(auto & it: VersionPatchesCopy)
|
2014-04-23 05:57:40 +05:30
|
|
|
{
|
2015-05-18 03:08:28 +05:30
|
|
|
if (!it->isCustom())
|
2014-04-23 05:57:40 +05:30
|
|
|
{
|
2015-05-18 03:08:28 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(it->isRevertible() || it->isRemovable())
|
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
if(!remove(it->getID()))
|
2014-05-05 03:40:59 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
qWarning() << "Couldn't remove" << it->getID() << "from profile!";
|
2016-03-18 19:32:54 +05:30
|
|
|
reapplyPatches();
|
2014-05-20 04:47:54 +05:30
|
|
|
saveCurrentOrder();
|
2014-05-05 03:40:59 +05:30
|
|
|
return false;
|
|
|
|
}
|
2014-04-23 05:57:40 +05:30
|
|
|
}
|
|
|
|
}
|
2016-03-18 19:32:54 +05:30
|
|
|
reapplyPatches();
|
2014-05-20 04:47:54 +05:30
|
|
|
saveCurrentOrder();
|
2014-04-23 05:57:40 +05:30
|
|
|
return true;
|
2014-06-09 00:56:48 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
QVariant MinecraftProfile::data(const QModelIndex &index, int role) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
if (!index.isValid())
|
2013-09-16 04:24:39 +05:30
|
|
|
return QVariant();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
int row = index.row();
|
|
|
|
int column = index.column();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2016-03-18 19:32:54 +05:30
|
|
|
if (row < 0 || row >= m_patches.size())
|
2013-09-16 04:24:39 +05:30
|
|
|
return QVariant();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2016-03-18 19:32:54 +05:30
|
|
|
auto patch = m_patches.at(row);
|
2016-02-21 06:14:27 +05:30
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
if (role == Qt::DisplayRole)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
switch (column)
|
|
|
|
{
|
|
|
|
case 0:
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_patches.at(row)->getName();
|
2014-02-01 19:22:21 +05:30
|
|
|
case 1:
|
2015-05-15 04:40:08 +05:30
|
|
|
{
|
|
|
|
if(patch->isCustom())
|
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
return QString("%1 (Custom)").arg(patch->getVersion());
|
2015-05-15 04:40:08 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
return patch->getVersion();
|
2015-05-15 04:40:08 +05:30
|
|
|
}
|
|
|
|
}
|
2014-02-01 19:22:21 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
}
|
2016-02-21 06:14:27 +05:30
|
|
|
if(role == Qt::DecorationRole)
|
|
|
|
{
|
|
|
|
switch(column)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
auto severity = patch->getProblemSeverity();
|
|
|
|
switch (severity)
|
|
|
|
{
|
2017-03-27 07:04:39 +05:30
|
|
|
case ProblemSeverity::Warning:
|
2016-02-21 06:14:27 +05:30
|
|
|
return "warning";
|
2017-03-27 07:04:39 +05:30
|
|
|
case ProblemSeverity::Error:
|
2016-02-21 06:14:27 +05:30
|
|
|
return "error";
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-01 19:22:21 +05:30
|
|
|
return QVariant();
|
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
QVariant MinecraftProfile::headerData(int section, Qt::Orientation orientation, int role) const
|
2014-02-01 19:22:21 +05:30
|
|
|
{
|
|
|
|
if (orientation == Qt::Horizontal)
|
|
|
|
{
|
|
|
|
if (role == Qt::DisplayRole)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
return tr("Name");
|
|
|
|
case 1:
|
|
|
|
return tr("Version");
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
Qt::ItemFlags MinecraftProfile::flags(const QModelIndex &index) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
if (!index.isValid())
|
2013-09-16 04:24:39 +05:30
|
|
|
return Qt::NoItemFlags;
|
2014-01-28 00:47:29 +05:30
|
|
|
return Qt::ItemIsSelectable | Qt::ItemIsEnabled;
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
int MinecraftProfile::rowCount(const QModelIndex &parent) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_patches.size();
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
int MinecraftProfile::columnCount(const QModelIndex &parent) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
return 2;
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
2014-03-15 00:21:56 +05:30
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
void MinecraftProfile::saveCurrentOrder() const
|
2014-03-15 00:21:56 +05:30
|
|
|
{
|
2015-01-28 03:01:07 +05:30
|
|
|
ProfileUtils::PatchOrder order;
|
2016-03-18 19:32:54 +05:30
|
|
|
for(auto item: m_patches)
|
2014-05-19 05:52:09 +05:30
|
|
|
{
|
|
|
|
if(!item->isMoveable())
|
|
|
|
continue;
|
2016-03-13 04:53:45 +05:30
|
|
|
order.append(item->getID());
|
2014-05-19 05:52:09 +05:30
|
|
|
}
|
2017-07-24 12:31:37 +05:30
|
|
|
saveOrder_internal(order);
|
2014-03-15 00:21:56 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
void MinecraftProfile::move(const int index, const MoveDirection direction)
|
2014-03-15 00:21:56 +05:30
|
|
|
{
|
|
|
|
int theirIndex;
|
|
|
|
if (direction == MoveUp)
|
|
|
|
{
|
2014-05-19 05:52:09 +05:30
|
|
|
theirIndex = index - 1;
|
2014-03-15 00:21:56 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
theirIndex = index + 1;
|
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2016-03-18 19:32:54 +05:30
|
|
|
if (index < 0 || index >= m_patches.size())
|
2014-05-19 05:52:09 +05:30
|
|
|
return;
|
|
|
|
if (theirIndex >= rowCount())
|
|
|
|
theirIndex = rowCount() - 1;
|
|
|
|
if (theirIndex == -1)
|
|
|
|
theirIndex = rowCount() - 1;
|
|
|
|
if (index == theirIndex)
|
|
|
|
return;
|
|
|
|
int togap = theirIndex > index ? theirIndex + 1 : theirIndex;
|
|
|
|
|
2014-05-10 05:23:32 +05:30
|
|
|
auto from = versionPatch(index);
|
|
|
|
auto to = versionPatch(theirIndex);
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2014-05-19 05:52:09 +05:30
|
|
|
if (!from || !to || !to->isMoveable() || !from->isMoveable())
|
2014-03-15 00:21:56 +05:30
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-05-19 05:52:09 +05:30
|
|
|
beginMoveRows(QModelIndex(), index, index, QModelIndex(), togap);
|
2016-03-18 19:32:54 +05:30
|
|
|
m_patches.swap(index, theirIndex);
|
2014-03-15 00:21:56 +05:30
|
|
|
endMoveRows();
|
2016-03-18 19:32:54 +05:30
|
|
|
reapplyPatches();
|
2014-05-20 04:47:54 +05:30
|
|
|
saveCurrentOrder();
|
2014-03-15 00:21:56 +05:30
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
void MinecraftProfile::resetOrder()
|
2014-03-15 00:21:56 +05:30
|
|
|
{
|
2017-07-24 12:31:37 +05:30
|
|
|
resetOrder_internal();
|
2015-01-28 03:01:07 +05:30
|
|
|
reload();
|
2014-03-15 00:21:56 +05:30
|
|
|
}
|
|
|
|
|
2016-03-18 19:32:54 +05:30
|
|
|
bool MinecraftProfile::reapplyPatches()
|
2015-05-31 23:29:07 +05:30
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
clear();
|
|
|
|
for(auto file: m_patches)
|
|
|
|
{
|
2017-04-24 05:00:51 +05:30
|
|
|
qDebug() << "Applying" << file->getID() << (file->getProblemSeverity() == ProblemSeverity::Error ? "ERROR" : "GOOD");
|
2016-03-18 19:32:54 +05:30
|
|
|
file->applyTo(this);
|
|
|
|
}
|
2015-05-31 23:29:07 +05:30
|
|
|
}
|
2015-05-28 23:08:29 +05:30
|
|
|
catch (Exception & error)
|
2015-05-31 23:29:07 +05:30
|
|
|
{
|
|
|
|
clear();
|
|
|
|
qWarning() << "Couldn't apply profile patches because: " << error.cause();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-13 04:53:45 +05:30
|
|
|
static void applyString(const QString & from, QString & to)
|
2014-03-20 03:53:59 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
if(from.isEmpty())
|
|
|
|
return;
|
|
|
|
to = from;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::applyMinecraftVersion(const QString& id)
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
applyString(id, this->m_minecraftVersion);
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::applyAppletClass(const QString& appletClass)
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
applyString(appletClass, this->m_appletClass);
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::applyMainClass(const QString& mainClass)
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
applyString(mainClass, this->m_mainClass);
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
2016-03-13 06:58:55 +05:30
|
|
|
void MinecraftProfile::applyMinecraftArguments(const QString& minecraftArguments)
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
applyString(minecraftArguments, this->m_minecraftArguments);
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::applyMinecraftVersionType(const QString& type)
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
applyString(type, this->m_minecraftVersionType);
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
2016-03-21 06:49:23 +05:30
|
|
|
void MinecraftProfile::applyMinecraftAssets(MojangAssetIndexInfo::Ptr assets)
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
2016-03-21 06:49:23 +05:30
|
|
|
if(assets)
|
|
|
|
{
|
|
|
|
m_minecraftAssets = assets;
|
|
|
|
}
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::applyTraits(const QSet<QString>& traits)
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
this->m_traits.unite(traits);
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::applyTweakers(const QStringList& tweakers)
|
|
|
|
{
|
|
|
|
// FIXME: check for dupes?
|
|
|
|
// FIXME: does order matter?
|
|
|
|
for (auto tweaker : tweakers)
|
2014-03-20 03:53:59 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
this->m_tweakers += tweaker;
|
2014-03-20 03:53:59 +05:30
|
|
|
}
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
2017-04-18 02:21:30 +05:30
|
|
|
void MinecraftProfile::applyJarMods(const QList<LibraryPtr>& jarMods)
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
this->m_jarMods.append(jarMods);
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
2017-04-22 01:53:00 +05:30
|
|
|
static int findLibraryByName(QList<LibraryPtr> *haystack, const GradleSpecifier &needle)
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
|
|
|
int retval = -1;
|
2017-04-22 01:53:00 +05:30
|
|
|
for (int i = 0; i < haystack->size(); ++i)
|
2014-03-20 03:53:59 +05:30
|
|
|
{
|
2017-04-22 01:53:00 +05:30
|
|
|
if (haystack->at(i)->rawName().matchName(needle))
|
2014-03-20 03:53:59 +05:30
|
|
|
{
|
2016-03-13 04:53:45 +05:30
|
|
|
// only one is allowed.
|
|
|
|
if (retval != -1)
|
|
|
|
return -1;
|
|
|
|
retval = i;
|
2014-03-20 03:53:59 +05:30
|
|
|
}
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2017-04-22 01:53:00 +05:30
|
|
|
void MinecraftProfile::applyMods(const QList<LibraryPtr>& mods)
|
|
|
|
{
|
|
|
|
QList<LibraryPtr> * list = &m_mods;
|
|
|
|
for(auto & mod: mods)
|
|
|
|
{
|
|
|
|
auto modCopy = Library::limitedCopy(mod);
|
|
|
|
|
|
|
|
// find the mod by name.
|
|
|
|
const int index = findLibraryByName(list, mod->rawName());
|
|
|
|
// mod not found? just add it.
|
|
|
|
if (index < 0)
|
|
|
|
{
|
|
|
|
list->append(modCopy);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto existingLibrary = list->at(index);
|
|
|
|
// if we are higher it means we should update
|
|
|
|
if (Version(mod->version()) > Version(existingLibrary->version()))
|
|
|
|
{
|
|
|
|
list->replace(index, modCopy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-13 06:58:55 +05:30
|
|
|
void MinecraftProfile::applyLibrary(LibraryPtr library)
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
2016-03-13 06:58:55 +05:30
|
|
|
if(!library->isActive())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2017-04-07 03:01:23 +05:30
|
|
|
|
|
|
|
QList<LibraryPtr> * list = &m_libraries;
|
|
|
|
if(library->isNative())
|
|
|
|
{
|
|
|
|
list = &m_nativeLibraries;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto libraryCopy = Library::limitedCopy(library);
|
|
|
|
|
2016-03-26 21:26:57 +05:30
|
|
|
// find the library by name.
|
2017-04-22 01:53:00 +05:30
|
|
|
const int index = findLibraryByName(list, library->rawName());
|
2016-03-26 21:26:57 +05:30
|
|
|
// library not found? just add it.
|
|
|
|
if (index < 0)
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
2017-04-07 03:01:23 +05:30
|
|
|
list->append(libraryCopy);
|
2016-03-26 21:26:57 +05:30
|
|
|
return;
|
2016-03-13 06:58:55 +05:30
|
|
|
}
|
2017-04-07 03:01:23 +05:30
|
|
|
|
|
|
|
auto existingLibrary = list->at(index);
|
2016-03-26 21:26:57 +05:30
|
|
|
// if we are higher it means we should update
|
|
|
|
if (Version(library->version()) > Version(existingLibrary->version()))
|
2016-03-13 06:58:55 +05:30
|
|
|
{
|
2017-04-07 03:01:23 +05:30
|
|
|
list->replace(index, libraryCopy);
|
2016-03-18 19:32:54 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-13 12:58:25 +05:30
|
|
|
const LibraryPtr MinecraftProfile::getMainJar() const
|
|
|
|
{
|
|
|
|
return m_mainJar;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::applyMainJar(LibraryPtr jar)
|
|
|
|
{
|
|
|
|
if(jar)
|
|
|
|
{
|
|
|
|
m_mainJar = jar;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-18 19:32:54 +05:30
|
|
|
void MinecraftProfile::applyProblemSeverity(ProblemSeverity severity)
|
|
|
|
{
|
|
|
|
if (m_problemSeverity < severity)
|
|
|
|
{
|
|
|
|
m_problemSeverity = severity;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString MinecraftProfile::getMinecraftVersion() const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_minecraftVersion;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftProfile::getAppletClass() const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_appletClass;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftProfile::getMainClass() const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_mainClass;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
const QSet<QString> &MinecraftProfile::getTraits() const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_traits;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
const QStringList & MinecraftProfile::getTweakers() const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_tweakers;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftProfile::hasTrait(const QString& trait) const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_traits.contains(trait);
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
2016-03-18 19:32:54 +05:30
|
|
|
ProblemSeverity MinecraftProfile::getProblemSeverity() const
|
|
|
|
{
|
|
|
|
return m_problemSeverity;
|
|
|
|
}
|
2016-03-13 04:53:45 +05:30
|
|
|
|
|
|
|
QString MinecraftProfile::getMinecraftVersionType() const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_minecraftVersionType;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
2016-03-21 06:49:23 +05:30
|
|
|
std::shared_ptr<MojangAssetIndexInfo> MinecraftProfile::getMinecraftAssets() const
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
2016-03-21 06:49:23 +05:30
|
|
|
if(!m_minecraftAssets)
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
2016-03-21 06:49:23 +05:30
|
|
|
return std::make_shared<MojangAssetIndexInfo>("legacy");
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_minecraftAssets;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftProfile::getMinecraftArguments() const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_minecraftArguments;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
2017-04-18 02:21:30 +05:30
|
|
|
const QList<LibraryPtr> & MinecraftProfile::getJarMods() const
|
2016-03-13 04:53:45 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_jarMods;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
const QList<LibraryPtr> & MinecraftProfile::getLibraries() const
|
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
return m_libraries;
|
2016-03-13 04:53:45 +05:30
|
|
|
}
|
|
|
|
|
2017-04-07 03:01:23 +05:30
|
|
|
const QList<LibraryPtr> & MinecraftProfile::getNativeLibraries() const
|
|
|
|
{
|
|
|
|
return m_nativeLibraries;
|
|
|
|
}
|
|
|
|
|
2017-04-13 12:58:25 +05:30
|
|
|
void MinecraftProfile::getLibraryFiles(const QString& architecture, QStringList& jars, QStringList& nativeJars, const QString& overridePath, const QString& tempPath) const
|
2016-06-16 05:50:23 +05:30
|
|
|
{
|
|
|
|
QStringList native32, native64;
|
|
|
|
jars.clear();
|
|
|
|
nativeJars.clear();
|
|
|
|
for (auto lib : getLibraries())
|
|
|
|
{
|
2016-10-02 03:56:10 +05:30
|
|
|
lib->getApplicableFiles(currentSystem, jars, nativeJars, native32, native64, overridePath);
|
2017-04-07 03:01:23 +05:30
|
|
|
}
|
2017-04-13 12:58:25 +05:30
|
|
|
// NOTE: order is important here, add main jar last to the lists
|
|
|
|
if(m_mainJar)
|
|
|
|
{
|
|
|
|
// FIXME: HACK!! jar modding is weird and unsystematic!
|
|
|
|
if(m_jarMods.size())
|
|
|
|
{
|
|
|
|
QDir tempDir(tempPath);
|
|
|
|
jars.append(tempDir.absoluteFilePath("minecraft.jar"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_mainJar->getApplicableFiles(currentSystem, jars, nativeJars, native32, native64, overridePath);
|
|
|
|
}
|
|
|
|
}
|
2017-04-07 03:01:23 +05:30
|
|
|
for (auto lib : getNativeLibraries())
|
|
|
|
{
|
|
|
|
lib->getApplicableFiles(currentSystem, jars, nativeJars, native32, native64, overridePath);
|
2016-06-16 05:50:23 +05:30
|
|
|
}
|
|
|
|
if(architecture == "32")
|
|
|
|
{
|
|
|
|
nativeJars.append(native32);
|
|
|
|
}
|
|
|
|
else if(architecture == "64")
|
|
|
|
{
|
|
|
|
nativeJars.append(native64);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
void MinecraftProfile::installJarMods(QStringList selectedFiles)
|
2014-05-19 05:52:09 +05:30
|
|
|
{
|
2017-07-24 12:31:37 +05:30
|
|
|
installJarMods_internal(selectedFiles);
|
2014-05-19 05:52:09 +05:30
|
|
|
}
|
|
|
|
|
2017-08-07 04:16:29 +05:30
|
|
|
void MinecraftProfile::installCustomJar(QString selectedFile)
|
|
|
|
{
|
2017-07-24 12:31:37 +05:30
|
|
|
installCustomJar_internal(selectedFile);
|
2017-08-07 04:16:29 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
/*
|
|
|
|
* TODO: get rid of this. Get rid of all order numbers.
|
|
|
|
*/
|
|
|
|
int MinecraftProfile::getFreeOrderNumber()
|
2014-05-19 05:52:09 +05:30
|
|
|
{
|
|
|
|
int largest = 100;
|
|
|
|
// yes, I do realize this is dumb. The order thing itself is dumb. and to be removed next.
|
2016-03-18 19:32:54 +05:30
|
|
|
for(auto thing: m_patches)
|
2014-05-19 05:52:09 +05:30
|
|
|
{
|
|
|
|
int order = thing->getOrder();
|
|
|
|
if(order > largest)
|
|
|
|
largest = order;
|
|
|
|
}
|
|
|
|
return largest + 1;
|
|
|
|
}
|
2017-07-24 12:31:37 +05:30
|
|
|
|
2017-09-10 16:11:32 +05:30
|
|
|
void MinecraftProfile::upgradeDeprecatedFiles_internal()
|
|
|
|
{
|
|
|
|
auto versionJsonPath = FS::PathCombine(m_instance->instanceRoot(), "version.json");
|
|
|
|
auto customJsonPath = FS::PathCombine(m_instance->instanceRoot(), "custom.json");
|
|
|
|
auto mcJson = FS::PathCombine(m_instance->instanceRoot(), "patches" , "net.minecraft.json");
|
|
|
|
|
|
|
|
QString sourceFile;
|
|
|
|
QString renameFile;
|
|
|
|
|
|
|
|
// convert old crap.
|
|
|
|
if(QFile::exists(customJsonPath))
|
|
|
|
{
|
|
|
|
sourceFile = customJsonPath;
|
|
|
|
renameFile = versionJsonPath;
|
|
|
|
}
|
|
|
|
else if(QFile::exists(versionJsonPath))
|
|
|
|
{
|
|
|
|
sourceFile = versionJsonPath;
|
|
|
|
}
|
|
|
|
if(!sourceFile.isEmpty() && !QFile::exists(mcJson))
|
|
|
|
{
|
|
|
|
if(!FS::ensureFilePathExists(mcJson))
|
|
|
|
{
|
|
|
|
qWarning() << "Couldn't create patches folder for" << m_instance->name();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(!renameFile.isEmpty() && QFile::exists(renameFile))
|
|
|
|
{
|
|
|
|
if(!QFile::rename(renameFile, renameFile + ".old"))
|
|
|
|
{
|
|
|
|
qWarning() << "Couldn't rename" << renameFile << "to" << renameFile + ".old" << "in" << m_instance->name();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
auto file = ProfileUtils::parseJsonFile(QFileInfo(sourceFile), false);
|
|
|
|
ProfileUtils::removeLwjglFromPatch(file);
|
|
|
|
file->uid = "net.minecraft";
|
|
|
|
file->version = file->minecraftVersion;
|
|
|
|
file->name = "Minecraft";
|
|
|
|
auto data = OneSixVersionFormat::versionFileToJson(file, false).toJson();
|
|
|
|
QSaveFile newPatchFile(mcJson);
|
|
|
|
if(!newPatchFile.open(QIODevice::WriteOnly))
|
|
|
|
{
|
|
|
|
newPatchFile.cancelWriting();
|
|
|
|
qWarning() << "Couldn't open main patch for writing in" << m_instance->name();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
newPatchFile.write(data);
|
|
|
|
if(!newPatchFile.commit())
|
|
|
|
{
|
|
|
|
qWarning() << "Couldn't save main patch in" << m_instance->name();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(!QFile::rename(sourceFile, sourceFile + ".old"))
|
|
|
|
{
|
|
|
|
qWarning() << "Couldn't rename" << sourceFile << "to" << sourceFile + ".old" << "in" << m_instance->name();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
void MinecraftProfile::loadDefaultBuiltinPatches_internal()
|
|
|
|
{
|
|
|
|
auto addBuiltinPatch = [&](const QString &uid, const QString intendedVersion, int order)
|
|
|
|
{
|
|
|
|
auto jsonFilePath = FS::PathCombine(m_instance->instanceRoot(), "patches" , uid + ".json");
|
|
|
|
// load up the base minecraft patch
|
|
|
|
ProfilePatchPtr profilePatch;
|
|
|
|
if(QFile::exists(jsonFilePath))
|
|
|
|
{
|
|
|
|
auto file = ProfileUtils::parseJsonFile(QFileInfo(jsonFilePath), false);
|
|
|
|
if(file->version.isEmpty())
|
|
|
|
{
|
|
|
|
file->version = intendedVersion;
|
|
|
|
}
|
|
|
|
profilePatch = std::make_shared<ProfilePatch>(file, jsonFilePath);
|
|
|
|
profilePatch->setVanilla(false);
|
|
|
|
profilePatch->setRevertible(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto metaVersion = ENV.metadataIndex()->get(uid, intendedVersion);
|
|
|
|
profilePatch = std::make_shared<ProfilePatch>(metaVersion);
|
|
|
|
profilePatch->setVanilla(true);
|
|
|
|
}
|
|
|
|
profilePatch->setOrder(order);
|
|
|
|
appendPatch(profilePatch);
|
|
|
|
};
|
|
|
|
addBuiltinPatch("net.minecraft", m_instance->getComponentVersion("net.minecraft"), -2);
|
|
|
|
addBuiltinPatch("org.lwjgl", m_instance->getComponentVersion("org.lwjgl"), -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProfile::loadUserPatches_internal()
|
|
|
|
{
|
|
|
|
// first, collect all patches (that are not builtins of OneSix) and load them
|
|
|
|
QMap<QString, ProfilePatchPtr> loadedPatches;
|
|
|
|
QDir patchesDir(FS::PathCombine(m_instance->instanceRoot(),"patches"));
|
|
|
|
for (auto info : patchesDir.entryInfoList(QStringList() << "*.json", QDir::Files))
|
|
|
|
{
|
|
|
|
// parse the file
|
|
|
|
qDebug() << "Reading" << info.fileName();
|
|
|
|
auto file = ProfileUtils::parseJsonFile(info, true);
|
|
|
|
// ignore builtins
|
|
|
|
if (file->uid == "net.minecraft")
|
|
|
|
continue;
|
|
|
|
if (file->uid == "org.lwjgl")
|
|
|
|
continue;
|
|
|
|
auto patch = std::make_shared<ProfilePatch>(file, info.filePath());
|
|
|
|
patch->setRemovable(true);
|
|
|
|
patch->setMovable(true);
|
|
|
|
if(ENV.metadataIndex()->hasUid(file->uid))
|
|
|
|
{
|
|
|
|
// FIXME: requesting a uid/list creates it in the index... this allows reverting to possibly invalid versions...
|
|
|
|
patch->setRevertible(true);
|
|
|
|
}
|
|
|
|
loadedPatches[file->uid] = patch;
|
|
|
|
}
|
|
|
|
// these are 'special'... if not already loaded from instance files, grab them from the metadata repo.
|
|
|
|
auto loadSpecial = [&](const QString & uid, int order)
|
|
|
|
{
|
|
|
|
auto patchVersion = m_instance->getComponentVersion(uid);
|
|
|
|
if(!patchVersion.isEmpty() && !loadedPatches.contains(uid))
|
|
|
|
{
|
|
|
|
auto patch = std::make_shared<ProfilePatch>(ENV.metadataIndex()->get(uid, patchVersion));
|
|
|
|
patch->setOrder(order);
|
|
|
|
patch->setVanilla(true);
|
|
|
|
patch->setRemovable(true);
|
|
|
|
patch->setMovable(true);
|
|
|
|
loadedPatches[uid] = patch;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
loadSpecial("net.minecraftforge", 5);
|
|
|
|
loadSpecial("com.mumfrey.liteloader", 10);
|
|
|
|
|
|
|
|
// now add all the patches by user sort order
|
|
|
|
ProfileUtils::PatchOrder userOrder;
|
|
|
|
ProfileUtils::readOverrideOrders(FS::PathCombine(m_instance->instanceRoot(), "order.json"), userOrder);
|
|
|
|
for (auto uid : userOrder)
|
|
|
|
{
|
|
|
|
// ignore builtins
|
|
|
|
if (uid == "net.minecraft")
|
|
|
|
continue;
|
|
|
|
if (uid == "org.lwjgl")
|
|
|
|
continue;
|
|
|
|
// ordering has a patch that is gone?
|
|
|
|
if(!loadedPatches.contains(uid))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
appendPatch(loadedPatches.take(uid));
|
|
|
|
}
|
|
|
|
|
|
|
|
// is there anything left to sort?
|
|
|
|
if(loadedPatches.isEmpty())
|
|
|
|
{
|
|
|
|
// TODO: save the order here?
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// inserting into multimap by order number as key sorts the patches and detects duplicates
|
|
|
|
QMultiMap<int, ProfilePatchPtr> files;
|
|
|
|
auto iter = loadedPatches.begin();
|
|
|
|
while(iter != loadedPatches.end())
|
|
|
|
{
|
|
|
|
files.insert((*iter)->getOrder(), *iter);
|
|
|
|
iter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// then just extract the patches and put them in the list
|
|
|
|
for (auto order : files.keys())
|
|
|
|
{
|
|
|
|
const auto &values = files.values(order);
|
|
|
|
for(auto &value: values)
|
|
|
|
{
|
|
|
|
// TODO: put back the insertion of problem messages here, so the user knows about the id duplication
|
|
|
|
appendPatch(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: save the order here?
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MinecraftProfile::load_internal()
|
|
|
|
{
|
|
|
|
clearPatches();
|
2017-09-10 16:11:32 +05:30
|
|
|
upgradeDeprecatedFiles_internal();
|
2017-07-24 12:31:37 +05:30
|
|
|
loadDefaultBuiltinPatches_internal();
|
|
|
|
loadUserPatches_internal();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftProfile::saveOrder_internal(ProfileUtils::PatchOrder order) const
|
|
|
|
{
|
|
|
|
return ProfileUtils::writeOverrideOrders(FS::PathCombine(m_instance->instanceRoot(), "order.json"), order);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftProfile::resetOrder_internal()
|
|
|
|
{
|
|
|
|
return QDir(m_instance->instanceRoot()).remove("order.json");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftProfile::removePatch_internal(ProfilePatchPtr patch)
|
|
|
|
{
|
|
|
|
bool ok = true;
|
|
|
|
// first, remove the patch file. this ensures it's not used anymore
|
|
|
|
auto fileName = patch->getFilename();
|
|
|
|
if(fileName.size())
|
|
|
|
{
|
|
|
|
QFile patchFile(fileName);
|
|
|
|
if(patchFile.exists() && !patchFile.remove())
|
|
|
|
{
|
|
|
|
qCritical() << "File" << fileName << "could not be removed because:" << patchFile.errorString();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!m_instance->getComponentVersion(patch->getID()).isEmpty())
|
|
|
|
{
|
|
|
|
m_instance->setComponentVersion(patch->getID(), QString());
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: we need a generic way of removing local resources, not just jar mods...
|
|
|
|
auto preRemoveJarMod = [&](LibraryPtr jarMod) -> bool
|
|
|
|
{
|
|
|
|
if (!jarMod->isLocal())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
QStringList jar, temp1, temp2, temp3;
|
|
|
|
jarMod->getApplicableFiles(currentSystem, jar, temp1, temp2, temp3, m_instance->jarmodsPath().absolutePath());
|
|
|
|
QFileInfo finfo (jar[0]);
|
|
|
|
if(finfo.exists())
|
|
|
|
{
|
|
|
|
QFile jarModFile(jar[0]);
|
|
|
|
if(!jarModFile.remove())
|
|
|
|
{
|
|
|
|
qCritical() << "File" << jar[0] << "could not be removed because:" << jarModFile.errorString();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &jarMods = patch->getVersionFile()->jarMods;
|
|
|
|
for(auto &jarmod: jarMods)
|
|
|
|
{
|
|
|
|
ok &= preRemoveJarMod(jarmod);
|
|
|
|
}
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftProfile::customizePatch_internal(ProfilePatchPtr patch)
|
|
|
|
{
|
|
|
|
if(patch->isCustom())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto filename = FS::PathCombine(m_instance->instanceRoot(), "patches" , patch->getID() + ".json");
|
|
|
|
if(!FS::ensureFilePathExists(filename))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// FIXME: get rid of this try-catch.
|
|
|
|
try
|
|
|
|
{
|
|
|
|
QSaveFile jsonFile(filename);
|
|
|
|
if(!jsonFile.open(QIODevice::WriteOnly))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
auto vfile = patch->getVersionFile();
|
|
|
|
if(!vfile)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
auto document = OneSixVersionFormat::versionFileToJson(vfile, true);
|
|
|
|
jsonFile.write(document.toJson());
|
|
|
|
if(!jsonFile.commit())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
load_internal();
|
|
|
|
}
|
|
|
|
catch (Exception &error)
|
|
|
|
{
|
|
|
|
qWarning() << "Version could not be loaded:" << error.cause();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftProfile::revertPatch_internal(ProfilePatchPtr patch)
|
|
|
|
{
|
|
|
|
if(!patch->isCustom())
|
|
|
|
{
|
|
|
|
// already not custom
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
auto filename = patch->getFilename();
|
|
|
|
if(!QFile::exists(filename))
|
|
|
|
{
|
|
|
|
// already gone / not custom
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// just kill the file and reload
|
|
|
|
bool result = QFile::remove(filename);
|
|
|
|
// FIXME: get rid of this try-catch.
|
|
|
|
try
|
|
|
|
{
|
|
|
|
load_internal();
|
|
|
|
}
|
|
|
|
catch (Exception &error)
|
|
|
|
{
|
|
|
|
qWarning() << "Version could not be loaded:" << error.cause();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftProfile::installJarMods_internal(QStringList filepaths)
|
|
|
|
{
|
|
|
|
QString patchDir = FS::PathCombine(m_instance->instanceRoot(), "patches");
|
|
|
|
if(!FS::ensureFolderPathExists(patchDir))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!FS::ensureFolderPathExists(m_instance->jarModsDir()))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(auto filepath:filepaths)
|
|
|
|
{
|
|
|
|
QFileInfo sourceInfo(filepath);
|
|
|
|
auto uuid = QUuid::createUuid();
|
|
|
|
QString id = uuid.toString().remove('{').remove('}');
|
|
|
|
QString target_filename = id + ".jar";
|
|
|
|
QString target_id = "org.multimc.jarmod." + id;
|
|
|
|
QString target_name = sourceInfo.completeBaseName() + " (jar mod)";
|
|
|
|
QString finalPath = FS::PathCombine(m_instance->jarModsDir(), target_filename);
|
|
|
|
|
|
|
|
QFileInfo targetInfo(finalPath);
|
|
|
|
if(targetInfo.exists())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QFile::copy(sourceInfo.absoluteFilePath(),QFileInfo(finalPath).absoluteFilePath()))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto f = std::make_shared<VersionFile>();
|
|
|
|
auto jarMod = std::make_shared<Library>();
|
|
|
|
jarMod->setRawName(GradleSpecifier("org.multimc.jarmods:" + id + ":1"));
|
|
|
|
jarMod->setFilename(target_filename);
|
|
|
|
jarMod->setDisplayName(sourceInfo.completeBaseName());
|
|
|
|
jarMod->setHint("local");
|
|
|
|
f->jarMods.append(jarMod);
|
|
|
|
f->name = target_name;
|
|
|
|
f->uid = target_id;
|
|
|
|
f->order = getFreeOrderNumber();
|
|
|
|
QString patchFileName = FS::PathCombine(patchDir, target_id + ".json");
|
|
|
|
|
|
|
|
QFile file(patchFileName);
|
|
|
|
if (!file.open(QFile::WriteOnly))
|
|
|
|
{
|
|
|
|
qCritical() << "Error opening" << file.fileName()
|
|
|
|
<< "for reading:" << file.errorString();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
file.write(OneSixVersionFormat::versionFileToJson(f, true).toJson());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
auto patch = std::make_shared<ProfilePatch>(f, patchFileName);
|
|
|
|
patch->setMovable(true);
|
|
|
|
patch->setRemovable(true);
|
|
|
|
appendPatch(patch);
|
|
|
|
}
|
|
|
|
saveCurrentOrder();
|
|
|
|
reapplyPatches();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftProfile::installCustomJar_internal(QString filepath)
|
|
|
|
{
|
|
|
|
QString patchDir = FS::PathCombine(m_instance->instanceRoot(), "patches");
|
|
|
|
if(!FS::ensureFolderPathExists(patchDir))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString libDir = m_instance->getLocalLibraryPath();
|
|
|
|
if (!FS::ensureFolderPathExists(libDir))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto specifier = GradleSpecifier("org.multimc:customjar:1");
|
|
|
|
QFileInfo sourceInfo(filepath);
|
|
|
|
QString target_filename = specifier.getFileName();
|
|
|
|
QString target_id = specifier.artifactId();
|
|
|
|
QString target_name = sourceInfo.completeBaseName() + " (custom jar)";
|
|
|
|
QString finalPath = FS::PathCombine(libDir, target_filename);
|
|
|
|
|
|
|
|
QFileInfo jarInfo(finalPath);
|
|
|
|
if (jarInfo.exists())
|
|
|
|
{
|
|
|
|
if(!QFile::remove(finalPath))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!QFile::copy(filepath, finalPath))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto f = std::make_shared<VersionFile>();
|
|
|
|
auto jarMod = std::make_shared<Library>();
|
|
|
|
jarMod->setRawName(specifier);
|
|
|
|
jarMod->setDisplayName(sourceInfo.completeBaseName());
|
|
|
|
jarMod->setHint("local");
|
|
|
|
f->mainJar = jarMod;
|
|
|
|
f->name = target_name;
|
|
|
|
f->uid = target_id;
|
|
|
|
f->order = getFreeOrderNumber();
|
|
|
|
QString patchFileName = FS::PathCombine(patchDir, target_id + ".json");
|
|
|
|
|
|
|
|
QFile file(patchFileName);
|
|
|
|
if (!file.open(QFile::WriteOnly))
|
|
|
|
{
|
|
|
|
qCritical() << "Error opening" << file.fileName()
|
|
|
|
<< "for reading:" << file.errorString();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
file.write(OneSixVersionFormat::versionFileToJson(f, true).toJson());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
auto patch = std::make_shared<ProfilePatch>(f, patchFileName);
|
|
|
|
patch->setMovable(true);
|
|
|
|
patch->setRemovable(true);
|
|
|
|
appendPatch(patch);
|
|
|
|
|
|
|
|
saveCurrentOrder();
|
|
|
|
reapplyPatches();
|
|
|
|
return true;
|
|
|
|
}
|