-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.cpp
99 lines (80 loc) · 2.88 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
#include <QCoreApplication>
#include <QCommandLineParser>
#include <QStringList>
#include <QDebug>
#include <iostream>
using namespace std;
#include "battle.h"
int main(int argc, char *argv[])
{
QCoreApplication app(argc, argv);
QCoreApplication::setApplicationName("PD2 proj.1 battle server");
QCoreApplication::setApplicationVersion("v2.5");
QCommandLineParser parser;
parser.addPositionalArgument("<p1>", QCoreApplication::translate("main", "Specific p1 program location."));
parser.addPositionalArgument("<p2>", QCoreApplication::translate("main", "Specific p2 program location."));
QCommandLineOption showMap(QStringList() << "m" << "map",
QCoreApplication::translate("main", "Show map during game."));
parser.addOption(showMap);
QCommandLineOption echo(QStringList() << "e" << "echo",
QCoreApplication::translate("main", "Echo your command."));
parser.addOption(echo);
QCommandLineOption reg(QStringList() << "r" << "register",
QCoreApplication::translate("main", "Test card registering."));
parser.addOption(reg);
QCommandLineOption interact(QStringList() << "i" << "interact",
QCoreApplication::translate("main", "Test server interaction."));
parser.addOption(interact);
#ifndef DEBUGTOOL
QCommandLineOption p1_name(QStringList() << "1" << "p1",
QCoreApplication::translate("main", "Set player 1 name"),
QCoreApplication::translate("main", "player 1 name"));
parser.addOption(p1_name);
QCommandLineOption p2_name(QStringList() << "2" << "p2",
QCoreApplication::translate("main", "Set player 2 name"),
QCoreApplication::translate("main", "player 2 name"));
parser.addOption(p2_name);
#endif
parser.addHelpOption();
parser.addVersionOption();
parser.process(app);
const QStringList args = parser.positionalArguments();
Battle battle;
QObject::connect(&battle, SIGNAL(quit()), &app, SLOT(quit()));
if(args.size() < 1) {
cerr << parser.helpText().toStdString();
return 1;
}
else {
if(parser.isSet(showMap)) {
battle.setMapOutput();
}
if(parser.isSet(echo)) {
battle.setEchoOutput();
}
if(parser.isSet(reg)) {
battle.setTestRegister();
}
if(parser.isSet(interact)) {
battle.setTestInteract();
}
battle.setP1(args.at(0));
if(args.size() == 2) {
battle.setP2(args.at(1));
}
}
#ifndef DEBUGTOOL
QString name1, name2;
name1 = parser.value(p1_name);
name2 = parser.value(p2_name);
if(name1.isEmpty() || name2.isEmpty()) {
cerr << parser.helpText().toStdString();
return 0;
}
else {
battle.setP1Name(name1);
battle.setP2Name(name2);
}
#endif
return app.exec();
}