2015-07-05 05:24:30 +05:30
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include <BaseInstance.h>
|
|
|
|
#include <tools/BaseProfiler.h>
|
|
|
|
|
2016-08-06 19:09:29 +05:30
|
|
|
class InstanceWindow;
|
2015-10-24 04:27:54 +05:30
|
|
|
class LaunchController: public Task
|
2015-07-05 05:24:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2015-07-05 05:24:30 +05:30
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
void executeTask() override;
|
2015-10-24 04:27:54 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
LaunchController(QObject * parent = nullptr);
|
|
|
|
virtual ~LaunchController(){};
|
2015-07-05 05:24:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void setInstance(InstancePtr instance)
|
|
|
|
{
|
|
|
|
m_instance = instance;
|
|
|
|
}
|
|
|
|
InstancePtr instance()
|
|
|
|
{
|
|
|
|
return m_instance;
|
|
|
|
}
|
|
|
|
void setOnline(bool online)
|
|
|
|
{
|
|
|
|
m_online = online;
|
|
|
|
}
|
|
|
|
void setProfiler(BaseProfilerFactory *profiler)
|
|
|
|
{
|
|
|
|
m_profiler = profiler;
|
|
|
|
}
|
|
|
|
void setParentWidget(QWidget * widget)
|
|
|
|
{
|
|
|
|
m_parentWidget = widget;
|
|
|
|
}
|
|
|
|
QString id()
|
|
|
|
{
|
|
|
|
return m_instance->id();
|
|
|
|
}
|
|
|
|
bool abort() override;
|
2015-07-05 05:24:30 +05:30
|
|
|
|
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
void login();
|
|
|
|
void launchInstance();
|
2015-07-05 05:24:30 +05:30
|
|
|
|
|
|
|
private slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void readyForLaunch();
|
2015-07-05 05:24:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void onSucceeded();
|
|
|
|
void onFailed(QString reason);
|
|
|
|
void onProgressRequested(Task *task);
|
2016-11-01 05:55:04 +05:30
|
|
|
|
2015-07-05 05:24:30 +05:30
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
BaseProfilerFactory *m_profiler = nullptr;
|
|
|
|
bool m_online = true;
|
|
|
|
InstancePtr m_instance;
|
|
|
|
QWidget * m_parentWidget = nullptr;
|
|
|
|
InstanceWindow *m_console = nullptr;
|
|
|
|
AuthSessionPtr m_session;
|
|
|
|
std::shared_ptr <LaunchTask> m_launcher;
|
2015-07-05 05:24:30 +05:30
|
|
|
};
|