2023-01-14 16:21:52 +00:00
|
|
|
// SPDX-FileCopyrightText: 2022-2023 Sefa Eyeoglu <contact@scrumplex.net>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only AND Apache-2.0
|
|
|
|
|
2022-10-08 19:09:53 +01:00
|
|
|
/*
|
2022-11-08 11:20:13 +00:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2023-01-14 16:21:52 +00:00
|
|
|
* Copyright (C) 2022-2023 Sefa Eyeoglu <contact@scrumplex.net>
|
2022-11-08 11:20:13 +00:00
|
|
|
* Copyright (C) 2022 TheKodeToad <TheKodeToad@proton.me>
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-10-08 19:09:53 +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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-10-08 19:09:53 +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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-10-08 19:09:53 +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 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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*/
|
|
|
|
|
2013-07-22 01:01:56 +01:00
|
|
|
#pragma once
|
2014-01-24 17:12:02 +00:00
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
|
|
|
|
#include <QList>
|
2023-08-14 17:16:53 +01:00
|
|
|
#include <QString>
|
2013-10-06 00:13:40 +01:00
|
|
|
#include <memory>
|
2023-08-23 11:36:31 +01:00
|
|
|
#include <optional>
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
#include "Component.h"
|
|
|
|
#include "LaunchProfile.h"
|
2023-08-23 10:52:51 +01:00
|
|
|
#include "modplatform/ModIndex.h"
|
2023-08-14 17:16:53 +01:00
|
|
|
#include "net/Mode.h"
|
2015-09-05 17:46:57 +01:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
class MinecraftInstance;
|
2020-06-27 11:02:31 +01:00
|
|
|
struct PackProfileData;
|
2017-11-11 00:38:31 +00:00
|
|
|
class ComponentUpdateTask;
|
2015-09-05 17:46:57 +01:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
class PackProfile : public QAbstractListModel {
|
2014-01-24 17:12:02 +00:00
|
|
|
Q_OBJECT
|
2017-11-11 00:38:31 +00:00
|
|
|
friend ComponentUpdateTask;
|
2023-08-14 17:16:53 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
enum Columns { NameColumn = 0, VersionColumn, NUM_COLUMNS };
|
|
|
|
|
|
|
|
explicit PackProfile(MinecraftInstance* instance);
|
2020-06-27 11:02:31 +01:00
|
|
|
virtual ~PackProfile();
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
virtual QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
|
|
|
virtual bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override;
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
2023-08-14 17:16:53 +01:00
|
|
|
virtual int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
virtual int columnCount(const QModelIndex& parent) const override;
|
|
|
|
virtual Qt::ItemFlags flags(const QModelIndex& index) const override;
|
2013-09-22 03:21:36 +01:00
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
/// call this to explicitly mark the component list as loaded - this is used to build a new component list from scratch.
|
|
|
|
void buildingFromScratch();
|
|
|
|
|
2015-01-27 21:31:07 +00:00
|
|
|
/// install more jar mods
|
2014-05-19 01:22:09 +01:00
|
|
|
void installJarMods(QStringList selectedFiles);
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2017-10-11 22:04:24 +01:00
|
|
|
/// install a jar/zip as a replacement for the main jar
|
2017-08-06 23:46:29 +01:00
|
|
|
void installCustomJar(QString selectedFile);
|
|
|
|
|
2023-01-11 12:50:57 +00:00
|
|
|
/// install MMC/Prism component files
|
2023-01-25 09:43:23 +00:00
|
|
|
bool installComponents(QStringList selectedFiles);
|
2023-01-11 12:50:57 +00:00
|
|
|
|
2022-11-08 11:20:13 +00:00
|
|
|
/// install Java agent files
|
|
|
|
void installAgents(QStringList selectedFiles);
|
|
|
|
|
2014-03-14 18:51:56 +00:00
|
|
|
enum MoveDirection { MoveUp, MoveDown };
|
2017-11-11 00:38:31 +00:00
|
|
|
/// move component file # up or down the list
|
2014-03-14 18:51:56 +00:00
|
|
|
void move(const int index, const MoveDirection direction);
|
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
/// remove component file # - including files/records
|
2014-02-01 13:52:21 +00:00
|
|
|
bool remove(const int index);
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
/// remove component file by id - including files/records
|
2014-03-30 23:19:43 +01:00
|
|
|
bool remove(const QString id);
|
2014-02-01 13:52:21 +00:00
|
|
|
|
2015-05-17 22:38:28 +01:00
|
|
|
bool customize(int index);
|
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
bool revertToBase(int index);
|
2015-05-17 22:38:28 +01:00
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
/// reload the list, reload all components, resolve dependencies
|
|
|
|
void reload(Net::Mode netmode);
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
// reload all components, resolve dependencies
|
|
|
|
void resolve(Net::Mode netmode);
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
/// get current running task...
|
2021-11-21 22:36:55 +00:00
|
|
|
Task::Ptr getCurrentTask();
|
2015-05-31 18:59:07 +01:00
|
|
|
|
2017-11-04 21:55:25 +00:00
|
|
|
std::shared_ptr<LaunchProfile> getProfile() const;
|
2017-11-11 00:38:31 +00:00
|
|
|
|
|
|
|
// NOTE: used ONLY by MinecraftInstance to provide legacy version mappings from instance config
|
2023-08-14 17:16:53 +01:00
|
|
|
void setOldConfigVersion(const QString& uid, const QString& version);
|
2017-11-11 00:38:31 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
QString getComponentVersion(const QString& uid) const;
|
2017-11-11 00:38:31 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
bool setComponentVersion(const QString& uid, const QString& version, bool important = false);
|
2017-11-11 00:38:31 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
bool installEmpty(const QString& uid, const QString& name);
|
2017-12-31 00:37:50 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
QString patchFilePathForUid(const QString& uid) const;
|
2017-12-03 17:36:28 +00:00
|
|
|
|
|
|
|
/// if there is a save scheduled, do it now.
|
|
|
|
void saveNow();
|
|
|
|
|
2022-07-11 08:01:07 +01:00
|
|
|
/// helper method, returns RuntimeContext of instance
|
|
|
|
RuntimeContext runtimeContext();
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
signals:
|
2019-07-11 00:01:47 +01:00
|
|
|
void minecraftChanged();
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
public:
|
2017-11-11 00:38:31 +00:00
|
|
|
/// get the profile component by id
|
2023-08-14 17:16:53 +01:00
|
|
|
ComponentPtr getComponent(const QString& id);
|
2017-11-11 00:38:31 +00:00
|
|
|
|
|
|
|
/// get the profile component by index
|
2023-07-01 07:51:15 +01:00
|
|
|
ComponentPtr getComponent(size_t index);
|
2017-11-11 00:38:31 +00:00
|
|
|
|
2020-08-24 23:13:43 +01:00
|
|
|
/// Add the component to the internal list of patches
|
|
|
|
// todo(merged): is this the best approach
|
|
|
|
void appendComponent(ComponentPtr component);
|
|
|
|
|
2023-08-23 08:26:57 +01:00
|
|
|
std::optional<ModPlatform::ModLoaderTypes> getModLoaders();
|
2023-08-23 10:52:51 +01:00
|
|
|
// this returns aditional loaders(Quilt supports fabric and NeoForge supports Forge)
|
|
|
|
std::optional<ModPlatform::ModLoaderTypes> getSupportedModLoaders();
|
2022-02-20 19:55:26 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private:
|
2017-11-11 00:38:31 +00:00
|
|
|
void scheduleSave();
|
|
|
|
bool saveIsScheduled() const;
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
/// apply the component patches. Catches all the errors and returns true/false for success/failure
|
|
|
|
void invalidateLaunchProfile();
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
/// insert component so that its index is ideally the specified one (returns real index)
|
|
|
|
void insertComponent(size_t index, ComponentPtr component);
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
QString componentsFilePath() const;
|
|
|
|
QString patchesPattern() const;
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private slots:
|
2017-12-03 17:36:28 +00:00
|
|
|
void save_internal();
|
2017-11-11 00:38:31 +00:00
|
|
|
void updateSucceeded();
|
2023-08-14 17:16:53 +01:00
|
|
|
void updateFailed(const QString& error);
|
2017-11-11 00:38:31 +00:00
|
|
|
void componentDataChanged();
|
2019-07-15 22:16:34 +01:00
|
|
|
void disableInteraction(bool disable);
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private:
|
2017-11-11 00:38:31 +00:00
|
|
|
bool load();
|
2017-07-24 08:01:37 +01:00
|
|
|
bool installJarMods_internal(QStringList filepaths);
|
|
|
|
bool installCustomJar_internal(QString filepath);
|
2022-11-08 11:20:13 +00:00
|
|
|
bool installAgents_internal(QStringList filepaths);
|
2017-11-11 00:38:31 +00:00
|
|
|
bool removeComponent_internal(ComponentPtr patch);
|
2017-07-24 08:01:37 +01:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private: /* data */
|
2020-06-27 11:02:31 +01:00
|
|
|
std::unique_ptr<PackProfileData> d;
|
2013-09-15 23:54:39 +01:00
|
|
|
};
|