2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2015-07-21 01:38:15 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-11-03 00:10:16 +00:00
|
|
|
#include <LoggedProcess.h>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <launch/LaunchStep.h>
|
2016-02-28 18:33:05 +00:00
|
|
|
#include <minecraft/auth/AuthSession.h>
|
2015-07-21 01:38:15 +01:00
|
|
|
|
2021-05-22 15:14:25 +01:00
|
|
|
#include "MinecraftServerTarget.h"
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class LauncherPartLaunch : public LaunchStep {
|
2015-07-21 01:38:15 +01:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
explicit LauncherPartLaunch(LaunchTask* parent);
|
|
|
|
virtual ~LauncherPartLaunch(){};
|
2018-06-28 20:34:56 +01:00
|
|
|
|
2015-07-21 01:38:15 +01:00
|
|
|
virtual void executeTask();
|
|
|
|
virtual bool abort();
|
|
|
|
virtual void proceed();
|
2023-08-02 17:35:35 +01:00
|
|
|
virtual bool canAbort() const { return true; }
|
|
|
|
void setWorkingDirectory(const QString& wd);
|
|
|
|
void setAuthSession(AuthSessionPtr session) { m_session = session; }
|
|
|
|
|
|
|
|
void setServerToJoin(MinecraftServerTargetPtr serverToJoin) { m_serverToJoin = std::move(serverToJoin); }
|
|
|
|
|
|
|
|
private slots:
|
2015-07-21 01:38:15 +01:00
|
|
|
void on_state(LoggedProcess::State state);
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private:
|
2015-07-21 01:38:15 +01:00
|
|
|
LoggedProcess m_process;
|
|
|
|
QString m_command;
|
2016-02-28 18:33:05 +00:00
|
|
|
AuthSessionPtr m_session;
|
2016-06-16 01:20:23 +01:00
|
|
|
QString m_launchScript;
|
2021-05-22 15:14:25 +01:00
|
|
|
MinecraftServerTargetPtr m_serverToJoin;
|
|
|
|
|
2015-07-21 01:38:15 +01:00
|
|
|
bool mayProceed = false;
|
|
|
|
};
|