Get ready to add the calls into the GUI into Elevator
[cs356-p1-elevator.git] / elevator.cpp
index e50ee2e..d4e7cfb 100644 (file)
@@ -92,6 +92,23 @@ float Elevator::distance_from (Position &pos) const
        return pos - position_;
 }
 
+float Elevator::distance_from (Stop &s) const
+{
+       Direction d = s.getDirection();
+       Position  p = s.getPosition ();
+
+       /* If direction doesn't matter, then only position does */
+       if (d == ALL || direction_ == IDLE)
+               return distance_from (p);
+
+       /* If we're not in the same direction, then we're "really far" away */
+       if (d != direction_)
+               return INT_MAX;
+
+       /* We must be in the correct direction, so pure distance is fine */
+       return distance_from (p);
+}
+
 void Elevator::transition_move_up ()
 {
        direction_ = UP;
@@ -145,7 +162,7 @@ void Elevator::transition_open_door ()
        else
                stops_.remove (Stop(position_, direction_));
 
-       // TODO: Call into GUI to open the door
+       // TODO: Call into the GUI to open the door
        std::cout << "Opening Door" << std::endl;
 }