2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2014-01-24 02:01:41 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
|
2014-05-09 00:50:10 +05:30
|
|
|
#include "logic/BaseInstaller.h"
|
|
|
|
#include "logic/OneSixInstance.h"
|
2014-01-24 02:01:41 +05:30
|
|
|
|
|
|
|
BaseInstaller::BaseInstaller()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
bool BaseInstaller::isApplied(OneSixInstance *on)
|
2014-01-24 02:01:41 +05:30
|
|
|
{
|
|
|
|
return QFile::exists(filename(on->instanceRoot()));
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
bool BaseInstaller::add(OneSixInstance *to)
|
2014-01-24 02:01:41 +05:30
|
|
|
{
|
|
|
|
if (!patchesDir(to->instanceRoot()).exists())
|
|
|
|
{
|
|
|
|
QDir(to->instanceRoot()).mkdir("patches");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isApplied(to))
|
|
|
|
{
|
|
|
|
if (!remove(to))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
bool BaseInstaller::remove(OneSixInstance *from)
|
2014-01-24 02:01:41 +05:30
|
|
|
{
|
|
|
|
return QFile::remove(filename(from->instanceRoot()));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString BaseInstaller::filename(const QString &root) const
|
|
|
|
{
|
|
|
|
return patchesDir(root).absoluteFilePath(id() + ".json");
|
|
|
|
}
|
|
|
|
QDir BaseInstaller::patchesDir(const QString &root) const
|
|
|
|
{
|
|
|
|
return QDir(root + "/patches/");
|
|
|
|
}
|