2013-09-07 03:00:58 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QApplication>
|
2013-10-06 00:13:40 +01:00
|
|
|
#include <memory>
|
|
|
|
#include "logger/QsLog.h"
|
|
|
|
#include "logger/QsLogDest.h"
|
2014-01-05 12:17:42 +00:00
|
|
|
#include <QFlag>
|
2013-10-06 00:13:40 +01:00
|
|
|
|
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;
|
2013-10-14 02:59:21 +01:00
|
|
|
class JavaVersionList;
|
2013-12-04 18:34:12 +00:00
|
|
|
class UpdateChecker;
|
2014-01-03 18:19:27 +00:00
|
|
|
class NotificationChecker;
|
2013-12-15 20:48:58 +00:00
|
|
|
class NewsChecker;
|
2014-01-12 18:28:42 +00:00
|
|
|
class StatusChecker;
|
2014-02-15 13:19:35 +00:00
|
|
|
class BaseProfilerFactory;
|
2014-02-16 09:46:14 +00:00
|
|
|
class BaseDetachedToolFactory;
|
2013-09-07 03:00:58 +01:00
|
|
|
|
|
|
|
#if defined(MMC)
|
|
|
|
#undef MMC
|
|
|
|
#endif
|
|
|
|
#define MMC (static_cast<MultiMC *>(QCoreApplication::instance()))
|
|
|
|
|
2013-11-03 23:11:20 +00:00
|
|
|
// FIXME: possibly move elsewhere
|
|
|
|
enum InstSortMode
|
|
|
|
{
|
|
|
|
// Sort alphabetically by name.
|
|
|
|
Sort_Name,
|
|
|
|
// Sort by which instance was launched most recently.
|
2014-01-05 12:17:42 +00:00
|
|
|
Sort_LastLaunch
|
2013-11-03 23:11:20 +00:00
|
|
|
};
|
|
|
|
|
2014-01-05 12:17:42 +00:00
|
|
|
enum UpdateFlag
|
|
|
|
{
|
|
|
|
None = 0x0,
|
|
|
|
RestartOnFinish = 0x1,
|
|
|
|
DryRun = 0x2,
|
|
|
|
OnExit = 0x4
|
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(UpdateFlags, UpdateFlag);
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(UpdateFlags);
|
|
|
|
|
2014-05-09 23:33:32 +01:00
|
|
|
// Global var used by the crash handling system to determine if a log file should be included in a crash report.
|
|
|
|
extern bool loggerInitialized;
|
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
class MultiMC : public QApplication
|
|
|
|
{
|
|
|
|
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:
|
2014-01-05 15:47:12 +00:00
|
|
|
MultiMC(int &argc, char **argv, bool root_override = false);
|
2013-09-07 03:00:58 +01:00
|
|
|
virtual ~MultiMC();
|
2013-10-06 00:13:40 +01:00
|
|
|
|
|
|
|
std::shared_ptr<SettingsObject> settings()
|
2013-09-07 03:00:58 +01:00
|
|
|
{
|
|
|
|
return m_settings;
|
2013-10-06 00:13:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<InstanceList> instances()
|
2013-09-07 03:00:58 +01:00
|
|
|
{
|
|
|
|
return m_instances;
|
2013-10-06 00:13:40 +01:00
|
|
|
}
|
|
|
|
|
2013-11-18 18:58:03 +00:00
|
|
|
std::shared_ptr<MojangAccountList> accounts()
|
|
|
|
{
|
|
|
|
return m_accounts;
|
|
|
|
}
|
|
|
|
|
2013-10-06 00:13:40 +01:00
|
|
|
std::shared_ptr<IconList> icons();
|
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
Status status()
|
|
|
|
{
|
|
|
|
return m_status;
|
|
|
|
}
|
2013-10-06 00:13:40 +01:00
|
|
|
|
|
|
|
std::shared_ptr<QNetworkAccessManager> qnam()
|
2013-09-07 03:00:58 +01:00
|
|
|
{
|
|
|
|
return m_qnam;
|
|
|
|
}
|
2013-10-06 00:13:40 +01:00
|
|
|
|
|
|
|
std::shared_ptr<HttpMetaCache> metacache()
|
2013-09-08 01:15:20 +01:00
|
|
|
{
|
|
|
|
return m_metacache;
|
|
|
|
}
|
2013-10-06 00:13:40 +01:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-01-03 18:19:27 +00:00
|
|
|
std::shared_ptr<NotificationChecker> notificationChecker()
|
|
|
|
{
|
|
|
|
return m_notificationChecker;
|
|
|
|
}
|
|
|
|
|
2013-12-15 20:48:58 +00:00
|
|
|
std::shared_ptr<NewsChecker> newsChecker()
|
|
|
|
{
|
|
|
|
return m_newsChecker;
|
|
|
|
}
|
|
|
|
|
2014-01-12 18:28:42 +00:00
|
|
|
std::shared_ptr<StatusChecker> statusChecker()
|
|
|
|
{
|
|
|
|
return m_statusChecker;
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
|
2013-10-06 00:13:40 +01:00
|
|
|
std::shared_ptr<MinecraftVersionList> minecraftlist();
|
|
|
|
|
2013-10-14 02:59:21 +01:00
|
|
|
std::shared_ptr<JavaVersionList> javalist();
|
|
|
|
|
2014-02-15 13:19:35 +00:00
|
|
|
QMap<QString, std::shared_ptr<BaseProfilerFactory>> profilers()
|
|
|
|
{
|
|
|
|
return m_profilers;
|
|
|
|
}
|
2014-02-16 09:46:14 +00:00
|
|
|
QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> tools()
|
|
|
|
{
|
|
|
|
return m_tools;
|
|
|
|
}
|
2014-02-15 13:19:35 +00:00
|
|
|
|
2014-01-05 12:17:42 +00:00
|
|
|
void installUpdates(const QString updateFilesDir, UpdateFlags flags = None);
|
2013-12-06 18:59:58 +00:00
|
|
|
|
2014-01-06 21:02:58 +00:00
|
|
|
/*!
|
|
|
|
* Updates the application proxy settings from the settings object.
|
|
|
|
*/
|
|
|
|
void updateProxySettings();
|
|
|
|
|
2013-12-29 16:51:16 +00:00
|
|
|
/*!
|
|
|
|
* Opens a json file using either a system default editor, or, if note empty, the editor
|
|
|
|
* 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
|
|
|
|
2014-05-17 17:21:32 +01:00
|
|
|
/// this is the static data. it stores things that don't move.
|
|
|
|
const QString &staticData()
|
|
|
|
{
|
|
|
|
return staticDataPath;
|
|
|
|
}
|
2014-01-03 01:29:05 +00:00
|
|
|
/// this is the root of the 'installation'. Used for automatic updates
|
|
|
|
const QString &root()
|
|
|
|
{
|
|
|
|
return rootPath;
|
|
|
|
}
|
|
|
|
/// this is the where the binary files reside
|
|
|
|
const QString &bin()
|
|
|
|
{
|
|
|
|
return binPath;
|
|
|
|
}
|
|
|
|
/// this is the work/data path. All user data is here.
|
|
|
|
const QString &data()
|
|
|
|
{
|
|
|
|
return dataPath;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* this is the original work path before it was changed by the adjustment mechanism
|
|
|
|
*/
|
|
|
|
const QString &origcwd()
|
|
|
|
{
|
|
|
|
return origcwdPath;
|
|
|
|
}
|
|
|
|
|
2014-01-05 12:17:42 +00:00
|
|
|
private slots:
|
|
|
|
/**
|
|
|
|
* Do all the things that should be done before we exit
|
|
|
|
*/
|
|
|
|
void onExit();
|
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
private:
|
2013-10-06 00:13:40 +01:00
|
|
|
void initLogger();
|
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
void initGlobalSettings();
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2013-09-08 01:15:20 +01:00
|
|
|
void initHttpMetaCache();
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2013-09-09 00:20:17 +01:00
|
|
|
void initTranslations();
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
private:
|
2013-12-14 18:19:14 +00:00
|
|
|
friend class UpdateCheckerTest;
|
2013-12-15 11:18:42 +00:00
|
|
|
friend class DownloadUpdateTaskTest;
|
2013-12-14 18:19:14 +00:00
|
|
|
|
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;
|
2013-12-04 18:34:12 +00:00
|
|
|
std::shared_ptr<UpdateChecker> m_updateChecker;
|
2014-01-03 18:19:27 +00:00
|
|
|
std::shared_ptr<NotificationChecker> m_notificationChecker;
|
2013-12-15 20:48:58 +00:00
|
|
|
std::shared_ptr<NewsChecker> m_newsChecker;
|
2014-01-12 18:28:42 +00:00
|
|
|
std::shared_ptr<StatusChecker> m_statusChecker;
|
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<IconList> m_icons;
|
|
|
|
std::shared_ptr<QNetworkAccessManager> m_qnam;
|
|
|
|
std::shared_ptr<HttpMetaCache> m_metacache;
|
|
|
|
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;
|
2013-10-14 02:59:21 +01:00
|
|
|
std::shared_ptr<JavaVersionList> m_javalist;
|
2014-02-15 13:19:35 +00:00
|
|
|
QMap<QString, std::shared_ptr<BaseProfilerFactory>> m_profilers;
|
2014-02-16 09:46:14 +00:00
|
|
|
QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> m_tools;
|
2013-10-06 00:13:40 +01:00
|
|
|
QsLogging::DestinationPtr m_fileDestination;
|
|
|
|
QsLogging::DestinationPtr m_debugDestination;
|
|
|
|
|
2013-12-06 18:59:58 +00:00
|
|
|
QString m_updateOnExitPath;
|
2014-01-05 12:17:42 +00:00
|
|
|
UpdateFlags m_updateOnExitFlags = None;
|
2013-12-06 18:59:58 +00:00
|
|
|
|
2014-01-03 01:29:05 +00:00
|
|
|
QString rootPath;
|
2014-05-17 17:21:32 +01:00
|
|
|
QString staticDataPath;
|
2014-01-03 01:29:05 +00:00
|
|
|
QString binPath;
|
|
|
|
QString dataPath;
|
|
|
|
QString origcwdPath;
|
|
|
|
|
2013-09-22 03:21:36 +01:00
|
|
|
Status m_status = MultiMC::Failed;
|
2013-10-06 00:13:40 +01:00
|
|
|
};
|