From 3cdb79fccba0e1e02a1c7bfb2894a9580d374a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Gomes?= Date: Tue, 2 Apr 2024 15:52:58 +0100 Subject: [PATCH] Fix #2833: Routing mode resets origin point to current location when re-opening the app The application replaced the origin point solely based on if it had found the user's location. Added a parameter to the RouteMarkData struct which is saved alongside the start point. This is used on start up to determine if the origin point of the route should be kept or replaced with the user's location (if one is found). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fábio Gomes --- map/routing_manager.cpp | 19 ++++++++++++++----- map/routing_mark.hpp | 1 + 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/map/routing_manager.cpp b/map/routing_manager.cpp index 97785eba45..d59fb69abc 100644 --- a/map/routing_manager.cpp +++ b/map/routing_manager.cpp @@ -103,6 +103,7 @@ RouteMarkData GetLastPassedPoint(BookmarkManager * bmManager, vectorMyPositionMark().GetPivot(); data.m_isMyPosition = false; + data.m_replaceWithMyPosition = true; } return data; @@ -116,6 +117,7 @@ void SerializeRoutePoint(json_t * node, RouteMarkData const & data) ToJSONObject(*node, "subtitle", data.m_subTitle); ToJSONObject(*node, "x", data.m_position.x); ToJSONObject(*node, "y", data.m_position.y); + ToJSONObject(*node, "replaceWithMyPosition", data.m_replaceWithMyPosition); } RouteMarkData DeserializeRoutePoint(json_t * node) @@ -133,6 +135,8 @@ RouteMarkData DeserializeRoutePoint(json_t * node) FromJSONObject(node, "x", data.m_position.x); FromJSONObject(node, "y", data.m_position.y); + FromJSONObject(node, "replaceWithMyPosition", data.m_replaceWithMyPosition); + return data; } @@ -1397,13 +1401,18 @@ void RoutingManager::LoadRoutePoints(LoadRouteHandler const & handler) [this, handler, points = std::move(points)]() mutable { ASSERT(m_bmManager != nullptr, ()); - // If we have found my position, we use my position as start point. + // If we have found my position and the saved route used the user's position, we use my position as start point. + bool routeUsedPosition = false; auto const & myPosMark = m_bmManager->MyPositionMark(); auto editSession = m_bmManager->GetEditSession(); editSession.ClearGroup(UserMark::Type::ROUTING); for (auto & p : points) { - if (p.m_pointType == RouteMarkType::Start && myPosMark.HasPosition()) + // Check if the saved route used the user's position + if (p.m_replaceWithMyPosition && p.m_pointType == RouteMarkType::Start) + routeUsedPosition = true; + + if (p.m_replaceWithMyPosition && p.m_pointType == RouteMarkType::Start && myPosMark.HasPosition()) { RouteMarkData startPt; startPt.m_pointType = RouteMarkType::Start; @@ -1417,9 +1426,9 @@ void RoutingManager::LoadRoutePoints(LoadRouteHandler const & handler) } } - // If we don't have my position, save loading timestamp. Probably - // we will get my position soon. - if (!myPosMark.HasPosition()) + // If we don't have my position and the saved route used it, save loading timestamp. + // Probably we will get my position soon. + if (routeUsedPosition && !myPosMark.HasPosition()) m_loadRoutePointsTimestamp = chrono::steady_clock::now(); if (handler) diff --git a/map/routing_mark.hpp b/map/routing_mark.hpp index d147de22ce..e2d0007add 100644 --- a/map/routing_mark.hpp +++ b/map/routing_mark.hpp @@ -22,6 +22,7 @@ struct RouteMarkData bool m_isVisible = true; bool m_isMyPosition = false; bool m_isPassed = false; + bool m_replaceWithMyPosition = false; m2::PointD m_position; };