2022-05-05 20:14:19 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
2021-12-18 00:07:57 +00:00
|
|
|
/*
|
2022-05-05 20:14:19 +01:00
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2021-12-18 00:07:57 +00:00
|
|
|
*
|
2022-05-05 20:14:19 +01:00
|
|
|
* 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.
|
2021-12-18 00:07:57 +00:00
|
|
|
*
|
2022-05-05 20:14:19 +01:00
|
|
|
* 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.
|
2021-12-18 00:07:57 +00:00
|
|
|
*
|
2022-05-05 20:14:19 +01:00
|
|
|
* 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 2020-2021 Jamie Mansfield <jmansfield@cadixdev.org>
|
|
|
|
* Copyright 2021 Petr Mrazek <peterix@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
2021-12-18 00:07:57 +00:00
|
|
|
*/
|
|
|
|
|
2020-08-24 23:13:43 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <meta/VersionList.h>
|
|
|
|
#include "ATLPackManifest.h"
|
|
|
|
|
|
|
|
#include "InstanceTask.h"
|
2023-06-23 17:13:52 +01:00
|
|
|
#include "meta/Version.h"
|
2020-08-24 23:13:43 +01:00
|
|
|
#include "minecraft/MinecraftInstance.h"
|
|
|
|
#include "minecraft/PackProfile.h"
|
2023-06-23 17:13:52 +01:00
|
|
|
#include "net/NetJob.h"
|
|
|
|
#include "settings/INISettingsObject.h"
|
2020-08-24 23:13:43 +01:00
|
|
|
|
2023-06-23 17:13:52 +01:00
|
|
|
#include <memory>
|
2022-07-20 13:21:44 +01:00
|
|
|
#include <optional>
|
2021-02-09 04:04:23 +00:00
|
|
|
|
2020-08-24 23:13:43 +01:00
|
|
|
namespace ATLauncher {
|
|
|
|
|
2022-05-23 17:22:21 +01:00
|
|
|
enum class InstallMode {
|
|
|
|
Install,
|
|
|
|
Reinstall,
|
|
|
|
Update,
|
|
|
|
};
|
|
|
|
|
2021-07-25 18:11:59 +01:00
|
|
|
class UserInteractionSupport {
|
2023-06-23 17:13:52 +01:00
|
|
|
public:
|
2021-05-28 15:03:14 +01:00
|
|
|
/**
|
|
|
|
* Requests a user interaction to select which optional mods should be installed.
|
|
|
|
*/
|
2022-10-20 18:30:32 +01:00
|
|
|
virtual std::optional<QVector<QString>> chooseOptionalMods(PackVersion version, QVector<ATLauncher::VersionMod> mods) = 0;
|
2021-05-28 15:03:14 +01:00
|
|
|
|
2021-04-13 18:30:37 +01:00
|
|
|
/**
|
|
|
|
* Requests a user interaction to select a component version from a given version list
|
|
|
|
* and constrained to a given Minecraft version.
|
|
|
|
*/
|
2022-11-01 22:48:26 +00:00
|
|
|
virtual QString chooseVersion(Meta::VersionList::Ptr vlist, QString minecraftVersion) = 0;
|
2021-04-13 18:30:37 +01:00
|
|
|
|
2022-05-05 20:14:19 +01:00
|
|
|
/**
|
|
|
|
* Requests a user interaction to display a message.
|
|
|
|
*/
|
|
|
|
virtual void displayMessage(QString message) = 0;
|
2023-06-23 17:13:52 +01:00
|
|
|
|
|
|
|
virtual ~UserInteractionSupport() = default;
|
2021-04-13 18:30:37 +01:00
|
|
|
};
|
|
|
|
|
2023-06-23 17:13:52 +01:00
|
|
|
class PackInstallTask : public InstanceTask {
|
|
|
|
Q_OBJECT
|
2020-08-24 23:13:43 +01:00
|
|
|
|
2023-06-23 17:13:52 +01:00
|
|
|
public:
|
|
|
|
explicit PackInstallTask(UserInteractionSupport* support,
|
|
|
|
QString packName,
|
|
|
|
QString version,
|
|
|
|
InstallMode installMode = InstallMode::Install);
|
|
|
|
virtual ~PackInstallTask() { delete m_support; }
|
2020-08-24 23:13:43 +01:00
|
|
|
|
2021-07-06 15:22:41 +01:00
|
|
|
bool canAbort() const override { return true; }
|
2020-08-24 23:13:43 +01:00
|
|
|
bool abort() override;
|
|
|
|
|
2023-06-23 17:13:52 +01:00
|
|
|
protected:
|
2020-08-24 23:13:43 +01:00
|
|
|
virtual void executeTask() override;
|
|
|
|
|
2023-06-23 17:13:52 +01:00
|
|
|
private slots:
|
2020-08-24 23:13:43 +01:00
|
|
|
void onDownloadSucceeded();
|
|
|
|
void onDownloadFailed(QString reason);
|
2022-07-28 19:58:04 +01:00
|
|
|
void onDownloadAborted();
|
2020-08-24 23:13:43 +01:00
|
|
|
|
2021-02-09 04:04:23 +00:00
|
|
|
void onModsDownloaded();
|
|
|
|
void onModsExtracted();
|
|
|
|
|
2023-06-23 17:13:52 +01:00
|
|
|
private:
|
2020-08-24 23:13:43 +01:00
|
|
|
QString getDirForModType(ModType type, QString raw);
|
|
|
|
QString getVersionForLoader(QString uid);
|
|
|
|
QString detectLibrary(VersionLibrary library);
|
|
|
|
|
|
|
|
bool createLibrariesComponent(QString instanceRoot, std::shared_ptr<PackProfile> profile);
|
|
|
|
bool createPackComponent(QString instanceRoot, std::shared_ptr<PackProfile> profile);
|
|
|
|
|
2022-05-25 23:09:24 +01:00
|
|
|
void deleteExistingFiles();
|
2020-08-24 23:13:43 +01:00
|
|
|
void installConfigs();
|
|
|
|
void extractConfigs();
|
2021-02-09 04:04:23 +00:00
|
|
|
void downloadMods();
|
2023-06-23 17:13:52 +01:00
|
|
|
bool extractMods(const QMap<QString, VersionMod>& toExtract,
|
|
|
|
const QMap<QString, VersionMod>& toDecomp,
|
|
|
|
const QMap<QString, QString>& toCopy);
|
2020-08-24 23:13:43 +01:00
|
|
|
void install();
|
|
|
|
|
2023-06-23 17:13:52 +01:00
|
|
|
private:
|
|
|
|
UserInteractionSupport* m_support;
|
2021-04-13 18:30:37 +01:00
|
|
|
|
2021-07-06 15:22:41 +01:00
|
|
|
bool abortable = false;
|
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
NetJob::Ptr jobPtr;
|
2023-06-23 17:13:52 +01:00
|
|
|
std::shared_ptr<QByteArray> response = std::make_shared<QByteArray>();
|
2020-08-24 23:13:43 +01:00
|
|
|
|
2022-05-23 17:22:21 +01:00
|
|
|
InstallMode m_install_mode;
|
2022-05-22 14:34:11 +01:00
|
|
|
QString m_pack_name;
|
|
|
|
QString m_pack_safe_name;
|
2020-08-24 23:13:43 +01:00
|
|
|
QString m_version_name;
|
|
|
|
PackVersion m_version;
|
|
|
|
|
|
|
|
QMap<QString, VersionMod> modsToExtract;
|
|
|
|
QMap<QString, VersionMod> modsToDecomp;
|
2021-02-09 04:04:23 +00:00
|
|
|
QMap<QString, QString> modsToCopy;
|
2020-08-24 23:13:43 +01:00
|
|
|
|
|
|
|
QString archivePath;
|
|
|
|
QStringList jarmods;
|
2022-11-01 22:48:26 +00:00
|
|
|
Meta::Version::Ptr minecraftVersion;
|
|
|
|
QMap<QString, Meta::Version::Ptr> componentsToInstall;
|
2020-08-24 23:13:43 +01:00
|
|
|
|
2022-07-20 13:21:44 +01:00
|
|
|
QFuture<std::optional<QStringList>> m_extractFuture;
|
|
|
|
QFutureWatcher<std::optional<QStringList>> m_extractFutureWatcher;
|
2021-02-09 04:04:23 +00:00
|
|
|
|
|
|
|
QFuture<bool> m_modExtractFuture;
|
|
|
|
QFutureWatcher<bool> m_modExtractFutureWatcher;
|
2020-08-24 23:13:43 +01:00
|
|
|
};
|
|
|
|
|
2023-06-23 17:13:52 +01:00
|
|
|
} // namespace ATLauncher
|