2013-09-07 07:30:58 +05:30
|
|
|
|
|
|
|
#include "MultiMC.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QNetworkAccessManager>
|
2013-09-09 03:13:19 +05:30
|
|
|
#include <QTranslator>
|
|
|
|
#include <QLibraryInfo>
|
2013-10-14 07:29:21 +05:30
|
|
|
#include <QMessageBox>
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "gui/MainWindow.h"
|
|
|
|
#include "gui/dialogs/VersionSelectDialog.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
#include "logic/lists/InstanceList.h"
|
2013-11-19 00:28:03 +05:30
|
|
|
#include "logic/lists/MojangAccountList.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
#include "logic/lists/IconList.h"
|
2013-09-16 04:24:39 +05:30
|
|
|
#include "logic/lists/LwjglVersionList.h"
|
|
|
|
#include "logic/lists/MinecraftVersionList.h"
|
|
|
|
#include "logic/lists/ForgeVersionList.h"
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
#include "logic/InstanceLauncher.h"
|
2013-09-08 05:45:20 +05:30
|
|
|
#include "logic/net/HttpMetaCache.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2013-10-07 04:14:34 +05:30
|
|
|
#include "logic/JavaUtils.h"
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
#include "pathutils.h"
|
|
|
|
#include "cmdutils.h"
|
|
|
|
#include <inisettingsobject.h>
|
|
|
|
#include <setting.h>
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "logger/QsLog.h"
|
2013-10-06 04:43:40 +05:30
|
|
|
#include <logger/QsLogDest.h>
|
2013-09-07 07:30:58 +05:30
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
using namespace Util::Commandline;
|
|
|
|
|
2013-12-02 01:57:36 +05:30
|
|
|
MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv),
|
|
|
|
m_version{VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD, VERSION_BUILD_TYPE}
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
2013-10-29 01:25:12 +05:30
|
|
|
setOrganizationName("MultiMC");
|
|
|
|
setApplicationName("MultiMC5");
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-09 04:50:17 +05:30
|
|
|
initTranslations();
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-10-26 13:08:21 +05:30
|
|
|
// Don't quit on hiding the last window
|
|
|
|
this->setQuitOnLastWindowClosed(false);
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Print app header
|
|
|
|
std::cout << "MultiMC 5" << std::endl;
|
|
|
|
std::cout << "(c) 2013 MultiMC Contributors" << std::endl << std::endl;
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Commandline parsing
|
|
|
|
QHash<QString, QVariant> args;
|
|
|
|
{
|
|
|
|
Parser parser(FlagStyle::GNU, ArgumentStyle::SpaceAndEquals);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// --help
|
|
|
|
parser.addSwitch("help");
|
|
|
|
parser.addShortOpt("help", 'h');
|
|
|
|
parser.addDocumentation("help", "display this help and exit.");
|
|
|
|
// --version
|
|
|
|
parser.addSwitch("version");
|
|
|
|
parser.addShortOpt("version", 'V');
|
|
|
|
parser.addDocumentation("version", "display program version and exit.");
|
|
|
|
// --dir
|
|
|
|
parser.addOption("dir", applicationDirPath());
|
|
|
|
parser.addShortOpt("dir", 'd');
|
2013-09-23 03:53:50 +05:30
|
|
|
parser.addDocumentation("dir", "use the supplied directory as MultiMC root instead of "
|
|
|
|
"the binary location (use '.' for current)");
|
2013-09-07 07:30:58 +05:30
|
|
|
// --update
|
|
|
|
parser.addOption("update");
|
|
|
|
parser.addShortOpt("update", 'u');
|
2013-09-23 03:53:50 +05:30
|
|
|
parser.addDocumentation("update", "replaces the given file with the running executable",
|
|
|
|
"<path>");
|
2013-09-07 07:30:58 +05:30
|
|
|
// --quietupdate
|
|
|
|
parser.addSwitch("quietupdate");
|
|
|
|
parser.addShortOpt("quietupdate", 'U');
|
2013-09-23 03:53:50 +05:30
|
|
|
parser.addDocumentation("quietupdate",
|
|
|
|
"doesn't restart MultiMC after installing updates");
|
2013-09-07 07:30:58 +05:30
|
|
|
// --launch
|
|
|
|
parser.addOption("launch");
|
|
|
|
parser.addShortOpt("launch", 'l');
|
|
|
|
parser.addDocumentation("launch", "tries to launch the given instance", "<inst>");
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// parse the arguments
|
|
|
|
try
|
|
|
|
{
|
|
|
|
args = parser.parse(arguments());
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
catch (ParsingError e)
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
|
|
|
std::cerr << "CommandLineError: " << e.what() << std::endl;
|
2013-09-23 03:53:50 +05:30
|
|
|
std::cerr << "Try '%1 -h' to get help on MultiMC's command line parameters."
|
|
|
|
<< std::endl;
|
2013-09-07 07:30:58 +05:30
|
|
|
m_status = MultiMC::Failed;
|
|
|
|
return;
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// display help and exit
|
|
|
|
if (args["help"].toBool())
|
|
|
|
{
|
|
|
|
std::cout << qPrintable(parser.compileHelp(arguments()[0]));
|
|
|
|
m_status = MultiMC::Succeeded;
|
|
|
|
return;
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// display version and exit
|
|
|
|
if (args["version"].toBool())
|
|
|
|
{
|
|
|
|
std::cout << "Version " << VERSION_STR << std::endl;
|
|
|
|
std::cout << "Git " << GIT_COMMIT << std::endl;
|
|
|
|
m_status = MultiMC::Succeeded;
|
|
|
|
return;
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// update
|
|
|
|
// Note: cwd is always the current executable path!
|
|
|
|
if (!args["update"].isNull())
|
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
std::cout << "Performing MultiMC update: " << qPrintable(args["update"].toString())
|
|
|
|
<< std::endl;
|
2013-09-07 07:30:58 +05:30
|
|
|
QString cwd = QDir::currentPath();
|
|
|
|
QDir::setCurrent(applicationDirPath());
|
|
|
|
QFile file(applicationFilePath());
|
|
|
|
file.copy(args["update"].toString());
|
2013-09-23 03:53:50 +05:30
|
|
|
if (args["quietupdate"].toBool())
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
|
|
|
m_status = MultiMC::Succeeded;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QDir::setCurrent(cwd);
|
|
|
|
}
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// change directory
|
|
|
|
QDir::setCurrent(args["dir"].toString());
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
// init the logger
|
|
|
|
initLogger();
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// load settings
|
|
|
|
initGlobalSettings();
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// and instances
|
2013-10-29 01:25:12 +05:30
|
|
|
auto InstDirSetting = m_settings->getSetting("InstanceDir");
|
|
|
|
m_instances.reset(new InstanceList(InstDirSetting->get().toString(), this));
|
2013-10-06 06:37:57 +05:30
|
|
|
QLOG_INFO() << "Loading Instances...";
|
2013-09-07 07:30:58 +05:30
|
|
|
m_instances->loadList();
|
2013-10-29 01:25:12 +05:30
|
|
|
connect(InstDirSetting, SIGNAL(settingChanged(const Setting &, QVariant)),
|
|
|
|
m_instances.get(), SLOT(on_InstFolderChanged(const Setting &, QVariant)));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-11-19 00:28:03 +05:30
|
|
|
// and accounts
|
|
|
|
m_accounts.reset(new MojangAccountList(this));
|
|
|
|
QLOG_INFO() << "Loading accounts...";
|
2013-11-20 00:23:30 +05:30
|
|
|
m_accounts->setListFilePath("accounts.json", true);
|
2013-11-19 00:28:03 +05:30
|
|
|
m_accounts->loadList();
|
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
// init the http meta cache
|
|
|
|
initHttpMetaCache();
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-10-30 02:43:42 +05:30
|
|
|
// set up a basic autodetected proxy (system default)
|
|
|
|
QNetworkProxyFactory::setUseSystemConfiguration(true);
|
|
|
|
|
2013-10-31 13:33:18 +05:30
|
|
|
QLOG_INFO() << "Detecting system proxy settings...";
|
|
|
|
auto proxies = QNetworkProxyFactory::systemProxyForQuery();
|
|
|
|
if (proxies.size() == 1 && proxies[0].type() == QNetworkProxy::NoProxy)
|
|
|
|
{
|
|
|
|
QLOG_INFO() << "No proxy found.";
|
|
|
|
}
|
|
|
|
else for (auto proxy : proxies)
|
|
|
|
{
|
|
|
|
QString proxyDesc;
|
|
|
|
if (proxy.type() == QNetworkProxy::NoProxy)
|
|
|
|
{
|
|
|
|
QLOG_INFO() << "Using no proxy is an option!";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (proxy.type())
|
|
|
|
{
|
|
|
|
case QNetworkProxy::DefaultProxy:
|
|
|
|
proxyDesc = "Default proxy: ";
|
|
|
|
break;
|
|
|
|
case QNetworkProxy::Socks5Proxy:
|
|
|
|
proxyDesc = "Socks5 proxy: ";
|
|
|
|
break;
|
|
|
|
case QNetworkProxy::HttpProxy:
|
|
|
|
proxyDesc = "HTTP proxy: ";
|
|
|
|
break;
|
|
|
|
case QNetworkProxy::HttpCachingProxy:
|
|
|
|
proxyDesc = "HTTP caching: ";
|
|
|
|
break;
|
|
|
|
case QNetworkProxy::FtpCachingProxy:
|
|
|
|
proxyDesc = "FTP caching: ";
|
|
|
|
break;
|
2013-12-01 21:04:51 +05:30
|
|
|
default:
|
|
|
|
proxyDesc = "DERP proxy: ";
|
|
|
|
break;
|
2013-10-31 13:33:18 +05:30
|
|
|
}
|
|
|
|
proxyDesc += QString("%3@%1:%2 pass %4")
|
|
|
|
.arg(proxy.hostName())
|
|
|
|
.arg(proxy.port())
|
|
|
|
.arg(proxy.user())
|
|
|
|
.arg(proxy.password());
|
|
|
|
QLOG_INFO() << proxyDesc;
|
|
|
|
}
|
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
// create the global network manager
|
2013-09-22 07:51:36 +05:30
|
|
|
m_qnam.reset(new QNetworkAccessManager(this));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// launch instance, if that's what should be done
|
|
|
|
if (!args["launch"].isNull())
|
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (InstanceLauncher(args["launch"].toString()).launch())
|
2013-09-07 07:30:58 +05:30
|
|
|
m_status = MultiMC::Succeeded;
|
|
|
|
else
|
|
|
|
m_status = MultiMC::Failed;
|
|
|
|
return;
|
|
|
|
}
|
2013-10-26 13:08:21 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
m_status = MultiMC::Initialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
MultiMC::~MultiMC()
|
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (m_mmc_translator)
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
removeTranslator(m_mmc_translator.get());
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
if (m_qt_translator)
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
removeTranslator(m_qt_translator.get());
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
2013-09-07 07:30:58 +05:30
|
|
|
}
|
|
|
|
|
2013-09-09 04:50:17 +05:30
|
|
|
void MultiMC::initTranslations()
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_qt_translator.reset(new QTranslator());
|
2013-09-23 03:53:50 +05:30
|
|
|
if (m_qt_translator->load("qt_" + QLocale::system().name(),
|
|
|
|
QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
std::cout << "Loading Qt Language File for "
|
|
|
|
<< QLocale::system().name().toLocal8Bit().constData() << "...";
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!installTranslator(m_qt_translator.get()))
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
|
|
|
std::cout << " failed.";
|
2013-09-22 07:51:36 +05:30
|
|
|
m_qt_translator.reset();
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_qt_translator.reset();
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
m_mmc_translator.reset(new QTranslator());
|
2013-09-23 03:53:50 +05:30
|
|
|
if (m_mmc_translator->load("mmc_" + QLocale::system().name(),
|
|
|
|
QDir("translations").absolutePath()))
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
std::cout << "Loading MMC Language File for "
|
|
|
|
<< QLocale::system().name().toLocal8Bit().constData() << "...";
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!installTranslator(m_mmc_translator.get()))
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
|
|
|
std::cout << " failed.";
|
2013-09-22 07:51:36 +05:30
|
|
|
m_mmc_translator.reset();
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_mmc_translator.reset();
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void MultiMC::initLogger()
|
|
|
|
{
|
|
|
|
// init the logging mechanism
|
|
|
|
QsLogging::Logger &logger = QsLogging::Logger::instance();
|
|
|
|
logger.setLoggingLevel(QsLogging::TraceLevel);
|
|
|
|
m_fileDestination = QsLogging::DestinationFactory::MakeFileDestination("MultiMC.log");
|
|
|
|
m_debugDestination = QsLogging::DestinationFactory::MakeDebugOutputDestination();
|
|
|
|
logger.addDestination(m_fileDestination.get());
|
|
|
|
logger.addDestination(m_debugDestination.get());
|
|
|
|
// log all the things
|
|
|
|
logger.setLoggingLevel(QsLogging::TraceLevel);
|
|
|
|
}
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
void MultiMC::initGlobalSettings()
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_settings.reset(new INISettingsObject("multimc.cfg", this));
|
2013-09-23 03:53:50 +05:30
|
|
|
// Updates
|
2013-09-07 07:30:58 +05:30
|
|
|
m_settings->registerSetting(new Setting("UseDevBuilds", false));
|
|
|
|
m_settings->registerSetting(new Setting("AutoUpdate", true));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Folders
|
|
|
|
m_settings->registerSetting(new Setting("InstanceDir", "instances"));
|
|
|
|
m_settings->registerSetting(new Setting("CentralModsDir", "mods"));
|
|
|
|
m_settings->registerSetting(new Setting("LWJGLDir", "lwjgl"));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Console
|
|
|
|
m_settings->registerSetting(new Setting("ShowConsole", true));
|
|
|
|
m_settings->registerSetting(new Setting("AutoCloseConsole", true));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Console Colors
|
2013-09-23 03:53:50 +05:30
|
|
|
// m_settings->registerSetting(new Setting("SysMessageColor", QColor(Qt::blue)));
|
|
|
|
// m_settings->registerSetting(new Setting("StdOutColor", QColor(Qt::black)));
|
|
|
|
// m_settings->registerSetting(new Setting("StdErrColor", QColor(Qt::red)));
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Window Size
|
|
|
|
m_settings->registerSetting(new Setting("LaunchMaximized", false));
|
|
|
|
m_settings->registerSetting(new Setting("MinecraftWinWidth", 854));
|
|
|
|
m_settings->registerSetting(new Setting("MinecraftWinHeight", 480));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Auto login
|
|
|
|
m_settings->registerSetting(new Setting("AutoLogin", false));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Memory
|
|
|
|
m_settings->registerSetting(new Setting("MinMemAlloc", 512));
|
|
|
|
m_settings->registerSetting(new Setting("MaxMemAlloc", 1024));
|
|
|
|
m_settings->registerSetting(new Setting("PermGen", 64));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Java Settings
|
2013-10-07 04:14:34 +05:30
|
|
|
m_settings->registerSetting(new Setting("JavaPath", ""));
|
2013-10-21 01:58:31 +05:30
|
|
|
m_settings->registerSetting(new Setting("LastHostname", ""));
|
2013-09-07 07:30:58 +05:30
|
|
|
m_settings->registerSetting(new Setting("JvmArgs", ""));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Custom Commands
|
|
|
|
m_settings->registerSetting(new Setting("PreLaunchCommand", ""));
|
|
|
|
m_settings->registerSetting(new Setting("PostExitCommand", ""));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// The cat
|
|
|
|
m_settings->registerSetting(new Setting("TheCat", false));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
|
|
|
|
2013-11-04 04:41:20 +05:30
|
|
|
m_settings->registerSetting(new Setting("InstSortMode", "Name"));
|
2013-11-27 19:30:44 +05:30
|
|
|
m_settings->registerSetting(new Setting("SelectedInstance", QString()));
|
2013-11-04 04:41:20 +05:30
|
|
|
|
2013-09-23 03:53:50 +05:30
|
|
|
// Persistent value for the client ID
|
|
|
|
m_settings->registerSetting(new Setting("YggdrasilClientToken", ""));
|
|
|
|
QString currentYggID = m_settings->get("YggdrasilClientToken").toString();
|
|
|
|
if (currentYggID.isEmpty())
|
|
|
|
{
|
|
|
|
QUuid uuid = QUuid::createUuid();
|
|
|
|
m_settings->set("YggdrasilClientToken", uuid.toString());
|
|
|
|
}
|
2013-11-03 06:15:25 +05:30
|
|
|
|
|
|
|
// Window state and geometry
|
|
|
|
m_settings->registerSetting(new Setting("MainWindowState", ""));
|
|
|
|
m_settings->registerSetting(new Setting("MainWindowGeometry", ""));
|
2013-11-23 06:11:28 +05:30
|
|
|
|
|
|
|
m_settings->registerSetting(new Setting("ConsoleWindowState", ""));
|
|
|
|
m_settings->registerSetting(new Setting("ConsoleWindowGeometry", ""));
|
2013-09-07 07:30:58 +05:30
|
|
|
}
|
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
void MultiMC::initHttpMetaCache()
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_metacache.reset(new HttpMetaCache("metacache"));
|
2013-09-08 05:45:20 +05:30
|
|
|
m_metacache->addBase("assets", QDir("assets").absolutePath());
|
|
|
|
m_metacache->addBase("versions", QDir("versions").absolutePath());
|
|
|
|
m_metacache->addBase("libraries", QDir("libraries").absolutePath());
|
2013-09-18 03:30:35 +05:30
|
|
|
m_metacache->addBase("minecraftforge", QDir("mods/minecraftforge").absolutePath());
|
2013-10-21 22:20:45 +05:30
|
|
|
m_metacache->addBase("skins", QDir("accounts/skins").absolutePath());
|
2013-09-08 05:45:20 +05:30
|
|
|
m_metacache->Load();
|
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<IconList> MultiMC::icons()
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!m_icons)
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_icons.reset(new IconList);
|
2013-09-07 07:30:58 +05:30
|
|
|
}
|
|
|
|
return m_icons;
|
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<LWJGLVersionList> MultiMC::lwjgllist()
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!m_lwjgllist)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_lwjgllist.reset(new LWJGLVersionList());
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
return m_lwjgllist;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<ForgeVersionList> MultiMC::forgelist()
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!m_forgelist)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_forgelist.reset(new ForgeVersionList());
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
return m_forgelist;
|
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<MinecraftVersionList> MultiMC::minecraftlist()
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!m_minecraftlist)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_minecraftlist.reset(new MinecraftVersionList());
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
return m_minecraftlist;
|
|
|
|
}
|
|
|
|
|
2013-10-14 07:29:21 +05:30
|
|
|
std::shared_ptr<JavaVersionList> MultiMC::javalist()
|
|
|
|
{
|
|
|
|
if (!m_javalist)
|
|
|
|
{
|
|
|
|
m_javalist.reset(new JavaVersionList());
|
|
|
|
}
|
|
|
|
return m_javalist;
|
|
|
|
}
|
|
|
|
|
2013-10-31 13:33:18 +05:30
|
|
|
int main_gui(MultiMC &app)
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
|
|
|
// show main window
|
|
|
|
MainWindow mainWin;
|
2013-11-03 06:15:25 +05:30
|
|
|
mainWin.restoreState(QByteArray::fromBase64(MMC->settings()->get("MainWindowState").toByteArray()));
|
|
|
|
mainWin.restoreGeometry(QByteArray::fromBase64(MMC->settings()->get("MainWindowGeometry").toByteArray()));
|
2013-09-07 07:30:58 +05:30
|
|
|
mainWin.show();
|
2013-10-14 07:29:21 +05:30
|
|
|
mainWin.checkSetDefaultJava();
|
2013-10-29 02:20:58 +05:30
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
// initialize Qt
|
|
|
|
MultiMC app(argc, argv);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
|
|
|
switch (app.status())
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
case MultiMC::Initialized:
|
2013-10-29 02:20:58 +05:30
|
|
|
return main_gui(app);
|
2013-09-23 03:53:50 +05:30
|
|
|
case MultiMC::Failed:
|
|
|
|
return 1;
|
|
|
|
case MultiMC::Succeeded:
|
|
|
|
return 0;
|
2013-09-07 07:30:58 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
#include "MultiMC.moc"
|