]> rtime.felk.cvut.cz Git - hubacji1/bcar.git/blobdiff - src/pslot.cc
Add set to start method for parkig slot
[hubacji1/bcar.git] / src / pslot.cc
index 1d84e28ab1593aa5f5a84e21b91d3e97784dbd07..b1a17dad1d2b8b8b81bc555fd2e9217faeaf8577 100644 (file)
@@ -222,6 +222,19 @@ ParkingSlot::collide(BicycleCar const& c) const
                || c.front().intersects_with(this->_front);
 }
 
+void
+ParkingSlot::set_to_start(BicycleCar& c)
+{
+       c.h(this->h());
+       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();
+       assert(this->_parking_speed < 0.0);
+       c.sp(this->_parking_speed);
+}
+
 std::vector<BicycleCar>
 ParkingSlot::drive_in_slot(BicycleCar c)
 {
@@ -351,14 +364,7 @@ ParkingSlot::fe(BicycleCar c)
                this->swap_side();
                swapped = true;
        }
-       c.h(this->h());
-       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();
-       assert(this->_parking_speed < 0.0);
-       c.sp(this->_parking_speed);
+       this->set_to_start(c);
        auto const rc = c.rf();
        this->_curb.intersects_with(rc, c.len());
        double max_to_slot;
@@ -411,6 +417,14 @@ ParkingSlot::recompute_entry(PoseRange p)
        return p;
 }
 
+void
+ParkingSlot::gen_gnuplot_to(std::ostream& out)
+{
+       this->rear().gen_gnuplot_to(out);
+       this->curb().gen_gnuplot_to(out);
+       this->front().gen_gnuplot_to(out);
+}
+
 std::ostream&
 operator<<(std::ostream& o, ParkingSlot const& s)
 {