2013-08-07 05:08:18 +05:30
|
|
|
#include "LegacyUpdate.h"
|
|
|
|
#include "lists/LwjglVersionList.h"
|
2013-08-12 04:09:19 +05:30
|
|
|
#include "lists/MinecraftVersionList.h"
|
2013-08-07 05:08:18 +05:30
|
|
|
#include "BaseInstance.h"
|
|
|
|
#include "LegacyInstance.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
#include "MultiMC.h"
|
2013-08-24 06:39:46 +05:30
|
|
|
#include "ModList.h"
|
2013-08-07 05:08:18 +05:30
|
|
|
#include <pathutils.h>
|
|
|
|
#include <quazip.h>
|
|
|
|
#include <quazipfile.h>
|
2013-08-24 06:39:46 +05:30
|
|
|
#include <JlCompress.h>
|
2013-10-06 04:43:40 +05:30
|
|
|
#include <logger/QsLog.h>
|
2013-08-07 05:08:18 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
LegacyUpdate::LegacyUpdate(BaseInstance *inst, QObject *parent) : BaseUpdate(inst, parent)
|
|
|
|
{
|
|
|
|
}
|
2013-08-07 05:08:18 +05:30
|
|
|
|
|
|
|
void LegacyUpdate::executeTask()
|
|
|
|
{
|
|
|
|
lwjglStart();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyUpdate::lwjglStart()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
LegacyInstance *inst = (LegacyInstance *)m_inst;
|
|
|
|
|
|
|
|
lwjglVersion = inst->lwjglVersion();
|
|
|
|
lwjglTargetPath = PathCombine("lwjgl", lwjglVersion);
|
|
|
|
lwjglNativesPath = PathCombine(lwjglTargetPath, "natives");
|
2013-08-09 03:56:35 +05:30
|
|
|
|
|
|
|
// if the 'done' file exists, we don't have to download this again
|
|
|
|
QFileInfo doneFile(PathCombine(lwjglTargetPath, "done"));
|
2013-10-06 04:43:40 +05:30
|
|
|
if (doneFile.exists())
|
2013-08-09 03:56:35 +05:30
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
jarStart();
|
2013-08-09 03:56:35 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
auto list = MMC->lwjgllist();
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!list->isLoaded())
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
emitFailed("Too soon! Let the LWJGL list load :)");
|
2013-08-07 05:08:18 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-12 04:09:19 +05:30
|
|
|
setStatus("Downloading new LWJGL.");
|
2013-09-16 04:24:39 +05:30
|
|
|
auto version = list->getVersion(lwjglVersion);
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!version)
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
emitFailed("Game update failed: the selected LWJGL version is invalid.");
|
|
|
|
return;
|
2013-08-07 05:08:18 +05:30
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-07 05:08:18 +05:30
|
|
|
QString url = version->url();
|
2013-08-07 05:19:19 +05:30
|
|
|
QUrl realUrl(url);
|
|
|
|
QString hostname = realUrl.host();
|
2013-09-07 07:30:58 +05:30
|
|
|
auto worker = MMC->qnam();
|
2013-08-07 05:19:19 +05:30
|
|
|
QNetworkRequest req(realUrl);
|
|
|
|
req.setRawHeader("Host", hostname.toLatin1());
|
2013-10-10 05:17:48 +05:30
|
|
|
req.setHeader(QNetworkRequest::UserAgentHeader, "MultiMC/5.0 (Cached)");
|
2013-10-06 04:43:40 +05:30
|
|
|
QNetworkReply *rep = worker->get(req);
|
|
|
|
|
|
|
|
m_reply = std::shared_ptr<QNetworkReply>(rep);
|
|
|
|
connect(rep, SIGNAL(downloadProgress(qint64, qint64)), SIGNAL(progress(qint64, qint64)));
|
|
|
|
connect(worker.get(), SIGNAL(finished(QNetworkReply *)),
|
|
|
|
SLOT(lwjglFinished(QNetworkReply *)));
|
|
|
|
// connect(rep, SIGNAL(error(QNetworkReply::NetworkError)),
|
|
|
|
// SLOT(downloadError(QNetworkReply::NetworkError)));
|
2013-08-07 05:08:18 +05:30
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void LegacyUpdate::lwjglFinished(QNetworkReply *reply)
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (m_reply.get() != reply)
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
if (reply->error() != QNetworkReply::NoError)
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
emitFailed("Failed to download: " + reply->errorString() +
|
|
|
|
"\nSometimes you have to wait a bit if you download many LWJGL versions in "
|
|
|
|
"a row. YMMV");
|
2013-08-07 05:08:18 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
auto worker = MMC->qnam();
|
2013-10-06 04:43:40 +05:30
|
|
|
// Here i check if there is a cookie for me in the reply and extract it
|
|
|
|
QList<QNetworkCookie> cookies =
|
|
|
|
qvariant_cast<QList<QNetworkCookie>>(reply->header(QNetworkRequest::SetCookieHeader));
|
|
|
|
if (cookies.count() != 0)
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
// you must tell which cookie goes with which url
|
2013-09-07 07:30:58 +05:30
|
|
|
worker->cookieJar()->setCookiesFromUrl(cookies, QUrl("sourceforge.net"));
|
2013-08-07 05:08:18 +05:30
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
// here you can check for the 302 or whatever other header i need
|
2013-08-07 05:08:18 +05:30
|
|
|
QVariant newLoc = reply->header(QNetworkRequest::LocationHeader);
|
2013-10-06 04:43:40 +05:30
|
|
|
if (newLoc.isValid())
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
|
|
|
QString redirectedTo = reply->header(QNetworkRequest::LocationHeader).toString();
|
2013-08-07 05:19:19 +05:30
|
|
|
QUrl realUrl(redirectedTo);
|
|
|
|
QString hostname = realUrl.host();
|
2013-08-07 05:08:18 +05:30
|
|
|
QNetworkRequest req(redirectedTo);
|
2013-08-07 05:19:19 +05:30
|
|
|
req.setRawHeader("Host", hostname.toLatin1());
|
2013-10-10 05:17:48 +05:30
|
|
|
req.setHeader(QNetworkRequest::UserAgentHeader, "MultiMC/5.0 (Cached)");
|
2013-10-06 04:43:40 +05:30
|
|
|
QNetworkReply *rep = worker->get(req);
|
|
|
|
connect(rep, SIGNAL(downloadProgress(qint64, qint64)),
|
|
|
|
SIGNAL(progress(qint64, qint64)));
|
|
|
|
m_reply = std::shared_ptr<QNetworkReply>(rep);
|
2013-08-07 05:08:18 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
QFile saveMe("lwjgl.zip");
|
|
|
|
saveMe.open(QIODevice::WriteOnly);
|
|
|
|
saveMe.write(m_reply->readAll());
|
|
|
|
saveMe.close();
|
|
|
|
setStatus("Installing new LWJGL...");
|
|
|
|
extractLwjgl();
|
2013-08-12 04:09:19 +05:30
|
|
|
jarStart();
|
2013-08-07 05:08:18 +05:30
|
|
|
}
|
|
|
|
void LegacyUpdate::extractLwjgl()
|
|
|
|
{
|
|
|
|
// make sure the directories are there
|
2013-08-09 03:56:35 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
bool success = ensureFolderPathExists(lwjglNativesPath);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
if (!success)
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
emitFailed("Failed to extract the lwjgl libs - error when creating required folders.");
|
2013-08-07 05:08:18 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-07 05:08:18 +05:30
|
|
|
QuaZip zip("lwjgl.zip");
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!zip.open(QuaZip::mdUnzip))
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
emitFailed("Failed to extract the lwjgl libs - not a valid archive.");
|
2013-08-07 05:08:18 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-07 05:08:18 +05:30
|
|
|
// and now we are going to access files inside it
|
|
|
|
QuaZipFile file(&zip);
|
2013-10-06 04:43:40 +05:30
|
|
|
const QString jarNames[] = {"jinput.jar", "lwjgl_util.jar", "lwjgl.jar"};
|
|
|
|
for (bool more = zip.goToFirstFile(); more; more = zip.goToNextFile())
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!file.open(QIODevice::ReadOnly))
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
|
|
|
zip.close();
|
2013-08-09 03:56:35 +05:30
|
|
|
emitFailed("Failed to extract the lwjgl libs - error while reading archive.");
|
2013-08-07 05:08:18 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
QuaZipFileInfo info;
|
|
|
|
QString name = file.getActualFileName();
|
2013-10-06 04:43:40 +05:30
|
|
|
if (name.endsWith('/'))
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
|
|
|
file.close();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QString destFileName;
|
|
|
|
// Look for the jars
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
if (name.endsWith(jarNames[i]))
|
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
destFileName = PathCombine(lwjglTargetPath, jarNames[i]);
|
2013-08-07 05:08:18 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
// Not found? look for the natives
|
2013-10-06 04:43:40 +05:30
|
|
|
if (destFileName.isEmpty())
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
QString nativesDir = "windows";
|
|
|
|
#else
|
2013-10-06 04:43:40 +05:30
|
|
|
#ifdef Q_OS_MAC
|
2013-08-26 06:23:29 +05:30
|
|
|
QString nativesDir = "macosx";
|
2013-10-06 04:43:40 +05:30
|
|
|
#else
|
2013-08-07 05:08:18 +05:30
|
|
|
QString nativesDir = "linux";
|
2013-10-06 04:43:40 +05:30
|
|
|
#endif
|
2013-08-07 05:08:18 +05:30
|
|
|
#endif
|
|
|
|
if (name.contains(nativesDir))
|
|
|
|
{
|
|
|
|
int lastSlash = name.lastIndexOf('/');
|
2013-09-16 04:24:39 +05:30
|
|
|
int lastBackSlash = name.lastIndexOf('\\');
|
2013-10-06 04:43:40 +05:30
|
|
|
if (lastSlash != -1)
|
|
|
|
name = name.mid(lastSlash + 1);
|
|
|
|
else if (lastBackSlash != -1)
|
|
|
|
name = name.mid(lastBackSlash + 1);
|
2013-08-09 03:56:35 +05:30
|
|
|
destFileName = PathCombine(lwjglNativesPath, name);
|
2013-08-07 05:08:18 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
// Now if destFileName is still empty, go to the next file.
|
|
|
|
if (!destFileName.isEmpty())
|
|
|
|
{
|
|
|
|
setStatus("Installing new LWJGL - Extracting " + name);
|
|
|
|
QFile output(destFileName);
|
|
|
|
output.open(QIODevice::WriteOnly);
|
|
|
|
output.write(file.readAll()); // FIXME: wste of memory!?
|
|
|
|
output.close();
|
|
|
|
}
|
|
|
|
file.close(); // do not forget to close!
|
|
|
|
}
|
|
|
|
zip.close();
|
2013-10-06 04:43:40 +05:30
|
|
|
m_reply.reset();
|
2013-08-09 03:56:35 +05:30
|
|
|
QFile doneFile(PathCombine(lwjglTargetPath, "done"));
|
|
|
|
doneFile.open(QIODevice::WriteOnly);
|
|
|
|
doneFile.write("done.");
|
|
|
|
doneFile.close();
|
2013-08-07 05:08:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyUpdate::lwjglFailed()
|
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
emitFailed("Bad stuff happened while trying to get the lwjgl libs...");
|
2013-08-07 05:08:18 +05:30
|
|
|
}
|
|
|
|
|
2013-08-12 04:09:19 +05:30
|
|
|
void LegacyUpdate::jarStart()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
LegacyInstance *inst = (LegacyInstance *)m_inst;
|
|
|
|
if (!inst->shouldUpdate() || inst->shouldUseCustomBaseJar())
|
2013-08-12 04:09:19 +05:30
|
|
|
{
|
2013-08-24 06:39:46 +05:30
|
|
|
ModTheJar();
|
2013-08-12 04:09:19 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
setStatus("Checking for jar updates...");
|
2013-08-12 04:09:19 +05:30
|
|
|
// Make directories
|
|
|
|
QDir binDir(inst->binDir());
|
|
|
|
if (!binDir.exists() && !binDir.mkpath("."))
|
|
|
|
{
|
|
|
|
emitFailed("Failed to create bin folder.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build a list of URLs that will need to be downloaded.
|
|
|
|
setStatus("Downloading new minecraft.jar");
|
|
|
|
|
|
|
|
QString urlstr("http://s3.amazonaws.com/Minecraft.Download/versions/");
|
2013-08-24 06:39:46 +05:30
|
|
|
QString intended_version_id = inst->intendedVersionId();
|
|
|
|
urlstr += intended_version_id + "/" + intended_version_id + ".jar";
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
auto dljob = new NetJob("Minecraft.jar for version " + intended_version_id);
|
|
|
|
dljob->addNetAction(FileDownload::make(QUrl(urlstr), inst->defaultBaseJar()));
|
2013-09-08 23:05:36 +05:30
|
|
|
legacyDownloadJob.reset(dljob);
|
2013-09-08 23:46:38 +05:30
|
|
|
connect(dljob, SIGNAL(succeeded()), SLOT(jarFinished()));
|
|
|
|
connect(dljob, SIGNAL(failed()), SLOT(jarFailed()));
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(dljob, SIGNAL(progress(qint64, qint64)), SIGNAL(progress(qint64, qint64)));
|
2013-09-02 03:55:40 +05:30
|
|
|
legacyDownloadJob->start();
|
2013-08-12 04:09:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyUpdate::jarFinished()
|
|
|
|
{
|
|
|
|
// process the jar
|
2013-08-24 06:39:46 +05:30
|
|
|
ModTheJar();
|
2013-08-12 04:09:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyUpdate::jarFailed()
|
|
|
|
{
|
|
|
|
// bad, bad
|
|
|
|
emitFailed("Failed to download the minecraft jar. Try again later.");
|
|
|
|
}
|
2013-08-14 11:43:41 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
bool LegacyUpdate::MergeZipFiles(QuaZip *into, QFileInfo from, QSet<QString> &contained,
|
|
|
|
MetainfAction metainf)
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
|
|
|
setStatus("Installing mods - Adding " + from.fileName());
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
QuaZip modZip(from.filePath());
|
|
|
|
modZip.open(QuaZip::mdUnzip);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
QuaZipFile fileInsideMod(&modZip);
|
2013-10-06 04:43:40 +05:30
|
|
|
QuaZipFile zipOutFile(into);
|
|
|
|
for (bool more = modZip.goToFirstFile(); more; more = modZip.goToNextFile())
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
|
|
|
QString filename = modZip.getCurrentFileName();
|
2013-10-06 04:43:40 +05:30
|
|
|
if (filename.contains("META-INF") && metainf == LegacyUpdate::IgnoreMetainf)
|
2013-08-29 01:22:19 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Skipping META-INF " << filename << " from " << from.fileName();
|
2013-08-24 06:39:46 +05:30
|
|
|
continue;
|
2013-08-29 01:22:19 +05:30
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
if (contained.contains(filename))
|
2013-08-29 01:22:19 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Skipping already contained file " << filename << " from "
|
|
|
|
<< from.fileName();
|
2013-08-24 06:39:46 +05:30
|
|
|
continue;
|
2013-08-29 01:22:19 +05:30
|
|
|
}
|
2013-08-24 06:39:46 +05:30
|
|
|
contained.insert(filename);
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Adding file " << filename << " from " << from.fileName();
|
|
|
|
|
|
|
|
if (!fileInsideMod.open(QIODevice::ReadOnly))
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_ERROR() << "Failed to open " << filename << " from " << from.fileName();
|
2013-08-24 06:39:46 +05:30
|
|
|
return false;
|
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
/*
|
|
|
|
QuaZipFileInfo old_info;
|
|
|
|
fileInsideMod.getFileInfo(&old_info);
|
|
|
|
*/
|
|
|
|
QuaZipNewInfo info_out(fileInsideMod.getActualFileName());
|
|
|
|
/*
|
|
|
|
info_out.externalAttr = old_info.externalAttr;
|
|
|
|
*/
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!zipOutFile.open(QIODevice::WriteOnly, info_out))
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_ERROR() << "Failed to open " << filename << " in the jar";
|
2013-08-24 06:39:46 +05:30
|
|
|
fileInsideMod.close();
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!JlCompress::copyData(fileInsideMod, zipOutFile))
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
|
|
|
zipOutFile.close();
|
|
|
|
fileInsideMod.close();
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_ERROR() << "Failed to copy data of " << filename << " into the jar";
|
2013-08-24 06:39:46 +05:30
|
|
|
return false;
|
|
|
|
}
|
|
|
|
zipOutFile.close();
|
|
|
|
fileInsideMod.close();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
void LegacyUpdate::ModTheJar()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
LegacyInstance *inst = (LegacyInstance *)m_inst;
|
|
|
|
|
|
|
|
if (!inst->shouldRebuild())
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
|
|
|
emitSucceeded();
|
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
// Get the mod list
|
2013-08-24 06:39:46 +05:30
|
|
|
auto modList = inst->jarModList();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
QFileInfo runnableJar(inst->runnableJar());
|
|
|
|
QFileInfo baseJar(inst->baseJar());
|
2013-08-24 06:39:46 +05:30
|
|
|
bool base_is_custom = inst->shouldUseCustomBaseJar();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
// Nothing to do if there are no jar mods to install, no backup and just the mc jar
|
2013-10-06 04:43:40 +05:30
|
|
|
if (base_is_custom)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-24 06:39:46 +05:30
|
|
|
// yes, this can happen if the instance only has the runnable jar and not the base jar
|
|
|
|
// it *could* be assumed that such an instance is vanilla, but that wouldn't be safe
|
|
|
|
// because that's not something mmc4 guarantees
|
2013-10-06 04:43:40 +05:30
|
|
|
if (runnableJar.isFile() && !baseJar.exists() && modList->empty())
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
|
|
|
inst->setShouldRebuild(false);
|
|
|
|
emitSucceeded();
|
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
setStatus("Installing mods - backing up minecraft.jar...");
|
|
|
|
if (!baseJar.exists() && !QFile::copy(runnableJar.filePath(), baseJar.filePath()))
|
|
|
|
{
|
|
|
|
emitFailed("Failed to back up minecraft.jar");
|
|
|
|
return;
|
|
|
|
}
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
if (!baseJar.exists())
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-24 06:39:46 +05:30
|
|
|
emitFailed("The base jar " + baseJar.filePath() + " does not exist");
|
2013-08-14 11:43:41 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
if (runnableJar.exists() && !QFile::remove(runnableJar.filePath()))
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
|
|
|
emitFailed("Failed to delete old minecraft.jar");
|
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
// TaskStep(); // STEP 1
|
2013-08-14 11:43:41 +05:30
|
|
|
setStatus("Installing mods - Opening minecraft.jar");
|
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
QuaZip zipOut(runnableJar.filePath());
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!zipOut.open(QuaZip::mdCreate))
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
|
|
|
QFile::remove(runnableJar.filePath());
|
|
|
|
emitFailed("Failed to open the minecraft.jar for modding");
|
|
|
|
return;
|
|
|
|
}
|
2013-08-14 11:43:41 +05:30
|
|
|
// Files already added to the jar.
|
|
|
|
// These files will be skipped.
|
|
|
|
QSet<QString> addedFiles;
|
|
|
|
|
|
|
|
// Modify the jar
|
|
|
|
setStatus("Installing mods - Adding mod files...");
|
2013-08-24 06:39:46 +05:30
|
|
|
for (int i = modList->size() - 1; i >= 0; i--)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-24 06:39:46 +05:30
|
|
|
auto &mod = modList->operator[](i);
|
|
|
|
if (mod.type() == Mod::MOD_ZIPFILE)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!MergeZipFiles(&zipOut, mod.filename(), addedFiles, LegacyUpdate::KeepMetainf))
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-24 06:39:46 +05:30
|
|
|
zipOut.close();
|
|
|
|
QFile::remove(runnableJar.filePath());
|
|
|
|
emitFailed("Failed to add " + mod.filename().fileName() + " to the jar.");
|
|
|
|
return;
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
}
|
2013-08-24 06:39:46 +05:30
|
|
|
else if (mod.type() == Mod::MOD_SINGLEFILE)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
auto filename = mod.filename();
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!JlCompress::compressFile(&zipOut, filename.absoluteFilePath(),
|
|
|
|
filename.fileName()))
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
zipOut.close();
|
|
|
|
QFile::remove(runnableJar.filePath());
|
|
|
|
emitFailed("Failed to add " + filename.fileName() + " to the jar");
|
|
|
|
return;
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
addedFiles.insert(filename.fileName());
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Adding file " << filename.fileName() << " from "
|
|
|
|
<< filename.absoluteFilePath();
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
2013-08-24 06:39:46 +05:30
|
|
|
else if (mod.type() == Mod::MOD_FOLDER)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
auto filename = mod.filename();
|
|
|
|
QString what_to_zip = filename.absoluteFilePath();
|
|
|
|
QDir dir(what_to_zip);
|
|
|
|
dir.cdUp();
|
|
|
|
QString parent_dir = dir.absolutePath();
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!JlCompress::compressSubDir(&zipOut, what_to_zip, parent_dir, true, addedFiles))
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
|
|
|
zipOut.close();
|
|
|
|
QFile::remove(runnableJar.filePath());
|
|
|
|
emitFailed("Failed to add " + filename.fileName() + " to the jar");
|
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Adding folder " << filename.fileName() << " from "
|
|
|
|
<< filename.absoluteFilePath();
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
if (!MergeZipFiles(&zipOut, baseJar, addedFiles, LegacyUpdate::IgnoreMetainf))
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
|
|
|
zipOut.close();
|
|
|
|
QFile::remove(runnableJar.filePath());
|
|
|
|
emitFailed("Failed to insert minecraft.jar contents.");
|
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
// Recompress the jar
|
2013-08-24 06:39:46 +05:30
|
|
|
zipOut.close();
|
2013-10-06 04:43:40 +05:30
|
|
|
if (zipOut.getZipError() != 0)
|
2013-08-24 06:39:46 +05:30
|
|
|
{
|
|
|
|
QFile::remove(runnableJar.filePath());
|
|
|
|
emitFailed("Failed to finalize minecraft.jar!");
|
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
}
|
2013-08-24 06:39:46 +05:30
|
|
|
inst->setShouldRebuild(false);
|
2013-10-06 04:43:40 +05:30
|
|
|
// inst->UpdateVersion(true);
|
2013-08-24 06:39:46 +05:30
|
|
|
emitSucceeded();
|
|
|
|
return;
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|