]> rtime.felk.cvut.cz Git - hubacji1/rrts.git/blob - src/rrtext2.cc
Add deinit methods
[hubacji1/rrts.git] / src / rrtext2.cc
1 #include "rrtext.h"
2 #define CUTE_C2_IMPLEMENTATION
3 #include "cute_c2.h"
4
5 void RRTExt2::init()
6 {
7         BicycleCar bc;
8         this->c2_bc().count = 4;
9         this->c2_bc().verts[0].x = bc.lfx();
10         this->c2_bc().verts[0].y = bc.lfy();
11         this->c2_bc().verts[1].x = bc.lrx();
12         this->c2_bc().verts[1].y = bc.lry();
13         this->c2_bc().verts[2].x = bc.rrx();
14         this->c2_bc().verts[2].y = bc.rry();
15         this->c2_bc().verts[3].x = bc.rfx();
16         this->c2_bc().verts[3].y = bc.rfy();
17
18         for (auto o: this->obstacles()) {
19                 c2Poly c2tmp;
20                 c2tmp.count = (o.poly().size() < C2_MAX_POLYGON_VERTS)
21                         ? o.poly().size()
22                         : C2_MAX_POLYGON_VERTS
23                 ;
24                 int i = 0;
25                 for (auto c: o.poly()) {
26                         if (i < C2_MAX_POLYGON_VERTS) {
27                                 c2tmp.verts[i].x = std::get<0>(c);
28                                 c2tmp.verts[i].y = std::get<1>(c);
29                         }
30                         i++;
31                 }
32                 this->c2_obstacles().push_back(c2tmp);
33         }
34 }
35
36 void RRTExt2::deinit()
37 {
38         this->c2_obstacles().clear();
39         RRTS::deinit();
40 }
41
42 std::tuple<bool, unsigned int, unsigned int>
43 RRTExt2::collide_steered_from(RRTNode &f)
44 {
45         this->c2x_bc().p.x = f.x();
46         this->c2x_bc().p.y = f.y();
47         this->c2x_bc().r.c = cos(f.h());
48         this->c2x_bc().r.s = sin(f.h());
49         for (auto &o: this->c2_obstacles()) {
50                 if (c2PolytoPoly(
51                         &this->c2_bc(), &this->c2x_bc(),
52                         &o, NULL
53                 )) {
54                         return std::make_tuple(true, 0, 0);
55                 }
56         }
57         for (auto &n: this->steered()) {
58                 this->c2x_bc().p.x = n.x();
59                 this->c2x_bc().p.y = n.y();
60                 this->c2x_bc().r.c = cos(n.h());
61                 this->c2x_bc().r.s = sin(n.h());
62                 for (auto &o: this->c2_obstacles()) {
63                         if (c2PolytoPoly(
64                                 &this->c2_bc(), &this->c2x_bc(),
65                                 &o, NULL
66                         )) {
67                                 return std::make_tuple(true, 0, 0);
68                         }
69                 }
70         }
71         return std::make_tuple(false, 0, 0);
72 }
73
74 std::tuple<bool, unsigned int, unsigned int>
75 RRTExt2::collide_two_nodes(RRTNode &f, RRTNode &t)
76 {
77         this->c2x_bc().p.x = f.x();
78         this->c2x_bc().p.y = f.y();
79         this->c2x_bc().r.c = cos(f.h());
80         this->c2x_bc().r.s = sin(f.h());
81         for (auto &o: this->c2_obstacles()) {
82                 if (c2PolytoPoly(
83                         &this->c2_bc(), &this->c2x_bc(),
84                         &o, NULL
85                 )) {
86                         return std::make_tuple(true, 0, 0);
87                 }
88         }
89         this->c2x_bc().p.x = t.x();
90         this->c2x_bc().p.y = t.y();
91         this->c2x_bc().r.c = cos(t.h());
92         this->c2x_bc().r.s = sin(t.h());
93         for (auto &o: this->c2_obstacles()) {
94                 if (c2PolytoPoly(
95                         &this->c2_bc(), &this->c2x_bc(),
96                         &o, NULL
97                 )) {
98                         return std::make_tuple(true, 0, 0);
99                 }
100         }
101         return std::make_tuple(false, 0, 0);
102 }