]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - incl/rrtbase.h
Merge branch 'feature/compile-macros'
[hubacji1/iamcar.git] / incl / rrtbase.h
1 /*
2 This file is part of I am car.
3
4 I am car is free 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 #ifndef RRTBASE_H
19 #define RRTBASE_H
20
21 #include <chrono>
22 #include <cmath>
23 #include <vector>
24 #include "obstacle.h"
25 #include "rrtnode.h"
26
27 class RRTBase {
28         private:
29                 RRTNode *root_ = nullptr;
30                 RRTNode *goal_ = nullptr;
31
32                 std::vector<RRTNode *> nodes_;
33                 std::vector<RRTNode *> samples_;
34                 std::vector<CircleObstacle> *cobstacles_;
35                 std::vector<SegmentObstacle> *sobstacles_;
36
37                 bool goal_found_ = false;
38                 std::chrono::high_resolution_clock::time_point tstart_;
39                 std::chrono::high_resolution_clock::time_point tend_;
40
41                 std::vector<float> clog_; // costs of trajectories
42                 std::vector<std::vector<RRTNode *>> tlog_; // trajectories
43         public:
44                 const float GOAL_FOUND_DISTANCE = 1;
45                 const float GOAL_FOUND_ANGLE = 2 * M_PI;
46
47                 RRTBase();
48                 RRTBase(RRTNode *init, RRTNode *goal);
49
50                 // getter
51                 RRTNode *root();
52                 RRTNode *goal();
53                 std::vector<RRTNode *> &nodes();
54                 std::vector<RRTNode *> &samples();
55                 std::vector<CircleObstacle> *cos();
56                 std::vector<SegmentObstacle> *sos();
57                 std::vector<float> &clog();
58                 std::vector<std::vector<RRTNode *>> &tlog();
59                 bool goal_found();
60                 float elapsed();
61
62                 // setter
63                 bool tlog(std::vector<RRTNode *> t);
64                 void tstart();
65                 void tend();
66                 bool link_obstacles(
67                                 std::vector<CircleObstacle> *cobstacles,
68                                 std::vector<SegmentObstacle> *sobstacles);
69
70                 // other
71                 bool goal_found(
72                                 RRTNode *node,
73                                 float (*cost)(RRTNode *, RRTNode *));
74                 bool collide(RRTNode *init, RRTNode *goal);
75                 std::vector<RRTNode *> findt();
76 };
77
78 #endif