]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - incl/slotplanner.h
c7b7dc23c67e62110efea56099c6651df9df8766
[hubacji1/iamcar.git] / incl / slotplanner.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 SLOTPLANNER_H
19 #define SLOTPLANNER_H
20
21 #include <vector>
22 #include "aux.h"
23 #include "bcar.h"
24 #include "obstacle.h"
25
26 enum SlotSide {
27         LEFT,
28         RIGHT
29 };
30
31 enum SlotType {
32         PARALLEL,
33         PERPENDICULAR
34 };
35
36 struct SamplingInfo {
37         float x;
38         float y;
39         float r; // max radi from [x, y] for random sample
40         float mr; // minimum r added to random r
41         float h; // max angle for random sample
42         float mh; // max angle for heading of random sample
43         float mmh; // minimum mh added to mh
44         float sh; // slot heading
45         float dh; // direction to compute random heading from slot heading
46 };
47
48 class ParallelSlot {
49         private:
50                 float DH_ = 0.01;
51                 std::vector<std::vector<RRTNode *>> cusp_;
52                 PolygonObstacle slot_;
53                 float slotHeading_;
54                 SlotSide slotSide_;
55                 SlotType slotType_;
56         public:
57                 ParallelSlot();
58
59                 // getter
60                 std::vector<std::vector<RRTNode *>> &cusp();
61                 float DH() const;
62                 PolygonObstacle &slot();
63                 float slotHeading();
64                 SlotSide slotSide();
65                 SlotType slotType();
66
67                 // setter
68                 void DH(float dh);
69                 void setAll();
70
71                 // other
72                 /** BFS to _Find Init Pose_. */
73                 void fip(
74                         std::vector<CircleObstacle>& co,
75                         std::vector<SegmentObstacle>& so
76                 );
77                 /** _Find Last Not Colliding_ BicycleCar pose
78
79                 @param B Find from?
80                 */
81                 BicycleCar *flnc(
82                         BicycleCar *B,
83                         std::vector<CircleObstacle>& co,
84                         std::vector<SegmentObstacle>& so
85                 );
86                 /** _Find Init Pose by Reverse_ approach, see Vorobieva2015
87
88                 @param B Last pose of vehicle when it is parked.
89                 */
90                 void fipr(RRTNode *n);
91                 void fipr(BicycleCar *B);
92                 /** _Find Last Not Colliding for Reverse_ BicycleCar pose
93
94                 @param B Find from?
95                 */
96                 BicycleCar *flncr(BicycleCar *B);
97                 RRTNode *fposecenter();
98                 /** Recursive function to find out the moves */
99                 bool flast(
100                         RRTNode *P,
101                         bool right,
102                         int il,
103                         std::vector<RRTNode *> &cusp
104                 );
105                 /** Test possible init poses */
106                 void fpose();
107                 /** Return start pose for fip method */
108                 BicycleCar *getEP();
109                 /** Return center of rotation for start pose for fip method */
110                 BicycleCar *getEPC();
111                 /** Return start pose for fipr method */
112                 BicycleCar *getFP();
113                 /** Return true if car is inside slot */
114                 bool isInside(BicycleCar *c);
115                 /** Return values to set sampling function of RRT */
116                 struct SamplingInfo getSamplingInfo();
117 };
118
119 #endif