2013-09-07 03:00:58 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QApplication>
|
2013-10-06 00:13:40 +01:00
|
|
|
#include <memory>
|
2015-02-02 01:14:14 +00:00
|
|
|
#include <QDebug>
|
2014-01-05 12:17:42 +00:00
|
|
|
#include <QFlag>
|
2015-03-01 21:20:57 +00:00
|
|
|
#include <QIcon>
|
2015-02-02 01:14:14 +00:00
|
|
|
#include <QDateTime>
|
2015-06-08 01:43:16 +01:00
|
|
|
#include <updater/GoUpdate.h>
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
#include <BaseInstance.h>
|
|
|
|
|
|
|
|
class LaunchController;
|
|
|
|
class LocalPeer;
|
|
|
|
class InstanceWindow;
|
|
|
|
class MainWindow;
|
|
|
|
class FolderInstanceProvider;
|
2015-07-05 01:29:41 +01:00
|
|
|
class GenericPageProvider;
|
2015-02-02 01:14:14 +00:00
|
|
|
class QFile;
|
2013-09-15 23:54:39 +01:00
|
|
|
class MinecraftVersionList;
|
|
|
|
class LWJGLVersionList;
|
2013-09-08 01:15:20 +01:00
|
|
|
class HttpMetaCache;
|
2013-09-07 03:00:58 +01:00
|
|
|
class SettingsObject;
|
|
|
|
class InstanceList;
|
2013-11-18 18:58:03 +00:00
|
|
|
class MojangAccountList;
|
2013-09-07 03:00:58 +01:00
|
|
|
class IconList;
|
|
|
|
class QNetworkAccessManager;
|
2013-09-15 23:54:39 +01:00
|
|
|
class ForgeVersionList;
|
2014-02-19 21:34:17 +00:00
|
|
|
class LiteLoaderVersionList;
|
2016-01-01 23:35:54 +00:00
|
|
|
class JavaInstallList;
|
2013-12-04 18:34:12 +00:00
|
|
|
class UpdateChecker;
|
2014-02-15 13:19:35 +00:00
|
|
|
class BaseProfilerFactory;
|
2014-02-16 09:46:14 +00:00
|
|
|
class BaseDetachedToolFactory;
|
2014-09-30 01:05:44 +01:00
|
|
|
class TranslationDownloader;
|
2016-10-21 08:07:26 +01:00
|
|
|
class ITheme;
|
2016-11-02 01:33:55 +00:00
|
|
|
class MCEditTool;
|
2013-09-07 03:00:58 +01:00
|
|
|
|
|
|
|
#if defined(MMC)
|
|
|
|
#undef MMC
|
|
|
|
#endif
|
|
|
|
#define MMC (static_cast<MultiMC *>(QCoreApplication::instance()))
|
|
|
|
|
|
|
|
class MultiMC : public QApplication
|
|
|
|
{
|
2015-01-31 15:59:03 +00:00
|
|
|
// friends for the purpose of limiting access to deprecated stuff
|
2013-09-07 03:00:58 +01:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum Status
|
|
|
|
{
|
|
|
|
Failed,
|
|
|
|
Succeeded,
|
2014-01-05 12:17:42 +00:00
|
|
|
Initialized
|
2013-09-07 03:00:58 +01:00
|
|
|
};
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
public:
|
2016-10-28 20:54:12 +01:00
|
|
|
MultiMC(int &argc, char **argv);
|
2013-09-07 03:00:58 +01:00
|
|
|
virtual ~MultiMC();
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
std::shared_ptr<SettingsObject> settings() const
|
2013-09-07 03:00:58 +01:00
|
|
|
{
|
|
|
|
return m_settings;
|
2013-10-06 00:13:40 +01:00
|
|
|
}
|
2015-02-02 00:09:28 +00:00
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
std::shared_ptr<GenericPageProvider> globalSettingsPages() const
|
2015-07-05 01:29:41 +01:00
|
|
|
{
|
|
|
|
return m_globalSettingsProvider;
|
|
|
|
}
|
|
|
|
|
2015-02-02 01:14:14 +00:00
|
|
|
qint64 timeSinceStart() const
|
|
|
|
{
|
|
|
|
return startTime.msecsTo(QDateTime::currentDateTime());
|
|
|
|
}
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2015-03-01 21:20:57 +00:00
|
|
|
QIcon getThemedIcon(const QString& name);
|
|
|
|
|
|
|
|
void setIconTheme(const QString& name);
|
|
|
|
|
2016-10-21 08:07:26 +01:00
|
|
|
std::vector<ITheme *> getValidApplicationThemes();
|
2016-10-30 01:37:38 +00:00
|
|
|
|
2016-10-21 08:07:26 +01:00
|
|
|
void setApplicationTheme(const QString& name);
|
|
|
|
|
2015-01-31 15:59:03 +00:00
|
|
|
// DownloadUpdateTask
|
2013-12-04 18:34:12 +00:00
|
|
|
std::shared_ptr<UpdateChecker> updateChecker()
|
2013-12-01 23:55:24 +00:00
|
|
|
{
|
2013-12-04 18:34:12 +00:00
|
|
|
return m_updateChecker;
|
2013-12-01 23:55:24 +00:00
|
|
|
}
|
|
|
|
|
2015-02-02 00:09:28 +00:00
|
|
|
std::shared_ptr<MinecraftVersionList> minecraftlist();
|
2013-10-06 00:13:40 +01:00
|
|
|
std::shared_ptr<LWJGLVersionList> lwjgllist();
|
|
|
|
std::shared_ptr<ForgeVersionList> forgelist();
|
2014-02-19 21:34:17 +00:00
|
|
|
std::shared_ptr<LiteLoaderVersionList> liteloaderlist();
|
2016-01-01 23:35:54 +00:00
|
|
|
std::shared_ptr<JavaInstallList> javalist();
|
2013-10-14 02:59:21 +01:00
|
|
|
|
2016-10-29 00:34:43 +01:00
|
|
|
std::shared_ptr<InstanceList> instances() const
|
2015-01-31 15:59:03 +00:00
|
|
|
{
|
|
|
|
return m_instances;
|
|
|
|
}
|
|
|
|
|
2016-10-29 00:34:43 +01:00
|
|
|
FolderInstanceProvider * folderProvider() const
|
2016-10-02 23:55:54 +01:00
|
|
|
{
|
|
|
|
return m_instanceFolder;
|
|
|
|
}
|
|
|
|
|
2016-10-29 00:34:43 +01:00
|
|
|
std::shared_ptr<IconList> icons() const
|
2016-04-10 03:29:29 +01:00
|
|
|
{
|
|
|
|
return m_icons;
|
|
|
|
}
|
|
|
|
|
2016-11-02 01:33:55 +00:00
|
|
|
MCEditTool *mcedit() const
|
|
|
|
{
|
|
|
|
return m_mcedit.get();
|
|
|
|
}
|
|
|
|
|
2016-10-29 00:34:43 +01:00
|
|
|
std::shared_ptr<MojangAccountList> accounts() const
|
2015-01-31 15:59:03 +00:00
|
|
|
{
|
|
|
|
return m_accounts;
|
|
|
|
}
|
|
|
|
|
2016-10-29 00:34:43 +01:00
|
|
|
Status status() const
|
2015-01-31 15:59:03 +00:00
|
|
|
{
|
|
|
|
return m_status;
|
|
|
|
}
|
|
|
|
|
2016-10-29 00:34:43 +01:00
|
|
|
const QMap<QString, std::shared_ptr<BaseProfilerFactory>> &profilers() const
|
2014-02-15 13:19:35 +00:00
|
|
|
{
|
|
|
|
return m_profilers;
|
|
|
|
}
|
2015-01-31 15:59:03 +00:00
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
/// this is the root of the 'installation'. Used for automatic updates
|
|
|
|
const QString &root()
|
|
|
|
{
|
|
|
|
return m_rootPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// install updates now.
|
2015-06-08 01:43:16 +01:00
|
|
|
void installUpdates(const QString updateFilesDir, GoUpdate::OperationList operations);
|
2013-12-06 18:59:58 +00:00
|
|
|
|
2013-12-29 16:51:16 +00:00
|
|
|
/*!
|
2016-10-30 01:37:38 +00:00
|
|
|
* Opens a json file using either a system default editor, or, if not empty, the editor
|
2013-12-29 16:51:16 +00:00
|
|
|
* specified in the settings
|
|
|
|
*/
|
2013-12-30 13:45:59 +00:00
|
|
|
bool openJsonEditor(const QString &filename);
|
2013-12-29 16:51:16 +00:00
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
InstanceWindow *showInstanceWindow(InstancePtr instance, QString page = QString());
|
2016-11-06 20:58:54 +00:00
|
|
|
MainWindow *showMainWindow(bool minimized = false);
|
|
|
|
|
|
|
|
public slots:
|
2016-10-30 01:37:38 +00:00
|
|
|
void launch(InstancePtr instance, bool online = true, BaseProfilerFactory *profiler = nullptr);
|
2014-01-03 01:29:05 +00:00
|
|
|
|
2014-01-05 12:17:42 +00:00
|
|
|
private slots:
|
|
|
|
/**
|
|
|
|
* Do all the things that should be done before we exit
|
|
|
|
*/
|
|
|
|
void onExit();
|
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
void on_windowClose();
|
|
|
|
|
|
|
|
void messageReceived(const QString & message);
|
|
|
|
|
2016-11-01 00:25:04 +00:00
|
|
|
void controllerSucceeded();
|
|
|
|
void controllerFailed(const QString & error);
|
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
private:
|
2013-10-06 00:13:40 +01:00
|
|
|
void initLogger();
|
2015-02-01 10:44:47 +00:00
|
|
|
void initIcons();
|
2016-10-21 08:07:26 +01:00
|
|
|
void initThemes();
|
2016-10-28 20:54:12 +01:00
|
|
|
void initGlobalSettings();
|
2013-09-09 00:20:17 +01:00
|
|
|
void initTranslations();
|
2016-10-30 23:57:40 +00:00
|
|
|
void initNetwork();
|
|
|
|
void initInstances();
|
|
|
|
void initAccounts();
|
2016-11-02 01:33:55 +00:00
|
|
|
void initMCEdit();
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
private:
|
2015-02-02 01:14:14 +00:00
|
|
|
QDateTime startTime;
|
|
|
|
|
2013-10-06 00:13:40 +01:00
|
|
|
std::shared_ptr<QTranslator> m_qt_translator;
|
|
|
|
std::shared_ptr<QTranslator> m_mmc_translator;
|
|
|
|
std::shared_ptr<SettingsObject> m_settings;
|
|
|
|
std::shared_ptr<InstanceList> m_instances;
|
2016-10-29 00:34:43 +01:00
|
|
|
FolderInstanceProvider * m_instanceFolder = nullptr;
|
2016-04-10 03:29:29 +01:00
|
|
|
std::shared_ptr<IconList> m_icons;
|
2013-12-04 18:34:12 +00:00
|
|
|
std::shared_ptr<UpdateChecker> m_updateChecker;
|
2013-11-18 18:58:03 +00:00
|
|
|
std::shared_ptr<MojangAccountList> m_accounts;
|
2013-10-06 00:13:40 +01:00
|
|
|
std::shared_ptr<LWJGLVersionList> m_lwjgllist;
|
|
|
|
std::shared_ptr<ForgeVersionList> m_forgelist;
|
2014-02-19 21:34:17 +00:00
|
|
|
std::shared_ptr<LiteLoaderVersionList> m_liteloaderlist;
|
2013-10-06 00:13:40 +01:00
|
|
|
std::shared_ptr<MinecraftVersionList> m_minecraftlist;
|
2016-01-01 23:35:54 +00:00
|
|
|
std::shared_ptr<JavaInstallList> m_javalist;
|
2014-09-30 01:05:44 +01:00
|
|
|
std::shared_ptr<TranslationDownloader> m_translationChecker;
|
2015-07-05 01:29:41 +01:00
|
|
|
std::shared_ptr<GenericPageProvider> m_globalSettingsProvider;
|
2016-10-21 08:07:26 +01:00
|
|
|
std::map<QString, std::unique_ptr<ITheme>> m_themes;
|
2016-11-02 01:33:55 +00:00
|
|
|
std::unique_ptr<MCEditTool> m_mcedit;
|
2014-05-04 23:10:59 +01:00
|
|
|
|
2014-02-15 13:19:35 +00:00
|
|
|
QMap<QString, std::shared_ptr<BaseProfilerFactory>> m_profilers;
|
2014-05-04 23:10:59 +01:00
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
QString m_rootPath;
|
2013-09-22 03:21:36 +01:00
|
|
|
Status m_status = MultiMC::Failed;
|
2016-06-09 00:58:50 +01:00
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
// used on Windows to attach the standard IO streams
|
2016-06-09 00:58:50 +01:00
|
|
|
bool consoleAttached = false;
|
2016-10-30 01:37:38 +00:00
|
|
|
|
2016-11-01 00:25:04 +00:00
|
|
|
// FIXME: attach to instances instead.
|
|
|
|
struct InstanceXtras
|
|
|
|
{
|
|
|
|
InstanceWindow * window = nullptr;
|
|
|
|
unique_qobject_ptr<LaunchController> controller;
|
|
|
|
};
|
|
|
|
std::map<QString, InstanceXtras> m_instanceExtras;
|
|
|
|
size_t m_openWindows = 0;
|
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
// main window, if any
|
|
|
|
MainWindow * m_mainWindow = nullptr;
|
2016-11-01 00:25:04 +00:00
|
|
|
|
|
|
|
// peer MultiMC instance connector - used to implement single instance MultiMC and signalling
|
2016-10-30 01:37:38 +00:00
|
|
|
LocalPeer * m_peerInstance = nullptr;
|
2015-02-02 01:14:14 +00:00
|
|
|
public:
|
2016-10-30 01:37:38 +00:00
|
|
|
QString m_instanceIdToLaunch;
|
2016-10-29 00:34:43 +01:00
|
|
|
std::unique_ptr<QFile> logFile;
|
2013-10-06 00:13:40 +01:00
|
|
|
};
|