2015-02-02 14:25:30 -08:00
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-02-21 18:10:17 -06: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-02-21 18:10:17 -06: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.
|
|
|
|
*/
|
|
|
|
|
2013-07-29 00:59:35 +02:00
|
|
|
#pragma once
|
2013-02-21 18:10:17 -06:00
|
|
|
|
|
|
|
#include <QObject>
|
2013-05-08 12:56:43 -05:00
|
|
|
#include <QList>
|
|
|
|
#include <QUrl>
|
|
|
|
|
2015-02-09 01:51:14 +01:00
|
|
|
#include "net/NetJob.h"
|
|
|
|
#include "tasks/Task.h"
|
|
|
|
#include "minecraft/VersionFilterData.h"
|
2014-05-05 00:10:59 +02:00
|
|
|
#include <quazip.h>
|
2013-06-22 23:34:33 +02:00
|
|
|
|
2013-07-07 23:51:26 +02:00
|
|
|
class MinecraftVersion;
|
2014-02-21 19:15:59 +01:00
|
|
|
class OneSixInstance;
|
2013-06-22 23:34:33 +02:00
|
|
|
|
2013-11-24 06:36:16 +01:00
|
|
|
class OneSixUpdate : public Task
|
2013-02-21 18:10:17 -06:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-21 19:15:59 +01:00
|
|
|
explicit OneSixUpdate(OneSixInstance *inst, QObject *parent = 0);
|
2013-05-08 12:56:43 -05:00
|
|
|
virtual void executeTask();
|
2013-11-04 02:53:05 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2014-05-11 12:37:21 +02:00
|
|
|
void versionUpdateFailed(QString reason);
|
2013-11-04 02:53:05 +01:00
|
|
|
|
2013-08-05 03:29:50 +02:00
|
|
|
void jarlibStart();
|
2013-07-09 22:46:33 +02:00
|
|
|
void jarlibFinished();
|
2015-04-26 23:04:50 +02:00
|
|
|
void jarlibFailed(QString reason);
|
2013-11-04 02:53:05 +01:00
|
|
|
|
2014-05-05 00:10:59 +02:00
|
|
|
void fmllibsStart();
|
|
|
|
void fmllibsFinished();
|
2015-04-26 23:04:50 +02:00
|
|
|
void fmllibsFailed(QString reason);
|
2014-05-05 00:10:59 +02:00
|
|
|
|
2013-12-10 07:12:52 +01:00
|
|
|
void assetIndexStart();
|
|
|
|
void assetIndexFinished();
|
2015-04-26 23:04:50 +02:00
|
|
|
void assetIndexFailed(QString reason);
|
2013-12-10 07:12:52 +01:00
|
|
|
|
|
|
|
void assetsFinished();
|
2015-04-26 23:04:50 +02:00
|
|
|
void assetsFailed(QString reason);
|
2013-12-10 07:12:52 +01:00
|
|
|
|
2013-02-21 18:10:17 -06:00
|
|
|
private:
|
2013-10-26 19:55:48 +02:00
|
|
|
NetJobPtr jarlibDownloadJob;
|
2014-05-05 00:10:59 +02:00
|
|
|
NetJobPtr legacyDownloadJob;
|
2013-11-04 02:53:05 +01:00
|
|
|
|
2014-05-11 12:37:21 +02:00
|
|
|
/// target version, determined during this task
|
2013-10-06 01:13:40 +02:00
|
|
|
std::shared_ptr<MinecraftVersion> targetVersion;
|
2014-05-11 12:37:21 +02:00
|
|
|
/// the task that is spawned for version updates
|
|
|
|
std::shared_ptr<Task> versionUpdateTask;
|
2014-12-18 02:48:14 +01:00
|
|
|
|
2014-02-21 19:15:59 +01:00
|
|
|
OneSixInstance *m_inst = nullptr;
|
2014-05-05 00:10:59 +02:00
|
|
|
QString jarHashOnEntry;
|
|
|
|
QList<FMLlib> fmlLibsToProcess;
|
2013-02-21 18:10:17 -06:00
|
|
|
};
|