]> rtime.felk.cvut.cz Git - hubacji1/psp.git/blobdiff - api/psp.h
Add set goal car position method
[hubacji1/psp.git] / api / psp.h
index e9813421d8f8ea7dcc6116124b11cc6abf13256e..4c71d3e455ab53adc142526ba25c6ef9508a3d0f 100644 (file)
--- a/api/psp.h
+++ b/api/psp.h
@@ -2,6 +2,7 @@
 #define PSP_H
 
 #include <tuple>
+#include <vector>
 
 #include "bcar.h"
 #include "pslot.h"
@@ -18,9 +19,14 @@ class PSPlanner {
                 BicycleCar gc_;
                 ParkingSlot ps_;
 
+                // find entry to slot
+                void fe_parallel();
+                void fe_perpendicular();
                 // find entry to slot by reverse approach
                 void fer_parallel();
                 void fer_perpendicular();
+                // set goal car
+                void gc_to_4();
         public:
                 /*! \brief Return `true` if there is collision.
 
@@ -34,12 +40,45 @@ class PSPlanner {
                 (parking slot lines).
                 */
                 bool collide();
+                /*! \brief Return parking direction
+
+                Return `true` if the direction of the parking in the
+                slot is forward.
+                */
+                bool forward();
+                /*! \brief Guess goal car
+
+                Set the goal car guessed from the parking slot.
+                */
+                void guess_gc();
                 /*! \brief Has current car `cc` left?
 
                 Return `true` if the current car `cc` left the parking
                 slot `ps`;
                 */
                 bool left();
+                /*! \brief Is the goal car `gc` parked?
+
+                Return `true` if the goal car `gc` is inside the
+                parking slot `ps`.
+                */
+                bool parked();
+                /*! \brief Return possible starts of parking maneuver
+
+                When any `BicycleCar` of possible inits is reached, then
+                parking maneuver is a peace of cake.
+
+                \param cnt Number of inits.
+                \param dist Distance between inits.
+                */
+                std::vector<BicycleCar> possible_inits(
+                        unsigned int cnt,
+                        double dist
+                );
+                std::vector<BicycleCar> possible_inits()
+                {
+                        return this->possible_inits(10, 1);
+                }
 
                 // find entry
                 /*! \brief Find entry to the parking slot.
@@ -59,29 +98,4 @@ class PSPlanner {
                 PSPlanner();
 };
 
-/*! \brief Return intersection of two line segments.
-
-The output is tuple `std::tuple<bool, double, double>`, where the first
-value is true when there is an intersection and false otherwise. The
-second and third parameters in the return tuple are coordinates of the
-intersection.
-
-\see https://en.wikipedia.org/wiki/Line%E2%80%93line_intersection
-
-\param x1 First line segment first `x` coordinate.
-\param y1 First line segment first `y` coordinate.
-\param x2 First line segment second `x` coordinate.
-\param y2 First line segment second `y` coordinate.
-\param x3 Second line segment first `x` coordinate.
-\param y3 Second line segment first `y` coordinate.
-\param x4 Second line segment second `x` coordinate.
-\param y4 Second line segment second `y` coordinate.
-*/
-std::tuple<bool, double, double> intersect(
-        double x1, double y1,
-        double x2, double y2,
-        double x3, double y3,
-        double x4, double y4
-);
-
 #endif /* PSP_H */