2022-03-27 12:13:32 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2022-11-08 17:51:18 +00:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-03-27 12:13:32 +01:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2022-05-17 18:43:35 +01:00
|
|
|
* Copyright (C) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2023-08-20 12:17:17 +01:00
|
|
|
* Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
|
2022-03-27 12:13:32 +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
|
|
|
#include "MinecraftInstance.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "Application.h"
|
2022-03-26 21:21:08 +00:00
|
|
|
#include "BuildConfig.h"
|
2021-11-21 22:21:12 +00:00
|
|
|
#include "minecraft/launch/CreateGameFolders.h"
|
|
|
|
#include "minecraft/launch/ExtractNatives.h"
|
|
|
|
#include "minecraft/launch/PrintInstanceInfo.h"
|
|
|
|
#include "settings/Setting.h"
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "settings/SettingsObject.h"
|
2021-11-21 22:21:12 +00:00
|
|
|
|
|
|
|
#include "FileSystem.h"
|
2021-09-28 23:20:34 +01:00
|
|
|
#include "MMCTime.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "java/JavaVersion.h"
|
|
|
|
#include "pathmatcher/MultiMatcher.h"
|
|
|
|
#include "pathmatcher/RegexpMatcher.h"
|
2015-07-21 01:38:15 +01:00
|
|
|
|
2016-06-16 01:20:23 +01:00
|
|
|
#include "launch/LaunchTask.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "launch/steps/CheckJava.h"
|
2021-05-22 15:14:25 +01:00
|
|
|
#include "launch/steps/LookupServerAddress.h"
|
2016-06-16 01:20:23 +01:00
|
|
|
#include "launch/steps/PostLaunchCommand.h"
|
|
|
|
#include "launch/steps/PreLaunchCommand.h"
|
2022-03-23 18:06:17 +00:00
|
|
|
#include "launch/steps/QuitAfterGameStop.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "launch/steps/TextPrint.h"
|
|
|
|
#include "launch/steps/Update.h"
|
2021-11-21 22:21:12 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "minecraft/launch/ClaimAccount.h"
|
2016-06-16 01:20:23 +01:00
|
|
|
#include "minecraft/launch/LauncherPartLaunch.h"
|
|
|
|
#include "minecraft/launch/ModMinecraftJar.h"
|
2019-02-19 00:00:03 +00:00
|
|
|
#include "minecraft/launch/ReconstructAssets.h"
|
2019-08-04 04:08:40 +01:00
|
|
|
#include "minecraft/launch/ScanModFolders.h"
|
2021-06-23 21:24:25 +01:00
|
|
|
#include "minecraft/launch/VerifyJavaInstall.h"
|
2021-11-21 22:21:12 +00:00
|
|
|
|
2017-08-22 23:23:35 +01:00
|
|
|
#include "java/JavaUtils.h"
|
2021-11-21 22:21:12 +00:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
#include "meta/Index.h"
|
|
|
|
#include "meta/VersionList.h"
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
#include "icons/IconList.h"
|
|
|
|
|
2019-08-04 02:27:53 +01:00
|
|
|
#include "mod/ModFolderModel.h"
|
2021-06-19 00:59:48 +01:00
|
|
|
#include "mod/ResourcePackFolderModel.h"
|
2022-08-10 18:48:34 +01:00
|
|
|
#include "mod/ShaderPackFolderModel.h"
|
2021-06-19 00:59:48 +01:00
|
|
|
#include "mod/TexturePackFolderModel.h"
|
2017-07-24 08:01:37 +01:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
#include "WorldList.h"
|
2016-10-20 00:02:28 +01:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
#include "AssetsUtils.h"
|
2017-11-11 00:38:31 +00:00
|
|
|
#include "MinecraftLoadAndCheck.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "MinecraftUpdate.h"
|
|
|
|
#include "PackProfile.h"
|
2021-11-21 22:21:12 +00:00
|
|
|
#include "minecraft/gameoptions/GameOptions.h"
|
|
|
|
#include "minecraft/update/FoldersTask.h"
|
2017-03-12 18:45:28 +00:00
|
|
|
|
2023-07-06 18:04:44 +01:00
|
|
|
#include "tools/BaseProfiler.h"
|
|
|
|
|
2023-07-06 18:31:59 +01:00
|
|
|
#include <QActionGroup>
|
|
|
|
|
2022-12-11 09:32:15 +00:00
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
#include "MangoHud.h"
|
|
|
|
#endif
|
|
|
|
|
2015-07-21 01:38:15 +01:00
|
|
|
#define IBUS "@im=ibus"
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2015-05-05 00:09:28 +01:00
|
|
|
// all of this because keeping things compatible with deprecated old settings
|
|
|
|
// if either of the settings {a, b} is true, this also resolves to true
|
2023-08-02 17:35:35 +01:00
|
|
|
class OrSetting : public Setting {
|
2018-07-15 13:51:05 +01:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
OrSetting(QString id, std::shared_ptr<Setting> a, std::shared_ptr<Setting> b) : Setting({ id }, false), m_a(a), m_b(b) {}
|
2018-07-15 13:51:05 +01:00
|
|
|
virtual QVariant get() const
|
|
|
|
{
|
|
|
|
bool a = m_a->get().toBool();
|
|
|
|
bool b = m_b->get().toBool();
|
|
|
|
return a || b;
|
|
|
|
}
|
|
|
|
virtual void reset() {}
|
|
|
|
virtual void set(QVariant value) {}
|
2023-08-02 17:35:35 +01:00
|
|
|
|
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
std::shared_ptr<Setting> m_a;
|
|
|
|
std::shared_ptr<Setting> m_b;
|
2015-05-05 00:09:28 +01:00
|
|
|
};
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
MinecraftInstance::MinecraftInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString& rootDir)
|
2018-07-15 13:51:05 +01:00
|
|
|
: BaseInstance(globalSettings, settings, rootDir)
|
|
|
|
{
|
2022-07-06 19:56:03 +01:00
|
|
|
m_components.reset(new PackProfile(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftInstance::saveNow()
|
|
|
|
{
|
|
|
|
m_components->saveNow();
|
|
|
|
}
|
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
void MinecraftInstance::loadSpecificSettings()
|
2022-07-06 19:56:03 +01:00
|
|
|
{
|
2022-07-06 21:17:54 +01:00
|
|
|
if (isSpecificSettingsLoaded())
|
2022-07-06 19:56:03 +01:00
|
|
|
return;
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// Java Settings
|
|
|
|
auto javaOverride = m_settings->registerSetting("OverrideJava", false);
|
|
|
|
auto locationOverride = m_settings->registerSetting("OverrideJavaLocation", false);
|
|
|
|
auto argsOverride = m_settings->registerSetting("OverrideJavaArgs", false);
|
|
|
|
|
|
|
|
// combinations
|
|
|
|
auto javaOrLocation = std::make_shared<OrSetting>("JavaOrLocationOverride", javaOverride, locationOverride);
|
|
|
|
auto javaOrArgs = std::make_shared<OrSetting>("JavaOrArgsOverride", javaOverride, argsOverride);
|
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
if (auto global_settings = globalSettings()) {
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("JavaPath"), javaOrLocation);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("JvmArgs"), javaOrArgs);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("IgnoreJavaCompatibility"), javaOrLocation);
|
2022-07-06 19:56:03 +01:00
|
|
|
|
|
|
|
// special!
|
2023-06-26 01:18:55 +01:00
|
|
|
m_settings->registerPassthrough(global_settings->getSetting("JavaSignature"), javaOrLocation);
|
2022-07-06 21:17:54 +01:00
|
|
|
m_settings->registerPassthrough(global_settings->getSetting("JavaArchitecture"), javaOrLocation);
|
2022-06-11 09:48:56 +01:00
|
|
|
m_settings->registerPassthrough(global_settings->getSetting("JavaRealArchitecture"), javaOrLocation);
|
2023-06-15 11:42:45 +01:00
|
|
|
m_settings->registerPassthrough(global_settings->getSetting("JavaVersion"), javaOrLocation);
|
|
|
|
m_settings->registerPassthrough(global_settings->getSetting("JavaVendor"), javaOrLocation);
|
2022-07-06 19:56:03 +01:00
|
|
|
|
|
|
|
// Window Size
|
|
|
|
auto windowSetting = m_settings->registerSetting("OverrideWindow", false);
|
2022-07-06 21:17:54 +01:00
|
|
|
m_settings->registerOverride(global_settings->getSetting("LaunchMaximized"), windowSetting);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("MinecraftWinWidth"), windowSetting);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("MinecraftWinHeight"), windowSetting);
|
2022-07-06 19:56:03 +01:00
|
|
|
|
|
|
|
// Memory
|
|
|
|
auto memorySetting = m_settings->registerSetting("OverrideMemory", false);
|
2022-07-06 21:17:54 +01:00
|
|
|
m_settings->registerOverride(global_settings->getSetting("MinMemAlloc"), memorySetting);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("MaxMemAlloc"), memorySetting);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("PermGen"), memorySetting);
|
2022-07-06 19:56:03 +01:00
|
|
|
|
|
|
|
// Native library workarounds
|
|
|
|
auto nativeLibraryWorkaroundsOverride = m_settings->registerSetting("OverrideNativeWorkarounds", false);
|
2022-07-06 21:17:54 +01:00
|
|
|
m_settings->registerOverride(global_settings->getSetting("UseNativeOpenAL"), nativeLibraryWorkaroundsOverride);
|
2023-08-02 12:45:08 +01:00
|
|
|
m_settings->registerOverride(global_settings->getSetting("CustomOpenALPath"), nativeLibraryWorkaroundsOverride);
|
2022-07-06 21:17:54 +01:00
|
|
|
m_settings->registerOverride(global_settings->getSetting("UseNativeGLFW"), nativeLibraryWorkaroundsOverride);
|
2023-08-02 12:45:08 +01:00
|
|
|
m_settings->registerOverride(global_settings->getSetting("CustomGLFWPath"), nativeLibraryWorkaroundsOverride);
|
2022-07-06 19:56:03 +01:00
|
|
|
|
|
|
|
// Peformance related options
|
|
|
|
auto performanceOverride = m_settings->registerSetting("OverridePerformance", false);
|
2022-07-06 21:17:54 +01:00
|
|
|
m_settings->registerOverride(global_settings->getSetting("EnableFeralGamemode"), performanceOverride);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("EnableMangoHud"), performanceOverride);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("UseDiscreteGpu"), performanceOverride);
|
2022-07-06 19:56:03 +01:00
|
|
|
|
|
|
|
// Miscellaneous
|
|
|
|
auto miscellaneousOverride = m_settings->registerSetting("OverrideMiscellaneous", false);
|
2022-07-06 21:17:54 +01:00
|
|
|
m_settings->registerOverride(global_settings->getSetting("CloseAfterLaunch"), miscellaneousOverride);
|
|
|
|
m_settings->registerOverride(global_settings->getSetting("QuitAfterGameStop"), miscellaneousOverride);
|
2022-07-06 19:56:03 +01:00
|
|
|
|
|
|
|
m_settings->set("InstanceType", "OneSix");
|
|
|
|
}
|
2020-12-09 22:16:01 +00:00
|
|
|
|
2021-05-22 12:28:23 +01:00
|
|
|
// Join server on launch, this does not have a global override
|
|
|
|
m_settings->registerSetting("JoinServerOnLaunch", false);
|
|
|
|
m_settings->registerSetting("JoinServerOnLaunchAddress", "");
|
|
|
|
|
2022-12-27 22:00:15 +00:00
|
|
|
// Use account for instance, this does not have a global override
|
|
|
|
m_settings->registerSetting("UseAccountForInstance", false);
|
|
|
|
m_settings->registerSetting("InstanceAccountId", "");
|
|
|
|
|
2023-08-12 21:18:22 +01:00
|
|
|
m_settings->registerSetting("ExportName", "");
|
|
|
|
m_settings->registerSetting("ExportVersion", "1.0.0");
|
|
|
|
m_settings->registerSetting("ExportSummary", "");
|
|
|
|
m_settings->registerSetting("ExportAuthor", "");
|
|
|
|
m_settings->registerSetting("ExportOptionalFiles", true);
|
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
qDebug() << "Instance-type specific settings were loaded!";
|
2022-06-04 10:59:12 +01:00
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
setSpecificSettingsLoaded(true);
|
2022-07-11 08:01:07 +01:00
|
|
|
|
|
|
|
updateRuntimeContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftInstance::updateRuntimeContext()
|
|
|
|
{
|
|
|
|
m_runtimeContext.updateFromInstanceSettings(m_settings);
|
2017-12-03 17:36:28 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
QString MinecraftInstance::typeName() const
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return "Minecraft";
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2020-06-27 11:02:31 +01:00
|
|
|
std::shared_ptr<PackProfile> MinecraftInstance::getPackProfile() const
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_components;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2017-09-21 23:27:30 +01:00
|
|
|
QSet<QString> MinecraftInstance::traits() const
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2020-06-27 11:02:31 +01:00
|
|
|
auto components = getPackProfile();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!components) {
|
|
|
|
return { "version-incomplete" };
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
auto profile = components->getProfile();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!profile) {
|
|
|
|
return { "version-incomplete" };
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
return profile->getTraits();
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2023-08-19 09:21:46 +01:00
|
|
|
// FIXME: move UI code out of MinecraftInstance
|
2023-07-06 18:04:44 +01:00
|
|
|
void MinecraftInstance::populateLaunchMenu(QMenu* menu)
|
|
|
|
{
|
|
|
|
QAction* normalLaunch = menu->addAction(tr("&Launch"));
|
|
|
|
normalLaunch->setShortcut(QKeySequence::Open);
|
|
|
|
QAction* normalLaunchOffline = menu->addAction(tr("Launch &Offline"));
|
|
|
|
normalLaunchOffline->setShortcut(QKeySequence(tr("Ctrl+Shift+O")));
|
|
|
|
QAction* normalLaunchDemo = menu->addAction(tr("Launch &Demo"));
|
|
|
|
normalLaunchDemo->setShortcut(QKeySequence(tr("Ctrl+Alt+O")));
|
|
|
|
|
|
|
|
normalLaunchDemo->setEnabled(supportsDemo());
|
|
|
|
|
|
|
|
connect(normalLaunch, &QAction::triggered, [this] { APPLICATION->launch(shared_from_this()); });
|
|
|
|
connect(normalLaunchOffline, &QAction::triggered, [this] { APPLICATION->launch(shared_from_this(), false, false); });
|
|
|
|
connect(normalLaunchDemo, &QAction::triggered, [this] { APPLICATION->launch(shared_from_this(), false, true); });
|
|
|
|
|
|
|
|
QString profilersTitle = tr("Profilers");
|
|
|
|
menu->addSeparator()->setText(profilersTitle);
|
|
|
|
|
|
|
|
auto profilers = new QActionGroup(menu);
|
|
|
|
profilers->setExclusive(true);
|
|
|
|
connect(profilers, &QActionGroup::triggered, [this](QAction* action) {
|
|
|
|
settings()->set("Profiler", action->data());
|
|
|
|
emit profilerChanged();
|
|
|
|
});
|
|
|
|
|
|
|
|
QAction* noProfilerAction = menu->addAction(tr("&No Profiler"));
|
|
|
|
noProfilerAction->setData("");
|
|
|
|
noProfilerAction->setCheckable(true);
|
|
|
|
noProfilerAction->setChecked(true);
|
|
|
|
profilers->addAction(noProfilerAction);
|
|
|
|
|
|
|
|
for (auto profiler = APPLICATION->profilers().begin(); profiler != APPLICATION->profilers().end(); profiler++) {
|
|
|
|
QAction* profilerAction = menu->addAction(profiler.value()->name());
|
|
|
|
profilers->addAction(profilerAction);
|
|
|
|
profilerAction->setData(profiler.key());
|
|
|
|
profilerAction->setCheckable(true);
|
|
|
|
profilerAction->setChecked(settings()->get("Profiler").toString() == profiler.key());
|
|
|
|
|
|
|
|
QString error;
|
2023-08-17 10:12:38 +01:00
|
|
|
profilerAction->setEnabled(profiler.value()->check(&error));
|
2023-07-06 18:04:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-27 22:57:09 +01:00
|
|
|
QString MinecraftInstance::gameRoot() const
|
2015-01-27 21:31:07 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QFileInfo mcDir(FS::PathCombine(instanceRoot(), "minecraft"));
|
|
|
|
QFileInfo dotMCDir(FS::PathCombine(instanceRoot(), ".minecraft"));
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
if (mcDir.exists() && !dotMCDir.exists())
|
|
|
|
return mcDir.filePath();
|
|
|
|
else
|
|
|
|
return dotMCDir.filePath();
|
2015-01-27 21:31:07 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 22:03:00 +00:00
|
|
|
QString MinecraftInstance::binRoot() const
|
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return FS::PathCombine(gameRoot(), "bin");
|
2017-01-10 22:03:00 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
QString MinecraftInstance::getNativePath() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QDir natives_dir(FS::PathCombine(instanceRoot(), "natives/"));
|
|
|
|
return natives_dir.absolutePath();
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::getLocalLibraryPath() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QDir libraries_dir(FS::PathCombine(instanceRoot(), "libraries/"));
|
|
|
|
return libraries_dir.absolutePath();
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2022-09-15 23:23:58 +01:00
|
|
|
bool MinecraftInstance::supportsDemo() const
|
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
Version instance_ver{ getPackProfile()->getComponentVersion("net.minecraft") };
|
2022-09-15 23:23:58 +01:00
|
|
|
// Demo mode was introduced in 1.3.1: https://minecraft.fandom.com/wiki/Demo_mode#History
|
|
|
|
// FIXME: Due to Version constraints atm, this can't handle well non-release versions
|
|
|
|
return instance_ver >= Version("1.3.1");
|
|
|
|
}
|
|
|
|
|
2018-11-26 08:57:51 +00:00
|
|
|
QString MinecraftInstance::jarModsDir() const
|
|
|
|
{
|
|
|
|
QDir jarmods_dir(FS::PathCombine(instanceRoot(), "jarmods/"));
|
|
|
|
return jarmods_dir.absolutePath();
|
|
|
|
}
|
|
|
|
|
2021-12-12 21:39:25 +00:00
|
|
|
QString MinecraftInstance::modsRoot() const
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return FS::PathCombine(gameRoot(), "mods");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:04:09 +01:00
|
|
|
QString MinecraftInstance::modsCacheLocation() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return FS::PathCombine(instanceRoot(), "mods.cache");
|
2018-07-15 13:04:09 +01:00
|
|
|
}
|
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
QString MinecraftInstance::coreModsDir() const
|
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return FS::PathCombine(gameRoot(), "coremods");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2023-02-11 22:36:06 +00:00
|
|
|
QString MinecraftInstance::nilModsDir() const
|
|
|
|
{
|
|
|
|
return FS::PathCombine(gameRoot(), "nilmods");
|
|
|
|
}
|
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
QString MinecraftInstance::resourcePacksDir() const
|
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return FS::PathCombine(gameRoot(), "resourcepacks");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::texturePacksDir() const
|
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return FS::PathCombine(gameRoot(), "texturepacks");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2021-09-23 20:26:56 +01:00
|
|
|
QString MinecraftInstance::shaderPacksDir() const
|
|
|
|
{
|
|
|
|
return FS::PathCombine(gameRoot(), "shaderpacks");
|
|
|
|
}
|
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
QString MinecraftInstance::instanceConfigFolder() const
|
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return FS::PathCombine(gameRoot(), "config");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::libDir() const
|
2015-01-27 21:31:07 +00:00
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return FS::PathCombine(gameRoot(), "lib");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::worldDir() const
|
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return FS::PathCombine(gameRoot(), "saves");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2019-02-19 00:00:03 +00:00
|
|
|
QString MinecraftInstance::resourcesDir() const
|
|
|
|
{
|
|
|
|
return FS::PathCombine(gameRoot(), "resources");
|
|
|
|
}
|
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
QDir MinecraftInstance::librariesPath() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return QDir::current().absoluteFilePath("libraries");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QDir MinecraftInstance::jarmodsPath() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return QDir(jarModsDir());
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QDir MinecraftInstance::versionsPath() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return QDir::current().absoluteFilePath("versions");
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
QStringList MinecraftInstance::getClassPath()
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList jars, nativeJars;
|
|
|
|
auto profile = m_components->getProfile();
|
2022-07-11 08:01:07 +01:00
|
|
|
profile->getLibraryFiles(runtimeContext(), jars, nativeJars, getLocalLibraryPath(), binRoot());
|
2018-07-15 13:51:05 +01:00
|
|
|
return jars;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::getMainClass() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
return profile->getMainClass();
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
QStringList MinecraftInstance::getNativeJars()
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList jars, nativeJars;
|
|
|
|
auto profile = m_components->getProfile();
|
2022-07-11 08:01:07 +01:00
|
|
|
profile->getLibraryFiles(runtimeContext(), jars, nativeJars, getLocalLibraryPath(), binRoot());
|
2018-07-15 13:51:05 +01:00
|
|
|
return nativeJars;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
QStringList MinecraftInstance::extraArguments()
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
auto list = BaseInstance::extraArguments();
|
2020-06-27 11:02:31 +01:00
|
|
|
auto version = getPackProfile();
|
2018-07-15 13:51:05 +01:00
|
|
|
if (!version)
|
|
|
|
return list;
|
|
|
|
auto jarMods = getJarMods();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!jarMods.isEmpty()) {
|
|
|
|
list.append({ "-Dfml.ignoreInvalidMinecraftCertificates=true", "-Dfml.ignorePatchDiscrepancies=true" });
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
2022-04-06 07:22:24 +01:00
|
|
|
auto addn = m_components->getProfile()->getAddnJvmArguments();
|
|
|
|
if (!addn.isEmpty()) {
|
|
|
|
list.append(addn);
|
|
|
|
}
|
|
|
|
auto agents = m_components->getProfile()->getAgents();
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto agent : agents) {
|
2022-04-06 07:22:24 +01:00
|
|
|
QStringList jar, temp1, temp2, temp3;
|
2022-07-11 08:01:07 +01:00
|
|
|
agent->library()->getApplicableFiles(runtimeContext(), jar, temp1, temp2, temp3, getLocalLibraryPath());
|
2023-08-02 17:35:35 +01:00
|
|
|
list.append("-javaagent:" + jar[0] + (agent->argument().isEmpty() ? "" : "=" + agent->argument()));
|
2022-04-06 07:22:24 +01:00
|
|
|
}
|
2023-07-17 09:09:01 +01:00
|
|
|
|
2023-07-17 09:57:41 +01:00
|
|
|
{
|
|
|
|
QString openALPath;
|
|
|
|
QString glfwPath;
|
|
|
|
|
2023-08-02 12:45:08 +01:00
|
|
|
if (settings()->get("UseNativeOpenAL").toBool()) {
|
|
|
|
openALPath = APPLICATION->m_detectedOpenALPath;
|
2023-08-02 12:56:23 +01:00
|
|
|
auto customPath = settings()->get("CustomOpenALPath").toString();
|
2023-08-02 12:45:08 +01:00
|
|
|
if (!customPath.isEmpty())
|
|
|
|
openALPath = customPath;
|
|
|
|
}
|
|
|
|
if (settings()->get("UseNativeGLFW").toBool()) {
|
|
|
|
glfwPath = APPLICATION->m_detectedGLFWPath;
|
2023-08-02 12:56:23 +01:00
|
|
|
auto customPath = settings()->get("CustomGLFWPath").toString();
|
2023-08-02 12:45:08 +01:00
|
|
|
if (!customPath.isEmpty())
|
|
|
|
glfwPath = customPath;
|
|
|
|
}
|
2023-07-17 09:57:41 +01:00
|
|
|
|
2023-08-02 12:56:23 +01:00
|
|
|
QFileInfo openALInfo(openALPath);
|
|
|
|
QFileInfo glfwInfo(glfwPath);
|
|
|
|
|
|
|
|
if (!openALPath.isEmpty() && openALInfo.exists())
|
|
|
|
list.append("-Dorg.lwjgl.openal.libname=" + openALInfo.absoluteFilePath());
|
|
|
|
if (!glfwPath.isEmpty() && glfwInfo.exists())
|
|
|
|
list.append("-Dorg.lwjgl.glfw.libname=" + glfwInfo.absoluteFilePath());
|
2023-07-17 09:57:41 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
return list;
|
2015-01-27 21:31:07 +00:00
|
|
|
}
|
2015-05-05 00:09:28 +01:00
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
QStringList MinecraftInstance::javaArguments()
|
2015-07-21 01:38:15 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList args;
|
2015-07-21 01:38:15 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// custom args go first. we want to override them if we have our own here.
|
|
|
|
args.append(extraArguments());
|
2015-07-21 01:38:15 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// OSX dock icon and name
|
2015-07-21 01:38:15 +01:00
|
|
|
#ifdef Q_OS_MAC
|
2018-07-15 13:51:05 +01:00
|
|
|
args << "-Xdock:icon=icon.png";
|
|
|
|
args << QString("-Xdock:name=\"%1\"").arg(windowTitle());
|
2015-07-21 01:38:15 +01:00
|
|
|
#endif
|
2018-07-15 13:51:05 +01:00
|
|
|
auto traits_ = traits();
|
|
|
|
// HACK: fix issues on macOS with 1.13 snapshots
|
|
|
|
// NOTE: Oracle Java option. if there are alternate jvm implementations, this would be the place to customize this for them
|
2017-10-28 22:29:18 +01:00
|
|
|
#ifdef Q_OS_MAC
|
2023-08-02 17:35:35 +01:00
|
|
|
if (traits_.contains("FirstThreadOnMacOS")) {
|
2018-07-15 13:51:05 +01:00
|
|
|
args << QString("-XstartOnFirstThread");
|
|
|
|
}
|
2017-10-28 21:56:18 +01:00
|
|
|
#endif
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// HACK: Stupid hack for Intel drivers. See: https://mojang.atlassian.net/browse/MCL-767
|
2015-07-21 01:38:15 +01:00
|
|
|
#ifdef Q_OS_WIN32
|
2023-08-02 17:35:35 +01:00
|
|
|
args << QString(
|
|
|
|
"-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_"
|
|
|
|
"minecraft.exe.heapdump");
|
2015-07-21 01:38:15 +01:00
|
|
|
#endif
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
int min = settings()->get("MinMemAlloc").toInt();
|
|
|
|
int max = settings()->get("MaxMemAlloc").toInt();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (min < max) {
|
2018-07-15 13:51:05 +01:00
|
|
|
args << QString("-Xms%1m").arg(min);
|
|
|
|
args << QString("-Xmx%1m").arg(max);
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2018-07-15 13:51:05 +01:00
|
|
|
args << QString("-Xms%1m").arg(max);
|
|
|
|
args << QString("-Xmx%1m").arg(min);
|
|
|
|
}
|
|
|
|
|
|
|
|
// No PermGen in newer java.
|
|
|
|
JavaVersion javaVersion = getJavaVersion();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (javaVersion.requiresPermGen()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
auto permgen = settings()->get("PermGen").toInt();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (permgen != 64) {
|
2018-07-15 13:51:05 +01:00
|
|
|
args << QString("-XX:PermSize=%1m").arg(permgen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
args << "-Duser.language=en";
|
|
|
|
|
|
|
|
return args;
|
2015-07-21 01:38:15 +01:00
|
|
|
}
|
|
|
|
|
2022-11-08 17:51:18 +00:00
|
|
|
QString MinecraftInstance::getLauncher()
|
|
|
|
{
|
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
|
|
|
|
// use legacy launcher if the traits are set
|
|
|
|
if (profile->getTraits().contains("legacyLaunch") || profile->getTraits().contains("alphaLaunch"))
|
|
|
|
return "legacy";
|
|
|
|
|
|
|
|
return "standard";
|
|
|
|
}
|
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
QMap<QString, QString> MinecraftInstance::getVariables()
|
2015-07-21 01:38:15 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QMap<QString, QString> out;
|
|
|
|
out.insert("INST_NAME", name());
|
|
|
|
out.insert("INST_ID", id());
|
2023-02-04 19:28:52 +00:00
|
|
|
out.insert("INST_DIR", QDir::toNativeSeparators(QDir(instanceRoot()).absolutePath()));
|
|
|
|
out.insert("INST_MC_DIR", QDir::toNativeSeparators(QDir(gameRoot()).absolutePath()));
|
2018-07-15 13:51:05 +01:00
|
|
|
out.insert("INST_JAVA", settings()->get("JavaPath").toString());
|
|
|
|
out.insert("INST_JAVA_ARGS", javaArguments().join(' '));
|
|
|
|
return out;
|
2015-07-21 01:38:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QProcessEnvironment MinecraftInstance::createEnvironment()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
// prepare the process environment
|
|
|
|
QProcessEnvironment env = CleanEnviroment();
|
2015-07-21 01:38:15 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// export some infos
|
|
|
|
auto variables = getVariables();
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto it = variables.begin(); it != variables.end(); ++it) {
|
2018-07-15 13:51:05 +01:00
|
|
|
env.insert(it.key(), it.value());
|
|
|
|
}
|
|
|
|
return env;
|
2015-07-21 01:38:15 +01:00
|
|
|
}
|
|
|
|
|
2022-06-29 21:37:25 +01:00
|
|
|
QProcessEnvironment MinecraftInstance::createLaunchEnvironment()
|
|
|
|
{
|
|
|
|
// prepare the process environment
|
|
|
|
QProcessEnvironment env = createEnvironment();
|
|
|
|
|
|
|
|
#ifdef Q_OS_LINUX
|
2023-08-02 17:35:35 +01:00
|
|
|
if (settings()->get("EnableMangoHud").toBool() && APPLICATION->capabilities() & Application::SupportsMangoHud) {
|
2022-12-11 09:32:15 +00:00
|
|
|
auto preloadList = env.value("LD_PRELOAD").split(QLatin1String(":"));
|
|
|
|
auto libPaths = env.value("LD_LIBRARY_PATH").split(QLatin1String(":"));
|
|
|
|
|
|
|
|
auto mangoHudLibString = MangoHud::getLibraryString();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!mangoHudLibString.isEmpty()) {
|
2022-12-11 09:32:15 +00:00
|
|
|
QFileInfo mangoHudLib(mangoHudLibString);
|
|
|
|
|
|
|
|
// dlsym variant is only needed for OpenGL and not included in the vulkan layer
|
|
|
|
preloadList << "libMangoHud_dlsym.so" << mangoHudLib.fileName();
|
|
|
|
libPaths << mangoHudLib.absolutePath();
|
|
|
|
}
|
|
|
|
|
|
|
|
env.insert("LD_PRELOAD", preloadList.join(QLatin1String(":")));
|
|
|
|
env.insert("LD_LIBRARY_PATH", libPaths.join(QLatin1String(":")));
|
2022-06-29 21:37:25 +01:00
|
|
|
env.insert("MANGOHUD", "1");
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
if (settings()->get("UseDiscreteGpu").toBool()) {
|
2022-06-29 21:37:25 +01:00
|
|
|
// Open Source Drivers
|
|
|
|
env.insert("DRI_PRIME", "1");
|
|
|
|
// Proprietary Nvidia Drivers
|
|
|
|
env.insert("__NV_PRIME_RENDER_OFFLOAD", "1");
|
|
|
|
env.insert("__VK_LAYER_NV_optimus", "NVIDIA_only");
|
|
|
|
env.insert("__GLX_VENDOR_LIBRARY_NAME", "nvidia");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
static QString replaceTokensIn(QString text, QMap<QString, QString> with)
|
|
|
|
{
|
2022-05-02 18:48:37 +01:00
|
|
|
// TODO: does this still work??
|
2018-07-15 13:51:05 +01:00
|
|
|
QString result;
|
2022-05-02 18:48:37 +01:00
|
|
|
QRegularExpression token_regexp("\\$\\{(.+)\\}", QRegularExpression::InvertedGreedinessOption);
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList list;
|
2022-05-02 18:48:37 +01:00
|
|
|
QRegularExpressionMatchIterator i = token_regexp.globalMatch(text);
|
|
|
|
int lastCapturedEnd = 0;
|
2023-08-02 17:35:35 +01:00
|
|
|
while (i.hasNext()) {
|
2022-05-02 18:48:37 +01:00
|
|
|
QRegularExpressionMatch match = i.next();
|
|
|
|
result.append(text.mid(lastCapturedEnd, match.capturedStart()));
|
|
|
|
QString key = match.captured(1);
|
2018-07-15 13:51:05 +01:00
|
|
|
auto iter = with.find(key);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (iter != with.end()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
result.append(*iter);
|
|
|
|
}
|
2022-05-02 18:48:37 +01:00
|
|
|
lastCapturedEnd = match.capturedEnd();
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
2022-05-02 18:48:37 +01:00
|
|
|
result.append(text.mid(lastCapturedEnd));
|
2018-07-15 13:51:05 +01:00
|
|
|
return result;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QStringList MinecraftInstance::processMinecraftArgs(AuthSessionPtr session, MinecraftServerTargetPtr serverToJoin) const
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
QString args_pattern = profile->getMinecraftArguments();
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto tweaker : profile->getTweakers()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
args_pattern += " --tweakClass " + tweaker;
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
if (serverToJoin && !serverToJoin->address.isEmpty()) {
|
2021-05-22 15:14:25 +01:00
|
|
|
args_pattern += " --server " + serverToJoin->address;
|
|
|
|
args_pattern += " --port " + QString::number(serverToJoin->port);
|
2021-05-22 12:54:34 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
QMap<QString, QString> token_mapping;
|
|
|
|
// yggdrasil!
|
2023-08-02 17:35:35 +01:00
|
|
|
if (session) {
|
2021-07-26 20:44:11 +01:00
|
|
|
// token_mapping["auth_username"] = session->username;
|
2018-07-15 13:51:05 +01:00
|
|
|
token_mapping["auth_session"] = session->session;
|
|
|
|
token_mapping["auth_access_token"] = session->access_token;
|
|
|
|
token_mapping["auth_player_name"] = session->player_name;
|
|
|
|
token_mapping["auth_uuid"] = session->uuid;
|
|
|
|
token_mapping["user_properties"] = session->serializeUserProperties();
|
|
|
|
token_mapping["user_type"] = session->user_type;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (session->demo) {
|
2021-12-30 20:26:29 +00:00
|
|
|
args_pattern += " --demo";
|
|
|
|
}
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
|
2022-05-17 18:43:35 +01:00
|
|
|
token_mapping["profile_name"] = name();
|
|
|
|
token_mapping["version_name"] = profile->getMinecraftVersion();
|
2018-07-15 13:51:05 +01:00
|
|
|
token_mapping["version_type"] = profile->getMinecraftVersionType();
|
|
|
|
|
2018-07-27 22:57:09 +01:00
|
|
|
QString absRootDir = QDir(gameRoot()).absolutePath();
|
2018-07-15 13:51:05 +01:00
|
|
|
token_mapping["game_directory"] = absRootDir;
|
|
|
|
QString absAssetsDir = QDir("assets/").absolutePath();
|
|
|
|
auto assets = profile->getMinecraftAssets();
|
2019-02-19 00:00:03 +00:00
|
|
|
token_mapping["game_assets"] = AssetsUtils::getAssetsDir(assets->id, resourcesDir()).absolutePath();
|
2018-07-15 13:51:05 +01:00
|
|
|
|
|
|
|
// 1.7.3+ assets tokens
|
|
|
|
token_mapping["assets_root"] = absAssetsDir;
|
|
|
|
token_mapping["assets_index_name"] = assets->id;
|
|
|
|
|
2022-05-02 18:10:45 +01:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
|
|
|
|
QStringList parts = args_pattern.split(' ', Qt::SkipEmptyParts);
|
|
|
|
#else
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList parts = args_pattern.split(' ', QString::SkipEmptyParts);
|
2022-05-02 18:10:45 +01:00
|
|
|
#endif
|
2023-08-02 17:35:35 +01:00
|
|
|
for (int i = 0; i < parts.length(); i++) {
|
2018-07-15 13:51:05 +01:00
|
|
|
parts[i] = replaceTokensIn(parts[i], token_mapping);
|
|
|
|
}
|
|
|
|
return parts;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2021-05-22 15:14:25 +01:00
|
|
|
QString MinecraftInstance::createLaunchScript(AuthSessionPtr session, MinecraftServerTargetPtr serverToJoin)
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QString launchScript;
|
|
|
|
|
|
|
|
if (!m_components)
|
|
|
|
return QString();
|
|
|
|
auto profile = m_components->getProfile();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!profile)
|
2018-07-15 13:51:05 +01:00
|
|
|
return QString();
|
|
|
|
|
|
|
|
auto mainClass = getMainClass();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!mainClass.isEmpty()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
launchScript += "mainClass " + mainClass + "\n";
|
|
|
|
}
|
|
|
|
auto appletClass = profile->getAppletClass();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!appletClass.isEmpty()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
launchScript += "appletClass " + appletClass + "\n";
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
if (serverToJoin && !serverToJoin->address.isEmpty()) {
|
2021-05-22 15:32:15 +01:00
|
|
|
launchScript += "serverAddress " + serverToJoin->address + "\n";
|
|
|
|
launchScript += "serverPort " + QString::number(serverToJoin->port) + "\n";
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// generic minecraft params
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto param : processMinecraftArgs(session, nullptr /* When using a launch script, the server parameters are handled by it*/
|
|
|
|
)) {
|
2018-07-15 13:51:05 +01:00
|
|
|
launchScript += "param " + param + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// window size, title and state, legacy
|
|
|
|
{
|
|
|
|
QString windowParams;
|
|
|
|
if (settings()->get("LaunchMaximized").toBool())
|
|
|
|
windowParams = "max";
|
|
|
|
else
|
2023-08-02 17:35:35 +01:00
|
|
|
windowParams =
|
|
|
|
QString("%1x%2").arg(settings()->get("MinecraftWinWidth").toInt()).arg(settings()->get("MinecraftWinHeight").toInt());
|
2018-07-15 13:51:05 +01:00
|
|
|
launchScript += "windowTitle " + windowTitle() + "\n";
|
|
|
|
launchScript += "windowParams " + windowParams + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// legacy auth
|
2023-08-02 17:35:35 +01:00
|
|
|
if (session) {
|
2018-07-15 13:51:05 +01:00
|
|
|
launchScript += "userName " + session->player_name + "\n";
|
|
|
|
launchScript += "sessionId " + session->session + "\n";
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto trait : profile->getTraits()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
launchScript += "traits " + trait + "\n";
|
|
|
|
}
|
2022-10-24 18:21:26 +01:00
|
|
|
|
2022-11-08 17:51:18 +00:00
|
|
|
launchScript += "launcher " + getLauncher() + "\n";
|
2022-10-24 18:21:26 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// qDebug() << "Generated launch script:" << launchScript;
|
|
|
|
return launchScript;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2021-05-22 15:14:25 +01:00
|
|
|
QStringList MinecraftInstance::verboseDescription(AuthSessionPtr session, MinecraftServerTargetPtr serverToJoin)
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList out;
|
2023-08-02 17:35:35 +01:00
|
|
|
out << "Main Class:"
|
|
|
|
<< " " + getMainClass() << "";
|
|
|
|
out << "Native path:"
|
|
|
|
<< " " + getNativePath() << "";
|
2018-07-15 13:51:05 +01:00
|
|
|
|
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
|
|
|
|
auto alltraits = traits();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (alltraits.size()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
out << "Traits:";
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto trait : alltraits) {
|
2018-07-15 13:51:05 +01:00
|
|
|
out << "traits " + trait;
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
2021-03-23 21:57:39 +00:00
|
|
|
auto settings = this->settings();
|
|
|
|
bool nativeOpenAL = settings->get("UseNativeOpenAL").toBool();
|
|
|
|
bool nativeGLFW = settings->get("UseNativeGLFW").toBool();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (nativeOpenAL || nativeGLFW) {
|
2021-03-23 21:57:39 +00:00
|
|
|
if (nativeOpenAL)
|
|
|
|
out << "Using system OpenAL.";
|
|
|
|
if (nativeGLFW)
|
|
|
|
out << "Using system GLFW.";
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// libraries and class path.
|
|
|
|
{
|
|
|
|
out << "Libraries:";
|
|
|
|
QStringList jars, nativeJars;
|
2022-07-11 08:01:07 +01:00
|
|
|
profile->getLibraryFiles(runtimeContext(), jars, nativeJars, getLocalLibraryPath(), binRoot());
|
2023-08-02 17:35:35 +01:00
|
|
|
auto printLibFile = [&](const QString& path) {
|
2018-07-15 13:51:05 +01:00
|
|
|
QFileInfo info(path);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (info.exists()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
out << " " + path;
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2018-07-15 13:51:05 +01:00
|
|
|
out << " " + path + " (missing)";
|
|
|
|
}
|
|
|
|
};
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto file : jars) {
|
2018-07-15 13:51:05 +01:00
|
|
|
printLibFile(file);
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
out << "Native libraries:";
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto file : nativeJars) {
|
2018-07-15 13:51:05 +01:00
|
|
|
printLibFile(file);
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
auto printModList = [&](const QString& label, ModFolderModel& model) {
|
|
|
|
if (model.size()) {
|
2019-08-04 04:08:40 +01:00
|
|
|
out << QString("%1:").arg(label);
|
|
|
|
auto modList = model.allMods();
|
2022-09-17 00:00:36 +01:00
|
|
|
std::sort(modList.begin(), modList.end(), [](auto a, auto b) {
|
2022-06-26 18:17:15 +01:00
|
|
|
auto aName = a->fileinfo().completeBaseName();
|
|
|
|
auto bName = b->fileinfo().completeBaseName();
|
2019-08-04 04:08:40 +01:00
|
|
|
return aName.localeAwareCompare(bName) < 0;
|
|
|
|
});
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto mod : modList) {
|
|
|
|
if (mod->type() == ResourceType::FOLDER) {
|
2022-07-22 21:45:27 +01:00
|
|
|
out << u8" [🖿] " + mod->fileinfo().completeBaseName() + " (folder)";
|
2019-08-04 04:08:40 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
if (mod->enabled()) {
|
2022-07-22 13:11:54 +01:00
|
|
|
out << u8" [✔] " + mod->fileinfo().completeBaseName();
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2022-07-22 21:45:27 +01:00
|
|
|
out << u8" [✘] " + mod->fileinfo().completeBaseName() + " (disabled)";
|
2019-08-04 04:08:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
out << "";
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
2019-08-04 04:08:40 +01:00
|
|
|
};
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2019-08-04 04:08:40 +01:00
|
|
|
printModList("Mods", *(loaderModList().get()));
|
|
|
|
printModList("Core Mods", *(coreModList().get()));
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
auto& jarMods = profile->getJarMods();
|
|
|
|
if (jarMods.size()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
out << "Jar Mods:";
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto& jarmod : jarMods) {
|
2022-07-11 08:01:07 +01:00
|
|
|
auto displayname = jarmod->displayName(runtimeContext());
|
|
|
|
auto realname = jarmod->filename(runtimeContext());
|
2023-08-02 17:35:35 +01:00
|
|
|
if (displayname != realname) {
|
2018-07-15 13:51:05 +01:00
|
|
|
out << " " + displayname + " (" + realname + ")";
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2018-07-15 13:51:05 +01:00
|
|
|
out << " " + realname;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
2021-05-22 15:14:25 +01:00
|
|
|
auto params = processMinecraftArgs(nullptr, serverToJoin);
|
2018-07-15 13:51:05 +01:00
|
|
|
out << "Params:";
|
|
|
|
out << " " + params.join(' ');
|
|
|
|
out << "";
|
|
|
|
|
|
|
|
QString windowParams;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (settings->get("LaunchMaximized").toBool()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
out << "Window size: max (if available)";
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2021-03-23 21:57:39 +00:00
|
|
|
auto width = settings->get("MinecraftWinWidth").toInt();
|
|
|
|
auto height = settings->get("MinecraftWinHeight").toInt();
|
2018-07-15 13:51:05 +01:00
|
|
|
out << "Window size: " + QString::number(width) + " x " + QString::number(height);
|
|
|
|
}
|
|
|
|
out << "";
|
2022-11-08 17:51:18 +00:00
|
|
|
out << "Launcher: " + getLauncher();
|
|
|
|
out << "";
|
2018-07-15 13:51:05 +01:00
|
|
|
return out;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2015-08-16 01:17:50 +01:00
|
|
|
QMap<QString, QString> MinecraftInstance::createCensorFilterFromSession(AuthSessionPtr session)
|
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!session) {
|
2018-07-15 13:51:05 +01:00
|
|
|
return QMap<QString, QString>();
|
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
auto& sessionRef = *session.get();
|
2018-07-15 13:51:05 +01:00
|
|
|
QMap<QString, QString> filter;
|
2023-08-02 17:35:35 +01:00
|
|
|
auto addToFilter = [&filter](QString key, QString value) {
|
|
|
|
if (key.trimmed().size()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
filter[key] = value;
|
|
|
|
}
|
|
|
|
};
|
2023-08-02 17:35:35 +01:00
|
|
|
if (sessionRef.session != "-") {
|
2018-07-15 13:51:05 +01:00
|
|
|
addToFilter(sessionRef.session, tr("<SESSION ID>"));
|
|
|
|
}
|
2023-07-24 13:43:26 +01:00
|
|
|
if (sessionRef.access_token != "0") {
|
2022-07-02 16:05:33 +01:00
|
|
|
addToFilter(sessionRef.access_token, tr("<ACCESS TOKEN>"));
|
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
if (sessionRef.client_token.size()) {
|
2021-07-26 20:44:11 +01:00
|
|
|
addToFilter(sessionRef.client_token, tr("<CLIENT TOKEN>"));
|
|
|
|
}
|
2018-07-15 13:51:05 +01:00
|
|
|
addToFilter(sessionRef.uuid, tr("<PROFILE ID>"));
|
|
|
|
|
|
|
|
return filter;
|
2015-08-16 01:17:50 +01:00
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
MessageLevel::Enum MinecraftInstance::guessLevel(const QString& line, MessageLevel::Enum level)
|
2015-07-22 08:01:04 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QRegularExpression re("\\[(?<timestamp>[0-9:]+)\\] \\[[^/]+/(?<level>[^\\]]+)\\]");
|
|
|
|
auto match = re.match(line);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (match.hasMatch()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
// New style logs from log4j
|
|
|
|
QString timestamp = match.captured("timestamp");
|
|
|
|
QString levelStr = match.captured("level");
|
2023-08-02 17:35:35 +01:00
|
|
|
if (levelStr == "INFO")
|
2018-07-15 13:51:05 +01:00
|
|
|
level = MessageLevel::Message;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (levelStr == "WARN")
|
2018-07-15 13:51:05 +01:00
|
|
|
level = MessageLevel::Warning;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (levelStr == "ERROR")
|
2018-07-15 13:51:05 +01:00
|
|
|
level = MessageLevel::Error;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (levelStr == "FATAL")
|
2018-07-15 13:51:05 +01:00
|
|
|
level = MessageLevel::Fatal;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (levelStr == "TRACE" || levelStr == "DEBUG")
|
2018-07-15 13:51:05 +01:00
|
|
|
level = MessageLevel::Debug;
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2018-07-15 13:51:05 +01:00
|
|
|
// Old style forge logs
|
2023-08-02 17:35:35 +01:00
|
|
|
if (line.contains("[INFO]") || line.contains("[CONFIG]") || line.contains("[FINE]") || line.contains("[FINER]") ||
|
|
|
|
line.contains("[FINEST]"))
|
2018-07-15 13:51:05 +01:00
|
|
|
level = MessageLevel::Message;
|
|
|
|
if (line.contains("[SEVERE]") || line.contains("[STDERR]"))
|
|
|
|
level = MessageLevel::Error;
|
|
|
|
if (line.contains("[WARNING]"))
|
|
|
|
level = MessageLevel::Warning;
|
|
|
|
if (line.contains("[DEBUG]"))
|
|
|
|
level = MessageLevel::Debug;
|
|
|
|
}
|
|
|
|
if (line.contains("overwriting existing"))
|
|
|
|
return MessageLevel::Fatal;
|
2023-08-02 17:35:35 +01:00
|
|
|
// NOTE: this diverges from the real regexp. no unicode, the first section is + instead of *
|
2018-07-15 13:51:05 +01:00
|
|
|
static const QString javaSymbol = "([a-zA-Z_$][a-zA-Z\\d_$]*\\.)+[a-zA-Z_$][a-zA-Z\\d_$]*";
|
2023-08-02 17:35:35 +01:00
|
|
|
if (line.contains("Exception in thread") || line.contains(QRegularExpression("\\s+at " + javaSymbol)) ||
|
|
|
|
line.contains(QRegularExpression("Caused by: " + javaSymbol)) ||
|
|
|
|
line.contains(QRegularExpression("([a-zA-Z_$][a-zA-Z\\d_$]*\\.)+[a-zA-Z_$]?[a-zA-Z\\d_$]*(Exception|Error|Throwable)")) ||
|
|
|
|
line.contains(QRegularExpression("... \\d+ more$")))
|
2018-07-15 13:51:05 +01:00
|
|
|
return MessageLevel::Error;
|
|
|
|
return level;
|
2015-07-22 08:01:04 +01:00
|
|
|
}
|
|
|
|
|
2015-08-18 01:25:24 +01:00
|
|
|
IPathMatcher::Ptr MinecraftInstance::getLogFileMatcher()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
auto combined = std::make_shared<MultiMatcher>();
|
|
|
|
combined->add(std::make_shared<RegexpMatcher>(".*\\.log(\\.[0-9]*)?(\\.gz)?$"));
|
|
|
|
combined->add(std::make_shared<RegexpMatcher>("crash-.*\\.txt"));
|
|
|
|
combined->add(std::make_shared<RegexpMatcher>("IDMap dump.*\\.txt$"));
|
|
|
|
combined->add(std::make_shared<RegexpMatcher>("ModLoader\\.txt(\\..*)?$"));
|
|
|
|
return combined;
|
2015-08-18 01:25:24 +01:00
|
|
|
}
|
|
|
|
|
2015-08-19 01:04:56 +01:00
|
|
|
QString MinecraftInstance::getLogFileRoot()
|
|
|
|
{
|
2018-07-27 22:57:09 +01:00
|
|
|
return gameRoot();
|
2015-08-19 01:04:56 +01:00
|
|
|
}
|
|
|
|
|
2015-09-22 00:06:45 +01:00
|
|
|
QString MinecraftInstance::getStatusbarDescription()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList traits;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (hasVersionBroken()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
traits.append(tr("broken"));
|
|
|
|
}
|
|
|
|
|
2022-06-29 05:34:13 +01:00
|
|
|
QString mcVersion = m_components->getComponentVersion("net.minecraft");
|
2023-08-02 17:35:35 +01:00
|
|
|
if (mcVersion.isEmpty()) {
|
2022-06-29 05:34:13 +01:00
|
|
|
// Load component info if needed
|
|
|
|
m_components->reload(Net::Mode::Offline);
|
|
|
|
mcVersion = m_components->getComponentVersion("net.minecraft");
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
QString description;
|
2022-06-29 05:34:44 +01:00
|
|
|
description.append(tr("Minecraft %1").arg(mcVersion));
|
2023-08-02 17:35:35 +01:00
|
|
|
if (m_settings->get("ShowGameTime").toBool()) {
|
2021-07-13 16:59:33 +01:00
|
|
|
if (lastTimePlayed() > 0) {
|
2023-04-21 15:18:17 +01:00
|
|
|
QDateTime lastLaunchTime = QDateTime::fromMSecsSinceEpoch(lastLaunch());
|
2023-08-18 10:24:28 +01:00
|
|
|
description.append(
|
|
|
|
tr(", last played on %1 for %2")
|
|
|
|
.arg(QLocale().toString(lastLaunchTime, QLocale::ShortFormat))
|
|
|
|
.arg(Time::prettifyDuration(lastTimePlayed(), APPLICATION->settings()->get("ShowGameTimeWithoutDays").toBool())));
|
2021-07-13 16:59:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (totalTimePlayed() > 0) {
|
2023-08-18 10:24:28 +01:00
|
|
|
description.append(
|
|
|
|
tr(", total played for %1")
|
|
|
|
.arg(Time::prettifyDuration(totalTimePlayed(), APPLICATION->settings()->get("ShowGameTimeWithoutDays").toBool())));
|
2021-07-13 16:59:33 +01:00
|
|
|
}
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
if (hasCrashed()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
description.append(tr(", has crashed."));
|
|
|
|
}
|
|
|
|
return description;
|
2015-09-22 00:06:45 +01:00
|
|
|
}
|
|
|
|
|
2021-11-21 22:36:55 +00:00
|
|
|
Task::Ptr MinecraftInstance::createUpdateTask(Net::Mode mode)
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2022-07-11 08:01:07 +01:00
|
|
|
updateRuntimeContext();
|
2023-08-02 17:35:35 +01:00
|
|
|
switch (mode) {
|
|
|
|
case Net::Mode::Offline: {
|
2021-11-21 22:36:55 +00:00
|
|
|
return Task::Ptr(new MinecraftLoadAndCheck(this));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
case Net::Mode::Online: {
|
2021-11-21 22:36:55 +00:00
|
|
|
return Task::Ptr(new MinecraftUpdate(this));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2021-05-22 17:07:08 +01:00
|
|
|
shared_qobject_ptr<LaunchTask> MinecraftInstance::createLaunchTask(AuthSessionPtr session, MinecraftServerTargetPtr serverToJoin)
|
2016-06-16 01:20:23 +01:00
|
|
|
{
|
2022-07-11 08:01:07 +01:00
|
|
|
updateRuntimeContext();
|
2019-04-07 22:59:04 +01:00
|
|
|
// FIXME: get rid of shared_from_this ...
|
|
|
|
auto process = LaunchTask::create(std::dynamic_pointer_cast<MinecraftInstance>(shared_from_this()));
|
2018-07-15 13:51:05 +01:00
|
|
|
auto pptr = process.get();
|
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
APPLICATION->icons()->saveIcon(iconKey(), FS::PathCombine(gameRoot(), "icon.png"), "PNG");
|
2018-07-15 13:51:05 +01:00
|
|
|
|
|
|
|
// print a header
|
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<TextPrint>(pptr, "Minecraft folder is:\n" + gameRoot() + "\n\n", MessageLevel::Launcher));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// check java
|
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<CheckJava>(pptr));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
|
2021-03-10 02:52:35 +00:00
|
|
|
// create the .minecraft folder and server-resource-packs (workaround for Minecraft bug MCL-3732)
|
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<CreateGameFolders>(pptr));
|
2021-03-10 02:52:35 +00:00
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!serverToJoin && settings()->get("JoinServerOnLaunch").toBool()) {
|
2022-07-06 21:17:54 +01:00
|
|
|
QString fullAddress = settings()->get("JoinServerOnLaunchAddress").toString();
|
2021-05-22 17:07:08 +01:00
|
|
|
serverToJoin.reset(new MinecraftServerTarget(MinecraftServerTarget::parse(fullAddress)));
|
|
|
|
}
|
2021-05-22 16:00:14 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
if (serverToJoin && serverToJoin->port == 25565) {
|
2021-05-22 17:07:08 +01:00
|
|
|
// Resolve server address to join on launch
|
2023-01-24 19:52:09 +00:00
|
|
|
auto step = makeShared<LookupServerAddress>(pptr);
|
2021-05-22 17:07:08 +01:00
|
|
|
step->setLookupAddress(serverToJoin->address);
|
|
|
|
step->setOutputAddressPtr(serverToJoin);
|
|
|
|
process->appendStep(step);
|
2021-05-22 15:14:25 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// run pre-launch command if that's needed
|
2023-08-02 17:35:35 +01:00
|
|
|
if (getPreLaunchCommand().size()) {
|
2023-01-24 19:52:09 +00:00
|
|
|
auto step = makeShared<PreLaunchCommand>(pptr);
|
2018-07-27 22:57:09 +01:00
|
|
|
step->setWorkingDirectory(gameRoot());
|
2018-07-15 13:51:05 +01:00
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we aren't in offline mode,.
|
2023-08-02 17:35:35 +01:00
|
|
|
if (session->status != AuthSession::PlayableOffline) {
|
|
|
|
if (!session->demo) {
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<ClaimAccount>(pptr, session));
|
2021-12-30 20:26:29 +00:00
|
|
|
}
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<Update>(pptr, Net::Mode::Online));
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<Update>(pptr, Net::Mode::Offline));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// if there are any jar mods
|
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<ModMinecraftJar>(pptr));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
|
2021-03-10 02:52:35 +00:00
|
|
|
// Scan mods folders for mods
|
2019-08-04 04:08:40 +01:00
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<ScanModFolders>(pptr));
|
2019-08-04 04:08:40 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// print some instance info here...
|
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<PrintInstanceInfo>(pptr, session, serverToJoin));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// extract native jars if needed
|
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<ExtractNatives>(pptr));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
|
2019-02-19 00:00:03 +00:00
|
|
|
// reconstruct assets if needed
|
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<ReconstructAssets>(pptr));
|
2019-02-19 00:00:03 +00:00
|
|
|
}
|
|
|
|
|
2021-06-23 21:24:25 +01:00
|
|
|
// verify that minimum Java requirements are met
|
|
|
|
{
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<VerifyJavaInstall>(pptr));
|
2021-06-23 21:24:25 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
{
|
|
|
|
// actually launch the game
|
2023-07-10 16:10:58 +01:00
|
|
|
auto step = makeShared<LauncherPartLaunch>(pptr);
|
|
|
|
step->setWorkingDirectory(gameRoot());
|
|
|
|
step->setAuthSession(session);
|
|
|
|
step->setServerToJoin(serverToJoin);
|
|
|
|
process->appendStep(step);
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// run post-exit command if that's needed
|
2023-08-02 17:35:35 +01:00
|
|
|
if (getPostExitCommand().size()) {
|
2023-01-24 19:52:09 +00:00
|
|
|
auto step = makeShared<PostLaunchCommand>(pptr);
|
2018-07-27 22:57:09 +01:00
|
|
|
step->setWorkingDirectory(gameRoot());
|
2018-07-15 13:51:05 +01:00
|
|
|
process->appendStep(step);
|
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
if (session) {
|
2018-07-15 13:51:05 +01:00
|
|
|
process->setCensorFilter(createCensorFilterFromSession(session));
|
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
if (m_settings->get("QuitAfterGameStop").toBool()) {
|
2023-01-24 19:52:09 +00:00
|
|
|
process->appendStep(makeShared<QuitAfterGameStop>(pptr));
|
2022-03-23 18:06:17 +00:00
|
|
|
}
|
2018-07-15 13:51:05 +01:00
|
|
|
m_launchProcess = process;
|
|
|
|
emit launchTaskChanged(m_launchProcess);
|
|
|
|
return m_launchProcess;
|
2016-06-16 01:20:23 +01:00
|
|
|
}
|
|
|
|
|
2022-07-06 21:17:54 +01:00
|
|
|
JavaVersion MinecraftInstance::getJavaVersion()
|
2016-06-16 01:20:23 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return JavaVersion(settings()->get("JavaVersion").toString());
|
2016-06-16 01:20:23 +01:00
|
|
|
}
|
|
|
|
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<ModFolderModel> MinecraftInstance::loaderModList()
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2023-06-21 19:34:40 +01:00
|
|
|
if (!m_loader_mod_list) {
|
2022-06-04 14:30:34 +01:00
|
|
|
bool is_indexed = !APPLICATION->settings()->get("ModMetadataDisabled").toBool();
|
2023-05-28 10:15:39 +01:00
|
|
|
m_loader_mod_list.reset(new ModFolderModel(modsRoot(), this, is_indexed));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
return m_loader_mod_list;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<ModFolderModel> MinecraftInstance::coreModList()
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2023-06-21 19:34:40 +01:00
|
|
|
if (!m_core_mod_list) {
|
2022-06-04 14:30:34 +01:00
|
|
|
bool is_indexed = !APPLICATION->settings()->get("ModMetadataDisabled").toBool();
|
2023-05-28 10:15:39 +01:00
|
|
|
m_core_mod_list.reset(new ModFolderModel(coreModsDir(), this, is_indexed));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
return m_core_mod_list;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<ModFolderModel> MinecraftInstance::nilModList()
|
2023-02-11 22:36:06 +00:00
|
|
|
{
|
2023-06-21 19:34:40 +01:00
|
|
|
if (!m_nil_mod_list) {
|
2023-02-11 22:36:06 +00:00
|
|
|
bool is_indexed = !APPLICATION->settings()->get("ModMetadataDisabled").toBool();
|
2023-05-28 10:15:39 +01:00
|
|
|
m_nil_mod_list.reset(new ModFolderModel(nilModsDir(), this, is_indexed, false));
|
2023-02-11 22:36:06 +00:00
|
|
|
}
|
|
|
|
return m_nil_mod_list;
|
|
|
|
}
|
|
|
|
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<ResourcePackFolderModel> MinecraftInstance::resourcePackList()
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!m_resource_pack_list) {
|
2023-05-28 10:15:39 +01:00
|
|
|
m_resource_pack_list.reset(new ResourcePackFolderModel(resourcePacksDir(), this));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
return m_resource_pack_list;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<TexturePackFolderModel> MinecraftInstance::texturePackList()
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!m_texture_pack_list) {
|
2023-05-28 10:15:39 +01:00
|
|
|
m_texture_pack_list.reset(new TexturePackFolderModel(texturePacksDir(), this));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
return m_texture_pack_list;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<ShaderPackFolderModel> MinecraftInstance::shaderPackList()
|
2021-09-23 20:26:56 +01:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!m_shader_pack_list) {
|
2023-05-28 10:15:39 +01:00
|
|
|
m_shader_pack_list.reset(new ShaderPackFolderModel(shaderPacksDir(), this));
|
2021-09-23 20:26:56 +01:00
|
|
|
}
|
|
|
|
return m_shader_pack_list;
|
|
|
|
}
|
|
|
|
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<WorldList> MinecraftInstance::worldList()
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!m_world_list) {
|
2023-05-28 10:15:39 +01:00
|
|
|
m_world_list.reset(new WorldList(worldDir(), this));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
return m_world_list;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2023-05-28 10:15:39 +01:00
|
|
|
std::shared_ptr<GameOptions> MinecraftInstance::gameOptionsModel()
|
2019-01-29 23:35:24 +00:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!m_game_options) {
|
2019-01-29 23:35:24 +00:00
|
|
|
m_game_options.reset(new GameOptions(FS::PathCombine(gameRoot(), "options.txt")));
|
|
|
|
}
|
|
|
|
return m_game_options;
|
|
|
|
}
|
|
|
|
|
2022-06-26 18:17:15 +01:00
|
|
|
QList<Mod*> MinecraftInstance::getJarMods() const
|
2017-07-24 08:01:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
auto profile = m_components->getProfile();
|
2022-06-26 18:17:15 +01:00
|
|
|
QList<Mod*> mods;
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto jarmod : profile->getJarMods()) {
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList jar, temp1, temp2, temp3;
|
2022-07-11 08:01:07 +01:00
|
|
|
jarmod->getApplicableFiles(runtimeContext(), jar, temp1, temp2, temp3, jarmodsPath().absolutePath());
|
2018-07-15 13:51:05 +01:00
|
|
|
// QString filePath = jarmodsPath().absoluteFilePath(jarmod->filename(currentSystem));
|
2022-06-26 18:17:15 +01:00
|
|
|
mods.push_back(new Mod(QFileInfo(jar[0])));
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
return mods;
|
2017-07-24 08:01:37 +01:00
|
|
|
}
|
|
|
|
|
2015-05-05 00:09:28 +01:00
|
|
|
#include "MinecraftInstance.moc"
|