2013-12-02 10:09:56 +00:00
|
|
|
#include "MultiMC.h"
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "MainWindow.h"
|
2015-09-29 23:11:00 +01:00
|
|
|
#include "LaunchInteraction.h"
|
|
|
|
#include <InstanceList.h>
|
|
|
|
#include <QDebug>
|
2013-12-02 10:09:56 +00:00
|
|
|
|
2015-09-29 23:11:00 +01:00
|
|
|
int launchMainWindow(MultiMC &app)
|
2013-12-02 10:09:56 +00:00
|
|
|
{
|
|
|
|
MainWindow mainWin;
|
|
|
|
mainWin.restoreState(QByteArray::fromBase64(MMC->settings()->get("MainWindowState").toByteArray()));
|
|
|
|
mainWin.restoreGeometry(QByteArray::fromBase64(MMC->settings()->get("MainWindowGeometry").toByteArray()));
|
|
|
|
mainWin.show();
|
|
|
|
mainWin.checkSetDefaultJava();
|
2014-07-27 14:50:03 +01:00
|
|
|
mainWin.checkInstancePathForProblems();
|
2014-01-05 12:17:42 +00:00
|
|
|
return app.exec();
|
2013-12-02 10:09:56 +00:00
|
|
|
}
|
2015-09-29 23:11:00 +01:00
|
|
|
|
|
|
|
int launchInstance(MultiMC &app, InstancePtr inst)
|
|
|
|
{
|
|
|
|
app.minecraftlist();
|
|
|
|
LaunchController launchController;
|
|
|
|
launchController.setInstance(inst);
|
|
|
|
launchController.setOnline(true);
|
|
|
|
launchController.launch();
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main_gui(MultiMC &app)
|
|
|
|
{
|
|
|
|
app.setIconTheme(MMC->settings()->get("IconTheme").toString());
|
|
|
|
// show main window
|
|
|
|
auto inst = app.instances()->getInstanceById(app.launchId);
|
|
|
|
if(inst)
|
|
|
|
{
|
|
|
|
return launchInstance(app, inst);
|
|
|
|
}
|
|
|
|
return launchMainWindow(app);
|
|
|
|
}
|
|
|
|
|
2013-12-02 10:09:56 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
// initialize Qt
|
|
|
|
MultiMC app(argc, argv);
|
|
|
|
|
2014-01-19 03:52:34 +00:00
|
|
|
Q_INIT_RESOURCE(instances);
|
|
|
|
Q_INIT_RESOURCE(multimc);
|
|
|
|
Q_INIT_RESOURCE(backgrounds);
|
2014-05-08 18:05:07 +01:00
|
|
|
Q_INIT_RESOURCE(versions);
|
2013-12-02 10:09:56 +00:00
|
|
|
|
2014-05-25 02:22:17 +01:00
|
|
|
Q_INIT_RESOURCE(pe_dark);
|
|
|
|
Q_INIT_RESOURCE(pe_light);
|
2014-10-26 22:44:20 +00:00
|
|
|
Q_INIT_RESOURCE(pe_blue);
|
|
|
|
Q_INIT_RESOURCE(pe_colored);
|
2014-10-26 23:15:52 +00:00
|
|
|
Q_INIT_RESOURCE(OSX);
|
|
|
|
Q_INIT_RESOURCE(iOS);
|
2014-05-09 23:33:32 +01:00
|
|
|
|
2013-12-02 10:09:56 +00:00
|
|
|
switch (app.status())
|
|
|
|
{
|
|
|
|
case MultiMC::Initialized:
|
|
|
|
return main_gui(app);
|
|
|
|
case MultiMC::Failed:
|
|
|
|
return 1;
|
|
|
|
case MultiMC::Succeeded:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|