pollymc/MultiMC.h

192 lines
4.4 KiB
C
Raw Normal View History

#pragma once
#include <QApplication>
2013-10-06 04:43:40 +05:30
#include <memory>
#include "logger/QsLog.h"
#include "logger/QsLogDest.h"
#include <QFlag>
#include <QIcon>
2013-10-06 04:43:40 +05:30
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 JavaVersionList;
2013-12-05 00:04:12 +05:30
class UpdateChecker;
class BaseProfilerFactory;
class BaseDetachedToolFactory;
2014-09-30 05:35:44 +05:30
class TranslationDownloader;
#if defined(MMC)
#undef MMC
#endif
#define MMC (static_cast<MultiMC *>(QCoreApplication::instance()))
enum UpdateFlag
{
None = 0x0,
RestartOnFinish = 0x1,
DryRun = 0x2,
OnExit = 0x4
};
Q_DECLARE_FLAGS(UpdateFlags, UpdateFlag);
Q_DECLARE_OPERATORS_FOR_FLAGS(UpdateFlags);
class MultiMC : public QApplication
{
// friends for the purpose of limiting access to deprecated stuff
friend class MultiMCPage;
friend class MainWindow;
Q_OBJECT
public:
enum Status
{
Failed,
Succeeded,
Initialized
};
2013-10-06 04:43:40 +05:30
public:
2014-11-10 01:19:23 +05:30
MultiMC(int &argc, char **argv, bool test_mode = false);
virtual ~MultiMC();
2013-10-06 04:43:40 +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()
{
return m_settings;
2013-10-06 04:43:40 +05:30
}
// InstanceList, OneSixUpdate, MinecraftInstance, OneSixProfileStrategy
std::shared_ptr<MinecraftVersionList> minecraftlist();
2013-10-06 04:43:40 +05:30
// LegacyInstance, BaseInstance, OneSixInstance, InstanceList
2013-10-06 04:43:40 +05:30
std::shared_ptr<IconList> icons();
QIcon getThemedIcon(const QString& name);
void setIconTheme(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;
}
// LegacyUpdate
2013-10-06 04:43:40 +05:30
std::shared_ptr<LWJGLVersionList> lwjgllist();
// APPLICATION ONLY
2013-10-06 04:43:40 +05:30
std::shared_ptr<ForgeVersionList> forgelist();
// APPLICATION ONLY
2014-02-20 03:04:17 +05:30
std::shared_ptr<LiteLoaderVersionList> liteloaderlist();
// APPLICATION ONLY
std::shared_ptr<JavaVersionList> javalist();
// APPLICATION ONLY
std::shared_ptr<InstanceList> instances()
{
return m_instances;
}
// APPLICATION ONLY
std::shared_ptr<MojangAccountList> accounts()
{
return m_accounts;
}
// APPLICATION ONLY
Status status()
{
return m_status;
}
// APPLICATION ONLY
QMap<QString, std::shared_ptr<BaseProfilerFactory>> profilers()
{
return m_profilers;
}
// APPLICATION ONLY
QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> tools()
{
return m_tools;
}
// APPLICATION ONLY
void installUpdates(const QString updateFilesDir, UpdateFlags flags = None);
/*!
* 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);
protected: /* to be removed! */
// FIXME: remove. used by MultiMCPage to enumerate translations.
/// this is the static data. it stores things that don't move.
const QString &staticData()
{
return staticDataPath;
}
// 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;
}
private slots:
/**
* Do all the things that should be done before we exit
*/
void onExit();
private:
2013-10-06 04:43:40 +05:30
void initLogger();
2014-11-10 01:19:23 +05:30
void initGlobalSettings(bool test_mode);
2013-10-06 04:43:40 +05:30
void initTranslations();
2013-10-06 04:43:40 +05:30
private:
friend class UpdateCheckerTest;
friend class DownloadUpdateTaskTest;
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;
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<IconList> m_icons;
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<JavaVersionList> m_javalist;
2014-09-30 05:35:44 +05:30
std::shared_ptr<TranslationDownloader> m_translationChecker;
2014-05-05 03:40:59 +05:30
QMap<QString, std::shared_ptr<BaseProfilerFactory>> m_profilers;
QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> m_tools;
2014-05-05 03:40:59 +05:30
2013-10-06 04:43:40 +05:30
QsLogging::DestinationPtr m_fileDestination;
QsLogging::DestinationPtr m_debugDestination;
QString m_updateOnExitPath;
UpdateFlags m_updateOnExitFlags = None;
2014-01-03 06:59:05 +05:30
QString rootPath;
QString staticDataPath;
2014-01-03 06:59:05 +05:30
QString dataPath;
Status m_status = MultiMC::Failed;
2013-10-06 04:43:40 +05:30
};