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
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
#include "minecraft/ComponentList.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>
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
ComponentList::ComponentList(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;
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
ComponentList::~ComponentList()
|
2016-08-19 12:34:58 +05:30
|
|
|
{
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::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
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::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
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::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;
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::customize(int index)
|
2015-05-18 03:08:28 +05:30
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::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;
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
ProfilePatchPtr ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
ProfilePatchPtr ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
QVariant ComponentList::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();
|
|
|
|
}
|
2017-10-12 02:34:24 +05:30
|
|
|
QVariant ComponentList::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();
|
|
|
|
}
|
2017-10-12 02:34:24 +05:30
|
|
|
Qt::ItemFlags ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
int ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
int ComponentList::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
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::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
|
|
|
}
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::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
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::reapplyPatches()
|
2015-05-31 23:29:07 +05:30
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2017-11-05 03:25:25 +05:30
|
|
|
m_profile.reset(new LaunchProfile);
|
2016-03-18 19:32:54 +05:30
|
|
|
for(auto file: m_patches)
|
|
|
|
{
|
2017-04-24 05:00:51 +05:30
|
|
|
qDebug() << "Applying" << file->getID() << (file->getProblemSeverity() == ProblemSeverity::Error ? "ERROR" : "GOOD");
|
2017-11-05 03:25:25 +05:30
|
|
|
file->applyTo(m_profile.get());
|
2016-03-18 19:32:54 +05:30
|
|
|
}
|
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
|
|
|
{
|
2017-11-05 03:25:25 +05:30
|
|
|
m_profile.reset();
|
2015-05-31 23:29:07 +05:30
|
|
|
qWarning() << "Couldn't apply profile patches because: " << error.cause();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::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-10-12 02:34:24 +05:30
|
|
|
void ComponentList::installCustomJar(QString selectedFile)
|
2017-08-07 04:16:29 +05:30
|
|
|
{
|
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.
|
|
|
|
*/
|
2017-10-12 02:34:24 +05:30
|
|
|
int ComponentList::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-10-12 02:34:24 +05:30
|
|
|
void ComponentList::upgradeDeprecatedFiles_internal()
|
2017-09-10 16:11:32 +05:30
|
|
|
{
|
|
|
|
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-10-12 02:34:24 +05:30
|
|
|
void ComponentList::loadDefaultBuiltinPatches_internal()
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::loadUserPatches_internal()
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
// 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?
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
void ComponentList::load_internal()
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
clearPatches();
|
2017-09-10 16:11:32 +05:30
|
|
|
upgradeDeprecatedFiles_internal();
|
2017-07-24 12:31:37 +05:30
|
|
|
loadDefaultBuiltinPatches_internal();
|
|
|
|
loadUserPatches_internal();
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::saveOrder_internal(ProfileUtils::PatchOrder order) const
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
return ProfileUtils::writeOverrideOrders(FS::PathCombine(m_instance->instanceRoot(), "order.json"), order);
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::resetOrder_internal()
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
return QDir(m_instance->instanceRoot()).remove("order.json");
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::removePatch_internal(ProfilePatchPtr patch)
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::customizePatch_internal(ProfilePatchPtr patch)
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::revertPatch_internal(ProfilePatchPtr patch)
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::installJarMods_internal(QStringList filepaths)
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
bool ComponentList::installCustomJar_internal(QString filepath)
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
|
|
|
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;
|
2017-11-05 03:25:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<LaunchProfile> ComponentList::getProfile() const
|
|
|
|
{
|
|
|
|
return m_profile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ComponentList::clearProfile()
|
|
|
|
{
|
|
|
|
m_profile.reset();
|
|
|
|
}
|