-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
103 lines (83 loc) · 2.37 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#include <QCoreApplication>
#include "fusioncli.h"
#include <QTextStream>
#include <QTimer>
#include <QtDebug>
#include <QFile>
#include <qapplication.h>
#include <stdio.h>
#include <stdlib.h>
#define DEBUG_TEST
#ifdef DEBUG_TEST
QTextStream *dbgStream;
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
void crashMessageOutput(QtMsgType type, const QMessageLogContext &, const QString & str)
{
QString s(str);
s = s.replace("\"", "-");
const char * msg = s.toStdString().c_str();
#else
void crashMessageOutput(QtMsgType type, const char *msg)
{
#endif
switch (type)
{
case QtDebugMsg:
*dbgStream << "Debug: " << str << "\n";
break;
case QtWarningMsg:
*dbgStream << "Warning: " << str << "\n";
break;
case QtCriticalMsg:
*dbgStream << "Critical: " << str << "\n";
break;
case QtFatalMsg:
*dbgStream << "Fatal: " << str << "\n";
abort();
}
}
#endif
int main(int argc, char *argv[])
{
#ifdef DEBUG_TEST
QFile dbgFile("./CLI_DBG.log");
if (dbgFile.open(QIODevice::WriteOnly|QIODevice::Append)) {
dbgStream = new QTextStream(&dbgFile);
}
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
qInstallMessageHandler(crashMessageOutput);
#else
qInstallMsgHandler(crashMessageOutput);
#endif
#endif
QCoreApplication a(argc, argv);
QTextStream qout(stdout);
QStringList args;
qDebug() << "Launching";
for(int i=0;i<argc;++i) {
args.append((argv[i]));
}
qDebug() << "Args " <<args;
if(argc<=1) {
qout << "Fusion Commandline-Interface" << endl <<endl;
qout << "Usage: fusioncli [options]" << endl;
qout << "--allGames | -g : Get all Games with all Info" << endl;
qout << "--refresh | -r : Refresh Infos from Database" << endl;
qout << "--launch [ID] | -l [ID]: Launch Game with ID" << endl;
qout << "--gameInfo [ID] | -i [ID]: Get info for Game-ID" << endl << endl;
QTimer::singleShot(10, &a, SLOT(quit()));
#ifdef DEBUG_TEST
dbgFile.close();
delete dbgStream;
#endif
} else {
FusionCLI cli;
cli.execute(argc, args);
QTimer::singleShot(10, &a, SLOT(quit()));
#ifdef DEBUG_TEST
dbgFile.close();
delete dbgStream;
#endif
}
return a.exec();
}