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-09-07 07:30:58 +05:30
|
|
|
|
|
|
|
#include "gui/mainwindow.h"
|
|
|
|
#include "logic/lists/InstanceList.h"
|
|
|
|
#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
|
|
|
|
|
|
|
#include "pathutils.h"
|
|
|
|
#include "cmdutils.h"
|
|
|
|
#include <inisettingsobject.h>
|
|
|
|
#include <setting.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
using namespace Util::Commandline;
|
|
|
|
|
2013-09-23 03:53:50 +05:30
|
|
|
MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
|
|
|
setOrganizationName("Forkk");
|
|
|
|
setApplicationName("MultiMC 5");
|
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-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;
|
2013-09-23 03:53:50 +05:30
|
|
|
std::cout << "Tag: " << JENKINS_BUILD_TAG << " " << (ARCH == x64 ? "x86_64" : "x86")
|
|
|
|
<< std::endl;
|
2013-09-07 07:30:58 +05:30
|
|
|
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-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-09-23 03:53:50 +05:30
|
|
|
m_instances.reset(new InstanceList(m_settings->get("InstanceDir").toString(), this));
|
2013-09-07 07:30:58 +05:30
|
|
|
std::cout << "Loading Instances..." << std::endl;
|
|
|
|
m_instances->loadList();
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
// init the http meta cache
|
|
|
|
initHttpMetaCache();
|
2013-09-23 03:53:50 +05:30
|
|
|
|
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
|
|
|
// Register meta types.
|
|
|
|
qRegisterMetaType<LoginResponse>("LoginResponse");
|
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;
|
|
|
|
}
|
|
|
|
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-09-22 07:51:36 +05:30
|
|
|
removeTranslator(m_mmc_translator.data());
|
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-09-22 07:51:36 +05:30
|
|
|
removeTranslator(m_qt_translator.data());
|
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() << "...";
|
|
|
|
if (!installTranslator(m_qt_translator.data()))
|
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() << "...";
|
|
|
|
if (!installTranslator(m_mmc_translator.data()))
|
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-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
|
|
|
// Toolbar settings
|
|
|
|
m_settings->registerSetting(new Setting("InstanceToolbarVisible", true));
|
|
|
|
m_settings->registerSetting(new Setting("InstanceToolbarPosition", QPoint()));
|
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
|
|
|
|
m_settings->registerSetting(new Setting("JavaPath", "java"));
|
|
|
|
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-09-08 19:51:49 +05:30
|
|
|
// Shall the main window hide on instance launch
|
|
|
|
m_settings->registerSetting(new Setting("NoHide", false));
|
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-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-09-08 05:45:20 +05:30
|
|
|
m_metacache->Load();
|
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
QSharedPointer<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-09-22 07:51:36 +05:30
|
|
|
QSharedPointer<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
|
|
|
|
|
|
|
QSharedPointer<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-09-22 07:51:36 +05:30
|
|
|
QSharedPointer<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-09-07 07:30:58 +05:30
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
// initialize Qt
|
|
|
|
MultiMC app(argc, argv);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// show main window
|
|
|
|
MainWindow mainWin;
|
|
|
|
mainWin.show();
|
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:
|
|
|
|
return app.exec();
|
|
|
|
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"
|