]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - base/main.cc
Set planner iterations to fixed time limit
[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 <iostream>
19 #include <jsoncpp/json/json.h>
20 #include "compile.h"
21 #include "obstacle.h"
22 #include "rrtplanner.h"
23
24 int main()
25 {
26         Json::Value jvi; // JSON input
27         Json::Value jvo; // JSON output
28         unsigned int i = 0;
29         unsigned int j = 0;
30         std::cin >> jvi;
31         std::string encoding = jvi.get("encoding", "UTF-8" ).asString();
32
33         PLANNER p(
34                         new RRTNode(
35                                 jvi["init"][0].asFloat(),
36                                 jvi["init"][1].asFloat(),
37                                 jvi["init"][2].asFloat()),
38                         new RRTNode(
39                                 jvi["goal"][0].asFloat(),
40                                 jvi["goal"][1].asFloat(),
41                                 jvi["goal"][2].asFloat()));
42         std::vector<CircleObstacle> co;
43         std::vector<SegmentObstacle> so;
44         for (auto o: jvi["obst"]) {
45                 if (o["circle"] != Json::nullValue) {
46                         co.push_back(CircleObstacle(
47                                                 o["circle"][0].asFloat(),
48                                                 o["circle"][1].asFloat(),
49                                                 o["circle"][2].asFloat()));
50                 }
51                 if (o["segment"] != Json::nullValue) {
52                         so.push_back(SegmentObstacle(
53                                 new RRTNode(
54                                         o["segment"][0][0].asFloat(),
55                                         o["segment"][0][1].asFloat(),
56                                         0),
57                                 new RRTNode(
58                                         o["segment"][1][0].asFloat(),
59                                         o["segment"][1][1].asFloat(),
60                                         0)));
61                 }
62         }
63         p.link_obstacles(&co, &so);
64
65         p.tstart();
66         while (p.elapsed() < TMAX) {
67                 p.next();
68                 p.tend();
69         }
70
71         std::cerr << "Elapsed is " << p.elapsed() << std::endl;
72         std::cerr << "Goal found is " << p.goal_found() << std::endl;
73         std::cerr << "#nodes is " << p.nodes().size() << std::endl;
74         std::cerr << "#samples is " << p.samples().size() << std::endl;
75         std::cerr << "`tlog` size is " << p.tlog().size() << std::endl;
76         std::cerr << "trajectories costs:" << std::endl;
77         for (j = 0; j < p.clog().size(); j++)
78                 std::cerr << "- " << p.clog()[j] << std::endl;
79         std::cerr << "RRT #nodes:" << std::endl;
80         for (j = 0; j < p.nlog().size(); j++)
81                 std::cerr << "- " << p.nlog()[j] << std::endl;
82         std::cerr << "trajectories seconds:" << std::endl;
83         for (j = 0; j < p.slog().size(); j++)
84                 std::cerr << "- " << p.slog()[j] << std::endl;
85
86         // JSON output
87         jvo["elap"] = p.elapsed();
88         // log cost
89         for (j = 0; j < p.clog().size(); j++)
90                 jvo["cost"][j] = p.clog()[j];
91         // log #nodes
92         for (j = 0; j < p.nlog().size(); j++)
93                 jvo["node"][j] = p.nlog()[j];
94         // log seconds
95         for (j = 0; j < p.slog().size(); j++)
96                 jvo["secs"][j] = p.slog()[j];
97         // log traj
98         i = 0;
99         j = 0;
100         for (auto traj: p.tlog()) {
101                 i = 0;
102                 for (auto n: traj) {
103                         jvo["traj"][j][i][0] = n->x();
104                         jvo["traj"][j][i][1] = n->y();
105                         jvo["traj"][j][i][2] = n->h();
106                         i++;
107                 }
108                 j++;
109         }
110 #if JSONLOGEDGES > 0
111         // log edges
112         i = 0;
113         j = 0;
114         std::vector<RRTNode *> s; // DFS stack
115         std::vector<RRTNode *> r; // reset visited_
116         RRTNode *tmp;
117         s.push_back(p.root());
118         while(s.size() > 0) {
119                 tmp = s.back();
120                 s.pop_back();
121                 if (!tmp->visit()) {
122                         r.push_back(tmp);
123                         for (auto ch: tmp->children()) {
124                                 s.push_back(ch);
125                                 jvo["edge"][j][0][0] = tmp->x();
126                                 jvo["edge"][j][0][1] = tmp->y();
127                                 jvo["edge"][j][1][0] = ch->x();
128                                 jvo["edge"][j][1][1] = ch->y();
129                                 j++;
130                         }
131                 }
132         }
133         for (auto n: r)
134                 n->visit(false);
135 #endif
136 #if JSONLOGSAMPLES > 0
137         // log samples
138         i = 0;
139         j = 0;
140         for (auto s: p.samples()) {
141                 jvo["samp"][j][0] = s->x();
142                 jvo["samp"][j][1] = s->y();
143                 jvo["samp"][j][2] = s->h();
144                 j++;
145         }
146 #endif
147         // print output
148         std::cout << jvo << std::endl;
149
150         // free mem
151         for (auto o: so) {
152                 delete o.init();
153                 delete o.goal();
154         }
155         for (auto n: p.nodes())
156                 if (n != p.root())
157                         delete n;
158         for (auto s: p.samples())
159                 if (s != p.goal())
160                         delete s;
161         delete p.root();
162         delete p.goal();
163         return 0;
164 }