2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2015-07-21 06:08:15 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
#include "DirectJavaLaunch.h"
|
2015-07-21 06:08:15 +05:30
|
|
|
#include <launch/LaunchTask.h>
|
2016-02-28 00:28:40 +05:30
|
|
|
#include <minecraft/MinecraftInstance.h>
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <FileSystem.h>
|
2015-07-21 06:08:15 +05:30
|
|
|
#include <QStandardPaths>
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
DirectJavaLaunch::DirectJavaLaunch(LaunchTask *parent) : LaunchStep(parent)
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
2016-06-16 05:50:23 +05:30
|
|
|
connect(&m_process, &LoggedProcess::log, this, &DirectJavaLaunch::logLines);
|
|
|
|
connect(&m_process, &LoggedProcess::stateChanged, this, &DirectJavaLaunch::on_state);
|
2015-07-21 06:08:15 +05:30
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
void DirectJavaLaunch::executeTask()
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
|
|
|
auto instance = m_parent->instance();
|
2015-07-21 12:51:59 +05:30
|
|
|
std::shared_ptr<MinecraftInstance> minecraftInstance = std::dynamic_pointer_cast<MinecraftInstance>(instance);
|
2015-07-21 06:08:15 +05:30
|
|
|
QStringList args = minecraftInstance->javaArguments();
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
args.append("-Djava.library.path=" + minecraftInstance->getNativePath());
|
|
|
|
|
|
|
|
auto classPathEntries = minecraftInstance->getClassPath();
|
|
|
|
args.append("-cp");
|
|
|
|
QString classpath;
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
classpath = classPathEntries.join(';');
|
|
|
|
#else
|
|
|
|
classpath = classPathEntries.join(':');
|
|
|
|
#endif
|
|
|
|
args.append(classpath);
|
|
|
|
args.append(minecraftInstance->getMainClass());
|
|
|
|
|
2015-07-21 06:08:15 +05:30
|
|
|
QString allArgs = args.join(", ");
|
|
|
|
emit logLine("Java Arguments:\n[" + m_parent->censorPrivateInfo(allArgs) + "]\n\n", MessageLevel::MultiMC);
|
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
auto javaPath = FS::ResolveExecutable(instance->settings()->get("JavaPath").toString());
|
2015-07-21 06:08:15 +05:30
|
|
|
|
|
|
|
m_process.setProcessEnvironment(instance->createEnvironment());
|
|
|
|
|
2016-08-08 13:05:39 +05:30
|
|
|
// make detachable - this will keep the process running even if the object is destroyed
|
|
|
|
m_process.setDetachable(true);
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
auto mcArgs = minecraftInstance->processMinecraftArgs(m_session);
|
|
|
|
args.append(mcArgs);
|
|
|
|
|
2015-07-21 06:08:15 +05:30
|
|
|
QString wrapperCommand = instance->getWrapperCommand();
|
|
|
|
if(!wrapperCommand.isEmpty())
|
|
|
|
{
|
|
|
|
auto realWrapperCommand = QStandardPaths::findExecutable(wrapperCommand);
|
|
|
|
if (realWrapperCommand.isEmpty())
|
|
|
|
{
|
|
|
|
QString reason = tr("The wrapper command \"%1\" couldn't be found.").arg(wrapperCommand);
|
|
|
|
emit logLine(reason, MessageLevel::Fatal);
|
|
|
|
emitFailed(reason);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
emit logLine("Wrapper command is:\n" + wrapperCommand + "\n\n", MessageLevel::MultiMC);
|
|
|
|
args.prepend(javaPath);
|
|
|
|
m_process.start(wrapperCommand, args);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_process.start(javaPath, args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
void DirectJavaLaunch::on_state(LoggedProcess::State state)
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
|
|
|
switch(state)
|
|
|
|
{
|
|
|
|
case LoggedProcess::FailedToStart:
|
|
|
|
{
|
|
|
|
//: Error message displayed if instace can't start
|
|
|
|
QString reason = tr("Could not launch minecraft!");
|
|
|
|
emit logLine(reason, MessageLevel::Fatal);
|
|
|
|
emitFailed(reason);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
case LoggedProcess::Aborted:
|
|
|
|
case LoggedProcess::Crashed:
|
|
|
|
|
|
|
|
{
|
|
|
|
m_parent->setPid(-1);
|
|
|
|
emitFailed("Game crashed.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
case LoggedProcess::Finished:
|
|
|
|
{
|
|
|
|
m_parent->setPid(-1);
|
2015-10-18 06:05:47 +05:30
|
|
|
// if the exit code wasn't 0, report this as a crash
|
|
|
|
auto exitCode = m_process.exitCode();
|
|
|
|
if(exitCode != 0)
|
|
|
|
{
|
|
|
|
emitFailed("Game crashed.");
|
|
|
|
return;
|
|
|
|
}
|
2015-07-21 06:08:15 +05:30
|
|
|
//FIXME: make this work again
|
|
|
|
// m_postlaunchprocess.processEnvironment().insert("INST_EXITCODE", QString(exitCode));
|
|
|
|
// run post-exit
|
|
|
|
emitSucceeded();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LoggedProcess::Running:
|
|
|
|
emit logLine(tr("Minecraft process ID: %1\n\n").arg(m_process.processId()), MessageLevel::MultiMC);
|
2015-08-14 04:31:50 +05:30
|
|
|
m_parent->setPid(m_process.processId());
|
2015-07-21 06:08:15 +05:30
|
|
|
m_parent->instance()->setLastLaunch();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
void DirectJavaLaunch::setWorkingDirectory(const QString &wd)
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
|
|
|
m_process.setWorkingDirectory(wd);
|
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
void DirectJavaLaunch::proceed()
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
2016-06-16 05:50:23 +05:30
|
|
|
// nil
|
2015-07-21 06:08:15 +05:30
|
|
|
}
|
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
bool DirectJavaLaunch::abort()
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
2016-06-16 05:50:23 +05:30
|
|
|
auto state = m_process.state();
|
|
|
|
if (state == LoggedProcess::Running || state == LoggedProcess::Starting)
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
2016-06-16 05:50:23 +05:30
|
|
|
m_process.kill();
|
2015-07-21 06:08:15 +05:30
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2016-06-16 05:50:23 +05:30
|
|
|
|