2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2020-06-07 21:16:12 +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
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-10-03 04:25:54 +05:30
|
|
|
#pragma once
|
|
|
|
|
2018-03-19 07:06:12 +05:30
|
|
|
#include "InstanceTask.h"
|
2016-10-03 04:25:54 +05:30
|
|
|
#include "net/NetJob.h"
|
|
|
|
#include <QUrl>
|
2016-10-26 21:42:33 +05:30
|
|
|
#include <QFuture>
|
|
|
|
#include <QFutureWatcher>
|
2016-10-03 04:25:54 +05:30
|
|
|
#include "settings/SettingsObject.h"
|
2017-04-20 08:52:04 +05:30
|
|
|
#include "QObjectPtr.h"
|
2016-10-03 04:25:54 +05:30
|
|
|
|
2021-02-09 09:34:23 +05:30
|
|
|
#include <nonstd/optional>
|
|
|
|
|
2017-09-04 11:47:25 +05:30
|
|
|
class QuaZip;
|
2017-04-22 22:21:04 +05:30
|
|
|
namespace Flame
|
2017-04-20 08:52:04 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
class FileResolvingTask;
|
2017-04-20 08:52:04 +05:30
|
|
|
}
|
2016-10-03 04:25:54 +05:30
|
|
|
|
2021-07-25 22:41:59 +05:30
|
|
|
class InstanceImportTask : public InstanceTask
|
2016-10-03 04:25:54 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2016-10-03 04:25:54 +05:30
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit InstanceImportTask(const QUrl sourceUrl);
|
2016-10-03 04:25:54 +05:30
|
|
|
|
|
|
|
protected:
|
2018-07-15 18:21:05 +05:30
|
|
|
//! Entry point for tasks.
|
|
|
|
virtual void executeTask() override;
|
2016-10-03 04:25:54 +05:30
|
|
|
|
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
void processZipPack();
|
|
|
|
void processMultiMC();
|
|
|
|
void processFlame();
|
2020-06-07 21:16:12 +05:30
|
|
|
void processTechnic();
|
2016-10-03 04:25:54 +05:30
|
|
|
|
|
|
|
private slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void downloadSucceeded();
|
|
|
|
void downloadFailed(QString reason);
|
|
|
|
void downloadProgressChanged(qint64 current, qint64 total);
|
|
|
|
void extractFinished();
|
|
|
|
void extractAborted();
|
2016-10-03 04:25:54 +05:30
|
|
|
|
|
|
|
private: /* data */
|
2021-11-22 03:51:12 +05:30
|
|
|
NetJob::Ptr m_filesNetJob;
|
2018-07-15 18:21:05 +05:30
|
|
|
shared_qobject_ptr<Flame::FileResolvingTask> m_modIdResolver;
|
|
|
|
QUrl m_sourceUrl;
|
|
|
|
QString m_archivePath;
|
|
|
|
bool m_downloadRequired = false;
|
|
|
|
std::unique_ptr<QuaZip> m_packZip;
|
2021-02-09 09:34:23 +05:30
|
|
|
QFuture<nonstd::optional<QStringList>> m_extractFuture;
|
|
|
|
QFutureWatcher<nonstd::optional<QStringList>> m_extractFutureWatcher;
|
2018-07-15 18:21:05 +05:30
|
|
|
enum class ModpackType{
|
|
|
|
Unknown,
|
|
|
|
MultiMC,
|
2020-06-07 21:16:12 +05:30
|
|
|
Flame,
|
|
|
|
Technic
|
2018-07-15 18:21:05 +05:30
|
|
|
} m_modpackType = ModpackType::Unknown;
|
2016-10-03 04:25:54 +05:30
|
|
|
};
|