2022-05-15 16:50:05 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2020-06-07 21:16:12 +05:30
|
|
|
*
|
2022-05-15 16:50:05 +05:30
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
2020-06-07 21:16:12 +05:30
|
|
|
*
|
2022-05-15 16:50:05 +05:30
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2020-06-07 21:16:12 +05:30
|
|
|
*
|
2022-05-15 16:50:05 +05:30
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* 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.
|
2020-06-07 21:16:12 +05:30
|
|
|
*/
|
|
|
|
|
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"
|
2022-05-29 01:23:12 +05:30
|
|
|
#include "modplatform/flame/PackManifest.h"
|
2016-10-03 04:25:54 +05:30
|
|
|
|
2022-07-20 17:51:44 +05:30
|
|
|
#include <optional>
|
2021-02-09 09:34:23 +05:30
|
|
|
|
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:
|
2022-05-16 06:46:52 +05:30
|
|
|
explicit InstanceImportTask(const QUrl sourceUrl, QWidget* parent = nullptr);
|
2016-10-03 04:25:54 +05:30
|
|
|
|
2022-04-08 03:26:34 +05:30
|
|
|
bool canAbort() const override { return true; }
|
|
|
|
bool abort() override;
|
2022-05-29 01:23:12 +05:30
|
|
|
const QVector<Flame::File> &getBlockedFiles() const
|
|
|
|
{
|
|
|
|
return m_blockedMods;
|
|
|
|
}
|
2022-04-08 03:26:34 +05:30
|
|
|
|
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();
|
2020-06-07 21:16:12 +05:30
|
|
|
void processTechnic();
|
2022-01-31 19:55:36 +05:30
|
|
|
void processFlame();
|
|
|
|
void processModrinth();
|
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;
|
2022-07-20 17:51:44 +05:30
|
|
|
QFuture<std::optional<QStringList>> m_extractFuture;
|
|
|
|
QFutureWatcher<std::optional<QStringList>> m_extractFutureWatcher;
|
2022-05-29 01:23:12 +05:30
|
|
|
QVector<Flame::File> m_blockedMods;
|
2018-07-15 18:21:05 +05:30
|
|
|
enum class ModpackType{
|
|
|
|
Unknown,
|
|
|
|
MultiMC,
|
2022-01-31 19:55:36 +05:30
|
|
|
Technic,
|
2020-06-07 21:16:12 +05:30
|
|
|
Flame,
|
2022-01-31 19:55:36 +05:30
|
|
|
Modrinth,
|
2018-07-15 18:21:05 +05:30
|
|
|
} m_modpackType = ModpackType::Unknown;
|
2022-05-16 06:46:52 +05:30
|
|
|
|
|
|
|
//FIXME: nuke
|
|
|
|
QWidget* m_parent;
|
2016-10-03 04:25:54 +05:30
|
|
|
};
|