pollymc/application/MultiMC.h

219 lines
5.0 KiB
C
Raw Normal View History

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