2013-09-07 07:30:58 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include "MultiMCVersion.h"
|
2013-10-06 04:43:40 +05:30
|
|
|
#include <memory>
|
|
|
|
#include "logger/QsLog.h"
|
|
|
|
#include "logger/QsLogDest.h"
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
|
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;
|
2013-10-14 07:29:21 +05:30
|
|
|
class JavaVersionList;
|
2013-09-07 07:30:58 +05:30
|
|
|
|
|
|
|
#if defined(MMC)
|
|
|
|
#undef MMC
|
|
|
|
#endif
|
|
|
|
#define MMC (static_cast<MultiMC *>(QCoreApplication::instance()))
|
|
|
|
|
2013-11-04 04:41:20 +05:30
|
|
|
// FIXME: possibly move elsewhere
|
|
|
|
enum InstSortMode
|
|
|
|
{
|
|
|
|
// Sort alphabetically by name.
|
|
|
|
Sort_Name,
|
|
|
|
// Sort by which instance was launched most recently.
|
|
|
|
Sort_LastLaunch,
|
|
|
|
};
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
class MultiMC : public QApplication
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum Status
|
|
|
|
{
|
|
|
|
Failed,
|
|
|
|
Succeeded,
|
|
|
|
Initialized,
|
|
|
|
};
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
public:
|
2013-10-06 04:43:40 +05:30
|
|
|
MultiMC(int &argc, char **argv);
|
2013-09-07 07:30:58 +05:30
|
|
|
virtual ~MultiMC();
|
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
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<InstanceList> instances()
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
|
|
|
return m_instances;
|
2013-10-06 04:43:40 +05:30
|
|
|
}
|
|
|
|
|
2013-11-19 00:28:03 +05:30
|
|
|
std::shared_ptr<MojangAccountList> accounts()
|
|
|
|
{
|
|
|
|
return m_accounts;
|
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<IconList> icons();
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
Status status()
|
|
|
|
{
|
|
|
|
return m_status;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
MultiMCVersion version()
|
|
|
|
{
|
|
|
|
return m_version;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
std::shared_ptr<QNetworkAccessManager> qnam()
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
|
|
|
return m_qnam;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
std::shared_ptr<HttpMetaCache> metacache()
|
2013-09-08 05:45:20 +05:30
|
|
|
{
|
|
|
|
return m_metacache;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
std::shared_ptr<LWJGLVersionList> lwjgllist();
|
|
|
|
|
|
|
|
std::shared_ptr<ForgeVersionList> forgelist();
|
|
|
|
|
|
|
|
std::shared_ptr<MinecraftVersionList> minecraftlist();
|
|
|
|
|
2013-10-14 07:29:21 +05:30
|
|
|
std::shared_ptr<JavaVersionList> javalist();
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
private:
|
2013-10-06 04:43:40 +05:30
|
|
|
void initLogger();
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
void initGlobalSettings();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
void initHttpMetaCache();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-09 04:50:17 +05:30
|
|
|
void initTranslations();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
private:
|
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-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<QNetworkAccessManager> m_qnam;
|
|
|
|
std::shared_ptr<HttpMetaCache> m_metacache;
|
|
|
|
std::shared_ptr<LWJGLVersionList> m_lwjgllist;
|
|
|
|
std::shared_ptr<ForgeVersionList> m_forgelist;
|
|
|
|
std::shared_ptr<MinecraftVersionList> m_minecraftlist;
|
2013-10-14 07:29:21 +05:30
|
|
|
std::shared_ptr<JavaVersionList> m_javalist;
|
2013-10-06 04:43:40 +05:30
|
|
|
QsLogging::DestinationPtr m_fileDestination;
|
|
|
|
QsLogging::DestinationPtr m_debugDestination;
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
Status m_status = MultiMC::Failed;
|
2013-12-02 01:57:36 +05:30
|
|
|
MultiMCVersion m_version;
|
2013-10-06 04:43:40 +05:30
|
|
|
};
|