forked from organicmaps/organicmaps
[iOS] Route building validation moved to RoutingManager
This commit is contained in:
parent
8606c53a1c
commit
13d3fdd8d0
2 changed files with 36 additions and 33 deletions
|
@ -138,11 +138,6 @@ m2::PointD getMercator(MWMRoutePoint * p)
|
|||
|
||||
- (MWMRouterType)type { return routerType(GetFramework().GetRoutingManager().GetRouter()); }
|
||||
|
||||
- (BOOL)arePointsValidForRouting
|
||||
{
|
||||
return self.startPoint.isValid && self.finishPoint.isValid && self.startPoint != self.finishPoint;
|
||||
}
|
||||
|
||||
- (void)applyRoutePoints
|
||||
{
|
||||
auto & rm = GetFramework().GetRoutingManager();
|
||||
|
@ -254,41 +249,36 @@ m2::PointD getMercator(MWMRoutePoint * p)
|
|||
{
|
||||
[self clearAltitudeImagesData];
|
||||
|
||||
bool isP2P = false;
|
||||
if (self.startPoint.isMyPosition)
|
||||
auto & rm = GetFramework().GetRoutingManager();
|
||||
auto points = rm.GetRoutePoints();
|
||||
if (points.size() == 2)
|
||||
{
|
||||
[Statistics logEvent:kStatPointToPoint
|
||||
withParameters:@{kStatAction : kStatBuildRoute, kStatValue : kStatFromMyPosition}];
|
||||
}
|
||||
else if (self.finishPoint.isMyPosition)
|
||||
{
|
||||
[Statistics logEvent:kStatPointToPoint
|
||||
withParameters:@{kStatAction : kStatBuildRoute, kStatValue : kStatToMyPosition}];
|
||||
}
|
||||
else
|
||||
{
|
||||
[Statistics logEvent:kStatPointToPoint
|
||||
withParameters:@{kStatAction : kStatBuildRoute, kStatValue : kStatPointToPoint}];
|
||||
isP2P = true;
|
||||
if (points.front().m_isMyPosition)
|
||||
{
|
||||
[Statistics logEvent:kStatPointToPoint
|
||||
withParameters:@{kStatAction : kStatBuildRoute, kStatValue : kStatFromMyPosition}];
|
||||
}
|
||||
else if (points.back().m_isMyPosition)
|
||||
{
|
||||
[Statistics logEvent:kStatPointToPoint
|
||||
withParameters:@{kStatAction : kStatBuildRoute, kStatValue : kStatToMyPosition}];
|
||||
}
|
||||
else
|
||||
{
|
||||
[Statistics logEvent:kStatPointToPoint
|
||||
withParameters:@{kStatAction : kStatBuildRoute, kStatValue : kStatPointToPoint}];
|
||||
}
|
||||
}
|
||||
|
||||
MWMMapViewControlsManager * mapViewControlsManager = [MWMMapViewControlsManager manager];
|
||||
[mapViewControlsManager onRoutePrepare];
|
||||
|
||||
auto & rm = GetFramework().GetRoutingManager();
|
||||
auto points = rm.GetRoutePoints();
|
||||
if (points.size() < 2 || ![self arePointsValidForRouting])
|
||||
{
|
||||
rm.CloseRouting(false /* remove route points */);
|
||||
return;
|
||||
}
|
||||
|
||||
// Taxi can't be used as best router.
|
||||
if (bestRouter && ![[self class] isTaxi])
|
||||
self.type = routerType(rm.GetBestRouter(points.front().m_position, points.back().m_position));
|
||||
|
||||
rm.BuildRoute(0 /* timeoutSec */);
|
||||
[mapViewControlsManager onRouteRebuild];
|
||||
rm.BuildRoute(0 /* timeoutSec */);
|
||||
}
|
||||
|
||||
- (void)start
|
||||
|
|
|
@ -389,10 +389,8 @@ void RoutingManager::BuildRoute(uint32_t timeoutSec)
|
|||
auto routePoints = GetRoutePoints();
|
||||
if (routePoints.size() < 2)
|
||||
{
|
||||
if (routePoints.empty() || routePoints.back().m_pointType != RouteMarkType::Finish)
|
||||
CallRouteBuilded(IRouter::EndPointNotFound, storage::TCountriesVec());
|
||||
else
|
||||
CallRouteBuilded(IRouter::StartPointNotFound, storage::TCountriesVec());
|
||||
CallRouteBuilded(IRouter::Cancelled, storage::TCountriesVec());
|
||||
CloseRouting(false /* remove route points */);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -411,6 +409,21 @@ void RoutingManager::BuildRoute(uint32_t timeoutSec)
|
|||
p.m_position = myPos;
|
||||
}
|
||||
|
||||
// Check for equal points.
|
||||
double const kEps = 1e-7;
|
||||
for (size_t i = 0; i < routePoints.size(); i++)
|
||||
{
|
||||
for (size_t j = i + 1; j < routePoints.size(); j++)
|
||||
{
|
||||
if (routePoints[i].m_position.EqualDxDy(routePoints[j].m_position, kEps))
|
||||
{
|
||||
CallRouteBuilded(IRouter::Cancelled, storage::TCountriesVec());
|
||||
CloseRouting(false /* remove route points */);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool const isP2P = !routePoints.front().m_isMyPosition && !routePoints.back().m_isMyPosition;
|
||||
|
||||
// Send tag to Push Woosh.
|
||||
|
|
Loading…
Add table
Reference in a new issue