2021-10-13 00:59:25 +01:00
|
|
|
#include "Launcher.h"
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "MainWindow.h"
|
2016-08-10 23:44:01 +01:00
|
|
|
#include "LaunchController.h"
|
2015-09-29 23:11:00 +01:00
|
|
|
#include <InstanceList.h>
|
|
|
|
#include <QDebug>
|
2013-12-02 10:09:56 +00:00
|
|
|
|
2016-11-18 15:04:08 +00:00
|
|
|
// #define BREAK_INFINITE_LOOP
|
|
|
|
// #define BREAK_EXCEPTION
|
|
|
|
// #define BREAK_RETURN
|
|
|
|
|
|
|
|
#ifdef BREAK_INFINITE_LOOP
|
|
|
|
#include <thread>
|
|
|
|
#include <chrono>
|
|
|
|
#endif
|
|
|
|
|
2013-12-02 10:09:56 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2016-11-18 15:04:08 +00:00
|
|
|
#ifdef BREAK_INFINITE_LOOP
|
2018-07-15 13:51:05 +01:00
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(250));
|
|
|
|
}
|
2016-11-18 15:04:08 +00:00
|
|
|
#endif
|
|
|
|
#ifdef BREAK_EXCEPTION
|
2018-07-15 13:51:05 +01:00
|
|
|
throw 42;
|
2016-11-18 15:04:08 +00:00
|
|
|
#endif
|
|
|
|
#ifdef BREAK_RETURN
|
2018-07-15 13:51:05 +01:00
|
|
|
return 42;
|
2016-11-18 15:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-26 21:17:27 +01:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
|
2021-03-28 18:46:01 +01:00
|
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
2019-07-21 20:12:05 +01:00
|
|
|
QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
2017-04-26 21:17:27 +01:00
|
|
|
#endif
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// initialize Qt
|
2021-10-13 00:59:25 +01:00
|
|
|
Launcher app(argc, argv);
|
2013-12-02 10:09:56 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
switch (app.status())
|
|
|
|
{
|
2021-10-13 00:59:25 +01:00
|
|
|
case Launcher::StartingUp:
|
|
|
|
case Launcher::Initialized:
|
2018-07-15 13:51:05 +01:00
|
|
|
{
|
|
|
|
Q_INIT_RESOURCE(multimc);
|
|
|
|
Q_INIT_RESOURCE(backgrounds);
|
2021-10-17 23:47:02 +01:00
|
|
|
Q_INIT_RESOURCE(documents);
|
|
|
|
Q_INIT_RESOURCE(logo);
|
2016-11-06 20:58:54 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
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);
|
|
|
|
Q_INIT_RESOURCE(flat);
|
|
|
|
return app.exec();
|
|
|
|
}
|
2021-10-13 00:59:25 +01:00
|
|
|
case Launcher::Failed:
|
2018-07-15 13:51:05 +01:00
|
|
|
return 1;
|
2021-10-13 00:59:25 +01:00
|
|
|
case Launcher::Succeeded:
|
2018-07-15 13:51:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2013-12-02 10:09:56 +00:00
|
|
|
}
|