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"
|
|
|
|
#include "minecraft/MinecraftVersionList.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"
|
|
|
|
#include "minecraft/launch/ModMinecraftJar.h"
|
|
|
|
#include "java/launch/CheckJava.h"
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
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) {}
|
|
|
|
private:
|
|
|
|
std::shared_ptr<Setting> m_a;
|
|
|
|
std::shared_ptr<Setting> m_b;
|
|
|
|
};
|
|
|
|
|
2015-02-01 07:38:25 +05:30
|
|
|
MinecraftInstance::MinecraftInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir)
|
|
|
|
: BaseInstance(globalSettings, settings, rootDir)
|
2015-01-28 03:01:07 +05:30
|
|
|
{
|
|
|
|
// Java Settings
|
2015-05-05 04:39:28 +05:30
|
|
|
auto javaOverride = m_settings->registerSetting("OverrideJava", false);
|
2015-05-04 04:50:48 +05:30
|
|
|
auto locationOverride = m_settings->registerSetting("OverrideJavaLocation", false);
|
2015-09-04 05:40:29 +05:30
|
|
|
auto argsOverride = m_settings->registerSetting("OverrideJavaArgs", false);
|
|
|
|
|
|
|
|
// combinations
|
2015-05-05 04:39:28 +05:30
|
|
|
auto javaOrLocation = std::make_shared<OrSetting>("JavaOrLocationOverride", javaOverride, locationOverride);
|
2015-09-04 05:40:29 +05:30
|
|
|
auto javaOrArgs = std::make_shared<OrSetting>("JavaOrArgsOverride", javaOverride, argsOverride);
|
|
|
|
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("JavaPath"), javaOrLocation);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("JvmArgs"), javaOrArgs);
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2015-05-04 04:50:48 +05:30
|
|
|
// special!
|
2015-05-05 04:39:28 +05:30
|
|
|
m_settings->registerPassthrough(globalSettings->getSetting("JavaTimestamp"), javaOrLocation);
|
|
|
|
m_settings->registerPassthrough(globalSettings->getSetting("JavaVersion"), javaOrLocation);
|
2016-06-16 05:50:23 +05:30
|
|
|
m_settings->registerPassthrough(globalSettings->getSetting("JavaArchitecture"), javaOrLocation);
|
2015-05-04 04:50:48 +05:30
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
// Window Size
|
2015-09-04 05:40:29 +05:30
|
|
|
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);
|
2015-01-28 03:01:07 +05:30
|
|
|
|
|
|
|
// Memory
|
2015-09-04 05:40:29 +05:30
|
|
|
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);
|
2016-06-16 05:50:23 +05:30
|
|
|
|
|
|
|
// Minecraft launch method
|
|
|
|
auto launchMethodOverride = m_settings->registerSetting("OverrideMCLaunchMethod", false);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("MCLaunchMethod"), launchMethodOverride);
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::minecraftRoot() const
|
|
|
|
{
|
2015-10-05 05:17:27 +05:30
|
|
|
QFileInfo mcDir(FS::PathCombine(instanceRoot(), "minecraft"));
|
|
|
|
QFileInfo dotMCDir(FS::PathCombine(instanceRoot(), ".minecraft"));
|
2015-01-28 03:01:07 +05:30
|
|
|
|
|
|
|
if (dotMCDir.exists() && !mcDir.exists())
|
|
|
|
return dotMCDir.filePath();
|
|
|
|
else
|
|
|
|
return mcDir.filePath();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr< BaseVersionList > MinecraftInstance::versionList() const
|
|
|
|
{
|
2015-02-02 05:39:28 +05:30
|
|
|
return ENV.getVersionList("net.minecraft");
|
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
|
|
|
|
{
|
|
|
|
QStringList args;
|
|
|
|
|
|
|
|
// custom args go first. we want to override them if we have our own here.
|
|
|
|
args.append(extraArguments());
|
|
|
|
|
|
|
|
// OSX dock icon and name
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
args << "-Xdock:icon=icon.png";
|
|
|
|
args << QString("-Xdock:name=\"%1\"").arg(windowTitle());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// HACK: Stupid hack for Intel drivers. See: https://mojang.atlassian.net/browse/MCL-767
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
args << QString("-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_"
|
|
|
|
"minecraft.exe.heapdump");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
args << QString("-Xms%1m").arg(settings()->get("MinMemAlloc").toInt());
|
|
|
|
args << QString("-Xmx%1m").arg(settings()->get("MaxMemAlloc").toInt());
|
|
|
|
|
|
|
|
// No PermGen in newer java.
|
2016-06-16 05:50:23 +05:30
|
|
|
JavaVersion javaVersion = getJavaVersion();
|
2016-01-02 05:05:54 +05:30
|
|
|
if(javaVersion.requiresPermGen())
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
|
|
|
auto permgen = settings()->get("PermGen").toInt();
|
|
|
|
if (permgen != 64)
|
|
|
|
{
|
|
|
|
args << QString("-XX:PermSize=%1m").arg(permgen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
args << "-Duser.language=en";
|
|
|
|
|
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<QString, QString> MinecraftInstance::getVariables() const
|
|
|
|
{
|
|
|
|
QMap<QString, QString> out;
|
|
|
|
out.insert("INST_NAME", name());
|
|
|
|
out.insert("INST_ID", id());
|
|
|
|
out.insert("INST_DIR", QDir(instanceRoot()).absolutePath());
|
|
|
|
out.insert("INST_MC_DIR", QDir(minecraftRoot()).absolutePath());
|
|
|
|
out.insert("INST_JAVA", settings()->get("JavaPath").toString());
|
|
|
|
out.insert("INST_JAVA_ARGS", javaArguments().join(' '));
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2015-12-18 10:13:44 +05:30
|
|
|
static QString processLD_LIBRARY_PATH(const QString & LD_LIBRARY_PATH)
|
|
|
|
{
|
|
|
|
QDir mmcBin(QCoreApplication::applicationDirPath());
|
|
|
|
auto items = LD_LIBRARY_PATH.split(':');
|
|
|
|
QStringList final;
|
|
|
|
for(auto & item: items)
|
|
|
|
{
|
|
|
|
QDir test(item);
|
|
|
|
if(test == mmcBin)
|
|
|
|
{
|
|
|
|
qDebug() << "Env:LD_LIBRARY_PATH ignoring path" << item;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
final.append(item);
|
|
|
|
}
|
|
|
|
return final.join(':');
|
|
|
|
}
|
|
|
|
|
2015-07-21 06:08:15 +05:30
|
|
|
QProcessEnvironment MinecraftInstance::createEnvironment()
|
|
|
|
{
|
|
|
|
// prepare the process environment
|
|
|
|
QProcessEnvironment rawenv = QProcessEnvironment::systemEnvironment();
|
|
|
|
QProcessEnvironment env;
|
|
|
|
|
|
|
|
QStringList ignored =
|
|
|
|
{
|
|
|
|
"JAVA_ARGS",
|
|
|
|
"CLASSPATH",
|
|
|
|
"CONFIGPATH",
|
|
|
|
"JAVA_HOME",
|
|
|
|
"JRE_HOME",
|
|
|
|
"_JAVA_OPTIONS",
|
|
|
|
"JAVA_OPTIONS",
|
|
|
|
"JAVA_TOOL_OPTIONS"
|
|
|
|
};
|
|
|
|
for(auto key: rawenv.keys())
|
|
|
|
{
|
|
|
|
auto value = rawenv.value(key);
|
|
|
|
// filter out dangerous java crap
|
|
|
|
if(ignored.contains(key))
|
|
|
|
{
|
|
|
|
qDebug() << "Env: ignoring" << key << value;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// filter MultiMC-related things
|
|
|
|
if(key.startsWith("QT_"))
|
|
|
|
{
|
|
|
|
qDebug() << "Env: ignoring" << key << value;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
// Do not pass LD_* variables to java. They were intended for MultiMC
|
|
|
|
if(key.startsWith("LD_"))
|
|
|
|
{
|
|
|
|
qDebug() << "Env: ignoring" << key << value;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Strip IBus
|
|
|
|
// IBus is a Linux IME framework. For some reason, it breaks MC?
|
|
|
|
if (key == "XMODIFIERS" && value.contains(IBUS))
|
|
|
|
{
|
|
|
|
QString save = value;
|
|
|
|
value.replace(IBUS, "");
|
|
|
|
qDebug() << "Env: stripped" << IBUS << "from" << save << ":" << value;
|
|
|
|
}
|
|
|
|
if(key == "GAME_PRELOAD")
|
|
|
|
{
|
|
|
|
env.insert("LD_PRELOAD", value);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(key == "GAME_LIBRARY_PATH")
|
|
|
|
{
|
2015-12-18 10:13:44 +05:30
|
|
|
env.insert("LD_LIBRARY_PATH", processLD_LIBRARY_PATH(value));
|
2015-07-21 06:08:15 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
qDebug() << "Env: " << key << value;
|
|
|
|
env.insert(key, value);
|
|
|
|
}
|
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
// HACK: Workaround for QTBUG42500
|
|
|
|
if(!env.contains("LD_LIBRARY_PATH"))
|
|
|
|
{
|
|
|
|
env.insert("LD_LIBRARY_PATH", "");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// export some infos
|
|
|
|
auto variables = getVariables();
|
|
|
|
for (auto it = variables.begin(); it != variables.end(); ++it)
|
|
|
|
{
|
|
|
|
env.insert(it.key(), it.value());
|
|
|
|
}
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2015-08-16 05:47:50 +05:30
|
|
|
QMap<QString, QString> MinecraftInstance::createCensorFilterFromSession(AuthSessionPtr session)
|
|
|
|
{
|
|
|
|
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>"));
|
|
|
|
addToFilter(sessionRef.player_name, tr("<PROFILE NAME>"));
|
|
|
|
|
|
|
|
auto i = sessionRef.u.properties.begin();
|
|
|
|
while (i != sessionRef.u.properties.end())
|
|
|
|
{
|
2016-08-10 22:55:27 +05:30
|
|
|
if(i.key() == "preferredLanguage")
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
continue;
|
|
|
|
}
|
2015-08-16 05:47:50 +05:30
|
|
|
addToFilter(i.value(), "<" + i.key().toUpper() + ">");
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return filter;
|
|
|
|
}
|
|
|
|
|
2015-07-22 12:31:04 +05:30
|
|
|
MessageLevel::Enum MinecraftInstance::guessLevel(const QString &line, MessageLevel::Enum level)
|
|
|
|
{
|
|
|
|
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;
|
2015-08-20 03:20:36 +05:30
|
|
|
//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$"))
|
|
|
|
)
|
2015-07-22 12:31:04 +05:30
|
|
|
return MessageLevel::Error;
|
|
|
|
return level;
|
|
|
|
}
|
|
|
|
|
2015-08-18 05:55:24 +05:30
|
|
|
IPathMatcher::Ptr MinecraftInstance::getLogFileMatcher()
|
|
|
|
{
|
|
|
|
auto combined = std::make_shared<MultiMatcher>();
|
|
|
|
combined->add(std::make_shared<RegexpMatcher>(".*\\.log(\\.[0-9]*)?(\\.gz)?$"));
|
|
|
|
combined->add(std::make_shared<RegexpMatcher>("crash-.*\\.txt"));
|
2015-08-19 05:34:56 +05:30
|
|
|
combined->add(std::make_shared<RegexpMatcher>("IDMap dump.*\\.txt$"));
|
|
|
|
combined->add(std::make_shared<RegexpMatcher>("ModLoader\\.txt(\\..*)?$"));
|
2015-08-18 05:55:24 +05:30
|
|
|
return combined;
|
|
|
|
}
|
|
|
|
|
2015-08-19 05:34:56 +05:30
|
|
|
QString MinecraftInstance::getLogFileRoot()
|
|
|
|
{
|
|
|
|
return minecraftRoot();
|
|
|
|
}
|
|
|
|
|
2015-09-22 04:36:45 +05:30
|
|
|
QString MinecraftInstance::prettifyTimeDuration(int64_t duration)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::getStatusbarDescription()
|
|
|
|
{
|
|
|
|
QStringList traits;
|
|
|
|
if (flags() & VersionBrokenFlag)
|
|
|
|
{
|
|
|
|
traits.append(tr("broken"));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString description;
|
|
|
|
description.append(tr("Minecraft %1 (%2)").arg(intendedVersionId()).arg(typeName()));
|
|
|
|
if(totalTimePlayed() > 0)
|
|
|
|
{
|
|
|
|
description.append(tr(", played for %1").arg(prettifyTimeDuration(totalTimePlayed())));
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
if(traits.size())
|
|
|
|
{
|
|
|
|
description.append(QString(" (%1)").arg(traits.join(", ")));
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
return description;
|
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
std::shared_ptr<LaunchTask> MinecraftInstance::createLaunchTask(AuthSessionPtr session)
|
|
|
|
{
|
|
|
|
auto process = LaunchTask::create(std::dynamic_pointer_cast<MinecraftInstance>(getSharedPtr()));
|
|
|
|
auto pptr = process.get();
|
|
|
|
|
|
|
|
// print a header
|
|
|
|
{
|
|
|
|
process->appendStep(std::make_shared<TextPrint>(pptr, "Minecraft folder is:\n" + minecraftRoot() + "\n\n", MessageLevel::MultiMC));
|
|
|
|
}
|
|
|
|
|
|
|
|
// check java
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<CheckJava>(pptr);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// check launch method
|
|
|
|
QStringList validMethods = validLaunchMethods();
|
|
|
|
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);
|
|
|
|
step->setWorkingDirectory(minecraftRoot());
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we aren't in offline mode,.
|
|
|
|
if(session->status != AuthSession::PlayableOffline)
|
|
|
|
{
|
|
|
|
process->appendStep(std::make_shared<Update>(pptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
// if there are any jar mods
|
|
|
|
if(getJarMods().size())
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2016-07-23 17:06:31 +05:30
|
|
|
// create the server-resource-packs folder (workaround for Minecraft bug MCL-3732)
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<CreateServerResourcePacksFolder>(pptr);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
// extract native jars if needed
|
|
|
|
auto jars = getNativeJars();
|
|
|
|
if(jars.size())
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<ExtractNatives>(pptr);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// actually launch the game
|
|
|
|
auto step = createMainLaunchStep(pptr, session);
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
// run post-exit command if that's needed
|
|
|
|
if(getPostExitCommand().size())
|
|
|
|
{
|
|
|
|
auto step = std::make_shared<PostLaunchCommand>(pptr);
|
|
|
|
step->setWorkingDirectory(minecraftRoot());
|
|
|
|
process->appendStep(step);
|
|
|
|
}
|
|
|
|
if (session)
|
|
|
|
{
|
|
|
|
process->setCensorFilter(createCensorFilterFromSession(session));
|
|
|
|
}
|
2016-08-06 19:09:29 +05:30
|
|
|
m_launchProcess = process;
|
|
|
|
emit launchTaskChanged(m_launchProcess);
|
|
|
|
return m_launchProcess;
|
2016-06-16 05:50:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString MinecraftInstance::launchMethod()
|
|
|
|
{
|
|
|
|
return m_settings->get("MCLaunchMethod").toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
JavaVersion MinecraftInstance::getJavaVersion() const
|
|
|
|
{
|
|
|
|
return JavaVersion(settings()->get("JavaVersion").toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-05 04:39:28 +05:30
|
|
|
#include "MinecraftInstance.moc"
|