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