]> rtime.felk.cvut.cz Git - hubacji1/psp.git/blob - src/psp.cc
Fix possible goals for right parallel parking slot
[hubacji1/psp.git] / src / psp.cc
1 #include <cmath>
2 #include <list>
3 #include <queue>
4 #include "psp.h"
5
6 bool PSPlanner::collide()
7 {
8         std::vector<std::tuple<double, double>> bc;
9         bc.push_back(std::make_tuple(this->cc().lfx(), this->cc().lfy()));
10         bc.push_back(std::make_tuple(this->cc().lrx(), this->cc().lry()));
11         bc.push_back(std::make_tuple(this->cc().rrx(), this->cc().rry()));
12         bc.push_back(std::make_tuple(this->cc().rfx(), this->cc().rfy()));
13         bc.push_back(std::make_tuple(this->cc().lfx(), this->cc().lfy()));
14         std::vector<std::tuple<double, double>> ps;
15         ps.push_back(std::make_tuple(this->ps().x1(), this->ps().y1()));
16         ps.push_back(std::make_tuple(this->ps().x2(), this->ps().y2()));
17         ps.push_back(std::make_tuple(this->ps().x3(), this->ps().y3()));
18         ps.push_back(std::make_tuple(this->ps().x4(), this->ps().y4()));
19         return std::get<0>(::collide(bc, ps));
20 }
21
22 bool PSPlanner::forward()
23 {
24         if (this->ps().parallel())
25                 return false;
26         else
27                 return true;
28         double heading = atan2(
29                 this->ps().y2() - this->ps().y1(),
30                 this->ps().x2() - this->ps().x1()
31         );
32         while (heading < 0) heading += 2 * M_PI;
33         double h = this->gc().h();
34         while (h < 0) h += 2 * M_PI;
35         if (std::abs(heading - h) < M_PI / 4)
36                 return true;
37         return false;
38 }
39
40 void PSPlanner::gc_to_4()
41 {
42         double angl_slot = atan2(
43                 this->ps().y3() - this->ps().y4(),
44                 this->ps().x3() - this->ps().x4()
45         );
46         double angl_delta = M_PI / 2;
47         if (this->ps().right())
48                 angl_delta = -M_PI / 2;
49         double x = this->ps().x4();
50         double y = this->ps().y4();
51         x += (this->gc().dr() + 0.01) * cos(angl_slot);
52         y += (this->gc().dr() + 0.01) * sin(angl_slot);
53         x += (this->gc().w() / 2 + 0.01) * cos(angl_slot + angl_delta);
54         y += (this->gc().w() / 2 + 0.01) * sin(angl_slot + angl_delta);
55         this->gc().x(x);
56         this->gc().y(y);
57         this->gc().h(angl_slot);
58 }
59
60 std::tuple<double, double, double, double> circle_line_intersection(
61         double cx, double cy, double r,
62         double x1, double y1,
63         double x2, double y2
64 )
65 {
66         double t = (y2 - y1) / (x2 - x1);
67         //double a = 1 + pow(t, 2);
68         //double b = - 2 * cx - 2 * pow(t, 2) * x1 + 2 * t * y1 - 2 * t * cy;
69         //double c = pow(cx, 2) + pow(t, 2) * pow(x1, 2) - 2 * t * y1 * x1
70         //        + pow(y1, 2) + 2 * t * cy * x1 - 2 * y1 * cy + pow(cy, 2)
71         //        - pow(r, 2);
72         double a = 1 + pow(t, 2);
73         double b = - 2 * cx + 2 * t * (-t * x1 + y1) - 2 * cy * t;
74         double c = pow(cx, 2) + pow(cy, 2) - pow(r, 2);
75         c += pow(-t * x1 + y1, 2);
76         c += 2 * cy * t * x1 - 2 * cy * y1;
77         double D = pow(b, 2) - 4 * a * c;
78         if (D < 0)
79                 return std::make_tuple(cx, cy, cx, cy);
80         double res_x1 = (-b + sqrt(D)) / (2 * a);
81         double res_y1 = t * (res_x1 - x1) + y1;
82         double res_x2 = (-b - sqrt(D)) / (2 * a);
83         double res_y2 = t * (res_x2 - x1) + y1;
84         return std::make_tuple(res_x1, res_y1, res_x2, res_y2);
85 }
86
87 double edist(double x1, double y1, double x2, double y2)
88 {
89         return sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2));
90 }
91
92 void PSPlanner::guess_gc()
93 {
94         double x = this->ps().x1();
95         double y = this->ps().y1();
96         double h = this->ps().heading();
97         double dts = + M_PI / 2; // direction to slot
98         if (this->ps().right())
99                 dts = - M_PI / 2;
100         if (this->ps().parallel()) {
101                 x += (this->gc().w() / 2 + 0.01) * cos(h + dts);
102                 x += (this->gc().dr() + 0.01) * cos(h);
103                 y += (this->gc().w() / 2 + 0.01) * sin(h + dts);
104                 y += (this->gc().dr() + 0.01) * sin(h);
105         } else {
106                 // Forward parking
107                 double entry_width = edist(
108                         this->ps().x1(), this->ps().y1(),
109                         this->ps().x4(), this->ps().y4()
110                 );
111                 x += entry_width / 2 * cos(h);
112                 y += entry_width / 2 * sin(h);
113                 h = atan2(
114                         this->ps().y2() - this->ps().y1(),
115                         this->ps().x2() - this->ps().x1()
116                 );
117                 while (h < 0) h += 2 * M_PI;
118                 x += 2 * cos(h);
119                 y += 2 * sin(h);
120
121                 //// This is for backward parking only.
122                 //double entry_width = edist(
123                 //        this->ps().x1(), this->ps().y1(),
124                 //        this->ps().x4(), this->ps().y4()
125                 //);
126                 //double dist_l =
127                 //        this->gc().orradi()
128                 //        - (this->gc().mtr() + this->gc().w() / 2)
129                 //;
130                 //double move1 = dist_l + this->gc().w() / 2;
131                 //double dist_r = entry_width - this->gc().w() - dist_l;
132                 //double move2 = sqrt(
133                 //        pow(this->gc().iradi(), 2)
134                 //        - pow(this->gc().iradi() - dist_r, 2)
135                 //);
136                 //move2 -= this->gc().dr() / 2; // workaround
137                 //x += move1 * cos(h);
138                 //y += move1 * sin(h);
139                 //dts = atan2(
140                 //        this->ps().y2() - this->ps().y1(),
141                 //        this->ps().x2() - this->ps().x1()
142                 //);
143                 //while (dts < 0) dts += 2 * M_PI;
144                 //x += move2 * cos(h + dts);
145                 //y += move2 * sin(h + dts);
146                 //h += dts - M_PI / 2;
147         }
148         while (h > M_PI)
149                 h -= 2 * M_PI;
150         while (h <= -M_PI)
151                 h += 2 * M_PI;
152         this->gc().x(x);
153         this->gc().y(y);
154         this->gc().h(h);
155 }
156
157 bool PSPlanner::left()
158 {
159         double lfx = this->cc().lfx();
160         double lfy = this->cc().lfy();
161         double lrx = this->cc().lrx();
162         double lry = this->cc().lry();
163         double rrx = this->cc().rrx();
164         double rry = this->cc().rry();
165         double rfx = this->cc().rfx();
166         double rfy = this->cc().rfy();
167         double lfs = sgn(
168                 (lfx - this->ps().x1()) * (this->ps().y4() - this->ps().y1())
169                 - (lfy - this->ps().y1()) * (this->ps().x4() - this->ps().x1())
170         );
171         double lrs = sgn(
172                 (lrx - this->ps().x1()) * (this->ps().y4() - this->ps().y1())
173                 - (lry - this->ps().y1()) * (this->ps().x4() - this->ps().x1())
174         );
175         double rrs = sgn(
176                 (rrx - this->ps().x1()) * (this->ps().y4() - this->ps().y1())
177                 - (rry - this->ps().y1()) * (this->ps().x4() - this->ps().x1())
178         );
179         double rfs = sgn(
180                 (rfx - this->ps().x1()) * (this->ps().y4() - this->ps().y1())
181                 - (rfy - this->ps().y1()) * (this->ps().x4() - this->ps().x1())
182         );
183         if (this->ps().parallel())
184                 return lfs == rfs && (lfs != lrs || lfs != rrs);
185         else if (!this->forward())
186                 return lfs == rfs && (lfs != lrs || lfs != rrs);
187         else
188                 return lrs == rrs && (lrs != lfs || lrs != rfs);
189 }
190
191 bool PSPlanner::parked()
192 {
193         std::vector<std::tuple<double, double>> slot;
194         slot.push_back(std::make_tuple(this->ps().x1(), this->ps().y1()));
195         slot.push_back(std::make_tuple(this->ps().x2(), this->ps().y2()));
196         slot.push_back(std::make_tuple(this->ps().x3(), this->ps().y3()));
197         slot.push_back(std::make_tuple(this->ps().x4(), this->ps().y4()));
198         return inside(this->gc().lfx(), this->gc().lfy(), slot)
199                 && inside(this->gc().lrx(), this->gc().lry(), slot)
200                 && inside(this->gc().rrx(), this->gc().rry(), slot)
201                 && inside(this->gc().rfx(), this->gc().rfy(), slot);
202 }
203
204 std::vector<BicycleCar> PSPlanner::possible_goals(
205         unsigned int cnt,
206         double dist
207 )
208 {
209         std::vector<BicycleCar> pi;
210         if (this->ps().parallel())
211                 this->cc().sp(1);
212         else
213                 this->cc().sp(-1);
214         this->cc().sp(this->cc().sp() * dist);
215         if (this->ps().right())
216                 this->cc().st(this->cc().st() * -1);
217         BicycleCar orig_cc(this->cc());
218         for (unsigned int i = 0; i < cnt; i++) {
219                 this->cc().next();
220                 pi.push_back(BicycleCar(this->cc()));
221         }
222         this->cc() = BicycleCar(orig_cc);
223         return pi;
224 }
225
226 // find entry
227 void PSPlanner::fe()
228 {
229         this->c_ = 0;
230         if (this->ps().parallel()) {
231                 return this->fe_parallel();
232         } else {
233                 this->guess_gc();
234                 this->cc() = BicycleCar(this->gc());
235                 //this->cc().set_max_steer();
236                 //if (this->ps().right())
237                 //        this->cc().st(this->cc().st() * -1);
238                 this->cc().sp(-0.2);
239         }
240 }
241
242 void PSPlanner::fe_parallel()
243 {
244         BicycleCar bco = BicycleCar(this->gc());
245         this->cc() = BicycleCar();
246         this->cc().sp(-0.01);
247         this->cc().set_max_steer();
248         if (!this->ps().right())
249                 this->cc().st(this->cc().st() * -1);
250         this->cc().h(this->ps().heading());
251         double angl_in_slot = this->ps().heading() - M_PI / 4;
252         if (!this->ps().right())
253                 angl_in_slot += M_PI / 2;
254         this->cc().x(
255                 this->ps().x4()
256                 + this->cc().w()/2 * cos(
257                         this->ps().heading()
258                         + (this->ps().right() ? + M_PI / 2 : - M_PI / 2)
259                 )
260                 + (this->cc().df() + 0.01) * cos(
261                         this->ps().heading() + M_PI
262                 )
263         );
264         this->cc().y(
265                 this->ps().y4()
266                 + this->cc().w()/2 * sin(
267                         this->ps().heading()
268                         + (this->ps().right() ? + M_PI / 2 : - M_PI / 2)
269                 )
270                 + (this->cc().df() + 0.01) * sin(
271                         this->ps().heading() + M_PI
272                 )
273         );
274
275         std::queue<BicycleCar, std::list<BicycleCar>> q;
276         while (!this->collide()) {
277                 q.push(this->cc());
278                 this->cc().rotate(
279                         this->ps().x4(),
280                         this->ps().y4() - 0.01,
281                         ((this->ps().right()) ? 0.001 : -0.001)
282                 );
283         }
284         // BFS - find entry current car `cc` and corresponding goal car `gc`
285         unsigned int iter_cntr = 0;
286         while (!q.empty() && iter_cntr < 30) {
287                 this->cc() = BicycleCar(q.front());
288                 q.pop();
289                 while (
290                         !this->collide()
291                         && (std::abs(
292                                 this->cc().h() - this->ps().heading()
293                         ) > M_PI / 32)
294                         && (std::abs(
295                                 this->cc().h() - this->ps().heading()
296                         ) < M_PI / 2)
297                 )
298                         this->cc().next();
299                 this->cc().sp(this->cc().sp() * -1);
300                 this->cc().next();
301                 this->gc() = BicycleCar(this->cc());
302                 if (this->parked())
303                         goto successfinish;
304                 this->cc().st(this->cc().st() * -1);
305                 q.push(BicycleCar(this->cc()));
306                 if (sgn(this->cc().st()) == sgn(q.front().st()))
307                         iter_cntr++;
308         }
309         // fallback to fer
310         this->gc() = BicycleCar(bco);
311 successfinish:
312         return this->fer_parallel();
313 }
314
315 void PSPlanner::fe_perpendicular()
316 {
317         // TODO Try multiple angles when going from parking slot.
318         //
319         //      Do not use just the maximum steer angle. Test angles
320         //      until the whole current car `cc` is out of the parking
321         //      slot `ps`.
322         //
323         //      Another approach could be testing angles from the
324         //      beginning of the escape parkig slot maneuver.
325         if (this->forward())
326                 this->cc().sp(-0.01);
327         else
328                 this->cc().sp(0.01);
329         while (!this->left())
330                 this->cc().next();
331         return;
332 }
333
334 void PSPlanner::fer()
335 {
336         this->c_ = 0;
337         if (this->ps().parallel()) {
338                 this->guess_gc();
339                 this->cc() = BicycleCar(this->gc());
340                 this->cc().set_max_steer();
341                 if (!this->ps().right())
342                         this->cc().st(this->cc().st() * -1);
343                 this->cc().sp(0.01);
344                 return this->fer_parallel();
345         } else {
346                 return this->fer_perpendicular();
347         }
348 }
349
350 void PSPlanner::fer_parallel()
351 {
352         this->cusps_.clear();
353         while (!this->left()) {
354                 while (!this->collide() && !this->left())
355                         this->cc().next();
356                 if (this->left() && !this->collide()) {
357                         break;
358                 } else {
359                         this->cc().sp(this->cc().sp() * -1);
360                         this->cc().next();
361                         this->cc().st(this->cc().st() * -1);
362                         this->c_++;
363                         this->cusps_.push_back(this->cc());
364                 }
365         }
366         if (this->cc().st() < 0) {
367                 this->c_++;
368                 this->cusps_.push_back(this->cc());
369         }
370 }
371
372 void PSPlanner::fer_perpendicular()
373 {
374         bool delta_use[] = {true, true, true};
375         double cc_h = this->cc().h();
376         double x;
377         double y;
378         // check inner radius
379         if (this->forward()) {
380                 x = this->ps().x1();
381                 y = this->ps().y1();
382         } else {
383                 x = this->ps().x4();
384                 y = this->ps().y4();
385         }
386         double x1;
387         double y1;
388         if (this->ps().right()) {
389                 x1 = this->cc().ccr().x();
390                 y1 = this->cc().ccr().y();
391         } else {
392                 x1 = this->cc().ccl().x();
393                 y1 = this->cc().ccl().y();
394         }
395         double IR = this->cc().iradi();
396         double a = 1;
397         double b;
398         if (this->forward())
399                 b = (x - x1) * 2 * cos(cc_h) + (y - y1) * 2 * sin(cc_h);
400         else
401                 b = (x1 - x) * 2 * cos(cc_h) + (y1 - y) * 2 * sin(cc_h);
402         double c = pow(x - x1, 2) + pow(y - y1, 2) - pow(IR, 2);
403         double D = pow(b, 2) - 4 * a * c;
404         double delta;
405         delta = -b - sqrt(D);
406         delta /= 2 * a;
407         double delta_1 = delta;
408         if (D < 0)
409                 delta_use[0] = false;
410         // check outer radius
411         if (this->forward()) {
412                 x = this->ps().x4();
413                 y = this->ps().y4();
414         } else {
415                 x = this->ps().x1();
416                 y = this->ps().y1();
417         }
418         IR = this->cc().ofradi();
419         a = 1;
420         if (this->forward())
421                 b = (x - x1) * 2 * cos(cc_h) + (y - y1) * 2 * sin(cc_h);
422         else
423                 b = (x1 - x) * 2 * cos(cc_h) + (y1 - y) * 2 * sin(cc_h);
424         c = pow(x - x1, 2) + pow(y - y1, 2) - pow(IR, 2);
425         D = pow(b, 2) - 4 * a * c;
426         if (this->forward()) {
427                 delta = -b + sqrt(D);
428                 delta /= 2 * a;
429         }
430         double delta_2 = delta;
431         if (D < 0)
432                 delta_use[1] = false;
433         delta = -b - sqrt(D);
434         delta /= 2 * a;
435         double delta_3 = delta;
436         if (D < 0)
437                 delta_use[2] = false;
438         if (delta_use[0] && delta_use[1] && delta_use[2])
439                 delta = std::max(delta_1, std::max(delta_2, delta_3));
440         else if (delta_use[0] && delta_use[1])
441                 delta = std::max(delta_1, delta_2);
442         else if (delta_use[0] && delta_use[2])
443                 delta = std::max(delta_1, delta_3);
444         else if (delta_use[1] && delta_use[2])
445                 delta = std::max(delta_2, delta_3);
446         else if (delta_use[0])
447                 delta = delta_1;
448         else if (delta_use[1])
449                 delta = delta_2;
450         else if (delta_use[2])
451                 delta = delta_3;
452         else
453                 return;
454         // current car `cc` can get out of slot with max steer
455         this->cc().x(this->cc().x() + delta * cos(cc_h));
456         this->cc().y(this->cc().y() + delta * sin(cc_h));
457         this->cc().h(cc_h);
458         // get current car `cc` out of slot
459         if (this->forward())
460                 this->cc().sp(-0.01);
461         else
462                 this->cc().sp(0.01);
463         this->cc().set_max_steer();
464         if (this->ps().right())
465                 this->cc().st(this->cc().st() * -1);
466         while (!this->left()) {
467                 while (!this->collide() && !this->left())
468                         this->cc().next();
469                 if (this->left() && !this->collide()) {
470                         break;
471                 } else {
472                         this->cc().sp(this->cc().sp() * -1);
473                         this->cc().next();
474                         this->cc().st(this->cc().st() * -1);
475                 }
476         }
477 }
478
479 PSPlanner::PSPlanner()
480 {
481 }