diff --git a/drape_frontend/drape_engine.cpp b/drape_frontend/drape_engine.cpp index 62f1856839..e5cdf41a65 100644 --- a/drape_frontend/drape_engine.cpp +++ b/drape_frontend/drape_engine.cpp @@ -511,12 +511,14 @@ void DrapeEngine::StopLocationFollow() MessagePriority::Normal); } -void DrapeEngine::FollowRoute(int preferredZoomLevel, int preferredZoomLevel3d, bool enableAutoZoom) +void DrapeEngine::FollowRoute(int preferredZoomLevel, int preferredZoomLevel3d, bool enableAutoZoom, + bool isArrowGlued) { - m_threadCommutator->PostMessage(ThreadsCommutator::RenderThread, - make_unique_dp(preferredZoomLevel, - preferredZoomLevel3d, enableAutoZoom), - MessagePriority::Normal); + m_threadCommutator->PostMessage( + ThreadsCommutator::RenderThread, + make_unique_dp(preferredZoomLevel, preferredZoomLevel3d, enableAutoZoom, + isArrowGlued), + MessagePriority::Normal); } void DrapeEngine::SetModelViewListener(ModelViewChangedHandler && fn) diff --git a/drape_frontend/drape_engine.hpp b/drape_frontend/drape_engine.hpp index c3489b58d9..75551ec837 100644 --- a/drape_frontend/drape_engine.hpp +++ b/drape_frontend/drape_engine.hpp @@ -178,7 +178,8 @@ public: dp::DrapeID AddSubroute(SubrouteConstPtr subroute); void RemoveSubroute(dp::DrapeID subrouteId, bool deactivateFollowing); - void FollowRoute(int preferredZoomLevel, int preferredZoomLevel3d, bool enableAutoZoom); + void FollowRoute(int preferredZoomLevel, int preferredZoomLevel3d, bool enableAutoZoom, + bool isArrowGlued); void DeactivateRouteFollowing(); void SetSubrouteVisibility(dp::DrapeID subrouteId, bool isVisible); dp::DrapeID AddRoutePreviewSegment(m2::PointD const & startPt, m2::PointD const & finishPt); diff --git a/drape_frontend/frontend_renderer.cpp b/drape_frontend/frontend_renderer.cpp index ea87926679..1ff7f0c9a6 100755 --- a/drape_frontend/frontend_renderer.cpp +++ b/drape_frontend/frontend_renderer.cpp @@ -559,7 +559,7 @@ void FrontendRenderer::AcceptMessage(ref_ptr message) { FollowRoute(m_pendingFollowRoute->m_preferredZoomLevel, m_pendingFollowRoute->m_preferredZoomLevelIn3d, - m_pendingFollowRoute->m_enableAutoZoom); + m_pendingFollowRoute->m_enableAutoZoom, m_pendingFollowRoute->m_isArrowGlued); m_pendingFollowRoute.reset(); } break; @@ -633,13 +633,14 @@ void FrontendRenderer::AcceptMessage(ref_ptr message) // receive FollowRoute message before FlushSubroute message, so we need to postpone its processing. if (m_routeRenderer->GetSubroutes().empty()) { - m_pendingFollowRoute = std::make_unique(msg->GetPreferredZoomLevel(), - msg->GetPreferredZoomLevelIn3d(), - msg->EnableAutoZoom()); + m_pendingFollowRoute = std::make_unique( + msg->GetPreferredZoomLevel(), msg->GetPreferredZoomLevelIn3d(), msg->EnableAutoZoom(), + msg->IsArrowGlued()); break; } - FollowRoute(msg->GetPreferredZoomLevel(), msg->GetPreferredZoomLevelIn3d(), msg->EnableAutoZoom()); + FollowRoute(msg->GetPreferredZoomLevel(), msg->GetPreferredZoomLevelIn3d(), + msg->EnableAutoZoom(), msg->IsArrowGlued()); break; } @@ -1113,11 +1114,11 @@ void FrontendRenderer::UpdateContextDependentResources() } void FrontendRenderer::FollowRoute(int preferredZoomLevel, int preferredZoomLevelIn3d, - bool enableAutoZoom) + bool enableAutoZoom, bool isArrowGlued) { m_myPositionController->ActivateRouting( !m_enablePerspectiveInNavigation ? preferredZoomLevel : preferredZoomLevelIn3d, - enableAutoZoom); + enableAutoZoom, isArrowGlued); if (m_enablePerspectiveInNavigation) AddUserEvent(make_unique_dp(true /* isAutoPerspective */)); diff --git a/drape_frontend/frontend_renderer.hpp b/drape_frontend/frontend_renderer.hpp index 249c2cab3a..8a844f457a 100755 --- a/drape_frontend/frontend_renderer.hpp +++ b/drape_frontend/frontend_renderer.hpp @@ -254,7 +254,9 @@ private: using TRenderGroupRemovePredicate = std::function const &)>; void RemoveRenderGroupsLater(TRenderGroupRemovePredicate const & predicate); - void FollowRoute(int preferredZoomLevel, int preferredZoomLevelIn3d, bool enableAutoZoom); + void FollowRoute(int preferredZoomLevel, int preferredZoomLevelIn3d, bool enableAutoZoom, + bool isArrowGlued); + bool CheckRouteRecaching(ref_ptr subrouteData); void InvalidateRect(m2::RectD const & gRect); @@ -344,15 +346,18 @@ private: struct FollowRouteData { - FollowRouteData(int preferredZoomLevel, int preferredZoomLevelIn3d, bool enableAutoZoom) + FollowRouteData(int preferredZoomLevel, int preferredZoomLevelIn3d, bool enableAutoZoom, + bool isArrowGlued) : m_preferredZoomLevel(preferredZoomLevel) , m_preferredZoomLevelIn3d(preferredZoomLevelIn3d) , m_enableAutoZoom(enableAutoZoom) + , m_isArrowGlued(isArrowGlued) {} int m_preferredZoomLevel; int m_preferredZoomLevelIn3d; bool m_enableAutoZoom; + bool m_isArrowGlued; }; std::unique_ptr m_pendingFollowRoute; diff --git a/drape_frontend/message_subclasses.hpp b/drape_frontend/message_subclasses.hpp index 505a2cea03..ad15a36688 100644 --- a/drape_frontend/message_subclasses.hpp +++ b/drape_frontend/message_subclasses.hpp @@ -756,10 +756,12 @@ public: class FollowRouteMessage : public Message { public: - FollowRouteMessage(int preferredZoomLevel, int preferredZoomLevelIn3d, bool enableAutoZoom) + FollowRouteMessage(int preferredZoomLevel, int preferredZoomLevelIn3d, bool enableAutoZoom, + bool isArrowGlued) : m_preferredZoomLevel(preferredZoomLevel) , m_preferredZoomLevelIn3d(preferredZoomLevelIn3d) , m_enableAutoZoom(enableAutoZoom) + , m_isArrowGlued(isArrowGlued) {} Type GetType() const override { return Type::FollowRoute; } @@ -767,11 +769,13 @@ public: int GetPreferredZoomLevel() const { return m_preferredZoomLevel; } int GetPreferredZoomLevelIn3d() const { return m_preferredZoomLevelIn3d; } bool EnableAutoZoom() const { return m_enableAutoZoom; } + bool IsArrowGlued() const { return m_isArrowGlued; } private: int const m_preferredZoomLevel; int const m_preferredZoomLevelIn3d; bool const m_enableAutoZoom; + bool const m_isArrowGlued; }; class SwitchMapStyleMessage : public BaseBlockingMessage diff --git a/drape_frontend/my_position_controller.cpp b/drape_frontend/my_position_controller.cpp index 7b5d65779e..844f609685 100644 --- a/drape_frontend/my_position_controller.cpp +++ b/drape_frontend/my_position_controller.cpp @@ -26,7 +26,6 @@ namespace df namespace { int const kPositionRoutingOffsetY = 104; -double const kGpsBearingLifetimeSec = 5.0; double const kMinSpeedThresholdMps = 1.0; double const kMaxPendingLocationTimeSec = 60.0; @@ -149,7 +148,6 @@ MyPositionController::MyPositionController(Params && params, ref_ptr kMinSpeedThresholdMps)) + if (!m_isCompassAvailable) { - SetDirection(base::DegToRad(info.m_bearing)); - m_lastGPSBearing.Reset(); + bool const hasBearing = info.HasBearing(); + if ((isNavigable && hasBearing) || + (!isNavigable && hasBearing && info.HasSpeed() && info.m_speedMpS > kMinSpeedThresholdMps)) + { + SetDirection(base::DegToRad(info.m_bearing)); + } } if (m_isPositionAssigned && (!AlmostCurrentPosition(oldPos) || !AlmostCurrentAzimut(oldAzimut))) @@ -573,8 +573,7 @@ void MyPositionController::OnCompassUpdate(location::CompassInfo const & info, S double const oldAzimut = GetDrawableAzimut(); m_isCompassAvailable = true; - if ((IsInRouting() && m_mode == location::FollowAndRotate) || - m_lastGPSBearing.ElapsedSeconds() < kGpsBearingLifetimeSec) + if (IsInRouting() && m_isArrowGluedInRouting && m_mode == location::FollowAndRotate) return; SetDirection(info.m_bearing); @@ -642,13 +641,13 @@ bool MyPositionController::IsRouteFollowingActive() const bool MyPositionController::AlmostCurrentPosition(m2::PointD const & pos) const { - double const kPositionEqualityDelta = 1e-5; + double constexpr kPositionEqualityDelta = 1e-5; return pos.EqualDxDy(m_position, kPositionEqualityDelta); } bool MyPositionController::AlmostCurrentAzimut(double azimut) const { - double const kDirectionEqualityDelta = 1e-5; + double constexpr kDirectionEqualityDelta = 1e-3; return base::AlmostEqualAbs(azimut, m_drawDirection, kDirectionEqualityDelta); } @@ -880,11 +879,12 @@ void MyPositionController::EnableAutoZoomInRouting(bool enableAutoZoom) } } -void MyPositionController::ActivateRouting(int zoomLevel, bool enableAutoZoom) +void MyPositionController::ActivateRouting(int zoomLevel, bool enableAutoZoom, bool isArrowGlued) { if (!m_isInRouting) { m_isInRouting = true; + m_isArrowGluedInRouting = isArrowGlued; m_enableAutoZoomInRouting = enableAutoZoom; ChangeMode(location::FollowAndRotate); @@ -903,6 +903,7 @@ void MyPositionController::DeactivateRouting() if (m_isInRouting) { m_isInRouting = false; + m_isArrowGluedInRouting = false; m_isDirectionAssigned = m_isCompassAvailable && m_isDirectionAssigned; diff --git a/drape_frontend/my_position_controller.hpp b/drape_frontend/my_position_controller.hpp index 9e262eded1..97d48358f2 100644 --- a/drape_frontend/my_position_controller.hpp +++ b/drape_frontend/my_position_controller.hpp @@ -105,7 +105,7 @@ public: drape_ptr && shape); void ResetRenderShape(); - void ActivateRouting(int zoomLevel, bool enableAutoZoom); + void ActivateRouting(int zoomLevel, bool enableAutoZoom, bool isArrowGlued); void DeactivateRouting(); void EnablePerspectiveInRouting(bool enablePerspective); @@ -167,7 +167,8 @@ private: location::TMyPositionModeChanged m_modeChangeCallback; Hints m_hints; - bool m_isInRouting; + bool m_isInRouting = false; + bool m_isArrowGluedInRouting = false; bool m_needBlockAnimation; bool m_wasRotationInScaling; @@ -187,7 +188,6 @@ private: double m_autoScale2d; double m_autoScale3d; - base::Timer m_lastGPSBearing; base::Timer m_pendingTimer; bool m_pendingStarted = true; base::Timer m_routingNotFollowTimer; diff --git a/map/framework.cpp b/map/framework.cpp index b69e249c2a..2756d301bc 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -3794,8 +3794,10 @@ void Framework::OnRouteFollow(routing::RouterType type) m_trafficManager.SetEnabled(false /* enabled */); SaveTrafficEnabled(false /* enabled */); } - - m_drapeEngine->FollowRoute(scale, scale3d, enableAutoZoom); + // TODO. We need to sync two enums VehicleType and RouterType to be able to pass + // GetRoutingSettings(type).m_matchRoute to the FollowRoute() instead of |isPedestrianRoute|. + // |isArrowGlued| parameter fully corresponds to |m_matchRoute| in RoutingSettings. + m_drapeEngine->FollowRoute(scale, scale3d, enableAutoZoom, !isPedestrianRoute /* isArrowGlued */); } // RoutingManager::Delegate diff --git a/routing/routing_settings.cpp b/routing/routing_settings.cpp index 8a852311fd..0f90bee64d 100644 --- a/routing/routing_settings.cpp +++ b/routing/routing_settings.cpp @@ -2,19 +2,22 @@ #include "routing/routing_helpers.hpp" +#include "base/assert.hpp" + namespace routing { // RoutingSettings --------------------------------------------------------------------------------- RoutingSettings::RoutingSettings(bool useDirectionForRouteBuilding, bool matchRoute, bool soundDirection, double matchingThresholdM, - bool keepPedestrianInfo, bool showTurnAfterNext, + bool showTurnAfterNext, double minSpeedForRouteRebuildMpS, double finishToleranceM) + : m_useDirectionForRouteBuilding(useDirectionForRouteBuilding) , m_matchRoute(matchRoute) , m_soundDirection(soundDirection) , m_matchingThresholdM(matchingThresholdM) - , m_keepPedestrianInfo(keepPedestrianInfo) , m_showTurnAfterNext(showTurnAfterNext) + , m_minSpeedForRouteRebuildMpS(minSpeedForRouteRebuildMpS) , m_finishToleranceM(finishToleranceM) { } @@ -25,10 +28,9 @@ RoutingSettings GetRoutingSettings(VehicleType vehicleType) { case VehicleType::Pedestrian: return {false /* useDirectionForRouteBuilding */, - true /* m_matchRoute */, + false /* m_matchRoute */, false /* m_soundDirection */, 20.0 /* m_matchingThresholdM */, - true /* m_keepPedestrianInfo */, false /* m_showTurnAfterNext */, -1 /* m_minSpeedForRouteRebuildMpS */, 20.0 /* m_finishToleranceM */}; @@ -37,7 +39,6 @@ RoutingSettings GetRoutingSettings(VehicleType vehicleType) true /* m_matchRoute */, false /* m_soundDirection */, 40.0 /* m_matchingThresholdM */, - true /* m_keepPedestrianInfo */, false /* m_showTurnAfterNext */, -1 /* m_minSpeedForRouteRebuildMpS */, 20.0 /* m_finishToleranceM */}; @@ -46,7 +47,6 @@ RoutingSettings GetRoutingSettings(VehicleType vehicleType) true /* m_matchRoute */, true /* m_soundDirection */, 30.0 /* m_matchingThresholdM */, - false /* m_keepPedestrianInfo */, false /* m_showTurnAfterNext */, -1 /* m_minSpeedForRouteRebuildMpS */, 20.0 /* m_finishToleranceM */}; @@ -55,7 +55,6 @@ RoutingSettings GetRoutingSettings(VehicleType vehicleType) true /* m_matchRoute */, true /* m_soundDirection */, 50.0 /* m_matchingThresholdM */, - false /* m_keepPedestrianInfo */, true /* m_showTurnAfterNext */, routing::KMPH2MPS(3.0) /* m_minSpeedForRouteRebuildMpS */, 50.0 /* m_finishToleranceM */}; diff --git a/routing/routing_settings.hpp b/routing/routing_settings.hpp index b718d3268b..3fb8d09a04 100644 --- a/routing/routing_settings.hpp +++ b/routing/routing_settings.hpp @@ -2,11 +2,8 @@ #include "routing/vehicle_mask.hpp" -#include "base/assert.hpp" - namespace routing { - /// \brief The RoutingSettings struct is intended to collect all the settings of /// following along the route. /// For example, route matching properties, rerouting properties and so on. @@ -16,9 +13,10 @@ struct RoutingSettings private: RoutingSettings(bool useDirectionForRouteBuilding, bool matchRoute, bool soundDirection, - double matchingThresholdM, bool keepPedestrianInfo, bool showTurnAfterNext, + double matchingThresholdM, bool showTurnAfterNext, double minSpeedForRouteRebuildMpS, double finishToleranceM); + public: /// \brief We accumulate several positions to calculate current direction. /// So we can use this direction for car for ex. or don't for pedestrian for ex. @@ -38,10 +36,6 @@ public: /// the closest point to the route. double m_matchingThresholdM; - /// \brief m_keepPedestrianInfo flag for keeping in memory additional information for pedestrian - /// routing. - bool m_keepPedestrianInfo; - /// \brief if m_showTurnAfterNext is equal to true end users see a notification /// about the turn after the next in some cases. bool m_showTurnAfterNext;