2013-12-02 15:39:56 +05:30
|
|
|
#include "MultiMC.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "MainWindow.h"
|
2016-08-11 04:14:01 +05:30
|
|
|
#include "LaunchController.h"
|
2015-09-30 03:41:00 +05:30
|
|
|
#include <InstanceList.h>
|
|
|
|
#include <QDebug>
|
2013-12-02 15:39:56 +05:30
|
|
|
|
2016-11-18 20:34:08 +05:30
|
|
|
// #define BREAK_INFINITE_LOOP
|
|
|
|
// #define BREAK_EXCEPTION
|
|
|
|
// #define BREAK_RETURN
|
|
|
|
|
|
|
|
#ifdef BREAK_INFINITE_LOOP
|
|
|
|
#include <thread>
|
|
|
|
#include <chrono>
|
|
|
|
#endif
|
|
|
|
|
2013-12-02 15:39:56 +05:30
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2016-11-18 20:34:08 +05:30
|
|
|
#ifdef BREAK_INFINITE_LOOP
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(250));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef BREAK_EXCEPTION
|
|
|
|
throw 42;
|
|
|
|
#endif
|
|
|
|
#ifdef BREAK_RETURN
|
|
|
|
return 42;
|
|
|
|
#endif
|
|
|
|
|
2017-04-27 01:47:27 +05:30
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
|
|
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
|
|
#endif
|
|
|
|
|
2013-12-02 15:39:56 +05:30
|
|
|
// initialize Qt
|
|
|
|
MultiMC app(argc, argv);
|
|
|
|
|
|
|
|
switch (app.status())
|
|
|
|
{
|
2017-01-06 10:38:45 +05:30
|
|
|
case MultiMC::StartingUp:
|
2013-12-02 15:39:56 +05:30
|
|
|
case MultiMC::Initialized:
|
2016-11-07 02:28:54 +05:30
|
|
|
{
|
|
|
|
Q_INIT_RESOURCE(multimc);
|
|
|
|
Q_INIT_RESOURCE(backgrounds);
|
|
|
|
|
|
|
|
Q_INIT_RESOURCE(pe_dark);
|
|
|
|
Q_INIT_RESOURCE(pe_light);
|
|
|
|
Q_INIT_RESOURCE(pe_blue);
|
|
|
|
Q_INIT_RESOURCE(pe_colored);
|
|
|
|
Q_INIT_RESOURCE(OSX);
|
|
|
|
Q_INIT_RESOURCE(iOS);
|
2017-12-04 02:22:40 +05:30
|
|
|
Q_INIT_RESOURCE(flat);
|
2016-10-30 07:07:38 +05:30
|
|
|
return app.exec();
|
2016-11-07 02:28:54 +05:30
|
|
|
}
|
2013-12-02 15:39:56 +05:30
|
|
|
case MultiMC::Failed:
|
|
|
|
return 1;
|
|
|
|
case MultiMC::Succeeded:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|