diff --git a/android/src/com/mapswithme/maps/routing/RoutingInfo.java b/android/src/com/mapswithme/maps/routing/RoutingInfo.java index 9debd17c72..b3dd8985b6 100644 --- a/android/src/com/mapswithme/maps/routing/RoutingInfo.java +++ b/android/src/com/mapswithme/maps/routing/RoutingInfo.java @@ -57,8 +57,10 @@ public class RoutingInfo START_AT_THE_END_OF_STREET(0, 0), REACHED_YOUR_DESTINATION(R.drawable.ic_turn_finish, R.drawable.ic_then_finish), - EXIT_HIGHWAY_TO_RIGHT(0, 0), - EXIT_HIGHWAY_TO_LEFT(0, 0); + // @TODO(alexzatsepin) It's necessary to insert apropriate constants instead of zeros + // for EXIT_HIGHWAY_TO_LEFT() and EXIT_HIGHWAY_TO_RIGHT(). + EXIT_HIGHWAY_TO_LEFT(0, 0), + EXIT_HIGHWAY_TO_RIGHT(0, 0); private final int mTurnRes; private final int mNextTurnRes; diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp index 97010a120c..abe5e7f35e 100644 --- a/indexer/ftypes_matcher.hpp +++ b/indexer/ftypes_matcher.hpp @@ -263,7 +263,6 @@ enum class HighwayClass { Undefined = 0, // There has not been any attempt of calculating HighwayClass. Error, // There was an attempt of calculating HighwayClass but it was not successful. - Transported, // Vehicles are transported by a train or a ferry. Trunk, Primary, Secondary, @@ -271,6 +270,7 @@ enum class HighwayClass LivingStreet, Service, Pedestrian, + Transported, // Vehicles are transported by a train or a ferry. Count // This value is used for internals only. }; diff --git a/iphone/Maps/Classes/CustomViews/NavigationDashboard/MWMNavigationDashboardManager+Entity.mm b/iphone/Maps/Classes/CustomViews/NavigationDashboard/MWMNavigationDashboardManager+Entity.mm index c353ed2e2a..97aaacb345 100644 --- a/iphone/Maps/Classes/CustomViews/NavigationDashboard/MWMNavigationDashboardManager+Entity.mm +++ b/iphone/Maps/Classes/CustomViews/NavigationDashboard/MWMNavigationDashboardManager+Entity.mm @@ -40,7 +40,8 @@ UIImage * image(routing::turns::CarDirection t, bool isNextTurn) case CarDirection::GoStraight: imageName = @"straight"; break; case CarDirection::StartAtEndOfStreet: case CarDirection::StayOnRoundAbout: - case CarDirection::TakeTheExit: + case CarDirection::ExitHighwayToLeft: + case CarDirection::ExitHighwayToRight: case CarDirection::Count: case CarDirection::None: imageName = isNextTurn ? nil : @"straight"; break; } diff --git a/routing/turns.cpp b/routing/turns.cpp index 6aaf370a01..41174f4f85 100644 --- a/routing/turns.cpp +++ b/routing/turns.cpp @@ -36,24 +36,24 @@ array, static_cast(LaneWay::Count)> const g_ static_assert(g_laneWayNames.size() == static_cast(LaneWay::Count), "Check the size of g_laneWayNames"); -array, static_cast(CarDirection::Count)> const g_turnNames = { - {{CarDirection::None, "None"}, - {CarDirection::GoStraight, "GoStraight"}, - {CarDirection::TurnRight, "TurnRight"}, - {CarDirection::TurnSharpRight, "TurnSharpRight"}, - {CarDirection::TurnSlightRight, "TurnSlightRight"}, - {CarDirection::TurnLeft, "TurnLeft"}, - {CarDirection::TurnSharpLeft, "TurnSharpLeft"}, - {CarDirection::TurnSlightLeft, "TurnSlightLeft"}, - {CarDirection::UTurnLeft, "UTurnLeft"}, - {CarDirection::UTurnRight, "UTurnRight"}, - {CarDirection::ExitHighwayToRight, "ExitHighwayToRight"}, - {CarDirection::ExitHighwayToLeft, "ExitHighwayToLeft"}, - {CarDirection::EnterRoundAbout, "EnterRoundAbout"}, - {CarDirection::LeaveRoundAbout, "LeaveRoundAbout"}, - {CarDirection::StayOnRoundAbout, "StayOnRoundAbout"}, - {CarDirection::StartAtEndOfStreet, "StartAtEndOfStreet"}, - {CarDirection::ReachedYourDestination, "ReachedYourDestination"}}}; +array, static_cast(CarDirection::Count)> const + g_turnNames = {{{CarDirection::None, "None"}, + {CarDirection::GoStraight, "GoStraight"}, + {CarDirection::TurnRight, "TurnRight"}, + {CarDirection::TurnSharpRight, "TurnSharpRight"}, + {CarDirection::TurnSlightRight, "TurnSlightRight"}, + {CarDirection::TurnLeft, "TurnLeft"}, + {CarDirection::TurnSharpLeft, "TurnSharpLeft"}, + {CarDirection::TurnSlightLeft, "TurnSlightLeft"}, + {CarDirection::UTurnLeft, "UTurnLeft"}, + {CarDirection::UTurnRight, "UTurnRight"}, + {CarDirection::EnterRoundAbout, "EnterRoundAbout"}, + {CarDirection::LeaveRoundAbout, "LeaveRoundAbout"}, + {CarDirection::StayOnRoundAbout, "StayOnRoundAbout"}, + {CarDirection::StartAtEndOfStreet, "StartAtEndOfStreet"}, + {CarDirection::ReachedYourDestination, "ReachedYourDestination"}, + {CarDirection::ExitHighwayToLeft, "ExitHighwayToLeft"}, + {CarDirection::ExitHighwayToRight, "ExitHighwayToRight"}}}; static_assert(g_turnNames.size() == static_cast(CarDirection::Count), "Check the size of g_turnNames"); } // namespace diff --git a/routing/turns.hpp b/routing/turns.hpp index ce7e51976a..18e7b3db2f 100644 --- a/routing/turns.hpp +++ b/routing/turns.hpp @@ -98,8 +98,9 @@ enum class CarDirection StartAtEndOfStreet, ReachedYourDestination, - ExitHighwayToRight, ExitHighwayToLeft, + ExitHighwayToRight, + Count /**< This value is used for internals only. */ }; diff --git a/routing/turns_generator.cpp b/routing/turns_generator.cpp index ec73809265..96de115dd4 100644 --- a/routing/turns_generator.cpp +++ b/routing/turns_generator.cpp @@ -42,7 +42,7 @@ bool IsLinkOrSmallRoad(ftypes::HighwayClass hwClass, bool isLink) /// \brief Fills |turn| with |CarDirection::ExitHighwayToRight| or |CarDirection::ExitHighwayToLeft| /// and returns true. Or does not change |turn| and returns false. -/// \note The method makes a decision about |turn| based on geometry of the route and turn +/// \note The function makes a decision about |turn| based on geometry of the route and turn /// candidates, so it works correctly for both left and right hand traffic. bool IsExit(TurnCandidates const & possibleTurns, TurnInfo const & turnInfo, Segment const & firstOutgoingSeg, CarDirection & turn) @@ -57,13 +57,13 @@ bool IsExit(TurnCandidates const & possibleTurns, TurnInfo const & turnInfo, } // Considering cases when the route goes from a highway to a link or a small road. - // Checking all turn candidates (sorted by its angle) and looking for the road which is a + // Checking all turn candidates (sorted by their angles) and looking for the road which is a // continuation of the ingoing segment. If the continuation is on the right hand of the route // it's an exit to the left. If the continuation is on the left hand of the route // it's an exit to the right. - // Note. The angle which is using for sorting turn candidates in |possibleTurns.candidates| + // Note. The angle which is used for sorting turn candidates in |possibleTurns.candidates| // is a counterclockwise angle between the ingoing route edge and corresponding candidate. - // For left turns the angle is less than zero and for it is more than zero. + // For left turns the angle is less than zero and for right ones it is more than zero. bool isCandidateBeforeOutgoing = true; bool isHighwayCandidateBeforeOutgoing = true; size_t highwayCandidateNumber = 0; @@ -80,7 +80,7 @@ bool IsExit(TurnCandidates const & possibleTurns, TurnInfo const & turnInfo, { ++highwayCandidateNumber; if (highwayCandidateNumber >= 2) - return false; // There're two or more highway candidates from the junction. + return false; // There are two or more highway candidates from the junction. isHighwayCandidateBeforeOutgoing = isCandidateBeforeOutgoing; } } diff --git a/routing/turns_tts_text.cpp b/routing/turns_tts_text.cpp index 8f464b66b6..78250ed7bd 100644 --- a/routing/turns_tts_text.cpp +++ b/routing/turns_tts_text.cpp @@ -159,8 +159,8 @@ string GetDirectionTextId(Notification const & notification) return GetYouArriveTextId(notification); case CarDirection::StayOnRoundAbout: case CarDirection::StartAtEndOfStreet: - case CarDirection::ExitHighwayToRight: case CarDirection::ExitHighwayToLeft: + case CarDirection::ExitHighwayToRight: case CarDirection::None: case CarDirection::Count: ASSERT(false, ());