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