From fe2fbc1511e6dd5d5c68b1aa6991e4908c227782 Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Fri, 11 Aug 2017 16:13:00 +0300 Subject: [PATCH] [MAPSME-5045] [ios] Added save/restore route points support. --- iphone/Maps/Classes/MapsAppDelegate.mm | 3 +++ iphone/Maps/Core/Routing/MWMRouter.h | 3 +++ iphone/Maps/Core/Routing/MWMRouter.mm | 26 ++++++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/iphone/Maps/Classes/MapsAppDelegate.mm b/iphone/Maps/Classes/MapsAppDelegate.mm index b1b1e12f89..1c78c8e441 100644 --- a/iphone/Maps/Classes/MapsAppDelegate.mm +++ b/iphone/Maps/Classes/MapsAppDelegate.mm @@ -404,6 +404,8 @@ using namespace osm_auth_ios; } [self enableTTSForTheFirstTime]; + [MWMRouter restoreRouteIfNeeded]; + return returnValue; } @@ -524,6 +526,7 @@ using namespace osm_auth_ios; - (void)applicationWillTerminate:(UIApplication *)application { [self.mapViewController onTerminate]; + [MWMRouter saveRouteIfNeeded]; #ifdef OMIM_PRODUCTION auto err = [[NSError alloc] initWithDomain:kMapsmeErrorDomain diff --git a/iphone/Maps/Core/Routing/MWMRouter.h b/iphone/Maps/Core/Routing/MWMRouter.h index 138893fc9b..8b9b56cd6f 100644 --- a/iphone/Maps/Core/Routing/MWMRouter.h +++ b/iphone/Maps/Core/Routing/MWMRouter.h @@ -47,6 +47,9 @@ typedef void (^MWMImageHeightBlock)(UIImage *, NSString *); + (BOOL)hasRouteAltitude; + (void)routeAltitudeImageForSize:(CGSize)size completion:(MWMImageHeightBlock)block; ++ (void)saveRouteIfNeeded; ++ (void)restoreRouteIfNeeded; + @end @interface MWMRouter (RouteManager) diff --git a/iphone/Maps/Core/Routing/MWMRouter.mm b/iphone/Maps/Core/Routing/MWMRouter.mm index b5e295894b..26ffa37791 100644 --- a/iphone/Maps/Core/Routing/MWMRouter.mm +++ b/iphone/Maps/Core/Routing/MWMRouter.mm @@ -645,4 +645,30 @@ void logPointEvent(MWMRoutePoint * point, NSString * eventType) } } +#pragma mark - Save / Load route points + ++ (void)saveRouteIfNeeded +{ + if ([self isRoutingActive]) + GetFramework().GetRoutingManager().SaveRoutePoints(); +} + ++ (void)restoreRouteIfNeeded +{ + if ([MapsAppDelegate theApp].isDrapeEngineCreated) + { + auto & rm = GetFramework().GetRoutingManager(); + if ([self isRoutingActive] || !rm.HasSavedRoutePoints()) + return; + rm.LoadRoutePoints(); + [self rebuildWithBestRouter:YES]; + } + else + { + dispatch_async(dispatch_get_main_queue(), ^{ + [self restoreRouteIfNeeded]; + }); + } +} + @end