2015-01-28 03:01:07 +05:30
|
|
|
#include "MinecraftInstance.h"
|
2016-07-23 17:06:31 +05:30
|
|
|
#include <minecraft/launch/CreateServerResourcePacksFolder.h>
|
2016-06-16 05:50:23 +05:30
|
|
|
#include <minecraft/launch/ExtractNatives.h>
|
|
|
|
#include <minecraft/launch/PrintInstanceInfo.h>
|
2015-05-05 04:39:28 +05:30
|
|
|
#include <settings/Setting.h>
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/SettingsObject.h"
|
|
|
|
#include "Env.h"
|
2015-07-21 06:08:15 +05:30
|
|
|
#include <MMCStrings.h>
|
2015-08-18 05:55:24 +05:30
|
|
|
#include <pathmatcher/RegexpMatcher.h>
|
|
|
|
#include <pathmatcher/MultiMatcher.h>
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <FileSystem.h>
|
2016-01-02 05:05:54 +05:30
|
|
|
#include <java/JavaVersion.h>
|
2015-07-21 06:08:15 +05:30
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
#include "launch/LaunchTask.h"
|
|
|
|
#include "launch/steps/PostLaunchCommand.h"
|
|
|
|
#include "launch/steps/Update.h"
|
|
|
|
#include "launch/steps/PreLaunchCommand.h"
|
|
|
|
#include "launch/steps/TextPrint.h"
|
|
|
|
#include "minecraft/launch/LauncherPartLaunch.h"
|
2017-07-24 12:31:37 +05:30
|
|
|
#include "minecraft/launch/DirectJavaLaunch.h"
|
2016-06-16 05:50:23 +05:30
|
|
|
#include "minecraft/launch/ModMinecraftJar.h"
|
2016-11-15 07:21:22 +05:30
|
|
|
#include "minecraft/launch/ClaimAccount.h"
|
2016-06-16 05:50:23 +05:30
|
|
|
#include "java/launch/CheckJava.h"
|
2017-08-23 03:53:35 +05:30
|
|
|
#include "java/JavaUtils.h"
|
2017-07-24 12:31:37 +05:30
|
|
|
#include "meta/Index.h"
|
|
|
|
#include "meta/VersionList.h"
|
2016-06-16 05:50:23 +05:30
|
|
|
|
2018-07-15 17:34:09 +05:30
|
|
|
#include "SimpleModList.h"
|
2017-07-24 12:31:37 +05:30
|
|
|
#include "WorldList.h"
|
|
|
|
|
|
|
|
#include "icons/IIconList.h"
|
2016-10-20 04:32:28 +05:30
|
|
|
|
2017-03-13 00:15:28 +05:30
|
|
|
#include <QCoreApplication>
|
2017-10-12 02:34:24 +05:30
|
|
|
#include "ComponentList.h"
|
2017-07-24 12:31:37 +05:30
|
|
|
#include "AssetsUtils.h"
|
|
|
|
#include "MinecraftUpdate.h"
|
2017-11-11 06:08:31 +05:30
|
|
|
#include "MinecraftLoadAndCheck.h"
|
2017-03-13 00:15:28 +05:30
|
|
|
|
2015-07-21 06:08:15 +05:30
|
|
|
#define IBUS "@im=ibus"
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2015-05-05 04:39:28 +05:30
|
|
|
// 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
|
|
|
|
class OrSetting : public Setting
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2015-05-05 04:39:28 +05:30
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
OrSetting(QString id, std::shared_ptr<Setting> a, std::shared_ptr<Setting> b)
|
|
|
|
:Setting({id}, false), m_a(a), m_b(b)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
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) {}
|
2015-05-05 04:39:28 +05:30
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
std::shared_ptr<Setting> m_a;
|
|
|
|
std::shared_ptr<Setting> m_b;
|
2015-05-05 04:39:28 +05:30
|
|
|
};
|
|
|
|
|
2015-02-01 07:38:25 +05:30
|
|
|
MinecraftInstance::MinecraftInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir)
|
2018-07-15 18:21:05 +05:30
|
|
|
: BaseInstance(globalSettings, settings, rootDir)
|
|
|
|
{
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("JavaPath"), javaOrLocation);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("JvmArgs"), javaOrArgs);
|
|
|
|
|
|
|
|
// special!
|
|
|
|
m_settings->registerPassthrough(globalSettings->getSetting("JavaTimestamp"), javaOrLocation);
|
|
|
|
m_settings->registerPassthrough(globalSettings->getSetting("JavaVersion"), javaOrLocation);
|
|
|
|
m_settings->registerPassthrough(globalSettings->getSetting("JavaArchitecture"), javaOrLocation);
|
|
|
|
|
|
|
|
// Window Size
|
|
|
|
auto windowSetting = m_settings->registerSetting("OverrideWindow", false);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("LaunchMaximized"), windowSetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("MinecraftWinWidth"), windowSetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("MinecraftWinHeight"), windowSetting);
|
|
|
|
|
|
|
|
// Memory
|
|
|
|
auto memorySetting = m_settings->registerSetting("OverrideMemory", false);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("MinMemAlloc"), memorySetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("MaxMemAlloc"), memorySetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("PermGen"), memorySetting);
|
|
|
|
|
|
|
|
// Minecraft launch method
|
|
|
|
auto launchMethodOverride = m_settings->registerSetting("OverrideMCLaunchMethod", false);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("MCLaunchMethod"), launchMethodOverride);
|
|
|
|
|
|
|
|
// DEPRECATED: Read what versions the user configuration thinks should be used
|
|
|
|
m_settings->registerSetting({"IntendedVersion", "MinecraftVersion"}, "");
|
|
|
|
m_settings->registerSetting("LWJGLVersion", "");
|
|
|
|
m_settings->registerSetting("ForgeVersion", "");
|
|
|
|
m_settings->registerSetting("LiteloaderVersion", "");
|
|
|
|
|
|
|
|
m_components.reset(new ComponentList(this));
|
|
|
|
m_components->setOldConfigVersion("net.minecraft", m_settings->get("IntendedVersion").toString());
|
|
|
|
auto setting = m_settings->getSetting("LWJGLVersion");
|
|
|
|
m_components->setOldConfigVersion("org.lwjgl", m_settings->get("LWJGLVersion").toString());
|
|
|
|
m_components->setOldConfigVersion("net.minecraftforge", m_settings->get("ForgeVersion").toString());
|
|
|
|
m_components->setOldConfigVersion("com.mumfrey.liteloader", m_settings->get("LiteloaderVersion").toString());
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2017-12-03 23:06:28 +05:30
|
|
|
void MinecraftInstance::saveNow()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_components->saveNow();
|
2017-12-03 23:06:28 +05:30
|
|
|
}
|
|
|
|
|
2017-11-11 06:08:31 +05:30
|
|
|
QString MinecraftInstance::typeName() const
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return "Minecraft";
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2017-10-12 02:34:24 +05:30
|
|
|
std::shared_ptr<ComponentList> MinecraftInstance::getComponentList() const
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return m_components;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2017-09-22 03:57:30 +05:30
|
|
|
QSet<QString> MinecraftInstance::traits() const
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto components = getComponentList();
|
|
|
|
if (!components)
|
|
|
|
{
|
|
|
|
return {"version-incomplete"};
|
|
|
|
}
|
|
|
|
auto profile = components->getProfile();
|
|
|
|
if (!profile)
|
|
|
|
{
|
|
|
|
return {"version-incomplete"};
|
|
|
|
}
|
|
|
|
return profile->getTraits();
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2018-07-28 03:27:09 +05:30
|
|
|
QString MinecraftInstance::gameRoot() const
|
2015-01-28 03:01:07 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QFileInfo mcDir(FS::PathCombine(instanceRoot(), "minecraft"));
|
|
|
|
QFileInfo dotMCDir(FS::PathCombine(instanceRoot(), ".minecraft"));
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if (mcDir.exists() && !dotMCDir.exists())
|
|
|
|
return mcDir.filePath();
|
|
|
|
else
|
|
|
|
return dotMCDir.filePath();
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
|
|
|
|
2017-01-11 03:33:00 +05:30
|
|
|
QString MinecraftInstance::binRoot() const
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return FS::PathCombine(gameRoot(), "bin");
|
2017-01-11 03:33:00 +05:30
|
|
|
}
|
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
QString MinecraftInstance::getNativePath() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QDir natives_dir(FS::PathCombine(instanceRoot(), "natives/"));
|
|
|
|
return natives_dir.absolutePath();
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::getLocalLibraryPath() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QDir libraries_dir(FS::PathCombine(instanceRoot(), "libraries/"));
|
|
|
|
return libraries_dir.absolutePath();
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2018-11-26 14:27:51 +05:30
|
|
|
QString MinecraftInstance::jarModsDir() const
|
|
|
|
{
|
|
|
|
QDir jarmods_dir(FS::PathCombine(instanceRoot(), "jarmods/"));
|
|
|
|
return jarmods_dir.absolutePath();
|
|
|
|
}
|
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
QString MinecraftInstance::loaderModsDir() const
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return FS::PathCombine(gameRoot(), "mods");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2018-07-15 17:34:09 +05:30
|
|
|
QString MinecraftInstance::modsCacheLocation() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return FS::PathCombine(instanceRoot(), "mods.cache");
|
2018-07-15 17:34:09 +05:30
|
|
|
}
|
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
QString MinecraftInstance::coreModsDir() const
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return FS::PathCombine(gameRoot(), "coremods");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::resourcePacksDir() const
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return FS::PathCombine(gameRoot(), "resourcepacks");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::texturePacksDir() const
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return FS::PathCombine(gameRoot(), "texturepacks");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::instanceConfigFolder() const
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return FS::PathCombine(gameRoot(), "config");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::libDir() const
|
2015-01-28 03:01:07 +05:30
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return FS::PathCombine(gameRoot(), "lib");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::worldDir() const
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return FS::PathCombine(gameRoot(), "saves");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QDir MinecraftInstance::librariesPath() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return QDir::current().absoluteFilePath("libraries");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QDir MinecraftInstance::jarmodsPath() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return QDir(jarModsDir());
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QDir MinecraftInstance::versionsPath() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return QDir::current().absoluteFilePath("versions");
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QStringList MinecraftInstance::getClassPath() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QStringList jars, nativeJars;
|
|
|
|
auto javaArchitecture = settings()->get("JavaArchitecture").toString();
|
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
profile->getLibraryFiles(javaArchitecture, jars, nativeJars, getLocalLibraryPath(), binRoot());
|
|
|
|
return jars;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::getMainClass() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
return profile->getMainClass();
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QStringList MinecraftInstance::getNativeJars() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QStringList jars, nativeJars;
|
|
|
|
auto javaArchitecture = settings()->get("JavaArchitecture").toString();
|
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
profile->getLibraryFiles(javaArchitecture, jars, nativeJars, getLocalLibraryPath(), binRoot());
|
|
|
|
return nativeJars;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QStringList MinecraftInstance::extraArguments() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto list = BaseInstance::extraArguments();
|
|
|
|
auto version = getComponentList();
|
|
|
|
if (!version)
|
|
|
|
return list;
|
|
|
|
auto jarMods = getJarMods();
|
|
|
|
if (!jarMods.isEmpty())
|
|
|
|
{
|
|
|
|
list.append({"-Dfml.ignoreInvalidMinecraftCertificates=true",
|
|
|
|
"-Dfml.ignorePatchDiscrepancies=true"});
|
|
|
|
}
|
|
|
|
return list;
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
2015-05-05 04:39:28 +05:30
|
|
|
|
2015-07-21 06:08:15 +05:30
|
|
|
QStringList MinecraftInstance::javaArguments() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QStringList args;
|
2015-07-21 06:08:15 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// custom args go first. we want to override them if we have our own here.
|
|
|
|
args.append(extraArguments());
|
2015-07-21 06:08:15 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// OSX dock icon and name
|
2015-07-21 06:08:15 +05:30
|
|
|
#ifdef Q_OS_MAC
|
2018-07-15 18:21:05 +05:30
|
|
|
args << "-Xdock:icon=icon.png";
|
|
|
|
args << QString("-Xdock:name=\"%1\"").arg(windowTitle());
|
2015-07-21 06:08:15 +05:30
|
|
|
#endif
|
2018-07-15 18:21:05 +05:30
|
|
|
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-29 02:59:18 +05:30
|
|
|
#ifdef Q_OS_MAC
|
2018-07-15 18:21:05 +05:30
|
|
|
if(traits_.contains("FirstThreadOnMacOS"))
|
|
|
|
{
|
|
|
|
args << QString("-XstartOnFirstThread");
|
|
|
|
}
|
2017-10-29 02:26:18 +05:30
|
|
|
#endif
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// HACK: Stupid hack for Intel drivers. See: https://mojang.atlassian.net/browse/MCL-767
|
2015-07-21 06:08:15 +05:30
|
|
|
#ifdef Q_OS_WIN32
|
2018-07-15 18:21:05 +05:30
|
|
|
args << QString("-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_"
|
|
|
|
"minecraft.exe.heapdump");
|
2015-07-21 06:08:15 +05:30
|
|
|
#endif
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
int min = settings()->get("MinMemAlloc").toInt();
|
|
|
|
int max = settings()->get("MaxMemAlloc").toInt();
|
|
|
|
if(min < max)
|
|
|
|
{
|
|
|
|
args << QString("-Xms%1m").arg(min);
|
|
|
|
args << QString("-Xmx%1m").arg(max);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
args << QString("-Xms%1m").arg(max);
|
|
|
|
args << QString("-Xmx%1m").arg(min);
|
|
|
|
}
|
|
|
|
|
|
|
|
// No PermGen in newer java.
|
|
|
|
JavaVersion javaVersion = getJavaVersion();
|
|
|
|
if(javaVersion.requiresPermGen())
|
|
|
|
{
|
|
|
|
auto permgen = settings()->get("PermGen").toInt();
|
|
|
|
if (permgen != 64)
|
|
|
|
{
|
|
|
|
args << QString("-XX:PermSize=%1m").arg(permgen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
args << "-Duser.language=en";
|
|
|
|
|
|
|
|
return args;
|
2015-07-21 06:08:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QMap<QString, QString> MinecraftInstance::getVariables() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QMap<QString, QString> out;
|
|
|
|
out.insert("INST_NAME", name());
|
|
|
|
out.insert("INST_ID", id());
|
|
|
|
out.insert("INST_DIR", QDir(instanceRoot()).absolutePath());
|
2018-07-28 03:27:09 +05:30
|
|
|
out.insert("INST_MC_DIR", QDir(gameRoot()).absolutePath());
|
2018-07-15 18:21:05 +05:30
|
|
|
out.insert("INST_JAVA", settings()->get("JavaPath").toString());
|
|
|
|
out.insert("INST_JAVA_ARGS", javaArguments().join(' '));
|
|
|
|
return out;
|
2015-07-21 06:08:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QProcessEnvironment MinecraftInstance::createEnvironment()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
// prepare the process environment
|
|
|
|
QProcessEnvironment env = CleanEnviroment();
|
2015-07-21 06:08:15 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// export some infos
|
|
|
|
auto variables = getVariables();
|
|
|
|
for (auto it = variables.begin(); it != variables.end(); ++it)
|
|
|
|
{
|
|
|
|
env.insert(it.key(), it.value());
|
|
|
|
}
|
|
|
|
return env;
|
2015-07-21 06:08:15 +05:30
|
|
|
}
|
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
static QString replaceTokensIn(QString text, QMap<QString, QString> with)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QString result;
|
|
|
|
QRegExp token_regexp("\\$\\{(.+)\\}");
|
|
|
|
token_regexp.setMinimal(true);
|
|
|
|
QStringList list;
|
|
|
|
int tail = 0;
|
|
|
|
int head = 0;
|
|
|
|
while ((head = token_regexp.indexIn(text, head)) != -1)
|
|
|
|
{
|
|
|
|
result.append(text.mid(tail, head - tail));
|
|
|
|
QString key = token_regexp.cap(1);
|
|
|
|
auto iter = with.find(key);
|
|
|
|
if (iter != with.end())
|
|
|
|
{
|
|
|
|
result.append(*iter);
|
|
|
|
}
|
|
|
|
head += token_regexp.matchedLength();
|
|
|
|
tail = head;
|
|
|
|
}
|
|
|
|
result.append(text.mid(tail));
|
|
|
|
return result;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QStringList MinecraftInstance::processMinecraftArgs(AuthSessionPtr session) const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
QString args_pattern = profile->getMinecraftArguments();
|
|
|
|
for (auto tweaker : profile->getTweakers())
|
|
|
|
{
|
|
|
|
args_pattern += " --tweakClass " + tweaker;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<QString, QString> token_mapping;
|
|
|
|
// yggdrasil!
|
|
|
|
if(session)
|
|
|
|
{
|
|
|
|
token_mapping["auth_username"] = session->username;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// blatant self-promotion.
|
|
|
|
token_mapping["profile_name"] = token_mapping["version_name"] = "MultiMC5";
|
|
|
|
|
|
|
|
token_mapping["version_type"] = profile->getMinecraftVersionType();
|
|
|
|
|
2018-07-28 03:27:09 +05:30
|
|
|
QString absRootDir = QDir(gameRoot()).absolutePath();
|
2018-07-15 18:21:05 +05:30
|
|
|
token_mapping["game_directory"] = absRootDir;
|
|
|
|
QString absAssetsDir = QDir("assets/").absolutePath();
|
|
|
|
auto assets = profile->getMinecraftAssets();
|
|
|
|
// FIXME: this is wrong and should be run as an async task
|
|
|
|
token_mapping["game_assets"] = AssetsUtils::reconstructAssets(assets->id).absolutePath();
|
|
|
|
|
|
|
|
// 1.7.3+ assets tokens
|
|
|
|
token_mapping["assets_root"] = absAssetsDir;
|
|
|
|
token_mapping["assets_index_name"] = assets->id;
|
|
|
|
|
|
|
|
QStringList parts = args_pattern.split(' ', QString::SkipEmptyParts);
|
|
|
|
for (int i = 0; i < parts.length(); i++)
|
|
|
|
{
|
|
|
|
parts[i] = replaceTokensIn(parts[i], token_mapping);
|
|
|
|
}
|
|
|
|
return parts;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::createLaunchScript(AuthSessionPtr session)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QString launchScript;
|
|
|
|
|
|
|
|
if (!m_components)
|
|
|
|
return QString();
|
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
if(!profile)
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
auto mainClass = getMainClass();
|
|
|
|
if (!mainClass.isEmpty())
|
|
|
|
{
|
|
|
|
launchScript += "mainClass " + mainClass + "\n";
|
|
|
|
}
|
|
|
|
auto appletClass = profile->getAppletClass();
|
|
|
|
if (!appletClass.isEmpty())
|
|
|
|
{
|
|
|
|
launchScript += "appletClass " + appletClass + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// generic minecraft params
|
|
|
|
for (auto param : processMinecraftArgs(session))
|
|
|
|
{
|
|
|
|
launchScript += "param " + param + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// window size, title and state, legacy
|
|
|
|
{
|
|
|
|
QString windowParams;
|
|
|
|
if (settings()->get("LaunchMaximized").toBool())
|
|
|
|
windowParams = "max";
|
|
|
|
else
|
|
|
|
windowParams = QString("%1x%2")
|
|
|
|
.arg(settings()->get("MinecraftWinWidth").toInt())
|
|
|
|
.arg(settings()->get("MinecraftWinHeight").toInt());
|
|
|
|
launchScript += "windowTitle " + windowTitle() + "\n";
|
|
|
|
launchScript += "windowParams " + windowParams + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// legacy auth
|
|
|
|
if(session)
|
|
|
|
{
|
|
|
|
launchScript += "userName " + session->player_name + "\n";
|
|
|
|
launchScript += "sessionId " + session->session + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// libraries and class path.
|
|
|
|
{
|
|
|
|
QStringList jars, nativeJars;
|
|
|
|
auto javaArchitecture = settings()->get("JavaArchitecture").toString();
|
|
|
|
profile->getLibraryFiles(javaArchitecture, jars, nativeJars, getLocalLibraryPath(), binRoot());
|
|
|
|
for(auto file: jars)
|
|
|
|
{
|
|
|
|
launchScript += "cp " + file + "\n";
|
|
|
|
}
|
|
|
|
for(auto file: nativeJars)
|
|
|
|
{
|
|
|
|
launchScript += "ext " + file + "\n";
|
|
|
|
}
|
|
|
|
launchScript += "natives " + getNativePath() + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto trait : profile->getTraits())
|
|
|
|
{
|
|
|
|
launchScript += "traits " + trait + "\n";
|
|
|
|
}
|
|
|
|
launchScript += "launcher onesix\n";
|
|
|
|
// qDebug() << "Generated launch script:" << launchScript;
|
|
|
|
return launchScript;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QStringList MinecraftInstance::verboseDescription(AuthSessionPtr session)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QStringList out;
|
|
|
|
out << "Main Class:" << " " + getMainClass() << "";
|
|
|
|
out << "Native path:" << " " + getNativePath() << "";
|
|
|
|
|
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
|
|
|
|
auto alltraits = traits();
|
|
|
|
if(alltraits.size())
|
|
|
|
{
|
|
|
|
out << "Traits:";
|
|
|
|
for (auto trait : alltraits)
|
|
|
|
{
|
|
|
|
out << "traits " + trait;
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// libraries and class path.
|
|
|
|
{
|
|
|
|
out << "Libraries:";
|
|
|
|
QStringList jars, nativeJars;
|
|
|
|
auto javaArchitecture = settings()->get("JavaArchitecture").toString();
|
|
|
|
profile->getLibraryFiles(javaArchitecture, jars, nativeJars, getLocalLibraryPath(), binRoot());
|
|
|
|
auto printLibFile = [&](const QString & path)
|
|
|
|
{
|
|
|
|
QFileInfo info(path);
|
|
|
|
if(info.exists())
|
|
|
|
{
|
|
|
|
out << " " + path;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out << " " + path + " (missing)";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
for(auto file: jars)
|
|
|
|
{
|
|
|
|
printLibFile(file);
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
out << "Native libraries:";
|
|
|
|
for(auto file: nativeJars)
|
|
|
|
{
|
|
|
|
printLibFile(file);
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(loaderModList()->size())
|
|
|
|
{
|
|
|
|
out << "Mods:";
|
|
|
|
for(auto & mod: loaderModList()->allMods())
|
|
|
|
{
|
|
|
|
if(!mod.enabled())
|
|
|
|
continue;
|
|
|
|
if(mod.type() == Mod::MOD_FOLDER)
|
|
|
|
continue;
|
|
|
|
// TODO: proper implementation would need to descend into folders.
|
|
|
|
|
|
|
|
out << " " + mod.filename().completeBaseName();
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(coreModList()->size())
|
|
|
|
{
|
|
|
|
out << "Core Mods:";
|
|
|
|
for(auto & coremod: coreModList()->allMods())
|
|
|
|
{
|
|
|
|
if(!coremod.enabled())
|
|
|
|
continue;
|
|
|
|
if(coremod.type() == Mod::MOD_FOLDER)
|
|
|
|
continue;
|
|
|
|
// TODO: proper implementation would need to descend into folders.
|
|
|
|
|
|
|
|
out << " " + coremod.filename().completeBaseName();
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
|
|
|
auto & jarMods = profile->getJarMods();
|
|
|
|
if(jarMods.size())
|
|
|
|
{
|
|
|
|
out << "Jar Mods:";
|
|
|
|
for(auto & jarmod: jarMods)
|
|
|
|
{
|
|
|
|
auto displayname = jarmod->displayName(currentSystem);
|
|
|
|
auto realname = jarmod->filename(currentSystem);
|
|
|
|
if(displayname != realname)
|
|
|
|
{
|
|
|
|
out << " " + displayname + " (" + realname + ")";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out << " " + realname;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
}
|
|
|
|
|
|
|
|
auto params = processMinecraftArgs(nullptr);
|
|
|
|
out << "Params:";
|
|
|
|
out << " " + params.join(' ');
|
|
|
|
out << "";
|
|
|
|
|
|
|
|
QString windowParams;
|
|
|
|
if (settings()->get("LaunchMaximized").toBool())
|
|
|
|
{
|
|
|
|
out << "Window size: max (if available)";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto width = settings()->get("MinecraftWinWidth").toInt();
|
|
|
|
auto height = settings()->get("MinecraftWinHeight").toInt();
|
|
|
|
out << "Window size: " + QString::number(width) + " x " + QString::number(height);
|
|
|
|
}
|
|
|
|
out << "";
|
|
|
|
return out;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2015-08-16 05:47:50 +05:30
|
|
|
QMap<QString, QString> MinecraftInstance::createCensorFilterFromSession(AuthSessionPtr session)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if(!session)
|
|
|
|
{
|
|
|
|
return QMap<QString, QString>();
|
|
|
|
}
|
|
|
|
auto & sessionRef = *session.get();
|
|
|
|
QMap<QString, QString> filter;
|
|
|
|
auto addToFilter = [&filter](QString key, QString value)
|
|
|
|
{
|
|
|
|
if(key.trimmed().size())
|
|
|
|
{
|
|
|
|
filter[key] = value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (sessionRef.session != "-")
|
|
|
|
{
|
|
|
|
addToFilter(sessionRef.session, tr("<SESSION ID>"));
|
|
|
|
}
|
|
|
|
addToFilter(sessionRef.access_token, tr("<ACCESS TOKEN>"));
|
|
|
|
addToFilter(sessionRef.client_token, tr("<CLIENT TOKEN>"));
|
|
|
|
addToFilter(sessionRef.uuid, tr("<PROFILE ID>"));
|
|
|
|
|
|
|
|
auto i = sessionRef.u.properties.begin();
|
|
|
|
while (i != sessionRef.u.properties.end())
|
|
|
|
{
|
|
|
|
if(i.key() == "preferredLanguage")
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
addToFilter(i.value(), "<" + i.key().toUpper() + ">");
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return filter;
|
2015-08-16 05:47:50 +05:30
|
|
|
}
|
|
|
|
|
2015-07-22 12:31:04 +05:30
|
|
|
MessageLevel::Enum MinecraftInstance::guessLevel(const QString &line, MessageLevel::Enum level)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QRegularExpression re("\\[(?<timestamp>[0-9:]+)\\] \\[[^/]+/(?<level>[^\\]]+)\\]");
|
|
|
|
auto match = re.match(line);
|
|
|
|
if(match.hasMatch())
|
|
|
|
{
|
|
|
|
// New style logs from log4j
|
|
|
|
QString timestamp = match.captured("timestamp");
|
|
|
|
QString levelStr = match.captured("level");
|
|
|
|
if(levelStr == "INFO")
|
|
|
|
level = MessageLevel::Message;
|
|
|
|
if(levelStr == "WARN")
|
|
|
|
level = MessageLevel::Warning;
|
|
|
|
if(levelStr == "ERROR")
|
|
|
|
level = MessageLevel::Error;
|
|
|
|
if(levelStr == "FATAL")
|
|
|
|
level = MessageLevel::Fatal;
|
|
|
|
if(levelStr == "TRACE" || levelStr == "DEBUG")
|
|
|
|
level = MessageLevel::Debug;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Old style forge logs
|
|
|
|
if (line.contains("[INFO]") || line.contains("[CONFIG]") || line.contains("[FINE]") ||
|
|
|
|
line.contains("[FINER]") || line.contains("[FINEST]"))
|
|
|
|
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;
|
|
|
|
//NOTE: this diverges from the real regexp. no unicode, the first section is + instead of *
|
|
|
|
static const QString javaSymbol = "([a-zA-Z_$][a-zA-Z\\d_$]*\\.)+[a-zA-Z_$][a-zA-Z\\d_$]*";
|
|
|
|
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$"))
|
|
|
|
)
|
|
|
|
return MessageLevel::Error;
|
|
|
|
return level;
|
2015-07-22 12:31:04 +05:30
|
|
|
}
|
|
|
|
|
2015-08-18 05:55:24 +05:30
|
|
|
IPathMatcher::Ptr MinecraftInstance::getLogFileMatcher()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
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 05:55:24 +05:30
|
|
|
}
|
|
|
|
|
2015-08-19 05:34:56 +05:30
|
|
|
QString MinecraftInstance::getLogFileRoot()
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
return gameRoot();
|
2015-08-19 05:34:56 +05:30
|
|
|
}
|
|
|
|
|
2015-09-22 04:36:45 +05:30
|
|
|
QString MinecraftInstance::prettifyTimeDuration(int64_t duration)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
int seconds = (int) (duration % 60);
|
|
|
|
duration /= 60;
|
|
|
|
int minutes = (int) (duration % 60);
|
|
|
|
duration /= 60;
|
|
|
|
int hours = (int) (duration % 24);
|
|
|
|
int days = (int) (duration / 24);
|
|
|
|
if((hours == 0)&&(days == 0))
|
|
|
|
{
|
|
|
|
return tr("%1m %2s").arg(minutes).arg(seconds);
|
|
|
|
}
|
|
|
|
if (days == 0)
|
|
|
|
{
|
|
|
|
return tr("%1h %2m").arg(hours).arg(minutes);
|
|
|
|
}
|
|
|
|
return tr("%1d %2h %3m").arg(days).arg(hours).arg(minutes);
|
2015-09-22 04:36:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::getStatusbarDescription()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QStringList traits;
|
|
|
|
if (hasVersionBroken())
|
|
|
|
{
|
|
|
|
traits.append(tr("broken"));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString description;
|
|
|
|
description.append(tr("Minecraft %1 (%2)").arg(m_components->getComponentVersion("net.minecraft")).arg(typeName()));
|
|
|
|
if(totalTimePlayed() > 0)
|
|
|
|
{
|
|
|
|
description.append(tr(", played for %1").arg(prettifyTimeDuration(totalTimePlayed())));
|
|
|
|
}
|
|
|
|
if(hasCrashed())
|
|
|
|
{
|
|
|
|
description.append(tr(", has crashed."));
|
|
|
|
}
|
|
|
|
return description;
|
2015-09-22 04:36:45 +05:30
|
|
|
}
|
|
|
|
|
2017-11-11 06:08:31 +05:30
|
|
|
shared_qobject_ptr<Task> MinecraftInstance::createUpdateTask(Net::Mode mode)
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case Net::Mode::Offline:
|
|
|
|
{
|
|
|
|
return shared_qobject_ptr<Task>(new MinecraftLoadAndCheck(this));
|
|
|
|
}
|
|
|
|
case Net::Mode::Online:
|
|
|
|
{
|
2018-11-12 04:25:50 +05:30
|
|
|
return shared_qobject_ptr<Task>(new MinecraftUpdate(this));
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
std::shared_ptr<LaunchTask> MinecraftInstance::createLaunchTask(AuthSessionPtr session)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto process = LaunchTask::create(std::dynamic_pointer_cast<MinecraftInstance>(getSharedPtr()));
|
|
|
|
auto pptr = process.get();
|
|
|
|
|
2018-07-28 03:27:09 +05:30
|
|
|
ENV.icons()->saveIcon(iconKey(), FS::PathCombine(gameRoot(), "icon.png"), "PNG");
|
2018-07-15 18:21:05 +05:30
|
|
|
|
|
|
|
// print a header
|
|
|
|
{
|
2018-07-28 03:27:09 +05:30
|
|
|
process->appendStep(std::make_shared<TextPrint>(pptr, "Minecraft folder is:\n" + gameRoot() + "\n\n", MessageLevel::MultiMC));
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// check java
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<CheckJava>(pptr);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// check launch method
|
|
|
|
QStringList validMethods = {"LauncherPart", "DirectJava"};
|
|
|
|
QString method = launchMethod();
|
|
|
|
if(!validMethods.contains(method))
|
|
|
|
{
|
|
|
|
process->appendStep(std::make_shared<TextPrint>(pptr, "Selected launch method \"" + method + "\" is not valid.\n", MessageLevel::Fatal));
|
|
|
|
return process;
|
|
|
|
}
|
|
|
|
|
|
|
|
// run pre-launch command if that's needed
|
|
|
|
if(getPreLaunchCommand().size())
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<PreLaunchCommand>(pptr);
|
2018-07-28 03:27:09 +05:30
|
|
|
step->setWorkingDirectory(gameRoot());
|
2018-07-15 18:21:05 +05:30
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we aren't in offline mode,.
|
|
|
|
if(session->status != AuthSession::PlayableOffline)
|
|
|
|
{
|
|
|
|
process->appendStep(std::make_shared<ClaimAccount>(pptr, session));
|
|
|
|
process->appendStep(std::make_shared<Update>(pptr, Net::Mode::Online));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
process->appendStep(std::make_shared<Update>(pptr, Net::Mode::Offline));
|
|
|
|
}
|
|
|
|
|
|
|
|
// if there are any jar mods
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<ModMinecraftJar>(pptr);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// print some instance info here...
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<PrintInstanceInfo>(pptr, session);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the server-resource-packs folder (workaround for Minecraft bug MCL-3732)
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<CreateServerResourcePacksFolder>(pptr);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// extract native jars if needed
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<ExtractNatives>(pptr);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// actually launch the game
|
|
|
|
auto method = launchMethod();
|
|
|
|
if(method == "LauncherPart")
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<LauncherPartLaunch>(pptr);
|
2018-07-28 03:27:09 +05:30
|
|
|
step->setWorkingDirectory(gameRoot());
|
2018-07-15 18:21:05 +05:30
|
|
|
step->setAuthSession(session);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
else if (method == "DirectJava")
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<DirectJavaLaunch>(pptr);
|
2018-07-28 03:27:09 +05:30
|
|
|
step->setWorkingDirectory(gameRoot());
|
2018-07-15 18:21:05 +05:30
|
|
|
step->setAuthSession(session);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// run post-exit command if that's needed
|
|
|
|
if(getPostExitCommand().size())
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<PostLaunchCommand>(pptr);
|
2018-07-28 03:27:09 +05:30
|
|
|
step->setWorkingDirectory(gameRoot());
|
2018-07-15 18:21:05 +05:30
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
if (session)
|
|
|
|
{
|
|
|
|
process->setCensorFilter(createCensorFilterFromSession(session));
|
|
|
|
}
|
|
|
|
m_launchProcess = process;
|
|
|
|
emit launchTaskChanged(m_launchProcess);
|
|
|
|
return m_launchProcess;
|
2016-06-16 05:50:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::launchMethod()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return m_settings->get("MCLaunchMethod").toString();
|
2016-06-16 05:50:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
JavaVersion MinecraftInstance::getJavaVersion() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return JavaVersion(settings()->get("JavaVersion").toString());
|
2016-06-16 05:50:23 +05:30
|
|
|
}
|
|
|
|
|
2018-07-15 17:34:09 +05:30
|
|
|
std::shared_ptr<SimpleModList> MinecraftInstance::loaderModList() const
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!m_loader_mod_list)
|
|
|
|
{
|
|
|
|
m_loader_mod_list.reset(new SimpleModList(loaderModsDir()));
|
|
|
|
}
|
|
|
|
m_loader_mod_list->update();
|
|
|
|
return m_loader_mod_list;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2018-07-15 17:34:09 +05:30
|
|
|
std::shared_ptr<SimpleModList> MinecraftInstance::coreModList() const
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!m_core_mod_list)
|
|
|
|
{
|
|
|
|
m_core_mod_list.reset(new SimpleModList(coreModsDir()));
|
|
|
|
}
|
|
|
|
m_core_mod_list->update();
|
|
|
|
return m_core_mod_list;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2018-07-15 17:34:09 +05:30
|
|
|
std::shared_ptr<SimpleModList> MinecraftInstance::resourcePackList() const
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!m_resource_pack_list)
|
|
|
|
{
|
|
|
|
m_resource_pack_list.reset(new SimpleModList(resourcePacksDir()));
|
|
|
|
}
|
|
|
|
m_resource_pack_list->update();
|
|
|
|
return m_resource_pack_list;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2018-07-15 17:34:09 +05:30
|
|
|
std::shared_ptr<SimpleModList> MinecraftInstance::texturePackList() const
|
2017-07-24 12:31:37 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!m_texture_pack_list)
|
|
|
|
{
|
|
|
|
m_texture_pack_list.reset(new SimpleModList(texturePacksDir()));
|
|
|
|
}
|
|
|
|
m_texture_pack_list->update();
|
|
|
|
return m_texture_pack_list;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<WorldList> MinecraftInstance::worldList() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!m_world_list)
|
|
|
|
{
|
|
|
|
m_world_list.reset(new WorldList(worldDir()));
|
|
|
|
}
|
|
|
|
return m_world_list;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QList< Mod > MinecraftInstance::getJarMods() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto profile = m_components->getProfile();
|
|
|
|
QList<Mod> mods;
|
|
|
|
for (auto jarmod : profile->getJarMods())
|
|
|
|
{
|
|
|
|
QStringList jar, temp1, temp2, temp3;
|
|
|
|
jarmod->getApplicableFiles(currentSystem, jar, temp1, temp2, temp3, jarmodsPath().absolutePath());
|
|
|
|
// QString filePath = jarmodsPath().absoluteFilePath(jarmod->filename(currentSystem));
|
|
|
|
mods.push_back(Mod(QFileInfo(jar[0])));
|
|
|
|
}
|
|
|
|
return mods;
|
2017-07-24 12:31:37 +05:30
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
|
2015-05-05 04:39:28 +05:30
|
|
|
#include "MinecraftInstance.moc"
|