2022-10-08 19:09:53 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2022-11-08 17:51:18 +00:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-10-08 19:09:53 +01:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2023-07-06 18:04:44 +01:00
|
|
|
* Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
|
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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2015-01-27 21:31:07 +00:00
|
|
|
#pragma once
|
2016-06-16 01:20:23 +01:00
|
|
|
#include <java/JavaVersion.h>
|
2017-07-24 08:01:37 +01:00
|
|
|
#include <QDir>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QProcess>
|
|
|
|
#include "BaseInstance.h"
|
2021-05-22 15:14:25 +01:00
|
|
|
#include "minecraft/launch/MinecraftServerTarget.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "minecraft/mod/Mod.h"
|
2015-09-05 17:46:57 +01:00
|
|
|
|
2019-08-04 02:27:53 +01:00
|
|
|
class ModFolderModel;
|
2022-08-10 18:48:34 +01:00
|
|
|
class ResourceFolderModel;
|
|
|
|
class ResourcePackFolderModel;
|
|
|
|
class ShaderPackFolderModel;
|
|
|
|
class TexturePackFolderModel;
|
2015-08-19 00:10:17 +01:00
|
|
|
class WorldList;
|
2019-01-29 23:35:24 +00:00
|
|
|
class GameOptions;
|
2016-06-16 01:20:23 +01:00
|
|
|
class LaunchStep;
|
2020-06-27 11:02:31 +01:00
|
|
|
class PackProfile;
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class MinecraftInstance : public BaseInstance {
|
2017-07-24 08:01:37 +01:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
MinecraftInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString& rootDir);
|
|
|
|
virtual ~MinecraftInstance(){};
|
2018-06-28 22:18:45 +01:00
|
|
|
virtual void saveNow() override;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
void loadSpecificSettings() override;
|
2022-07-06 19:56:03 +01:00
|
|
|
|
2017-11-04 21:55:25 +00:00
|
|
|
// FIXME: remove
|
2017-07-24 08:01:37 +01:00
|
|
|
QString typeName() const override;
|
2017-11-04 21:55:25 +00:00
|
|
|
// FIXME: remove
|
2017-09-21 23:27:30 +01:00
|
|
|
QSet<QString> traits() const override;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool canEdit() const override { return true; }
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool canExport() const override { return true; }
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2023-07-06 18:04:44 +01:00
|
|
|
void populateLaunchMenu(QMenu* menu) override;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
////// Directories and files //////
|
|
|
|
QString jarModsDir() const;
|
|
|
|
QString resourcePacksDir() const;
|
|
|
|
QString texturePacksDir() const;
|
2021-09-23 20:26:56 +01:00
|
|
|
QString shaderPacksDir() const;
|
2021-12-12 21:39:25 +00:00
|
|
|
QString modsRoot() const override;
|
2017-07-24 08:01:37 +01:00
|
|
|
QString coreModsDir() const;
|
2023-02-11 22:36:06 +00:00
|
|
|
QString nilModsDir() const;
|
2018-07-15 13:04:09 +01:00
|
|
|
QString modsCacheLocation() const;
|
2017-07-24 08:01:37 +01:00
|
|
|
QString libDir() const;
|
|
|
|
QString worldDir() const;
|
2019-02-19 00:00:03 +00:00
|
|
|
QString resourcesDir() const;
|
2017-07-24 08:01:37 +01:00
|
|
|
QDir jarmodsPath() const;
|
|
|
|
QDir librariesPath() const;
|
|
|
|
QDir versionsPath() const;
|
|
|
|
QString instanceConfigFolder() const override;
|
2018-07-27 22:57:09 +01:00
|
|
|
|
|
|
|
// Path to the instance's minecraft directory.
|
|
|
|
QString gameRoot() const override;
|
|
|
|
|
|
|
|
// Path to the instance's minecraft bin directory.
|
|
|
|
QString binRoot() const;
|
|
|
|
|
|
|
|
// where to put the natives during/before launch
|
|
|
|
QString getNativePath() const;
|
|
|
|
|
|
|
|
// where the instance-local libraries should be
|
|
|
|
QString getLocalLibraryPath() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2022-09-15 23:23:58 +01:00
|
|
|
/** Returns whether the instance, with its version, has support for demo mode. */
|
|
|
|
[[nodiscard]] bool supportsDemo() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2022-07-11 08:01:07 +01:00
|
|
|
void updateRuntimeContext();
|
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
////// Profile management //////
|
2020-06-27 11:02:31 +01:00
|
|
|
std::shared_ptr<PackProfile> getPackProfile() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
////// Mod Lists //////
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<ModFolderModel> loaderModList();
|
|
|
|
std::shared_ptr<ModFolderModel> coreModList();
|
|
|
|
std::shared_ptr<ModFolderModel> nilModList();
|
|
|
|
std::shared_ptr<ResourcePackFolderModel> resourcePackList();
|
|
|
|
std::shared_ptr<TexturePackFolderModel> texturePackList();
|
|
|
|
std::shared_ptr<ShaderPackFolderModel> shaderPackList();
|
|
|
|
std::shared_ptr<WorldList> worldList();
|
|
|
|
std::shared_ptr<GameOptions> gameOptionsModel();
|
2017-07-24 08:01:37 +01:00
|
|
|
|
|
|
|
////// Launch stuff //////
|
2021-11-21 22:36:55 +00:00
|
|
|
Task::Ptr createUpdateTask(Net::Mode mode) override;
|
2021-05-22 17:07:08 +01:00
|
|
|
shared_qobject_ptr<LaunchTask> createLaunchTask(AuthSessionPtr account, MinecraftServerTargetPtr serverToJoin) override;
|
2022-07-06 21:17:54 +01:00
|
|
|
QStringList extraArguments() override;
|
2021-05-22 15:14:25 +01:00
|
|
|
QStringList verboseDescription(AuthSessionPtr session, MinecraftServerTargetPtr serverToJoin) override;
|
2022-06-26 18:17:15 +01:00
|
|
|
QList<Mod*> getJarMods() const;
|
2021-05-22 15:14:25 +01:00
|
|
|
QString createLaunchScript(AuthSessionPtr session, MinecraftServerTargetPtr serverToJoin);
|
2015-07-21 01:38:15 +01:00
|
|
|
/// get arguments passed to java
|
2022-07-06 21:17:54 +01:00
|
|
|
QStringList javaArguments();
|
2022-11-08 17:51:18 +00:00
|
|
|
QString getLauncher();
|
2023-01-06 09:21:09 +00:00
|
|
|
bool shouldApplyOnlineFixes();
|
2015-07-21 01:38:15 +01:00
|
|
|
|
|
|
|
/// get variables for launch command variable substitution/environment
|
2022-07-06 21:17:54 +01:00
|
|
|
QMap<QString, QString> getVariables() override;
|
2015-07-21 01:38:15 +01:00
|
|
|
|
|
|
|
/// create an environment for launching processes
|
2017-07-24 08:01:37 +01:00
|
|
|
QProcessEnvironment createEnvironment() override;
|
2022-06-29 21:37:25 +01:00
|
|
|
QProcessEnvironment createLaunchEnvironment() override;
|
2015-07-22 08:01:04 +01:00
|
|
|
|
|
|
|
/// guess log level from a line of minecraft log
|
2023-08-02 17:35:35 +01:00
|
|
|
MessageLevel::Enum guessLevel(const QString& line, MessageLevel::Enum level) override;
|
2015-08-18 01:25:24 +01:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
IPathMatcher::Ptr getLogFileMatcher() override;
|
2015-08-19 01:04:56 +01:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
QString getLogFileRoot() override;
|
2015-09-22 00:06:45 +01:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
QString getStatusbarDescription() override;
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2017-11-04 21:55:25 +00:00
|
|
|
// FIXME: remove
|
2022-07-06 21:17:54 +01:00
|
|
|
virtual QStringList getClassPath();
|
2017-11-04 21:55:25 +00:00
|
|
|
// FIXME: remove
|
2022-07-06 21:17:54 +01:00
|
|
|
virtual QStringList getNativeJars();
|
2017-11-04 21:55:25 +00:00
|
|
|
// FIXME: remove
|
2017-07-24 08:01:37 +01:00
|
|
|
virtual QString getMainClass() const;
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2017-11-04 21:55:25 +00:00
|
|
|
// FIXME: remove
|
2021-05-22 15:14:25 +01:00
|
|
|
virtual QStringList processMinecraftArgs(AuthSessionPtr account, MinecraftServerTargetPtr serverToJoin) const;
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
virtual JavaVersion getJavaVersion();
|
2016-10-01 23:26:10 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected:
|
2015-08-16 01:17:50 +01:00
|
|
|
QMap<QString, QString> createCensorFilterFromSession(AuthSessionPtr session);
|
2017-07-24 08:01:37 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected: // data
|
2020-06-27 11:02:31 +01:00
|
|
|
std::shared_ptr<PackProfile> m_components;
|
2019-08-04 02:27:53 +01:00
|
|
|
mutable std::shared_ptr<ModFolderModel> m_loader_mod_list;
|
|
|
|
mutable std::shared_ptr<ModFolderModel> m_core_mod_list;
|
2023-02-11 22:36:06 +00:00
|
|
|
mutable std::shared_ptr<ModFolderModel> m_nil_mod_list;
|
2022-08-10 18:48:34 +01:00
|
|
|
mutable std::shared_ptr<ResourcePackFolderModel> m_resource_pack_list;
|
|
|
|
mutable std::shared_ptr<ShaderPackFolderModel> m_shader_pack_list;
|
|
|
|
mutable std::shared_ptr<TexturePackFolderModel> m_texture_pack_list;
|
2017-07-24 08:01:37 +01:00
|
|
|
mutable std::shared_ptr<WorldList> m_world_list;
|
2019-01-29 23:35:24 +00:00
|
|
|
mutable std::shared_ptr<GameOptions> m_game_options;
|
2015-01-27 21:31:07 +00:00
|
|
|
};
|
|
|
|
|
2023-10-23 05:34:11 +01:00
|
|
|
using MinecraftInstancePtr = std::shared_ptr<MinecraftInstance>;
|