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
|
|
|
|
*
|
2013-03-22 19:10:55 +05:30
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-02-22 20:47:31 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#pragma once
|
2013-02-22 20:47:31 +05:30
|
|
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "BaseInstance.h"
|
2013-02-22 20:47:31 +05:30
|
|
|
|
2013-03-22 19:10:55 +05:30
|
|
|
/**
|
|
|
|
* @brief the MessageLevel Enum
|
|
|
|
* defines what level a message is
|
|
|
|
*/
|
2013-11-04 07:23:05 +05:30
|
|
|
namespace MessageLevel
|
|
|
|
{
|
|
|
|
enum Enum
|
|
|
|
{
|
|
|
|
MultiMC, /**< MultiMC Messages */
|
|
|
|
Debug, /**< Debug Messages */
|
|
|
|
Info, /**< Info Messages */
|
|
|
|
Message, /**< Standard Messages */
|
|
|
|
Warning, /**< Warnings */
|
|
|
|
Error, /**< Errors */
|
|
|
|
Fatal /**< Fatal Errors */
|
2013-03-22 19:10:55 +05:30
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-02-22 20:47:31 +05:30
|
|
|
/**
|
|
|
|
* @file data/minecraftprocess.h
|
|
|
|
* @brief The MinecraftProcess class
|
|
|
|
*/
|
2013-08-17 17:10:51 +05:30
|
|
|
class MinecraftProcess : public QProcess
|
2013-02-22 20:47:31 +05:30
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
Q_OBJECT
|
2013-02-22 20:47:31 +05:30
|
|
|
public:
|
2013-03-22 19:10:55 +05:30
|
|
|
/**
|
|
|
|
* @brief MinecraftProcess constructor
|
|
|
|
* @param inst the Instance pointer to launch
|
|
|
|
*/
|
2013-08-03 19:27:33 +05:30
|
|
|
MinecraftProcess(BaseInstance *inst);
|
2013-03-22 19:10:55 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief launch minecraft
|
|
|
|
*/
|
|
|
|
void launch();
|
|
|
|
|
2013-11-23 06:11:28 +05:30
|
|
|
BaseInstance *instance()
|
|
|
|
{
|
|
|
|
return m_instance;
|
|
|
|
}
|
|
|
|
|
2013-11-24 11:06:16 +05:30
|
|
|
void setWorkdir(QString path);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-11-24 11:06:16 +05:30
|
|
|
void setArguments(QStringList args);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-09-06 22:18:41 +05:30
|
|
|
void killMinecraft();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-12-01 06:30:42 +05:30
|
|
|
inline void setLogin(MojangAccountPtr account)
|
2013-11-04 07:23:05 +05:30
|
|
|
{
|
2013-12-01 06:30:42 +05:30
|
|
|
m_account = account;
|
2013-11-04 07:23:05 +05:30
|
|
|
}
|
|
|
|
|
2013-02-22 20:47:31 +05:30
|
|
|
signals:
|
2013-11-23 06:11:28 +05:30
|
|
|
/**
|
|
|
|
* @brief emitted when Minecraft immediately fails to run
|
|
|
|
*/
|
|
|
|
void launch_failed(BaseInstance *);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief emitted when the PreLaunchCommand fails
|
|
|
|
*/
|
|
|
|
void prelaunch_failed(BaseInstance *, int code, QProcess::ExitStatus status);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief emitted when the PostLaunchCommand fails
|
|
|
|
*/
|
|
|
|
void postlaunch_failed(BaseInstance *, int code, QProcess::ExitStatus status);
|
|
|
|
|
2013-03-22 19:10:55 +05:30
|
|
|
/**
|
|
|
|
* @brief emitted when mc has finished and the PostLaunchCommand was run
|
|
|
|
*/
|
2013-11-13 04:54:49 +05:30
|
|
|
void ended(BaseInstance *, int code, QProcess::ExitStatus status);
|
2013-03-22 19:10:55 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief emitted when we want to log something
|
|
|
|
* @param text the text to log
|
|
|
|
* @param level the level to log at
|
|
|
|
*/
|
2013-11-04 07:23:05 +05:30
|
|
|
void log(QString text, MessageLevel::Enum level = MessageLevel::MultiMC);
|
2013-02-22 20:47:31 +05:30
|
|
|
|
|
|
|
protected:
|
2013-12-01 06:30:42 +05:30
|
|
|
BaseInstance *m_instance = nullptr;
|
2013-08-03 19:27:33 +05:30
|
|
|
QStringList m_args;
|
2013-03-26 19:04:34 +05:30
|
|
|
QString m_err_leftover;
|
|
|
|
QString m_out_leftover;
|
2013-03-22 19:10:55 +05:30
|
|
|
QProcess m_prepostlaunchprocess;
|
2013-12-01 06:30:42 +05:30
|
|
|
bool killed = false;
|
|
|
|
MojangAccountPtr m_account;
|
2013-02-22 20:47:31 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
protected
|
|
|
|
slots:
|
2013-03-22 19:10:55 +05:30
|
|
|
void finish(int, QProcess::ExitStatus status);
|
|
|
|
void on_stdErr();
|
|
|
|
void on_stdOut();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-09-06 22:18:41 +05:30
|
|
|
private:
|
2013-12-01 06:30:42 +05:30
|
|
|
QString censorPrivateInfo(QString in);
|
2013-09-08 18:32:52 +05:30
|
|
|
MessageLevel::Enum getLevel(const QString &message, MessageLevel::Enum defaultLevel);
|
2013-12-01 06:30:42 +05:30
|
|
|
|
2013-02-22 20:47:31 +05:30
|
|
|
};
|