]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - base/main.cc
Use sampling info for setting up the sampling
[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 <chrono>
20 #include <cmath>
21 #include <cstdlib>
22 #include <iostream>
23 #include <jsoncpp/json/json.h>
24 #include <pthread.h>
25 #include <signal.h>
26 #include <unistd.h>
27 #include "compile.h"
28 #include "obstacle.h"
29 #include "rrtplanner.h"
30 #include "slotplanner.h"
31
32 #if USE_GL > 0
33 // OpenGL
34 #include <GL/gl.h>
35 #include <GL/glu.h>
36 #include <SDL2/SDL.h>
37 #endif
38
39 // debug
40 //#define JSONLOGEDGES
41 //#define JSONLOGSAMPLES
42
43 #if USE_GL > 0
44         #define USE_INTERRUPT
45 #else
46         // choose
47         //#define USE_INTERRUPT
48         // or
49         #define USE_TMAX
50         // or
51         //#define USE_LOADF
52         // or
53         //#define USE_PTHREAD
54 #endif
55
56 std::chrono::high_resolution_clock::time_point TSTART_;
57 std::chrono::high_resolution_clock::time_point TEND_;
58 float TELAPSED = 0;
59 float ELAPSED = 0;
60 void TSTART() {TSTART_ = std::chrono::high_resolution_clock::now();}
61 void TEND() {
62         std::chrono::duration<float> DT_;
63         TEND_ = std::chrono::high_resolution_clock::now();
64         DT_ = std::chrono::duration_cast<std::chrono::duration<float>>(
65                 TEND_ - TSTART_
66         );
67         TELAPSED += DT_.count();
68         ELAPSED = DT_.count();
69 }
70 void TPRINT(const char *what) {
71         std::chrono::duration<float> DT_;
72         DT_ = std::chrono::duration_cast<std::chrono::duration<float>>(
73                 TEND_ - TSTART_
74         );
75         std::cerr << what << ": " << DT_.count() << std::endl;
76 }
77
78 bool run_planner = true;
79
80 #if USE_GL > 0
81 SDL_Window* gw = NULL;
82 SDL_GLContext gc;
83
84 bool init();
85 bool initGL();
86 #endif
87
88 void hint(int)
89 {
90         run_planner = false;
91 }
92
93 #ifdef USE_PTHREAD
94 struct next_arg {
95         bool *gf;
96         T2 *p;
97 };
98
99 void *next_run(void *arg)
100 {
101         struct next_arg *na = (struct next_arg *) arg;
102         T2 *lp = (T2 *) na->p;
103         bool *gf = na->gf;
104         while (!*gf && lp->elapsed() < TMAX) {
105                 if (lp->next())
106                         *gf = true;
107                 lp->tend();
108         }
109         pthread_exit(NULL);
110         return NULL;
111 }
112 #endif
113
114 RRTNode *sa_tmp()
115 {
116         float new_x = 1 + static_cast<float>(rand()) /
117                 static_cast<float>(RAND_MAX / (6.6 - 1 - 1));
118         float new_y = 1;
119         float new_h = M_PI / 2;
120         return new RRTNode(new_x, new_y, new_h);
121 }
122
123 int main()
124 {
125         srand(static_cast<unsigned>(time(0)));
126 #if USE_GL > 0
127         init();
128 #endif
129
130         Json::Value jvi; // JSON input
131         Json::Value jvo; // JSON output
132         unsigned int i = 0;
133         unsigned int j = 0;
134         std::cin >> jvi;
135         std::string encoding = jvi.get("encoding", "UTF-8" ).asString();
136
137         PLANNER p(
138                         new RRTNode(
139                                 jvi["init"][0].asFloat(),
140                                 jvi["init"][1].asFloat(),
141                                 jvi["init"][2].asFloat()),
142                         new RRTNode(
143                                 jvi["goal"][0].asFloat(),
144                                 jvi["goal"][1].asFloat(),
145                                 jvi["goal"][2].asFloat()));
146         jvo["init"][0] = p.root()->x();
147         jvo["init"][1] = p.root()->y();
148         jvo["init"][2] = p.root()->h();
149         std::vector<CircleObstacle> co;
150         std::vector<SegmentObstacle> so;
151         for (auto o: jvi["obst"]) {
152                 if (o["circle"] != Json::nullValue) {
153                         co.push_back(CircleObstacle(
154                                                 o["circle"][0].asFloat(),
155                                                 o["circle"][1].asFloat(),
156                                                 o["circle"][2].asFloat()));
157                 }
158                 if (o["segment"] != Json::nullValue) {
159                         so.push_back(SegmentObstacle(
160                                 new RRTNode(
161                                         o["segment"][0][0].asFloat(),
162                                         o["segment"][0][1].asFloat(),
163                                         0),
164                                 new RRTNode(
165                                         o["segment"][1][0].asFloat(),
166                                         o["segment"][1][1].asFloat(),
167                                         0)));
168                         p.frame().add_bnode(so.back().init());
169                 }
170         }
171         p.link_obstacles(&co, &so);
172         p.ocost(p.root());
173         p.ocost(p.goal());
174
175         ParallelSlot ps = ParallelSlot();
176         if (
177                 jvi["slot"] != Json::nullValue &&
178                 jvi["slot"]["polygon"] != Json::nullValue
179         ) {
180                 for (auto xy: jvi["slot"]["polygon"]) {
181                         ps.slot().add_bnode(new RRTNode(
182                                 xy[0].asFloat(),
183                                 xy[1].asFloat()
184                         ));
185                 }
186                 for (auto e: ps.slot().frame())
187                         so.push_back(SegmentObstacle(e->init(), e->goal()));
188         }
189 #ifdef USE_SLOTPLANNER
190         TSTART();
191         if (ps.slot().bnodes().size() > 0)
192                 ps.fip(co, so);
193         TEND();
194         jvo["ppse"] = ELAPSED;
195         TPRINT("ParallelSlot");
196 #endif
197         if (ps.slot().bnodes().size() > 0) {
198                 ps.setAll();
199                 //p.setSamplingInfo(ps.getSamplingInfo());
200         }
201         if (ps.cusp().size() > 0) {
202                 p.goal(ps.getMidd());
203                 p.slot_cusp(ps.cusp().front()); // use first found solution
204                 p.goals(ps.goals());
205                 jvo["midd"][0] = p.goal()->x();
206                 jvo["midd"][1] = p.goal()->y();
207                 jvo["midd"][2] = p.goal()->h();
208                 jvo["goal"][0] = p.slot_cusp().back()->x();
209                 jvo["goal"][1] = p.slot_cusp().back()->y();
210                 jvo["goal"][2] = p.slot_cusp().back()->h();
211         } else {
212                 jvo["goal"][0] = p.goal()->x();
213                 jvo["goal"][1] = p.goal()->y();
214                 jvo["goal"][2] = p.goal()->h();
215         }
216         TSTART();
217         std::cerr << "Slot Info:" << std::endl;
218         if (ps.slotSide() == LEFT)
219                 std::cerr << "- LEFT" << std::endl;
220         else
221                 std::cerr << "- RIGHT" << std::endl;
222         if (ps.slotType() == PARALLEL)
223                 std::cerr << "- PARALLEL" << std::endl;
224         else
225                 std::cerr << "- PERPENDICULAR" << std::endl;
226 #ifdef USE_LOADF
227         std::vector<RRTNode *> steered;
228         for (auto jn: jvi["traj"][0]) {
229                 steered.push_back(new RRTNode(
230                                         jn[0].asFloat(),
231                                         jn[1].asFloat(),
232                                         jn[2].asFloat(),
233                                         jn[3].asFloat(),
234                                         jn[4].asFloat()));
235         }
236         std::reverse(steered.begin(), steered.end());
237         RRTNode *pn = p.root();
238         for (auto n: steered) {
239                 if (IS_NEAR(pn, n))
240                         continue;
241                 pn->add_child(n, p.cost(pn, n));
242                 pn = n;
243                 p.glplot();
244         }
245         pn->add_child(p.goal(), p.cost(pn, p.goal()));
246         p.goal_found(true);
247         p.tlog(p.findt());
248         if (p.opt_path()) {
249                 p.tlog(p.findt());
250                 p.glplot();
251         }
252         p.glplot();
253         sleep(2);
254 #elif defined USE_INTERRUPT
255         signal(SIGINT, hint);
256         signal(SIGTERM, hint);
257         p.tstart();
258         while (run_planner) {
259                 p.next();
260                 p.tend();
261                 if (p.opt_path())
262                         p.tlog(p.findt());
263                 p.glplot();
264         }
265 #elif defined USE_TMAX
266         p.tstart();
267         p.tend();
268         while (!p.goal_found() && p.elapsed() < TMAX) {
269                 p.next();
270                 p.tend();
271                 if (p.opt_path()) {
272                         p.tlog(p.findt());
273                 }
274         }
275 #elif defined USE_PTHREAD
276         bool gf = false;
277         RRTNode *ron = nullptr;
278         RRTNode *gon = nullptr;
279         float mc = 9999;
280         pthread_t rt; // root thread
281         pthread_t gt; // goal thread
282         pthread_t ct; // connect thread
283
284         struct next_arg ra;
285         ra.gf = &gf;
286         ra.p = &p.p_root_;
287
288         struct next_arg ga;
289         ga.gf = &gf;
290         ga.p = &p.p_goal_;
291
292         p.tstart();
293         p.p_root_.tstart();
294         p.p_goal_.tstart();
295         pthread_create(&rt, NULL, &next_run, (void *) &ra);
296         pthread_create(&gt, NULL, &next_run, (void *) &ga);
297         int tol = 0;
298         int ndl = 0;
299         bool ndone = true;
300         while (!gf && p.elapsed() < TMAX &&
301                         p.p_root_.nodes().size() < NOFNODES &&
302                         p.p_goal_.nodes().size() < NOFNODES) {
303                 // overlap trees
304                 ndone = true;
305                 for (int i = 0; i < IXSIZE; i++) {
306                 for (int j = 0; j < IYSIZE; j++) {
307                         if (p.p_root_.ixy_[i][j].changed() &&
308                                         p.p_goal_.ixy_[i][j].changed()) {
309 ndone = false;
310 for (auto rn: p.p_root_.ixy_[i][j].nodes()) {
311 for (auto gn: p.p_goal_.ixy_[i][j].nodes()) {
312         if (rn->ccost() + gn->ccost() < mc &&
313                         IS_NEAR(rn, gn)) {
314                 gf = true;
315                 p.goal_found(true);
316                 ron = rn;
317                 gon = gn;
318                 mc = rn->ccost() + gn->ccost();
319         }
320 }}
321                         }
322                         tol++;
323                         if (ndone)
324                                 ndl++;
325                         p.tend();
326                         if (p.elapsed() >= TMAX)
327                                 goto escapeloop;
328                 }}
329                 // end of overlap trees
330                 p.tend();
331         }
332 escapeloop:
333         pthread_join(rt, NULL);
334         pthread_join(gt, NULL);
335         float nodo = ((float) ndl / (float) tol);
336         std::cerr << "nothing done is " << 100.0 * nodo;
337         std::cerr << "%" << std::endl;
338         //std::cerr << "rgf is " << p.p_root_.goal_found() << std::endl;
339         //std::cerr << "ggf is " << p.p_goal_.goal_found() << std::endl;
340         //std::cerr << "cgf is " << p.goal_found() << std::endl;
341         if (p.p_root_.goal_found() && p.p_root_.goal()->ccost() < mc) {
342                 ron = p.p_root_.goal()->parent();
343                 gon = p.p_root_.goal();
344                 mc = p.p_root_.goal()->ccost();
345         }
346         if (p.p_goal_.goal_found() && p.p_goal_.goal()->ccost() < mc) {
347                 ron = p.p_goal_.goal();
348                 gon = p.p_goal_.goal()->parent();
349                 mc = p.p_goal_.goal()->ccost();
350         }
351         p.root()->remove_parent();  // needed if p.p_goal_.goal_found()
352         p.root()->ccost(0);
353         p.goal()->children().clear();
354         // connect trees
355         if (gf) {
356         while (gon != p.goal()) {
357                 p.p_root_.nodes().push_back(new RRTNode(
358                                 gon->x(),
359                                 gon->y(),
360                                 gon->h()));
361                 ron->add_child(
362                                 p.p_root_.nodes().back(),
363                                 p.p_root_.cost(
364                                                 ron,
365                                                 p.p_root_.nodes().back()));
366                 ron = p.p_root_.nodes().back();
367                 gon = gon->parent();
368         }
369         ron->add_child(p.goal(), p.p_root_.cost(ron, p.goal()));
370         }
371         // end of connect trees
372         if (gf)
373                 p.tlog(p.findt());
374         if (p.opt_path())
375                 p.tlog(p.findt());
376 #endif
377         TEND();
378         TPRINT("RRT");
379         jvo["rrte"] = ELAPSED;
380 #ifdef JSONLOGEDGES
381         p.logr(p.root());
382 #endif
383
384         // statistics to error output
385         std::cerr << "TELAPSED is " << TELAPSED << std::endl;
386         std::cerr << "Elapsed is " << p.elapsed() << std::endl;
387         std::cerr << "Goal found is " << p.goal_found() << std::endl;
388         std::cerr << "#nodes is " << p.nodes().size() << std::endl;
389         std::cerr << "#samples is " << p.samples().size() << std::endl;
390         std::cerr << "`tlog` size is " << p.tlog().size() << std::endl;
391         std::cerr << "trajectories costs:" << std::endl;
392         for (j = 0; j < p.clog().size(); j++)
393                 std::cerr << "- " << p.clog()[j] << std::endl;
394         std::cerr << "RRT #nodes:" << std::endl;
395         for (j = 0; j < p.nlog().size(); j++)
396                 std::cerr << "- " << p.nlog()[j] << std::endl;
397         std::cerr << "trajectories seconds:" << std::endl;
398         for (j = 0; j < p.slog().size(); j++)
399                 std::cerr << "- " << p.slog()[j] << std::endl;
400         std::cerr << "RRT edges (from root) log size: " << p.rlog().size();
401         std::cerr << std::endl;
402         for (auto edges: p.rlog())
403                 std::cerr << "- " << edges.size() << std::endl;
404
405         // JSON output
406         jvo["elap"] = TELAPSED;
407 #ifdef USE_PTHREAD
408         jvo["nodo"][0] = nodo;
409 #endif
410         // log cost
411         for (j = 0; j < p.clog().size(); j++)
412                 jvo["cost"][j] = p.clog()[j];
413         // log #nodes
414         for (j = 0; j < p.nlog().size(); j++)
415                 jvo["node"][j] = p.nlog()[j];
416         // log seconds
417         for (j = 0; j < p.slog().size(); j++)
418                 jvo["secs"][j] = p.slog()[j];
419         // log traj
420         i = 0;
421         j = 0;
422         for (auto traj: p.tlog()) {
423                 i = 0;
424                 for (auto n: traj) {
425                         jvo["traj"][j][i][0] = n->x();
426                         jvo["traj"][j][i][1] = n->y();
427                         jvo["traj"][j][i][2] = n->h();
428                         jvo["traj"][j][i][3] = n->t();
429                         jvo["traj"][j][i][4] = n->s();
430                         i++;
431                 }
432                 j++;
433         }
434 #ifdef JSONLOGEDGES
435         i = 0;
436         j = 0;
437         for (auto edges: p.rlog()) {
438                 j = 0;
439                 for (auto e: edges) {
440                         jvo["edge"][i][j][0][0] = e->init()->x();
441                         jvo["edge"][i][j][0][1] = e->init()->y();
442                         jvo["edge"][i][j][0][2] = e->init()->h();
443                         jvo["edge"][i][j][1][0] = e->goal()->x();
444                         jvo["edge"][i][j][1][1] = e->goal()->y();
445                         jvo["edge"][i][j][1][2] = e->goal()->h();
446                         j++;
447                 }
448                 i++;
449         }
450 #endif
451 #ifdef JSONLOGSAMPLES
452         i = 0;
453         j = 0;
454         for (auto s: p.samples()) {
455                 jvo["samp"][j][0] = s->x();
456                 jvo["samp"][j][1] = s->y();
457                 jvo["samp"][j][2] = s->h();
458                 j++;
459         }
460 #endif
461         // print output
462         std::cout << jvo << std::endl;
463
464 #if USE_GL > 0
465         SDL_DestroyWindow(gw);
466         SDL_Quit();
467 #endif
468
469         // free mem
470         for (auto o: so) {
471                 delete o.init();
472                 delete o.goal();
473         }
474         return 0;
475 }
476
477 #if USE_GL > 0
478 bool init()
479 {
480         if (SDL_Init(SDL_INIT_VIDEO) < 0) {
481                 std::cerr << "SDL could not initialize! SDL_Error: ";
482                 std::cerr << SDL_GetError();
483                 std::cerr << std::endl;
484                 return false;
485         }
486         SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);
487         SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1);
488         gw = SDL_CreateWindow(
489                         "I am car",
490                         SDL_WINDOWPOS_UNDEFINED,
491                         SDL_WINDOWPOS_UNDEFINED,
492                         SCREEN_WIDTH,
493                         SCREEN_HEIGHT,
494                         SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN);
495         if (gw == NULL) {
496                 std::cerr << "Window could not be created! SDL_Error: ";
497                 std::cerr << SDL_GetError();
498                 std::cerr << std::endl;
499                 return false;
500         }
501         gc = SDL_GL_CreateContext(gw);
502         if (gc == NULL) {
503                 std::cerr << "OpenGL context couldn't be created! SDL Error: ";
504                 std::cerr << SDL_GetError();
505                 std::cerr << std::endl;
506                 return false;
507         }
508         if (SDL_GL_SetSwapInterval(1) < 0) {
509                 std::cerr << "Warning: Unable to set VSync! SDL Error: ";
510                 std::cerr << SDL_GetError();
511                 std::cerr << std::endl;
512                 return false;
513         }
514         if (!initGL()) {
515                 std::cerr << "Unable to initialize OpenGL!";
516                 std::cerr << std::endl;
517                 return false;
518         }
519         return true;
520 }
521
522 bool initGL()
523 {
524         GLenum error = GL_NO_ERROR;
525         glMatrixMode(GL_PROJECTION);
526         glLoadIdentity();
527         error = glGetError();
528         if (error != GL_NO_ERROR) {
529                 std::cerr << "Error initializing OpenGL! ";
530                 std::cerr << gluErrorString(error);
531                 std::cerr << std::endl;
532                 return false;
533         }
534         glMatrixMode(GL_MODELVIEW);
535         glLoadIdentity();
536         error = glGetError();
537         if (error != GL_NO_ERROR) {
538                 std::cerr << "Error initializing OpenGL! ";
539                 std::cerr << gluErrorString(error);
540                 std::cerr << std::endl;
541                 return false;
542         }
543         glClearColor(1, 1, 1, 1);
544         error = glGetError();
545         if (error != GL_NO_ERROR) {
546                 std::cerr << "Error initializing OpenGL! ";
547                 std::cerr << gluErrorString(error);
548                 std::cerr << std::endl;
549                 return false;
550         }
551         return true;
552 }
553 #endif