2013-02-22 20:47:31 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Authors: Orochimarufan <orochimarufan.x3@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2014-01-09 05:52:34 +05:30
|
|
|
#include "MultiMC.h"
|
2013-02-22 20:47:31 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "MinecraftProcess.h"
|
2013-02-22 20:47:31 +05:30
|
|
|
|
|
|
|
#include <QDataStream>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QProcessEnvironment>
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "BaseInstance.h"
|
2013-02-22 20:47:31 +05:30
|
|
|
|
|
|
|
#include "osutils.h"
|
|
|
|
#include "pathutils.h"
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "cmdutils.h"
|
2013-02-22 20:47:31 +05:30
|
|
|
|
|
|
|
#define IBUS "@im=ibus"
|
|
|
|
|
|
|
|
// constructor
|
2013-09-23 03:53:50 +05:30
|
|
|
MinecraftProcess::MinecraftProcess(BaseInstance *inst) : m_instance(inst)
|
2013-02-22 20:47:31 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
connect(this, SIGNAL(finished(int, QProcess::ExitStatus)),
|
|
|
|
SLOT(finish(int, QProcess::ExitStatus)));
|
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
// prepare the process environment
|
|
|
|
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-02-22 20:47:31 +05:30
|
|
|
#ifdef LINUX
|
2013-02-26 02:14:36 +05:30
|
|
|
// Strip IBus
|
|
|
|
if (env.value("XMODIFIERS").contains(IBUS))
|
|
|
|
env.insert("XMODIFIERS", env.value("XMODIFIERS").replace(IBUS, ""));
|
2013-02-22 20:47:31 +05:30
|
|
|
#endif
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
// export some infos
|
|
|
|
env.insert("INST_NAME", inst->name());
|
|
|
|
env.insert("INST_ID", inst->id());
|
2013-08-12 04:09:19 +05:30
|
|
|
env.insert("INST_DIR", QDir(inst->instanceRoot()).absolutePath());
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
this->setProcessEnvironment(env);
|
|
|
|
m_prepostlaunchprocess.setProcessEnvironment(env);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
// std channels
|
|
|
|
connect(this, SIGNAL(readyReadStandardError()), SLOT(on_stdErr()));
|
|
|
|
connect(this, SIGNAL(readyReadStandardOutput()), SLOT(on_stdOut()));
|
2013-02-22 20:47:31 +05:30
|
|
|
}
|
|
|
|
|
2013-11-24 11:06:16 +05:30
|
|
|
void MinecraftProcess::setWorkdir(QString path)
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
QDir mcDir(path);
|
|
|
|
this->setWorkingDirectory(mcDir.absolutePath());
|
|
|
|
m_prepostlaunchprocess.setWorkingDirectory(mcDir.absolutePath());
|
|
|
|
}
|
|
|
|
|
2013-12-01 06:30:42 +05:30
|
|
|
QString MinecraftProcess::censorPrivateInfo(QString in)
|
|
|
|
{
|
|
|
|
if(!m_account)
|
|
|
|
return in;
|
2013-12-05 07:09:52 +05:30
|
|
|
|
|
|
|
QString sessionId = m_account->sessionId();
|
|
|
|
QString accessToken = m_account->accessToken();
|
|
|
|
QString clientToken = m_account->clientToken();
|
|
|
|
in.replace(sessionId, "<SESSION ID>");
|
|
|
|
in.replace(accessToken, "<ACCESS TOKEN>");
|
|
|
|
in.replace(clientToken, "<CLIENT TOKEN>");
|
|
|
|
auto profile = m_account->currentProfile();
|
|
|
|
if(profile)
|
2013-12-01 06:30:42 +05:30
|
|
|
{
|
2013-12-05 07:09:52 +05:30
|
|
|
QString profileId = profile->id;
|
|
|
|
QString profileName = profile->name;
|
2013-12-01 06:44:32 +05:30
|
|
|
in.replace(profileId, "<PROFILE ID>");
|
|
|
|
in.replace(profileName, "<PROFILE NAME>");
|
2013-12-01 06:30:42 +05:30
|
|
|
}
|
2014-01-10 18:10:20 +05:30
|
|
|
|
|
|
|
auto i = m_account->user().properties.begin();
|
|
|
|
while (i != m_account->user().properties.end())
|
|
|
|
{
|
|
|
|
in.replace(i.value(), "<" + i.key().toUpper() + ">");
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
2013-12-05 07:09:52 +05:30
|
|
|
return in;
|
2013-12-01 06:30:42 +05:30
|
|
|
}
|
|
|
|
|
2013-02-22 22:48:23 +05:30
|
|
|
// console window
|
|
|
|
void MinecraftProcess::on_stdErr()
|
|
|
|
{
|
2013-03-26 19:04:34 +05:30
|
|
|
QByteArray data = readAllStandardError();
|
|
|
|
QString str = m_err_leftover + QString::fromLocal8Bit(data);
|
|
|
|
m_err_leftover.clear();
|
|
|
|
QStringList lines = str.split("\n");
|
|
|
|
bool complete = str.endsWith("\n");
|
2013-09-23 03:53:50 +05:30
|
|
|
|
|
|
|
for (int i = 0; i < lines.size() - 1; i++)
|
2013-03-26 19:04:34 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
QString &line = lines[i];
|
2013-12-01 06:30:42 +05:30
|
|
|
emit log(censorPrivateInfo(line), getLevel(line, MessageLevel::Error));
|
2013-03-26 19:04:34 +05:30
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!complete)
|
2013-03-26 19:04:34 +05:30
|
|
|
m_err_leftover = lines.last();
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftProcess::on_stdOut()
|
|
|
|
{
|
2013-03-26 19:04:34 +05:30
|
|
|
QByteArray data = readAllStandardOutput();
|
|
|
|
QString str = m_out_leftover + QString::fromLocal8Bit(data);
|
|
|
|
m_out_leftover.clear();
|
|
|
|
QStringList lines = str.split("\n");
|
|
|
|
bool complete = str.endsWith("\n");
|
2013-09-23 03:53:50 +05:30
|
|
|
|
|
|
|
for (int i = 0; i < lines.size() - 1; i++)
|
2013-03-26 19:04:34 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
QString &line = lines[i];
|
2013-12-01 06:30:42 +05:30
|
|
|
emit log(censorPrivateInfo(line), getLevel(line, MessageLevel::Message));
|
2013-03-26 19:04:34 +05:30
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!complete)
|
2013-03-26 19:04:34 +05:30
|
|
|
m_out_leftover = lines.last();
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// exit handler
|
2013-02-22 20:47:31 +05:30
|
|
|
void MinecraftProcess::finish(int code, ExitStatus status)
|
|
|
|
{
|
2013-11-12 13:53:39 +05:30
|
|
|
if (!killed)
|
2013-02-26 02:14:36 +05:30
|
|
|
{
|
2013-11-12 13:53:39 +05:30
|
|
|
if (status == NormalExit)
|
|
|
|
{
|
|
|
|
//: Message displayed on instance exit
|
|
|
|
emit log(tr("Minecraft exited with exitcode %1.").arg(code));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//: Message displayed on instance crashed
|
|
|
|
emit log(tr("Minecraft crashed with exitcode %1.").arg(code));
|
|
|
|
}
|
2013-02-26 02:14:36 +05:30
|
|
|
}
|
2013-09-07 02:10:50 +05:30
|
|
|
else
|
2013-11-12 13:53:39 +05:30
|
|
|
{
|
2013-09-08 21:43:09 +05:30
|
|
|
//: Message displayed after the instance exits due to kill request
|
|
|
|
emit log(tr("Minecraft was killed by user."), MessageLevel::Error);
|
2013-11-12 13:53:39 +05:30
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
m_prepostlaunchprocess.processEnvironment().insert("INST_EXITCODE", QString(code));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
// run post-exit
|
|
|
|
if (!m_instance->settings().get("PostExitCommand").toString().isEmpty())
|
|
|
|
{
|
|
|
|
m_prepostlaunchprocess.start(m_instance->settings().get("PostExitCommand").toString());
|
|
|
|
m_prepostlaunchprocess.waitForFinished();
|
|
|
|
if (m_prepostlaunchprocess.exitStatus() != NormalExit)
|
|
|
|
{
|
2013-11-23 06:11:28 +05:30
|
|
|
emit postlaunch_failed(m_instance, m_prepostlaunchprocess.exitCode(),
|
|
|
|
m_prepostlaunchprocess.exitStatus());
|
2013-02-26 02:14:36 +05:30
|
|
|
}
|
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
m_instance->cleanupAfterRun();
|
2013-11-12 13:53:39 +05:30
|
|
|
emit ended(m_instance, code, status);
|
2013-02-22 20:47:31 +05:30
|
|
|
}
|
|
|
|
|
2013-09-06 22:18:41 +05:30
|
|
|
void MinecraftProcess::killMinecraft()
|
|
|
|
{
|
|
|
|
killed = true;
|
2013-09-07 02:10:50 +05:30
|
|
|
kill();
|
2013-09-06 22:18:41 +05:30
|
|
|
}
|
|
|
|
|
2013-02-22 20:47:31 +05:30
|
|
|
void MinecraftProcess::launch()
|
|
|
|
{
|
2013-02-26 02:14:36 +05:30
|
|
|
if (!m_instance->settings().get("PreLaunchCommand").toString().isEmpty())
|
|
|
|
{
|
|
|
|
m_prepostlaunchprocess.start(m_instance->settings().get("PreLaunchCommand").toString());
|
|
|
|
m_prepostlaunchprocess.waitForFinished();
|
|
|
|
if (m_prepostlaunchprocess.exitStatus() != NormalExit)
|
|
|
|
{
|
2013-11-23 06:11:28 +05:30
|
|
|
m_instance->cleanupAfterRun();
|
|
|
|
emit prelaunch_failed(m_instance, m_prepostlaunchprocess.exitCode(),
|
|
|
|
m_prepostlaunchprocess.exitStatus());
|
2013-02-26 02:14:36 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
m_instance->setLastLaunch();
|
2014-01-09 05:52:34 +05:30
|
|
|
auto &settings = m_instance->settings();
|
|
|
|
|
|
|
|
//////////// java arguments ////////////
|
|
|
|
QStringList args;
|
|
|
|
{
|
|
|
|
// custom args go first. we want to override them if we have our own here.
|
|
|
|
args.append(m_instance->extraArguments());
|
|
|
|
|
|
|
|
// OSX dock icon and name
|
|
|
|
#ifdef OSX
|
|
|
|
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());
|
|
|
|
args << QString("-XX:PermSize=%1m").arg(settings.get("PermGen").toInt());
|
|
|
|
if(!m_nativeFolder.isEmpty())
|
|
|
|
args << QString("-Djava.library.path=%1").arg(m_nativeFolder);
|
|
|
|
args << "-jar" << PathCombine(MMC->bin(), "jars", "NewLaunch.jar");
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-03-24 20:06:00 +05:30
|
|
|
QString JavaPath = m_instance->settings().get("JavaPath").toString();
|
2014-01-09 05:52:34 +05:30
|
|
|
emit log("MultiMC version: " + MMC->version().toString() + "\n\n");
|
|
|
|
emit log("Minecraft folder is:\n" + workingDirectory() + "\n\n");
|
|
|
|
emit log("Java path is:\n" + JavaPath + "\n\n");
|
|
|
|
QString allArgs = args.join(", ");
|
|
|
|
emit log("Java Arguments:\n[" + censorPrivateInfo(allArgs) + "]\n\n");
|
|
|
|
|
|
|
|
// instantiate the launcher part
|
|
|
|
start(JavaPath, args);
|
2013-02-26 02:14:36 +05:30
|
|
|
if (!waitForStarted())
|
|
|
|
{
|
2013-09-08 21:43:09 +05:30
|
|
|
//: Error message displayed if instace can't start
|
2013-11-23 06:11:28 +05:30
|
|
|
emit log(tr("Could not launch minecraft!"), MessageLevel::Error);
|
|
|
|
m_instance->cleanupAfterRun();
|
|
|
|
emit launch_failed(m_instance);
|
2013-02-26 03:17:03 +05:30
|
|
|
return;
|
2013-02-26 02:14:36 +05:30
|
|
|
}
|
2014-01-09 05:52:34 +05:30
|
|
|
// send the launch script to the launcher part
|
|
|
|
QByteArray bytes = launchScript.toUtf8();
|
|
|
|
writeData(bytes.constData(), bytes.length());
|
2013-02-22 20:47:31 +05:30
|
|
|
}
|
|
|
|
|
2013-09-08 18:32:52 +05:30
|
|
|
MessageLevel::Enum MinecraftProcess::getLevel(const QString &line, MessageLevel::Enum level)
|
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (line.contains("[INFO]") || line.contains("[CONFIG]") || line.contains("[FINE]") ||
|
|
|
|
line.contains("[FINER]") || line.contains("[FINEST]"))
|
2013-09-08 18:32:52 +05:30
|
|
|
level = MessageLevel::Message;
|
2013-09-23 03:53:50 +05:30
|
|
|
if (line.contains("[SEVERE]") || line.contains("[STDERR]"))
|
2013-09-08 18:32:52 +05:30
|
|
|
level = MessageLevel::Error;
|
2013-09-23 03:53:50 +05:30
|
|
|
if (line.contains("[WARNING]"))
|
2013-09-08 18:32:52 +05:30
|
|
|
level = MessageLevel::Warning;
|
2013-09-23 03:53:50 +05:30
|
|
|
if (line.contains("Exception in thread") || line.contains(" at "))
|
2013-09-08 18:32:52 +05:30
|
|
|
level = MessageLevel::Fatal;
|
2013-09-23 03:53:50 +05:30
|
|
|
if (line.contains("[DEBUG]"))
|
2013-09-08 18:32:52 +05:30
|
|
|
level = MessageLevel::Debug;
|
|
|
|
return level;
|
2013-10-22 22:55:10 +05:30
|
|
|
}
|