]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - base/main.cc
Stop when nodes().size() overflow
[hubacji1/iamcar.git] / base / main.cc
1 /*
2 This file is part of I am car.
3
4 I am car is nree software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 I am car is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with I am car. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #include <algorithm>
19 #include <iostream>
20 #include <jsoncpp/json/json.h>
21 #include <pthread.h>
22 #include <signal.h>
23 #include <unistd.h>
24 #include "compile.h"
25 #include "obstacle.h"
26 #include "rrtplanner.h"
27 // OpenGL
28 #include <GL/gl.h>
29 #include <GL/glu.h>
30 #include <SDL2/SDL.h>
31
32 // debug
33 //#define JSONLOGEDGES
34 //#define JSONLOGSAMPLES
35
36 // choose
37 //#define USE_INTERRUPT
38 // or
39 //#define USE_TMAX
40 // or
41 //#define USE_LOADF
42 // or
43 #define USE_PTHREAD
44
45 #ifdef USE_INTERRUPT
46         #define USE_GL
47 #endif
48
49 bool run_planner = true;
50
51 SDL_Window* gw = NULL;
52 SDL_GLContext gc;
53
54 bool init();
55 bool initGL();
56
57 void hint(int)
58 {
59         run_planner = false;
60 }
61
62 #ifdef USE_PTHREAD
63 struct next_arg {
64         bool *gf;
65         T2 *p;
66 };
67
68 void *next_run(void *arg)
69 {
70         struct next_arg *na = (struct next_arg *) arg;
71         T2 *lp = (T2 *) na->p;
72         bool *gf = na->gf;
73         while (!*gf && lp->elapsed() < TMAX) {
74                 if (lp->next())
75                         *gf = true;
76                 lp->tend();
77         }
78         pthread_exit(NULL);
79         return NULL;
80 }
81 #endif
82
83 int main()
84 {
85 #ifdef USE_GL
86         init();
87 #endif
88
89         Json::Value jvi; // JSON input
90         Json::Value jvo; // JSON output
91         unsigned int i = 0;
92         unsigned int j = 0;
93         std::cin >> jvi;
94         std::string encoding = jvi.get("encoding", "UTF-8" ).asString();
95
96         PLANNER p(
97                         new RRTNode(
98                                 jvi["init"][0].asFloat(),
99                                 jvi["init"][1].asFloat(),
100                                 jvi["init"][2].asFloat()),
101                         new RRTNode(
102                                 jvi["goal"][0].asFloat(),
103                                 jvi["goal"][1].asFloat(),
104                                 jvi["goal"][2].asFloat()));
105         std::vector<CircleObstacle> co;
106         std::vector<SegmentObstacle> so;
107         for (auto o: jvi["obst"]) {
108                 if (o["circle"] != Json::nullValue) {
109                         co.push_back(CircleObstacle(
110                                                 o["circle"][0].asFloat(),
111                                                 o["circle"][1].asFloat(),
112                                                 o["circle"][2].asFloat()));
113                 }
114                 if (o["segment"] != Json::nullValue) {
115                         so.push_back(SegmentObstacle(
116                                 new RRTNode(
117                                         o["segment"][0][0].asFloat(),
118                                         o["segment"][0][1].asFloat(),
119                                         0),
120                                 new RRTNode(
121                                         o["segment"][1][0].asFloat(),
122                                         o["segment"][1][1].asFloat(),
123                                         0)));
124                 }
125         }
126         p.link_obstacles(&co, &so);
127         p.ocost(p.root());
128         p.ocost(p.goal());
129
130 #ifdef USE_LOADF
131         std::vector<RRTNode *> steered;
132         for (auto jn: jvi["traj"][0]) {
133                 steered.push_back(new RRTNode(
134                                         jn[0].asFloat(),
135                                         jn[1].asFloat(),
136                                         jn[2].asFloat(),
137                                         jn[3].asFloat(),
138                                         jn[4].asFloat()));
139         }
140         std::reverse(steered.begin(), steered.end());
141         RRTNode *pn = p.root();
142         for (auto n: steered) {
143                 if (IS_NEAR(pn, n))
144                         continue;
145                 pn->add_child(n, p.cost(pn, n));
146                 pn = n;
147                 p.glplot();
148         }
149         pn->add_child(p.goal(), p.cost(pn, p.goal()));
150         p.goal_found(true);
151         p.tlog(p.findt());
152         if (p.opt_path()) {
153                 p.tlog(p.findt());
154                 p.glplot();
155         }
156         p.glplot();
157         sleep(2);
158 #elif defined USE_INTERRUPT
159         signal(SIGINT, hint);
160         signal(SIGTERM, hint);
161         p.tstart();
162         while (run_planner) {
163                 p.next();
164                 p.tend();
165                 if (p.opt_path())
166                         p.tlog(p.findt());
167                 p.glplot();
168         }
169 #elif defined USE_TMAX
170         p.tstart();
171         p.tend();
172         while (!p.goal_found() && p.elapsed() < TMAX) {
173                 p.next();
174                 p.tend();
175                 if (p.opt_path())
176                         p.tlog(p.findt());
177         }
178 #elif defined USE_PTHREAD
179         bool gf = false;
180         RRTNode *ron = nullptr;
181         RRTNode *gon = nullptr;
182         float mc = 9999;
183         pthread_t rt; // root thread
184         pthread_t gt; // goal thread
185         pthread_t ct; // connect thread
186
187         struct next_arg ra;
188         ra.gf = &gf;
189         ra.p = &p.p_root_;
190
191         struct next_arg ga;
192         ga.gf = &gf;
193         ga.p = &p.p_goal_;
194
195         p.tstart();
196         p.p_root_.tstart();
197         p.p_goal_.tstart();
198         pthread_create(&rt, NULL, &next_run, (void *) &ra);
199         pthread_create(&gt, NULL, &next_run, (void *) &ga);
200         while (!gf && p.elapsed() < TMAX &&
201                         p.p_root_.nodes().size() < NOFNODES &&
202                         p.p_goal_.nodes().size() < NOFNODES) {
203                 // overlap trees
204                 for (int i = 0; i < IXSIZE; i++) {
205                 for (int j = 0; j < IYSIZE; j++) {
206                         if (p.p_root_.ixy_[i][j].changed() &&
207                                         p.p_goal_.ixy_[i][j].changed()) {
208 for (auto rn: p.p_root_.ixy_[i][j].nodes()) {
209 for (auto gn: p.p_goal_.ixy_[i][j].nodes()) {
210         if (rn->ccost() + gn->ccost() < mc &&
211                         IS_NEAR(rn, gn)) {
212                 gf = true;
213                 p.goal_found(true);
214                 ron = rn;
215                 gon = gn;
216                 mc = rn->ccost() + gn->ccost();
217         }
218 }}
219                         }
220                 }}
221                 // end of overlap trees
222                 p.tend();
223         }
224         pthread_join(rt, NULL);
225         pthread_join(gt, NULL);
226         if (p.p_root_.goal_found() && p.p_root_.goal()->ccost() < mc) {
227                 ron = p.p_root_.goal()->parent();
228                 gon = p.p_root_.goal();
229                 mc = p.p_root_.goal()->ccost();
230         }
231         if (p.p_goal_.goal_found() && p.p_goal_.goal()->ccost() < mc) {
232                 ron = p.p_goal_.goal();
233                 gon = p.p_goal_.goal()->parent();
234                 mc = p.p_goal_.goal()->ccost();
235         }
236         // connect trees
237         while (gon != p.goal()) {
238                 p.p_root_.nodes().push_back(new RRTNode(
239                                 gon->x(),
240                                 gon->y(),
241                                 gon->h()));
242                 ron->add_child(
243                                 p.p_root_.nodes().back(),
244                                 p.p_root_.cost(
245                                                 ron,
246                                                 p.p_root_.nodes().back()));
247                 ron = p.p_root_.nodes().back();
248                 gon = gon->parent();
249         }
250         ron->add_child(p.goal(), p.p_root_.cost(ron, p.goal()));
251         // end of connect trees
252         p.root()->remove_parent();  // needed if p.p_goal_.goal_found()
253         if (gf)
254                 p.tlog(p.findt());
255         if (p.opt_path())
256                 p.tlog(p.findt());
257 #endif
258 #ifdef JSONLOGEDGES
259         p.logr(p.root());
260 #endif
261
262         // statistics to error output
263         std::cerr << "Elapsed is " << p.elapsed() << std::endl;
264         std::cerr << "Goal found is " << p.goal_found() << std::endl;
265         std::cerr << "#nodes is " << p.nodes().size() << std::endl;
266         std::cerr << "#samples is " << p.samples().size() << std::endl;
267         std::cerr << "`tlog` size is " << p.tlog().size() << std::endl;
268         std::cerr << "trajectories costs:" << std::endl;
269         for (j = 0; j < p.clog().size(); j++)
270                 std::cerr << "- " << p.clog()[j] << std::endl;
271         std::cerr << "RRT #nodes:" << std::endl;
272         for (j = 0; j < p.nlog().size(); j++)
273                 std::cerr << "- " << p.nlog()[j] << std::endl;
274         std::cerr << "trajectories seconds:" << std::endl;
275         for (j = 0; j < p.slog().size(); j++)
276                 std::cerr << "- " << p.slog()[j] << std::endl;
277         std::cerr << "RRT edges (from root) log size: " << p.rlog().size();
278         std::cerr << std::endl;
279         for (auto edges: p.rlog())
280                 std::cerr << "- " << edges.size() << std::endl;
281
282         // JSON output
283         jvo["elap"] = p.elapsed();
284         // log cost
285         for (j = 0; j < p.clog().size(); j++)
286                 jvo["cost"][j] = p.clog()[j];
287         // log #nodes
288         for (j = 0; j < p.nlog().size(); j++)
289                 jvo["node"][j] = p.nlog()[j];
290         // log seconds
291         for (j = 0; j < p.slog().size(); j++)
292                 jvo["secs"][j] = p.slog()[j];
293         // log traj
294         i = 0;
295         j = 0;
296         for (auto traj: p.tlog()) {
297                 i = 0;
298                 for (auto n: traj) {
299                         jvo["traj"][j][i][0] = n->x();
300                         jvo["traj"][j][i][1] = n->y();
301                         jvo["traj"][j][i][2] = n->h();
302                         jvo["traj"][j][i][3] = n->t();
303                         jvo["traj"][j][i][4] = n->s();
304                         i++;
305                 }
306                 j++;
307         }
308 #ifdef JSONLOGEDGES
309         i = 0;
310         j = 0;
311         for (auto edges: p.rlog()) {
312                 j = 0;
313                 for (auto e: edges) {
314                         jvo["edge"][i][j][0][0] = e->init()->x();
315                         jvo["edge"][i][j][0][1] = e->init()->y();
316                         jvo["edge"][i][j][0][2] = e->init()->h();
317                         jvo["edge"][i][j][1][0] = e->goal()->x();
318                         jvo["edge"][i][j][1][1] = e->goal()->y();
319                         jvo["edge"][i][j][1][2] = e->goal()->h();
320                         j++;
321                 }
322                 i++;
323         }
324 #endif
325 #ifdef JSONLOGSAMPLES
326         i = 0;
327         j = 0;
328         for (auto s: p.samples()) {
329                 jvo["samp"][j][0] = s->x();
330                 jvo["samp"][j][1] = s->y();
331                 jvo["samp"][j][2] = s->h();
332                 j++;
333         }
334 #endif
335         // print output
336         std::cout << jvo << std::endl;
337
338 #ifdef USE_GL
339         SDL_DestroyWindow(gw);
340         SDL_Quit();
341 #endif
342
343         // free mem
344         for (auto o: so) {
345                 delete o.init();
346                 delete o.goal();
347         }
348         return 0;
349 }
350
351 bool init()
352 {
353         if (SDL_Init(SDL_INIT_VIDEO) < 0) {
354                 std::cerr << "SDL could not initialize! SDL_Error: ";
355                 std::cerr << SDL_GetError();
356                 std::cerr << std::endl;
357                 return false;
358         }
359         SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);
360         SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1);
361         gw = SDL_CreateWindow(
362                         "I am car",
363                         SDL_WINDOWPOS_UNDEFINED,
364                         SDL_WINDOWPOS_UNDEFINED,
365                         SCREEN_WIDTH,
366                         SCREEN_HEIGHT,
367                         SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN);
368         if (gw == NULL) {
369                 std::cerr << "Window could not be created! SDL_Error: ";
370                 std::cerr << SDL_GetError();
371                 std::cerr << std::endl;
372                 return false;
373         }
374         gc = SDL_GL_CreateContext(gw);
375         if (gc == NULL) {
376                 std::cerr << "OpenGL context couldn't be created! SDL Error: ";
377                 std::cerr << SDL_GetError();
378                 std::cerr << std::endl;
379                 return false;
380         }
381         if (SDL_GL_SetSwapInterval(1) < 0) {
382                 std::cerr << "Warning: Unable to set VSync! SDL Error: ";
383                 std::cerr << SDL_GetError();
384                 std::cerr << std::endl;
385                 return false;
386         }
387         if (!initGL()) {
388                 std::cerr << "Unable to initialize OpenGL!";
389                 std::cerr << std::endl;
390                 return false;
391         }
392         return true;
393 }
394
395 bool initGL()
396 {
397         GLenum error = GL_NO_ERROR;
398         glMatrixMode(GL_PROJECTION);
399         glLoadIdentity();
400         error = glGetError();
401         if (error != GL_NO_ERROR) {
402                 std::cerr << "Error initializing OpenGL! ";
403                 std::cerr << gluErrorString(error);
404                 std::cerr << std::endl;
405                 return false;
406         }
407         glMatrixMode(GL_MODELVIEW);
408         glLoadIdentity();
409         error = glGetError();
410         if (error != GL_NO_ERROR) {
411                 std::cerr << "Error initializing OpenGL! ";
412                 std::cerr << gluErrorString(error);
413                 std::cerr << std::endl;
414                 return false;
415         }
416         glClearColor(1, 1, 1, 1);
417         error = glGetError();
418         if (error != GL_NO_ERROR) {
419                 std::cerr << "Error initializing OpenGL! ";
420                 std::cerr << gluErrorString(error);
421                 std::cerr << std::endl;
422                 return false;
423         }
424         return true;
425 }