2013-12-02 15:39:56 +05:30
|
|
|
#include "MultiMC.h"
|
|
|
|
#include "gui/MainWindow.h"
|
|
|
|
|
2014-05-10 04:03:32 +05:30
|
|
|
// Crash handling
|
|
|
|
#ifdef HANDLE_SEGV
|
|
|
|
#include <HandleCrash.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2013-12-02 15:39:56 +05:30
|
|
|
int main_gui(MultiMC &app)
|
|
|
|
{
|
|
|
|
// show main window
|
2014-01-19 09:22:34 +05:30
|
|
|
QIcon::setThemeName("multimc");
|
2013-12-02 15:39:56 +05:30
|
|
|
MainWindow mainWin;
|
|
|
|
mainWin.restoreState(QByteArray::fromBase64(MMC->settings()->get("MainWindowState").toByteArray()));
|
|
|
|
mainWin.restoreGeometry(QByteArray::fromBase64(MMC->settings()->get("MainWindowGeometry").toByteArray()));
|
|
|
|
mainWin.show();
|
2014-01-01 20:26:26 +05:30
|
|
|
mainWin.checkMigrateLegacyAssets();
|
2013-12-02 15:39:56 +05:30
|
|
|
mainWin.checkSetDefaultJava();
|
2014-01-05 17:47:42 +05:30
|
|
|
return app.exec();
|
2013-12-02 15:39:56 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
// initialize Qt
|
|
|
|
MultiMC app(argc, argv);
|
|
|
|
|
2014-01-19 09:22:34 +05:30
|
|
|
Q_INIT_RESOURCE(instances);
|
|
|
|
Q_INIT_RESOURCE(multimc);
|
|
|
|
Q_INIT_RESOURCE(backgrounds);
|
2013-12-02 15:39:56 +05:30
|
|
|
|
2014-05-10 04:03:32 +05:30
|
|
|
#ifdef HANDLE_SEGV
|
|
|
|
// Register signal handler for generating crash reports.
|
|
|
|
initBlackMagic();
|
|
|
|
#endif
|
|
|
|
|
2013-12-02 15:39:56 +05:30
|
|
|
switch (app.status())
|
|
|
|
{
|
|
|
|
case MultiMC::Initialized:
|
|
|
|
return main_gui(app);
|
|
|
|
case MultiMC::Failed:
|
|
|
|
return 1;
|
|
|
|
case MultiMC::Succeeded:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|