1 | // created: 2012/04/18
|
---|
2 | // filename: main.cpp
|
---|
3 | //
|
---|
4 | // author: Guillaume Sanahuja
|
---|
5 | // Copyright Heudiasyc UMR UTC/CNRS 6599
|
---|
6 | //
|
---|
7 | // version: $Id: $
|
---|
8 | //
|
---|
9 | // purpose: main simulateur
|
---|
10 | //
|
---|
11 | //
|
---|
12 | /*********************************************************************/
|
---|
13 |
|
---|
14 | #include <tclap/CmdLine.h>
|
---|
15 | #include <Simulator.h>
|
---|
16 | #include <X4.h>
|
---|
17 | #include <X8.h>
|
---|
18 | #include <SimuImu.h>
|
---|
19 | #include <SimuGps.h>
|
---|
20 | #ifdef GL
|
---|
21 | #include <Parser.h>
|
---|
22 | #include <Man.h>
|
---|
23 | #include <SimuUsGL.h>
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | using namespace TCLAP;
|
---|
27 | using namespace std;
|
---|
28 | using namespace flair::simulator;
|
---|
29 | using namespace flair::sensor;
|
---|
30 |
|
---|
31 | int port;
|
---|
32 | int opti_time;
|
---|
33 | string xml_file;
|
---|
34 | string media_path;
|
---|
35 | string scene_file;
|
---|
36 | string type;
|
---|
37 | string name;
|
---|
38 | string address;
|
---|
39 |
|
---|
40 | void parseOptions(int argc, char** argv)
|
---|
41 | {
|
---|
42 | try {
|
---|
43 | CmdLine cmd("Command description message", ' ', "0.1");
|
---|
44 |
|
---|
45 | ValueArg<string> nameArg("n", "name", "uav name, also used for vrpn", true, "x4", "string");
|
---|
46 | cmd.add(nameArg);
|
---|
47 |
|
---|
48 | ValueArg<string> xmlArg("x", "xml", "xml file", true, "./reglages.xml", "string");
|
---|
49 | cmd.add(xmlArg);
|
---|
50 |
|
---|
51 | ValueArg<int> portArg("p", "port", "ground station port", true, 9002, "int");
|
---|
52 | cmd.add(portArg);
|
---|
53 |
|
---|
54 | ValueArg<string> addressArg("a", "address", "ground station address", true, "127.0.0.1", "string");
|
---|
55 | cmd.add(addressArg);
|
---|
56 |
|
---|
57 | ValueArg<string> typeArg("t", "type", "uav type, x4 or x8", true, "x4", "string");
|
---|
58 | cmd.add(typeArg);
|
---|
59 |
|
---|
60 | ValueArg<int> optiArg("o", "opti", "optitrack time ms", false, 0, "int");
|
---|
61 | cmd.add(optiArg);
|
---|
62 |
|
---|
63 | #ifdef GL
|
---|
64 | ValueArg<string> mediaArg("m", "media", "path to media files", true, "./", "string");
|
---|
65 | cmd.add(mediaArg);
|
---|
66 |
|
---|
67 | ValueArg<string> sceneArg("s", "scene", "path to scene file", true, "./voliere.xml", "string");
|
---|
68 | cmd.add(sceneArg);
|
---|
69 | #endif
|
---|
70 |
|
---|
71 | cmd.parse(argc, argv);
|
---|
72 |
|
---|
73 | // Get the value parsed by each arg.
|
---|
74 | port = portArg.getValue();
|
---|
75 | xml_file = xmlArg.getValue();
|
---|
76 | opti_time = optiArg.getValue();
|
---|
77 | type = typeArg.getValue();
|
---|
78 | name = nameArg.getValue();
|
---|
79 | address = addressArg.getValue();
|
---|
80 | #ifdef GL
|
---|
81 | media_path = mediaArg.getValue();
|
---|
82 | scene_file = sceneArg.getValue();
|
---|
83 | #endif
|
---|
84 |
|
---|
85 | } catch(ArgException& e) {
|
---|
86 | cerr << "error: " << e.error() << " for arg " << e.argId() << endl;
|
---|
87 | }
|
---|
88 | }
|
---|
89 |
|
---|
90 | int main(int argc, char* argv[])
|
---|
91 | {
|
---|
92 | Simulator* simu;
|
---|
93 | Model* drone;
|
---|
94 | SimuImu* imu;
|
---|
95 | SimuGps* gps;
|
---|
96 | #ifdef GL
|
---|
97 | SimuUsGL* us_gl;
|
---|
98 | Parser* gui;
|
---|
99 | #endif
|
---|
100 | parseOptions(argc, argv);
|
---|
101 |
|
---|
102 | simu = new Simulator("simulator", opti_time, 0);
|
---|
103 | simu->SetupConnection(address, port);
|
---|
104 | simu->SetupUserInterface(xml_file);
|
---|
105 |
|
---|
106 | #ifdef GL
|
---|
107 | gui = new Parser(1024, 768, 1024, 768, media_path, scene_file);
|
---|
108 | #endif
|
---|
109 |
|
---|
110 | if(type == "x4") {
|
---|
111 | drone = new X4(name, 0);
|
---|
112 | } else {
|
---|
113 | drone = new X8(name, 0);
|
---|
114 | }
|
---|
115 |
|
---|
116 | imu = new SimuImu(drone, "imu", 0,0);
|
---|
117 |
|
---|
118 | #ifdef GL
|
---|
119 | us_gl = new SimuUsGL(drone, "us", 0,0);
|
---|
120 | #endif
|
---|
121 | gps = new SimuGps(drone, "gps", 0,0);
|
---|
122 |
|
---|
123 | simu->RunSimu();
|
---|
124 |
|
---|
125 | delete simu;
|
---|
126 |
|
---|
127 | return 0;
|
---|
128 | }
|
---|