]> rtime.felk.cvut.cz Git - hubacji1/iamcar2.git/blob - rrts/src/rrtext2.cc
8af74221dbe9f2a1386e9009a666cad4c753a58b
[hubacji1/iamcar2.git] / rrts / src / rrtext2.cc
1 /*
2  * SPDX-FileCopyrightText: 2021 Jiri Vlasak <jiri.vlasak.2@cvut.cz>
3  *
4  * SPDX-License-Identifier: GPL-3.0-only
5  */
6
7 #include <cassert>
8 #include "rrtext.hh"
9 #define CUTE_C2_IMPLEMENTATION
10 #include "cute_c2.h"
11
12 namespace rrts {
13
14 bool
15 RRTExt2::collide(RRTNode const& n)
16 {
17         this->c2x_bc_.p.x = n.x();
18         this->c2x_bc_.p.y = n.y();
19         this->c2x_bc_.r.c = cos(n.h());
20         this->c2x_bc_.r.s = sin(n.h());
21         for (auto& o: this->c2_obstacles_) {
22                 if (c2PolytoPoly(&this->c2_bc_, &this->c2x_bc_, &o, NULL)) {
23                         return true;
24                 }
25         }
26         return false;
27 }
28
29 bool
30 RRTExt2::collide_steered()
31 {
32         unsigned int i = 0;
33         for (auto& n: this->steered_) {
34                 if (this->collide(n)) {
35                         break;
36                 }
37                 i++;
38         }
39         this->steered_.erase(this->steered_.begin() + i, this->steered_.end());
40         return this->steered_.size() == 0;
41 }
42
43 RRTExt2::RRTExt2() : RRTS()
44 {
45         this->c2_bc_.count = 4;
46         this->c2_bc_.verts[0].x = this->bc_.lfx();
47         this->c2_bc_.verts[0].y = this->bc_.lfy();
48         this->c2_bc_.verts[1].x = this->bc_.lrx();
49         this->c2_bc_.verts[1].y = this->bc_.lry();
50         this->c2_bc_.verts[2].x = this->bc_.rrx();
51         this->c2_bc_.verts[2].y = this->bc_.rry();
52         this->c2_bc_.verts[3].x = this->bc_.rfx();
53         this->c2_bc_.verts[3].y = this->bc_.rfy();
54 }
55
56 void
57 RRTExt2::reset()
58 {
59         RRTS::reset();
60         this->c2_bc_.count = 4;
61         this->c2_bc_.verts[0].x = this->bc_.lfx();
62         this->c2_bc_.verts[0].y = this->bc_.lfy();
63         this->c2_bc_.verts[1].x = this->bc_.lrx();
64         this->c2_bc_.verts[1].y = this->bc_.lry();
65         this->c2_bc_.verts[2].x = this->bc_.rrx();
66         this->c2_bc_.verts[2].y = this->bc_.rry();
67         this->c2_bc_.verts[3].x = this->bc_.rfx();
68         this->c2_bc_.verts[3].y = this->bc_.rfy();
69 }
70
71 Json::Value
72 RRTExt2::json() const
73 {
74         return RRTS::json();
75 }
76
77 void
78 RRTExt2::json(Json::Value jvi)
79 {
80         RRTS::json(jvi);
81         assert(jvi["obst"] != Json::nullValue);
82         for (auto& o: jvi["obst"]) {
83                 assert(o.size() < C2_MAX_POLYGON_VERTS);
84                 c2Poly c2tmp;
85                 c2tmp.count = o.size();
86                 unsigned int i = 0;
87                 for (auto& c: o) {
88                         c2tmp.verts[i].x = c[0].asDouble();
89                         c2tmp.verts[i].y = c[1].asDouble();
90                         i++;
91                 }
92                 this->c2_obstacles_.push_back(c2tmp);
93         }
94 }
95
96 } // namespace rrts