bb386a1162
Also carry on the original ID to avoid updating the wrong instance. Signed-off-by: flow <flowlnlnln@gmail.com>
95 lines
3.0 KiB
C++
95 lines
3.0 KiB
C++
// SPDX-License-Identifier: GPL-3.0-only
|
|
/*
|
|
* Prism Launcher - Minecraft Launcher
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "InstanceCreationTask.h"
|
|
|
|
#include <optional>
|
|
|
|
#include "minecraft/MinecraftInstance.h"
|
|
|
|
#include "modplatform/flame/FileResolvingTask.h"
|
|
|
|
#include "net/NetJob.h"
|
|
|
|
#include "ui/dialogs/BlockedModsDialog.h"
|
|
|
|
class FlameCreationTask final : public InstanceCreationTask {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FlameCreationTask(const QString& staging_path,
|
|
SettingsObjectPtr global_settings,
|
|
QWidget* parent,
|
|
QString id,
|
|
QString version_id,
|
|
QString original_instance_id = {})
|
|
: InstanceCreationTask()
|
|
, m_parent(parent)
|
|
, m_managed_id(std::move(id))
|
|
, m_managed_version_id(std::move(version_id))
|
|
{
|
|
setStagingPath(staging_path);
|
|
setParentSettings(global_settings);
|
|
|
|
m_original_instance_id = std::move(original_instance_id);
|
|
}
|
|
|
|
bool abort() override;
|
|
|
|
bool updateInstance() override;
|
|
bool createInstance() override;
|
|
|
|
private slots:
|
|
void idResolverSucceeded(QEventLoop&);
|
|
void setupDownloadJob(QEventLoop&);
|
|
void copyBlockedMods(QList<BlockedMod> const& blocked_mods);
|
|
|
|
private:
|
|
QWidget* m_parent = nullptr;
|
|
|
|
shared_qobject_ptr<Flame::FileResolvingTask> m_mod_id_resolver;
|
|
Flame::Manifest m_pack;
|
|
|
|
// Handle to allow aborting
|
|
NetJob* m_process_update_file_info_job = nullptr;
|
|
NetJob::Ptr m_files_job = nullptr;
|
|
|
|
QString m_managed_id, m_managed_version_id;
|
|
|
|
std::optional<InstancePtr> m_instance;
|
|
};
|