source: flair-src/trunk/demos/Gps/simulator/src/main.cpp@ 224

Last change on this file since 224 was 158, checked in by Sanahuja Guillaume, 7 years ago

corrected simu/device id for sensors

File size: 2.8 KB
RevLine 
[89]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
26using namespace TCLAP;
27using namespace std;
28using namespace flair::simulator;
29using namespace flair::sensor;
30
31int port;
32int opti_time;
33string xml_file;
34string media_path;
35string scene_file;
36string type;
37string name;
38string address;
39
[158]40void parseOptions(int argc, char** argv)
41{
42 try {
43 CmdLine cmd("Command description message", ' ', "0.1");
[89]44
[158]45 ValueArg<string> nameArg("n", "name", "uav name, also used for vrpn", true, "x4", "string");
46 cmd.add(nameArg);
[89]47
[158]48 ValueArg<string> xmlArg("x", "xml", "xml file", true, "./reglages.xml", "string");
49 cmd.add(xmlArg);
[89]50
[158]51 ValueArg<int> portArg("p", "port", "ground station port", true, 9002, "int");
52 cmd.add(portArg);
[89]53
[158]54 ValueArg<string> addressArg("a", "address", "ground station address", true, "127.0.0.1", "string");
55 cmd.add(addressArg);
[89]56
[158]57 ValueArg<string> typeArg("t", "type", "uav type, x4 or x8", true, "x4", "string");
58 cmd.add(typeArg);
[89]59
[158]60 ValueArg<int> optiArg("o", "opti", "optitrack time ms", false, 0, "int");
61 cmd.add(optiArg);
[89]62
63#ifdef GL
[158]64 ValueArg<string> mediaArg("m", "media", "path to media files", true, "./", "string");
65 cmd.add(mediaArg);
[89]66
[158]67 ValueArg<string> sceneArg("s", "scene", "path to scene file", true, "./voliere.xml", "string");
68 cmd.add(sceneArg);
[89]69#endif
70
[158]71 cmd.parse(argc, argv);
[89]72
[158]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();
[89]80#ifdef GL
[158]81 media_path = mediaArg.getValue();
82 scene_file = sceneArg.getValue();
[89]83#endif
84
[158]85 } catch(ArgException& e) {
86 cerr << "error: " << e.error() << " for arg " << e.argId() << endl;
87 }
[89]88}
89
[158]90int main(int argc, char* argv[])
91{
92 Simulator* simu;
93 Model* drone;
94 SimuImu* imu;
95 SimuGps* gps;
[89]96#ifdef GL
[158]97 SimuUsGL* us_gl;
98 Parser* gui;
[89]99#endif
[158]100 parseOptions(argc, argv);
[89]101
[158]102 simu = new Simulator("simulator", opti_time, 0);
103 simu->SetupConnection(address, port);
104 simu->SetupUserInterface(xml_file);
[89]105
106#ifdef GL
[158]107 gui = new Parser(1024, 768, 1024, 768, media_path, scene_file);
[89]108#endif
109
[158]110 if(type == "x4") {
111 drone = new X4(name, 0);
112 } else {
113 drone = new X8(name, 0);
114 }
[89]115
[158]116 imu = new SimuImu(drone, "imu", 0,0);
[89]117
118#ifdef GL
[158]119 us_gl = new SimuUsGL(drone, "us", 0,0);
[89]120#endif
[158]121 gps = new SimuGps(drone, "gps", 0,0);
[89]122
[158]123 simu->RunSimu();
[89]124
[158]125 delete simu;
[89]126
[158]127 return 0;
[89]128}
Note: See TracBrowser for help on using the repository browser.