]> rtime.felk.cvut.cz Git - hubacji1/bcar.git/blobdiff - src/pslot.cc
Fix and tune find entry method
[hubacji1/bcar.git] / src / pslot.cc
index 9fdf4daa6e33339c58c9a67ad7fb56d3a22ffb26..ec88e634f8bea7861a16d6028a8b956d15702228 100644 (file)
@@ -151,15 +151,16 @@ ParkingSlot::drive_in_slot(BicycleCar c, unsigned int& max)
        path.reserve(max + 2);
        path.push_back(c);
        unsigned int cusp = 0;
-       while (cusp < max) {
-               if (c.h() < this->h()) {
-                       return std::vector<BicycleCar>();
-               }
+       while (cusp < max + 1) {
                if (this->parked(c)) {
                        if (cusp < max) {
                                max = cusp;
                        }
-                       break;
+                       path.push_back(c);
+                       return path;
+               }
+               if (c.h() < this->h()) {
+                       return std::vector<BicycleCar>();
                }
                c.next();
                if (this->collide(c)) {
@@ -170,50 +171,74 @@ ParkingSlot::drive_in_slot(BicycleCar c, unsigned int& max)
                        cusp += 1;
                }
        }
+       return std::vector<BicycleCar>();
+}
+
+std::vector<Pose>
+ParkingSlot::steer_in_slot(BicycleCar c)
+{
+       std::vector<Pose> path;
+       while (!this->parked(c)) {
+               path.push_back(c);
+               c.next();
+               if (this->collide(c)) {
+                       c.sp(c.sp() * -1.0);
+                       c.next();
+                       c.st(c.st() * -1.0);
+               }
+       }
        path.push_back(c);
        return path;
 }
 
 PoseRange
-ParkingSlot::fe()
+ParkingSlot::fe(BicycleCar c, unsigned int& max)
 {
        assert(this->parallel());
        assert(this->right());
-       BicycleCar c;
        c.h(this->h());
-       double clen = this->offset_ + this->len() - c.df();
-       double cw = this->offset_ + c.w() / 2.0;
+       double clen = -this->offset_ + this->len() - c.df();
+       double cw = c.w() / 2.0;
        c.x(this->lrx() + clen * cos(c.h()) + cw * cos(c.h() + M_PI / 2.0));
        c.y(this->lry() + clen * sin(c.h()) + cw * sin(c.h() + M_PI / 2.0));
        c.set_max_steer();
-       c.sp(-0.01);
-       auto const& b3 = this->border_[3];
-       this->curb_.intersects_with(b3, c.len());
+       c.sp(-0.001);
+       auto const rc = c.rf();
+       this->curb_.intersects_with(rc, c.len());
        double max_to_slot;
        auto const& rr = c.rr();
        auto const& i1 = this->curb_.i1();
        auto const& i2 = this->curb_.i2();
        if (rr.edist(i1) < rr.edist(i2)) {
-               max_to_slot = rr.min_angle_between(b3, i1);
+               max_to_slot = rr.min_angle_between(rc, i1);
        } else {
-               max_to_slot = rr.min_angle_between(b3, i2);
+               max_to_slot = rr.min_angle_between(rc, i2);
        }
        std::vector<BicycleCar> starts;
        double a_to_slot = 0.0;
        while (a_to_slot < max_to_slot) {
-               a_to_slot += 0.001;
-               c.rotate(b3, 0.001);
+               a_to_slot += 0.0001;
+               c.rotate(rc, 0.0001);
                starts.push_back(c);
        }
        std::vector<std::vector<BicycleCar>> entries;
-       unsigned int max_cusp = 10;
        for (auto s: starts) {
-               auto r = this->drive_in_slot(s, max_cusp);
+               auto r = this->drive_in_slot(s, max);
                if (r.size() > 0) {
                        entries.push_back(r);
                }
        }
-       assert(entries.size() > 0);
+       if (entries.size() == 0) {
+               return PoseRange();
+       }
+       if (entries.size() == 1) {
+               PoseRange pr;
+               pr.x(entries.front().front().x());
+               pr.y(entries.front().front().y());
+               pr.b(entries.front().front().h());
+               pr.e(entries.front().front().h());
+               return pr;
+       }
        auto& c1 = entries.front().front();
        auto& c2 = entries.back().front();
        double b = std::min(c1.h(), c2.h());