]> rtime.felk.cvut.cz Git - hubacji1/bcar.git/blobdiff - src/pslot.cc
Add drive in slot method
[hubacji1/bcar.git] / src / pslot.cc
index 7b4a450785c786f792eaef5106836976210b9bfd..aff8850ded9ab3245b1da4607ee2813593b3f505 100644 (file)
+#include <cassert>
 #include <cmath>
 #include "pslot.hh"
 
-void ParkingSlot::reverse_border()
+namespace bcar {
+
+ParkingSlot::ParkingSlot(Point p, double h, double W, double L) :
+               border_({p,
+                       Point(p.x() + W * cos(h - M_PI / 2.0),
+                               p.y() + W * sin(h - M_PI / 2.0)),
+                       Point(p.x() + W * cos(h - M_PI / 2.0) + L * cos(h),
+                               p.y() + W * sin(h - M_PI / 2.0) + L * sin(h)),
+                       Point(p.x() + L * cos(h), p.y() + L * sin(h))}),
+               entry_(border_[0], border_[3]),
+               rear_(border_[0], border_[1]),
+               curb_(border_[1], border_[2]),
+               front_(border_[2], border_[3])
+{
+}
+
+ParkingSlot::ParkingSlot(double lrx, double lry, double rrx, double rry,
+               double rfx, double rfy, double lfx, double lfy) :
+                       border_({Point(lrx, lry), Point(rrx, rry),
+                               Point(rfx, rfy), Point(lfx, lfy)}),
+                       entry_(border_[0], border_[3]),
+                       rear_(border_[0], border_[1]),
+                       curb_(border_[1], border_[2]),
+                       front_(border_[2], border_[3])
+{
+}
+
+double
+ParkingSlot::len() const
+{
+       return this->entry_.len();
+}
+
+double
+ParkingSlot::w() const
+{
+       return this->rear_.len();
+}
+
+double
+ParkingSlot::lfx() const
+{
+       return this->border_[3].x();
+}
+
+double
+ParkingSlot::lfy() const
+{
+       return this->border_[3].y();
+}
+
+double
+ParkingSlot::lrx() const
+{
+       return this->border_[0].x();
+}
+
+double
+ParkingSlot::lry() const
 {
-       this->border(
-               this->x4(), this->y4(),
-               this->x3(), this->y3(),
-               this->x2(), this->y2(),
-               this->x1(), this->y1()
-       );
+       return this->border_[0].y();
 }
 
-// slot info
-double ParkingSlot::heading() const
+double
+ParkingSlot::rrx() const
 {
-       return atan2(this->y4() - this->y1(), this->x4() - this->x1());
+       return this->border_[1].x();
 }
 
-bool ParkingSlot::parallel() const
+double
+ParkingSlot::rry() const
 {
-       double d1 = sqrt(
-               pow(this->x2() - this->x1(), 2)
-               + pow(this->y2() - this->y1(), 2)
-       );
-       double d2 = sqrt(
-               pow(this->x3() - this->x2(), 2)
-               + pow(this->y3() - this->y2(), 2)
-       );
-       if (d1 < d2)
-               return true;
-       else
-               return false;
+       return this->border_[1].y();
 }
 
-bool ParkingSlot::right() const
+double
+ParkingSlot::rfx() const
 {
-       if (sgn(
-               (this->x2() - this->x1()) * (this->y4() - this->y1())
-               - (this->y2() - this->y1()) * (this->x4() - this->x1())
-       ) < 0)
-               return false;
-       else
-               return true;
+       return this->border_[2].x();
 }
 
-//getters, setters
-void ParkingSlot::set_slot(
-       double x,
-       double y,
-       double h,
-       double w,
-       double l
-)
+double
+ParkingSlot::rfy() const
 {
-       double x1 = x + w/2 * cos(h - M_PI/2);
-       double y1 = y + w/2 * sin(h - M_PI/2);
-       double x2 = x + l * cos(h) + w/2 * cos(h - M_PI/2);
-       double y2 = y + l * sin(h) + w/2 * sin(h - M_PI/2);
-       double x3 = x + l * cos(h) + w/2 * cos(h + M_PI/2);
-       double y3 = y + l * sin(h) + w/2 * sin(h + M_PI/2);
-       double x4 = x + w/2 * cos(h + M_PI/2);
-       double y4 = y + w/2 * sin(h + M_PI/2);
-       this->border(x1, y1, x2, y2, x3, y3, x4, y4);
+       return this->border_[2].y();
 }
 
-ParkingSlot::ParkingSlot()
+double
+ParkingSlot::h() const
 {
+       return atan2(this->lfy() - this->lry(), this->lfx() - this->lrx());
 }
+
+bool
+ParkingSlot::parallel() const
+{
+       return this->entry_.len() > this->rear_.len();
+}
+
+bool
+ParkingSlot::right() const
+{
+       return this->border_[1].on_right_side_of(this->entry_);
+}
+
+void
+ParkingSlot::swap_side()
+{
+       this->border_[1].rotate(this->border_[0], M_PI);
+       this->border_[2].rotate(this->border_[3], M_PI);
+}
+
+bool
+ParkingSlot::parked(BicycleCar const& c) const
+{
+       auto b_len = sizeof(this->border_) / sizeof(this->border_[0]);
+       std::vector<Point> b(this->border_, this->border_ + b_len);
+       return c.lf().inside_of(b) && c.lr().inside_of(b)
+               && c.rr().inside_of(b) && c.rf().inside_of(b);
+}
+
+bool
+ParkingSlot::collide(BicycleCar const& c) const
+{
+       return c.left().intersects_with(this->rear_)
+               && c.left().intersects_with(this->curb_)
+               && c.left().intersects_with(this->front_)
+               && c.rear().intersects_with(this->rear_)
+               && c.rear().intersects_with(this->curb_)
+               && c.rear().intersects_with(this->front_)
+               && c.right().intersects_with(this->rear_)
+               && c.right().intersects_with(this->curb_)
+               && c.right().intersects_with(this->front_)
+               && c.front().intersects_with(this->rear_)
+               && c.front().intersects_with(this->curb_)
+               && c.front().intersects_with(this->front_);
+}
+
+std::vector<BicycleCar>
+ParkingSlot::drive_in_slot(BicycleCar c, unsigned int& max)
+{
+       assert(this->parallel());
+       assert(this->right());
+       assert(c.len() < this->len());
+       assert(c.w() < this->w());
+       std::vector<BicycleCar> path;
+       path.reserve(max + 2);
+       path.push_back(c);
+       unsigned int cusp = 0;
+       while (cusp < max) {
+               if (c.h() < this->h()) {
+                       return std::vector<BicycleCar>();
+               }
+               if (this->parked(c)) {
+                       if (cusp < max) {
+                               max = cusp;
+                       }
+                       break;
+               }
+               c.next();
+               if (this->collide(c)) {
+                       c.sp(c.sp() * -1.0);
+                       c.next();
+                       path.push_back(c);
+                       c.st(c.st() * -1.0);
+                       cusp += 1;
+               }
+       }
+       path.push_back(c);
+       return path;
+}
+
+std::ostream&
+operator<<(std::ostream& o, ParkingSlot const& s)
+{
+       o << "[";
+       o << s.border_[0] << ",";
+       o << s.border_[1] << ",";
+       o << s.border_[2] << ",";
+       o << s.border_[3];
+       o << "]";
+       return o;
+}
+
+} // namespace bcar