2013-09-07 07:30:58 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QApplication>
|
2013-10-06 04:43:40 +05:30
|
|
|
#include <memory>
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDebug>
|
2014-01-05 17:47:42 +05:30
|
|
|
#include <QFlag>
|
2015-03-02 02:50:57 +05:30
|
|
|
#include <QIcon>
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDateTime>
|
2015-06-08 06:13:16 +05:30
|
|
|
#include <updater/GoUpdate.h>
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2015-07-05 05:59:41 +05:30
|
|
|
class GenericPageProvider;
|
2015-02-02 06:44:14 +05:30
|
|
|
class QFile;
|
2013-09-16 04:24:39 +05:30
|
|
|
class MinecraftVersionList;
|
|
|
|
class LWJGLVersionList;
|
2013-09-08 05:45:20 +05:30
|
|
|
class HttpMetaCache;
|
2013-09-07 07:30:58 +05:30
|
|
|
class SettingsObject;
|
|
|
|
class InstanceList;
|
2013-11-19 00:28:03 +05:30
|
|
|
class MojangAccountList;
|
2013-09-07 07:30:58 +05:30
|
|
|
class IconList;
|
|
|
|
class QNetworkAccessManager;
|
2013-09-16 04:24:39 +05:30
|
|
|
class ForgeVersionList;
|
2014-02-20 03:04:17 +05:30
|
|
|
class LiteLoaderVersionList;
|
2016-01-02 05:05:54 +05:30
|
|
|
class JavaInstallList;
|
2013-12-05 00:04:12 +05:30
|
|
|
class UpdateChecker;
|
2014-02-15 18:49:35 +05:30
|
|
|
class BaseProfilerFactory;
|
2014-02-16 15:16:14 +05:30
|
|
|
class BaseDetachedToolFactory;
|
2014-09-30 05:35:44 +05:30
|
|
|
class TranslationDownloader;
|
2013-09-07 07:30:58 +05:30
|
|
|
|
|
|
|
#if defined(MMC)
|
|
|
|
#undef MMC
|
|
|
|
#endif
|
|
|
|
#define MMC (static_cast<MultiMC *>(QCoreApplication::instance()))
|
|
|
|
|
|
|
|
class MultiMC : public QApplication
|
|
|
|
{
|
2015-01-31 21:29:03 +05:30
|
|
|
// friends for the purpose of limiting access to deprecated stuff
|
|
|
|
friend class MultiMCPage;
|
|
|
|
friend class MainWindow;
|
2013-09-07 07:30:58 +05:30
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum Status
|
|
|
|
{
|
|
|
|
Failed,
|
|
|
|
Succeeded,
|
2014-01-05 17:47:42 +05:30
|
|
|
Initialized
|
2013-09-07 07:30:58 +05:30
|
|
|
};
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
public:
|
2014-11-10 01:19:23 +05:30
|
|
|
MultiMC(int &argc, char **argv, bool test_mode = false);
|
2013-09-07 07:30:58 +05:30
|
|
|
virtual ~MultiMC();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
// InstanceList, IconList, OneSixFTBInstance, LegacyUpdate, LegacyInstance, MCEditTool, JVisualVM, MinecraftInstance, JProfiler, BaseInstance
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<SettingsObject> settings()
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
|
|
|
return m_settings;
|
2013-10-06 04:43:40 +05:30
|
|
|
}
|
2015-02-02 05:39:28 +05:30
|
|
|
|
2015-07-05 05:59:41 +05:30
|
|
|
std::shared_ptr<GenericPageProvider> globalSettingsPages()
|
|
|
|
{
|
|
|
|
return m_globalSettingsProvider;
|
|
|
|
}
|
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
qint64 timeSinceStart() const
|
|
|
|
{
|
|
|
|
return startTime.msecsTo(QDateTime::currentDateTime());
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2015-03-02 02:50:57 +05:30
|
|
|
QIcon getThemedIcon(const QString& name);
|
|
|
|
|
|
|
|
void setIconTheme(const QString& name);
|
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
// DownloadUpdateTask
|
2013-12-05 00:04:12 +05:30
|
|
|
std::shared_ptr<UpdateChecker> updateChecker()
|
2013-12-02 05:25:24 +05:30
|
|
|
{
|
2013-12-05 00:04:12 +05:30
|
|
|
return m_updateChecker;
|
2013-12-02 05:25:24 +05:30
|
|
|
}
|
|
|
|
|
2015-02-02 05:39:28 +05:30
|
|
|
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();
|
2016-01-02 05:05:54 +05:30
|
|
|
std::shared_ptr<JavaInstallList> javalist();
|
2013-10-14 07:29:21 +05:30
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
// APPLICATION ONLY
|
|
|
|
std::shared_ptr<InstanceList> instances()
|
|
|
|
{
|
|
|
|
return m_instances;
|
|
|
|
}
|
|
|
|
|
2016-04-10 07:59:29 +05:30
|
|
|
std::shared_ptr<IconList> icons()
|
|
|
|
{
|
|
|
|
return m_icons;
|
|
|
|
}
|
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
// APPLICATION ONLY
|
|
|
|
std::shared_ptr<MojangAccountList> accounts()
|
|
|
|
{
|
|
|
|
return m_accounts;
|
|
|
|
}
|
|
|
|
|
|
|
|
// APPLICATION ONLY
|
|
|
|
Status status()
|
|
|
|
{
|
|
|
|
return m_status;
|
|
|
|
}
|
|
|
|
|
|
|
|
// APPLICATION ONLY
|
2014-02-15 18:49:35 +05:30
|
|
|
QMap<QString, std::shared_ptr<BaseProfilerFactory>> profilers()
|
|
|
|
{
|
|
|
|
return m_profilers;
|
|
|
|
}
|
2015-01-31 21:29:03 +05:30
|
|
|
|
|
|
|
// APPLICATION ONLY
|
2014-02-16 15:16:14 +05:30
|
|
|
QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> tools()
|
|
|
|
{
|
|
|
|
return m_tools;
|
|
|
|
}
|
2014-02-15 18:49:35 +05:30
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
// APPLICATION ONLY
|
2015-06-10 06:01:34 +05:30
|
|
|
QString getFinishCmd();
|
2015-06-08 06:13:16 +05:30
|
|
|
void installUpdates(const QString updateFilesDir, GoUpdate::OperationList operations);
|
2015-06-10 06:01:34 +05:30
|
|
|
void updateXP(const QString updateFilesDir, GoUpdate::OperationList operations);
|
|
|
|
void updateModern(const QString updateFilesDir, GoUpdate::OperationList operations);
|
2013-12-07 00:29:58 +05:30
|
|
|
|
2013-12-29 22:21:16 +05:30
|
|
|
/*!
|
|
|
|
* Opens a json file using either a system default editor, or, if note empty, the editor
|
|
|
|
* specified in the settings
|
|
|
|
*/
|
2013-12-30 19:15:59 +05:30
|
|
|
bool openJsonEditor(const QString &filename);
|
2013-12-29 22:21:16 +05:30
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
protected: /* to be removed! */
|
|
|
|
// FIXME: remove. used by MainWindow to create application update tasks
|
2014-01-03 06:59:05 +05:30
|
|
|
/// this is the root of the 'installation'. Used for automatic updates
|
|
|
|
const QString &root()
|
|
|
|
{
|
|
|
|
return rootPath;
|
|
|
|
}
|
|
|
|
|
2014-01-05 17:47:42 +05:30
|
|
|
private slots:
|
|
|
|
/**
|
|
|
|
* Do all the things that should be done before we exit
|
|
|
|
*/
|
|
|
|
void onExit();
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
private:
|
2013-10-06 04:43:40 +05:30
|
|
|
void initLogger();
|
2015-02-01 16:14:47 +05:30
|
|
|
void initIcons();
|
2014-11-10 01:19:23 +05:30
|
|
|
void initGlobalSettings(bool test_mode);
|
2013-09-09 04:50:17 +05:30
|
|
|
void initTranslations();
|
2015-05-28 23:08:29 +05:30
|
|
|
void initSSL();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
private:
|
2013-12-14 23:49:14 +05:30
|
|
|
friend class UpdateCheckerTest;
|
2015-02-08 22:26:14 +05:30
|
|
|
friend class DownloadTaskTest;
|
2013-12-14 23:49:14 +05:30
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
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-04-10 07:59:29 +05:30
|
|
|
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;
|
2016-01-02 05:05:54 +05:30
|
|
|
std::shared_ptr<JavaInstallList> m_javalist;
|
2014-09-30 05:35:44 +05:30
|
|
|
std::shared_ptr<TranslationDownloader> m_translationChecker;
|
2015-07-05 05:59:41 +05:30
|
|
|
std::shared_ptr<GenericPageProvider> m_globalSettingsProvider;
|
2014-05-05 03:40:59 +05:30
|
|
|
|
2014-02-15 18:49:35 +05:30
|
|
|
QMap<QString, std::shared_ptr<BaseProfilerFactory>> m_profilers;
|
2014-02-16 15:16:14 +05:30
|
|
|
QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> m_tools;
|
2014-05-05 03:40:59 +05:30
|
|
|
|
2014-01-03 06:59:05 +05:30
|
|
|
QString rootPath;
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
Status m_status = MultiMC::Failed;
|
2015-02-02 06:44:14 +05:30
|
|
|
public:
|
2015-09-30 03:41:00 +05:30
|
|
|
QString launchId;
|
2015-02-02 06:44:14 +05:30
|
|
|
std::shared_ptr<QFile> logFile;
|
2013-10-06 04:43:40 +05:30
|
|
|
};
|