2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-02-22 05:40:17 +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
|
2013-09-22 07:51:36 +05:30
|
|
|
*
|
2013-02-22 05:40:17 +05:30
|
|
|
* 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.
|
|
|
|
*/
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "Env.h"
|
2016-03-26 21:26:57 +05:30
|
|
|
#include <minecraft/forge/ForgeXzDownload.h>
|
2013-08-04 18:16:33 +05:30
|
|
|
#include "OneSixUpdate.h"
|
2016-02-28 00:28:40 +05:30
|
|
|
#include "OneSixInstance.h"
|
2013-02-22 05:40:17 +05:30
|
|
|
|
2013-05-08 23:26:43 +05:30
|
|
|
#include <QtNetwork>
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include <QDataStream>
|
2014-05-09 00:50:10 +05:30
|
|
|
#include <JlCompress.h>
|
2013-05-08 23:26:43 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "BaseInstance.h"
|
|
|
|
#include "minecraft/MinecraftVersionList.h"
|
|
|
|
#include "minecraft/MinecraftProfile.h"
|
2016-03-07 06:31:28 +05:30
|
|
|
#include "minecraft/Library.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "net/URLConstants.h"
|
2016-05-28 23:24:17 +05:30
|
|
|
#include "net/ChecksumValidator.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "minecraft/AssetsUtils.h"
|
2015-05-28 23:08:29 +05:30
|
|
|
#include "Exception.h"
|
2015-04-13 02:20:52 +05:30
|
|
|
#include "MMCZip.h"
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <FileSystem.h>
|
2013-05-08 23:26:43 +05:30
|
|
|
|
2014-05-11 16:07:21 +05:30
|
|
|
OneSixUpdate::OneSixUpdate(OneSixInstance *inst, QObject *parent) : Task(parent), m_inst(inst)
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
|
|
|
}
|
2013-05-08 23:26:43 +05:30
|
|
|
|
2013-08-04 18:16:33 +05:30
|
|
|
void OneSixUpdate::executeTask()
|
2013-05-08 23:26:43 +05:30
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
// Make directories
|
|
|
|
QDir mcDir(m_inst->minecraftRoot());
|
|
|
|
if (!mcDir.exists() && !mcDir.mkpath("."))
|
|
|
|
{
|
2014-03-10 04:12:25 +05:30
|
|
|
emitFailed(tr("Failed to create folder for minecraft binaries."));
|
2013-08-12 04:09:19 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2014-05-11 16:07:21 +05:30
|
|
|
// Get a pointer to the version object that corresponds to the instance's version.
|
2016-03-13 04:53:45 +05:30
|
|
|
targetVersion = std::dynamic_pointer_cast<MinecraftVersion>(ENV.getVersion("net.minecraft", m_inst->intendedVersionId()));
|
2014-05-11 16:07:21 +05:30
|
|
|
if (targetVersion == nullptr)
|
2013-08-05 06:59:50 +05:30
|
|
|
{
|
2014-05-11 16:07:21 +05:30
|
|
|
// don't do anything if it was invalid
|
|
|
|
emitFailed(tr("The specified Minecraft version is invalid. Choose a different one."));
|
|
|
|
return;
|
2013-08-05 06:59:50 +05:30
|
|
|
}
|
2014-05-11 16:07:21 +05:30
|
|
|
if (m_inst->providesVersionFile() || !targetVersion->needsUpdate())
|
2014-02-21 23:45:59 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Instance either provides a version file or doesn't need an update.";
|
2014-02-21 23:45:59 +05:30
|
|
|
jarlibStart();
|
|
|
|
return;
|
|
|
|
}
|
2015-02-02 05:39:28 +05:30
|
|
|
versionUpdateTask = std::dynamic_pointer_cast<MinecraftVersionList>(ENV.getVersionList("net.minecraft"))->createUpdateTask(m_inst->intendedVersionId());
|
2014-05-11 16:07:21 +05:30
|
|
|
if (!versionUpdateTask)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Didn't spawn an update task.";
|
2014-05-11 16:07:21 +05:30
|
|
|
jarlibStart();
|
|
|
|
return;
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
2014-05-11 16:07:21 +05:30
|
|
|
connect(versionUpdateTask.get(), SIGNAL(succeeded()), SLOT(jarlibStart()));
|
2015-04-27 02:34:50 +05:30
|
|
|
connect(versionUpdateTask.get(), &NetJob::failed, this, &OneSixUpdate::versionUpdateFailed);
|
2016-02-17 12:40:31 +05:30
|
|
|
connect(versionUpdateTask.get(), SIGNAL(progress(qint64, qint64)), SIGNAL(progress(qint64, qint64)));
|
2014-05-11 16:07:21 +05:30
|
|
|
setStatus(tr("Getting the version files from Mojang..."));
|
|
|
|
versionUpdateTask->start();
|
2013-08-05 06:59:50 +05:30
|
|
|
}
|
|
|
|
|
2014-05-11 16:07:21 +05:30
|
|
|
void OneSixUpdate::versionUpdateFailed(QString reason)
|
2013-08-05 06:59:50 +05:30
|
|
|
{
|
2014-05-11 16:07:21 +05:30
|
|
|
emitFailed(reason);
|
2013-08-05 06:59:50 +05:30
|
|
|
}
|
|
|
|
|
2013-12-10 11:42:52 +05:30
|
|
|
void OneSixUpdate::assetIndexStart()
|
|
|
|
{
|
2013-12-23 21:16:01 +05:30
|
|
|
setStatus(tr("Updating assets index..."));
|
2013-12-10 11:42:52 +05:30
|
|
|
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
2016-03-14 01:27:01 +05:30
|
|
|
auto profile = inst->getMinecraftProfile();
|
2016-03-21 06:49:23 +05:30
|
|
|
auto assets = profile->getMinecraftAssets();
|
|
|
|
QUrl indexUrl = assets->url;
|
|
|
|
QString localPath = assets->id + ".json";
|
2014-03-23 23:37:13 +05:30
|
|
|
auto job = new NetJob(tr("Asset index for %1").arg(inst->name()));
|
2013-12-10 11:42:52 +05:30
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
auto metacache = ENV.metacache();
|
2013-12-10 11:42:52 +05:30
|
|
|
auto entry = metacache->resolveEntry("asset_indexes", localPath);
|
2016-03-26 21:26:57 +05:30
|
|
|
entry->setStale(true);
|
2016-05-28 23:24:17 +05:30
|
|
|
auto hexSha1 = assets->sha1.toLatin1();
|
|
|
|
qDebug() << "Asset index SHA1:" << hexSha1;
|
|
|
|
auto dl = Net::Download::makeCached(indexUrl, entry);
|
|
|
|
auto rawSha1 = QByteArray::fromHex(assets->sha1.toLatin1());
|
|
|
|
dl->addValidator(new Net::ChecksumValidator(QCryptographicHash::Sha1, rawSha1));
|
|
|
|
job->addNetAction(dl);
|
|
|
|
|
2013-12-10 11:42:52 +05:30
|
|
|
jarlibDownloadJob.reset(job);
|
|
|
|
|
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(succeeded()), SLOT(assetIndexFinished()));
|
2015-04-27 02:34:50 +05:30
|
|
|
connect(jarlibDownloadJob.get(), &NetJob::failed, this, &OneSixUpdate::assetIndexFailed);
|
2016-02-17 12:40:31 +05:30
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(progress(qint64, qint64)), SIGNAL(progress(qint64, qint64)));
|
2013-12-10 11:42:52 +05:30
|
|
|
|
2015-05-07 01:46:52 +05:30
|
|
|
qDebug() << m_inst->name() << ": Starting asset index download";
|
2013-12-10 11:42:52 +05:30
|
|
|
jarlibDownloadJob->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixUpdate::assetIndexFinished()
|
|
|
|
{
|
|
|
|
AssetsIndex index;
|
2015-05-07 01:46:52 +05:30
|
|
|
qDebug() << m_inst->name() << ": Finished asset index download";
|
2013-12-10 11:42:52 +05:30
|
|
|
|
|
|
|
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
2016-03-14 01:27:01 +05:30
|
|
|
auto profile = inst->getMinecraftProfile();
|
2016-03-21 06:49:23 +05:30
|
|
|
auto assets = profile->getMinecraftAssets();
|
2013-12-10 11:42:52 +05:30
|
|
|
|
2016-03-21 06:49:23 +05:30
|
|
|
QString asset_fname = "assets/indexes/" + assets->id + ".json";
|
|
|
|
// FIXME: this looks like a job for a generic validator based on json schema?
|
|
|
|
if (!AssetsUtils::loadAssetsIndexJson(assets->id, asset_fname, &index))
|
2013-12-10 11:42:52 +05:30
|
|
|
{
|
2015-01-31 21:29:03 +05:30
|
|
|
auto metacache = ENV.metacache();
|
2016-03-21 06:49:23 +05:30
|
|
|
auto entry = metacache->resolveEntry("asset_indexes", assets->id + ".json");
|
2015-04-01 03:53:17 +05:30
|
|
|
metacache->evictEntry(entry);
|
2014-03-10 04:12:25 +05:30
|
|
|
emitFailed(tr("Failed to read the assets index!"));
|
2013-12-10 11:42:52 +05:30
|
|
|
}
|
2014-01-14 05:43:35 +05:30
|
|
|
|
2016-03-21 06:49:23 +05:30
|
|
|
auto job = index.getDownloadJob();
|
|
|
|
if(job)
|
2013-12-10 11:42:52 +05:30
|
|
|
{
|
2013-12-23 21:16:01 +05:30
|
|
|
setStatus(tr("Getting the assets files from Mojang..."));
|
2016-03-21 06:49:23 +05:30
|
|
|
jarlibDownloadJob = job;
|
2013-12-10 11:42:52 +05:30
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(succeeded()), SLOT(assetsFinished()));
|
2015-04-27 02:34:50 +05:30
|
|
|
connect(jarlibDownloadJob.get(), &NetJob::failed, this, &OneSixUpdate::assetsFailed);
|
2016-02-17 12:40:31 +05:30
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(progress(qint64, qint64)), SIGNAL(progress(qint64, qint64)));
|
2013-12-10 11:42:52 +05:30
|
|
|
jarlibDownloadJob->start();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assetsFinished();
|
|
|
|
}
|
|
|
|
|
2015-04-27 02:34:50 +05:30
|
|
|
void OneSixUpdate::assetIndexFailed(QString reason)
|
2013-12-10 11:42:52 +05:30
|
|
|
{
|
2015-05-07 01:46:52 +05:30
|
|
|
qDebug() << m_inst->name() << ": Failed asset index download";
|
2015-04-27 02:34:50 +05:30
|
|
|
emitFailed(tr("Failed to download the assets index:\n%1").arg(reason));
|
2013-12-10 11:42:52 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixUpdate::assetsFinished()
|
|
|
|
{
|
2014-01-27 07:30:49 +05:30
|
|
|
emitSucceeded();
|
2013-12-10 11:42:52 +05:30
|
|
|
}
|
|
|
|
|
2015-04-27 02:34:50 +05:30
|
|
|
void OneSixUpdate::assetsFailed(QString reason)
|
2013-12-10 11:42:52 +05:30
|
|
|
{
|
2015-04-27 02:34:50 +05:30
|
|
|
emitFailed(tr("Failed to download assets:\n%1").arg(reason));
|
2013-12-10 11:42:52 +05:30
|
|
|
}
|
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
void OneSixUpdate::jarlibStart()
|
|
|
|
{
|
2013-12-23 21:16:01 +05:30
|
|
|
setStatus(tr("Getting the library files from Mojang..."));
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << m_inst->name() << ": downloading libraries";
|
2013-09-22 07:51:36 +05:30
|
|
|
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
2016-03-18 19:32:54 +05:30
|
|
|
inst->reloadProfile();
|
|
|
|
if(inst->flags() & BaseInstance::VersionBrokenFlag)
|
2014-03-10 04:12:25 +05:30
|
|
|
{
|
2016-03-18 19:32:54 +05:30
|
|
|
emitFailed(tr("Failed to load the version description files - check the instance for errors."));
|
2016-03-19 01:19:09 +05:30
|
|
|
return;
|
2013-08-05 06:59:50 +05:30
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-12-11 01:03:24 +05:30
|
|
|
// Build a list of URLs that will need to be downloaded.
|
2016-03-14 01:27:01 +05:30
|
|
|
std::shared_ptr<MinecraftProfile> profile = inst->getMinecraftProfile();
|
2013-12-11 01:03:24 +05:30
|
|
|
// minecraft.jar for this version
|
|
|
|
{
|
2016-03-14 01:27:01 +05:30
|
|
|
QString version_id = profile->getMinecraftVersion();
|
2013-12-11 01:03:24 +05:30
|
|
|
QString localPath = version_id + "/" + version_id + ".jar";
|
2016-03-26 21:26:57 +05:30
|
|
|
QString urlstr = profile->getMainJarUrl();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2014-03-23 23:37:13 +05:30
|
|
|
auto job = new NetJob(tr("Libraries for instance %1").arg(inst->name()));
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
auto metacache = ENV.metacache();
|
2013-12-11 01:03:24 +05:30
|
|
|
auto entry = metacache->resolveEntry("versions", localPath);
|
2016-05-28 23:24:17 +05:30
|
|
|
job->addNetAction(Net::Download::makeCached(QUrl(urlstr), entry));
|
2013-12-11 01:03:24 +05:30
|
|
|
jarlibDownloadJob.reset(job);
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2016-03-26 21:26:57 +05:30
|
|
|
auto libs = profile->getLibraries();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
auto metacache = ENV.metacache();
|
2016-03-07 06:31:28 +05:30
|
|
|
QList<LibraryPtr> brokenLocalLibs;
|
2014-04-14 02:36:28 +05:30
|
|
|
|
2016-03-26 21:26:57 +05:30
|
|
|
QStringList failedFiles;
|
2013-09-22 07:51:36 +05:30
|
|
|
for (auto lib : libs)
|
2013-08-05 06:59:50 +05:30
|
|
|
{
|
2016-03-26 21:26:57 +05:30
|
|
|
auto dls = lib->getDownloads(currentSystem, metacache.get(), failedFiles);
|
|
|
|
for(auto dl : dls)
|
2014-04-14 02:36:28 +05:30
|
|
|
{
|
2016-03-26 21:26:57 +05:30
|
|
|
jarlibDownloadJob->addNetAction(dl);
|
2013-09-08 05:45:20 +05:30
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
}
|
2014-05-11 16:07:21 +05:30
|
|
|
if (!brokenLocalLibs.empty())
|
2014-04-14 02:36:28 +05:30
|
|
|
{
|
|
|
|
jarlibDownloadJob.reset();
|
2016-03-26 21:26:57 +05:30
|
|
|
|
|
|
|
QString failed_all = failedFiles.join("\n");
|
2014-05-11 16:07:21 +05:30
|
|
|
emitFailed(tr("Some libraries marked as 'local' are missing their jar "
|
|
|
|
"files:\n%1\n\nYou'll have to correct this problem manually. If this is "
|
|
|
|
"an externally tracked instance, make sure to run it at least once "
|
|
|
|
"outside of MultiMC.").arg(failed_all));
|
2014-04-14 02:36:28 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-11-17 16:14:18 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(succeeded()), SLOT(jarlibFinished()));
|
2015-04-27 02:34:50 +05:30
|
|
|
connect(jarlibDownloadJob.get(), &NetJob::failed, this, &OneSixUpdate::jarlibFailed);
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(progress(qint64, qint64)),
|
2013-09-22 07:51:36 +05:30
|
|
|
SIGNAL(progress(qint64, qint64)));
|
2013-08-05 06:59:50 +05:30
|
|
|
|
2013-09-02 03:55:40 +05:30
|
|
|
jarlibDownloadJob->start();
|
2013-07-10 02:16:33 +05:30
|
|
|
}
|
|
|
|
|
2013-08-04 18:16:33 +05:30
|
|
|
void OneSixUpdate::jarlibFinished()
|
2013-07-10 02:16:33 +05:30
|
|
|
{
|
2014-05-05 03:40:59 +05:30
|
|
|
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
2016-03-14 01:27:01 +05:30
|
|
|
std::shared_ptr<MinecraftProfile> profile = inst->getMinecraftProfile();
|
2014-05-11 16:07:21 +05:30
|
|
|
|
2016-03-14 01:27:01 +05:30
|
|
|
if (profile->hasTrait("legacyFML"))
|
2014-05-05 03:40:59 +05:30
|
|
|
{
|
|
|
|
fmllibsStart();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
assetIndexStart();
|
|
|
|
}
|
2013-07-10 02:16:33 +05:30
|
|
|
}
|
|
|
|
|
2015-04-27 02:34:50 +05:30
|
|
|
void OneSixUpdate::jarlibFailed(QString reason)
|
2013-07-10 02:16:33 +05:30
|
|
|
{
|
2013-09-26 06:28:09 +05:30
|
|
|
QStringList failed = jarlibDownloadJob->getFailedFiles();
|
|
|
|
QString failed_all = failed.join("\n");
|
2014-05-11 16:07:21 +05:30
|
|
|
emitFailed(
|
2015-04-27 02:34:50 +05:30
|
|
|
tr("Failed to download the following files:\n%1\n\nReason:%2\nPlease try again.").arg(failed_all, reason));
|
2013-07-08 03:21:26 +05:30
|
|
|
}
|
2014-05-05 03:40:59 +05:30
|
|
|
|
|
|
|
void OneSixUpdate::fmllibsStart()
|
|
|
|
{
|
|
|
|
// Get the mod list
|
|
|
|
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
2016-03-14 01:27:01 +05:30
|
|
|
std::shared_ptr<MinecraftProfile> profile = inst->getMinecraftProfile();
|
2014-05-05 03:40:59 +05:30
|
|
|
bool forge_present = false;
|
|
|
|
|
|
|
|
QString version = inst->intendedVersionId();
|
2014-05-11 16:07:21 +05:30
|
|
|
auto &fmlLibsMapping = g_VersionFilterData.fmlLibsMapping;
|
2014-05-05 03:40:59 +05:30
|
|
|
if (!fmlLibsMapping.contains(version))
|
|
|
|
{
|
|
|
|
assetIndexStart();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &libList = fmlLibsMapping[version];
|
|
|
|
|
|
|
|
// determine if we need some libs for FML or forge
|
|
|
|
setStatus(tr("Checking for FML libraries..."));
|
2016-03-14 01:27:01 +05:30
|
|
|
forge_present = (profile->versionPatch("net.minecraftforge") != nullptr);
|
2014-05-05 03:40:59 +05:30
|
|
|
// we don't...
|
|
|
|
if (!forge_present)
|
|
|
|
{
|
|
|
|
assetIndexStart();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// now check the lib folder inside the instance for files.
|
|
|
|
for (auto &lib : libList)
|
|
|
|
{
|
2015-10-05 05:17:27 +05:30
|
|
|
QFileInfo libInfo(FS::PathCombine(inst->libDir(), lib.filename));
|
2014-05-05 03:40:59 +05:30
|
|
|
if (libInfo.exists())
|
|
|
|
continue;
|
|
|
|
fmlLibsToProcess.append(lib);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if everything is in place, there's nothing to do here...
|
|
|
|
if (fmlLibsToProcess.isEmpty())
|
|
|
|
{
|
|
|
|
assetIndexStart();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// download missing libs to our place
|
|
|
|
setStatus(tr("Dowloading FML libraries..."));
|
|
|
|
auto dljob = new NetJob("FML libraries");
|
2015-01-31 21:29:03 +05:30
|
|
|
auto metacache = ENV.metacache();
|
2014-05-05 03:40:59 +05:30
|
|
|
for (auto &lib : fmlLibsToProcess)
|
|
|
|
{
|
|
|
|
auto entry = metacache->resolveEntry("fmllibs", lib.filename);
|
|
|
|
QString urlString = lib.ours ? URLConstants::FMLLIBS_OUR_BASE_URL + lib.filename
|
|
|
|
: URLConstants::FMLLIBS_FORGE_BASE_URL + lib.filename;
|
2016-05-28 23:24:17 +05:30
|
|
|
dljob->addNetAction(Net::Download::makeCached(QUrl(urlString), entry));
|
2014-05-05 03:40:59 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
connect(dljob, SIGNAL(succeeded()), SLOT(fmllibsFinished()));
|
2015-04-27 02:34:50 +05:30
|
|
|
connect(dljob, &NetJob::failed, this, &OneSixUpdate::fmllibsFailed);
|
2014-05-05 03:40:59 +05:30
|
|
|
connect(dljob, SIGNAL(progress(qint64, qint64)), SIGNAL(progress(qint64, qint64)));
|
|
|
|
legacyDownloadJob.reset(dljob);
|
|
|
|
legacyDownloadJob->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixUpdate::fmllibsFinished()
|
|
|
|
{
|
|
|
|
legacyDownloadJob.reset();
|
2014-05-11 16:07:21 +05:30
|
|
|
if (!fmlLibsToProcess.isEmpty())
|
2014-05-05 03:40:59 +05:30
|
|
|
{
|
|
|
|
setStatus(tr("Copying FML libraries into the instance..."));
|
|
|
|
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
2015-01-31 21:29:03 +05:30
|
|
|
auto metacache = ENV.metacache();
|
2014-05-05 03:40:59 +05:30
|
|
|
int index = 0;
|
|
|
|
for (auto &lib : fmlLibsToProcess)
|
|
|
|
{
|
|
|
|
progress(index, fmlLibsToProcess.size());
|
|
|
|
auto entry = metacache->resolveEntry("fmllibs", lib.filename);
|
2015-10-05 05:17:27 +05:30
|
|
|
auto path = FS::PathCombine(inst->libDir(), lib.filename);
|
|
|
|
if (!FS::ensureFilePathExists(path))
|
2014-05-05 03:40:59 +05:30
|
|
|
{
|
|
|
|
emitFailed(tr("Failed creating FML library folder inside the instance."));
|
|
|
|
return;
|
|
|
|
}
|
2015-10-05 05:17:27 +05:30
|
|
|
if (!QFile::copy(entry->getFullPath(), FS::PathCombine(inst->libDir(), lib.filename)))
|
2014-05-05 03:40:59 +05:30
|
|
|
{
|
|
|
|
emitFailed(tr("Failed copying Forge/FML library: %1.").arg(lib.filename));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
progress(index, fmlLibsToProcess.size());
|
|
|
|
}
|
|
|
|
assetIndexStart();
|
|
|
|
}
|
|
|
|
|
2015-04-27 02:34:50 +05:30
|
|
|
void OneSixUpdate::fmllibsFailed(QString reason)
|
2014-05-05 03:40:59 +05:30
|
|
|
{
|
2015-04-27 02:34:50 +05:30
|
|
|
emitFailed(tr("Game update failed: it was impossible to fetch the required FML libraries.\nReason:\n%1").arg(reason));
|
2014-05-05 03:40:59 +05:30
|
|
|
return;
|
2014-05-11 20:13:20 +05:30
|
|
|
}
|
2015-02-02 05:39:28 +05:30
|
|
|
|