2015-02-02 22:25:30 +00:00
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-12-28 13:22:36 +00:00
|
|
|
*
|
|
|
|
* 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 "LiteLoaderInstaller.h"
|
|
|
|
|
2014-01-22 14:20:48 +00:00
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
|
2015-02-02 01:14:14 +00:00
|
|
|
#include <QDebug>
|
2014-01-22 14:20:48 +00:00
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "minecraft/MinecraftProfile.h"
|
2016-03-07 01:01:28 +00:00
|
|
|
#include "minecraft/Library.h"
|
2016-02-27 18:58:40 +00:00
|
|
|
#include "minecraft/onesix/OneSixInstance.h"
|
2016-02-28 18:01:54 +00:00
|
|
|
#include <minecraft/onesix/OneSixVersionFormat.h>
|
2016-02-27 18:58:40 +00:00
|
|
|
#include "minecraft/liteloader/LiteLoaderVersionList.h"
|
2015-05-28 18:38:29 +01:00
|
|
|
#include "Exception.h"
|
2013-12-28 13:22:36 +00:00
|
|
|
|
2014-03-14 19:48:57 +00:00
|
|
|
LiteLoaderInstaller::LiteLoaderInstaller() : BaseInstaller()
|
2013-12-28 22:34:18 +00:00
|
|
|
{
|
2013-12-28 13:22:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-14 19:48:57 +00:00
|
|
|
void LiteLoaderInstaller::prepare(LiteLoaderVersionPtr version)
|
|
|
|
{
|
|
|
|
m_version = version;
|
|
|
|
}
|
2014-01-24 17:12:02 +00:00
|
|
|
bool LiteLoaderInstaller::add(OneSixInstance *to)
|
2014-01-22 14:20:48 +00:00
|
|
|
{
|
2014-01-23 20:31:41 +00:00
|
|
|
if (!BaseInstaller::add(to))
|
2013-12-28 13:22:36 +00:00
|
|
|
{
|
2014-01-23 20:31:41 +00:00
|
|
|
return false;
|
2013-12-28 13:22:36 +00:00
|
|
|
}
|
2014-01-22 14:20:48 +00:00
|
|
|
QFile file(filename(to->instanceRoot()));
|
|
|
|
if (!file.open(QFile::WriteOnly))
|
2013-12-28 22:34:18 +00:00
|
|
|
{
|
2015-02-02 01:14:14 +00:00
|
|
|
qCritical() << "Error opening" << file.fileName()
|
2014-02-19 21:34:17 +00:00
|
|
|
<< "for reading:" << file.errorString();
|
2014-01-22 14:20:48 +00:00
|
|
|
return false;
|
2013-12-28 22:34:18 +00:00
|
|
|
}
|
2016-06-07 00:23:31 +01:00
|
|
|
file.write(OneSixVersionFormat::versionFileToJson(m_version->getVersionFile(), true).toJson());
|
2014-01-22 14:20:48 +00:00
|
|
|
file.close();
|
2013-12-28 22:34:18 +00:00
|
|
|
|
2014-01-22 14:20:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 19:48:57 +00:00
|
|
|
|
|
|
|
class LiteLoaderInstallTask : public Task
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-06-07 00:23:31 +01:00
|
|
|
LiteLoaderInstallTask(LiteLoaderInstaller *installer, OneSixInstance *instance, BaseVersionPtr version, QObject *parent)
|
2014-03-14 19:48:57 +00:00
|
|
|
: Task(parent), m_installer(installer), m_instance(instance), m_version(version)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void executeTask() override
|
|
|
|
{
|
2016-06-07 00:23:31 +01:00
|
|
|
LiteLoaderVersionPtr liteloaderVersion = std::dynamic_pointer_cast<LiteLoaderVersion>(m_version);
|
2014-03-14 19:48:57 +00:00
|
|
|
if (!liteloaderVersion)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_installer->prepare(liteloaderVersion);
|
|
|
|
if (!m_installer->add(m_instance))
|
|
|
|
{
|
2016-06-07 00:23:31 +01:00
|
|
|
emitFailed(tr("For reasons unknown, the LiteLoader installation failed. Check your MultiMC log files for details."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try
|
|
|
|
{
|
|
|
|
m_instance->reloadProfile();
|
|
|
|
emitSucceeded();
|
|
|
|
}
|
|
|
|
catch (Exception &e)
|
|
|
|
{
|
|
|
|
emitFailed(e.cause());
|
2014-03-14 19:48:57 +00:00
|
|
|
}
|
2016-06-07 00:23:31 +01:00
|
|
|
catch (...)
|
2014-03-14 19:48:57 +00:00
|
|
|
{
|
2016-06-07 00:23:31 +01:00
|
|
|
emitFailed(tr("Failed to load the version description file for reasons unknown."));
|
2014-03-14 19:48:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
LiteLoaderInstaller *m_installer;
|
|
|
|
OneSixInstance *m_instance;
|
|
|
|
BaseVersionPtr m_version;
|
|
|
|
};
|
|
|
|
|
2016-06-07 00:23:31 +01:00
|
|
|
Task *LiteLoaderInstaller::createInstallTask(OneSixInstance *instance, BaseVersionPtr version, QObject *parent)
|
2014-03-14 19:48:57 +00:00
|
|
|
{
|
|
|
|
return new LiteLoaderInstallTask(this, instance, version, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "LiteLoaderInstaller.moc"
|