2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-08-07 05:08:18 +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-11-04 07:23:05 +05:30
|
|
|
*
|
2013-08-07 05:08:18 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QList>
|
|
|
|
#include <QUrl>
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "logic/net/NetJob.h"
|
|
|
|
#include "logic/tasks/Task.h"
|
2015-01-28 03:01:07 +05:30
|
|
|
#include "logic/minecraft/VersionFilterData.h"
|
2013-08-07 05:08:18 +05:30
|
|
|
|
|
|
|
class MinecraftVersion;
|
|
|
|
class BaseInstance;
|
2013-08-24 06:39:46 +05:30
|
|
|
class QuaZip;
|
|
|
|
class Mod;
|
2013-08-07 05:08:18 +05:30
|
|
|
|
2013-11-24 11:06:16 +05:30
|
|
|
class LegacyUpdate : public Task
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-01-27 07:30:49 +05:30
|
|
|
explicit LegacyUpdate(BaseInstance *inst, QObject *parent = 0);
|
2013-08-07 05:08:18 +05:30
|
|
|
virtual void executeTask();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2013-08-07 05:08:18 +05:30
|
|
|
void lwjglStart();
|
2013-11-04 07:23:05 +05:30
|
|
|
void lwjglFinished(QNetworkReply *);
|
2013-08-07 05:08:18 +05:30
|
|
|
void lwjglFailed();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-12 04:09:19 +05:30
|
|
|
void jarStart();
|
|
|
|
void jarFinished();
|
|
|
|
void jarFailed();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-04-20 00:54:11 +05:30
|
|
|
void fmllibsStart();
|
|
|
|
void fmllibsFinished();
|
|
|
|
void fmllibsFailed();
|
|
|
|
|
2013-08-07 05:08:18 +05:30
|
|
|
void extractLwjgl();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
void ModTheJar();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
private:
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<QNetworkReply> m_reply;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-07 05:08:18 +05:30
|
|
|
// target version, determined during this task
|
|
|
|
// MinecraftVersion *targetVersion;
|
|
|
|
QString lwjglURL;
|
|
|
|
QString lwjglVersion;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-09 03:56:35 +05:30
|
|
|
QString lwjglTargetPath;
|
|
|
|
QString lwjglNativesPath;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-12 04:09:19 +05:30
|
|
|
private:
|
2013-10-26 23:25:48 +05:30
|
|
|
NetJobPtr legacyDownloadJob;
|
2013-11-25 05:16:52 +05:30
|
|
|
BaseInstance *m_inst = nullptr;
|
2014-04-20 00:54:11 +05:30
|
|
|
QList<FMLlib> fmlLibsToProcess;
|
2013-08-07 05:08:18 +05:30
|
|
|
};
|