[Routing] TurnDirections refactoring #2508
No reviewers
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#2508
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "navigation-refactoring"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Total refactoring of GetTurnDirection() and it's subfunctions.
A lot of new integration tests added (one additional map is required - Cyprus).
Old ones fixed where necessary.
Now only 3 tests failed:
bicycle_turn_test.cpp::RussiaMoscowSevTushinoParkBicycleWayTurnTest (arguable, see todo there)
turn_test.cpp::Russia_Moscow_BolshoyKislovskiyPerBolshayaNikitinskayaUl_TurnTest (bug of other system, see todo there)
turn_test.cpp::Netherlands_Barneveld_TurnTest (complicated new test).
Fixed:
#2417
#2438
Results of tests from pedestrian_directions.cpp are the same as before.
Updated: No, it makes code less consistent here.
A lot of places where turnInfo is used.
Pointer semantic is not the best there.
Mix in different places is not good too.
I had to change struct TurnInfo reference members:
to pointers:
because of new function, which require assignment operator (incompatible with reference members).
@biodranik Maybe better solution will be to use std::optional here and go back to references:
std::optional< turnInfo> = GetTurnInfo(result, outgoingSegmentIndex, vehicleSettings);
BTW, std::optional was introduced in C++17, but C++14 is used.
Frankly speaking I don't understand why it compiles now despite of -std=c++14 in CMAKE_CXX_FLAGS.
@ -13,58 +14,65 @@
#include <sstream>
#include <numeric>
extra "alternative"
align function params in column
@ -40,1 +32,3 @@
bool IsHighway(ftypes::HighwayClass hwClass, bool isLink)
// Min difference of route and alternative turn abs angles in degrees
// to ignore this alternative candidate (when alternative road is the same or smaller).
double constexpr kMinAbsAngleDiffForSameOrSmallerRoad = 35.0;
If so, I'd put main namespaces here to limit using scope and remove useless
using namespace routing;
using namespace routing::turns;
like this:
I'd prefer to see simple speedKmph = 100;
And make transform in the end:
distanceMeters / (speedKmph * 10.0 / 36.0);
@ -1111,189 +1012,225 @@ void GetTurnDirection(IRoutingResult const & result, size_t outgoingSegmentIndex
result, outgoingSegmentIndex, numMwmIds, vehicleSettings.m_maxOutgoingPointsCount,
vehicleSettings.m_minOutgoingDistMeters, true /* forward */);
if (!GetTurnInfo(...))
@ -13,58 +14,65 @@
#include <sstream>
#include <numeric>
ок
@ -13,58 +14,65 @@
#include <sstream>
#include <numeric>
ok
Agree. Even better - found
measurement_utils::KmphToMps()
and used it.
BTW there is duplicating function transit::KmphToMps()
@ -40,1 +32,3 @@
bool IsHighway(ftypes::HighwayClass hwClass, bool isLink)
// Min difference of route and alternative turn abs angles in degrees
// to ignore this alternative candidate (when alternative road is the same or smaller).
double constexpr kMinAbsAngleDiffForSameOrSmallerRoad = 35.0;
Do we need to keep anonymous namespace? Removed it.
@ -1111,189 +1012,225 @@ void GetTurnDirection(IRoutingResult const & result, size_t outgoingSegmentIndex
result, outgoingSegmentIndex, numMwmIds, vehicleSettings.m_maxOutgoingPointsCount,
vehicleSettings.m_minOutgoingDistMeters, true /* forward */);
Can I use organicmaps/organicmaps#2508 (comment)?
@ -1111,189 +1012,225 @@ void GetTurnDirection(IRoutingResult const & result, size_t outgoingSegmentIndex
result, outgoingSegmentIndex, numMwmIds, vehicleSettings.m_maxOutgoingPointsCount,
vehicleSettings.m_minOutgoingDistMeters, true /* forward */);
ok
@ -1111,189 +1012,225 @@ void GetTurnDirection(IRoutingResult const & result, size_t outgoingSegmentIndex
result, outgoingSegmentIndex, numMwmIds, vehicleSettings.m_maxOutgoingPointsCount,
vehicleSettings.m_minOutgoingDistMeters, true /* forward */);
Changed to
if (!GetTurnInfo(...))
If we had enough tests for pedestrians i would change MakeTurnAnnotationPedestrian() too.
Now it's almost full copy of MakeTurnAnnotation(). And both are not trivial.
@ -40,1 +32,3 @@
bool IsHighway(ftypes::HighwayClass hwClass, bool isLink)
// Min difference of route and alternative turn abs angles in degrees
// to ignore this alternative candidate (when alternative road is the same or smaller).
double constexpr kMinAbsAngleDiffForSameOrSmallerRoad = 35.0;
Is it OK?
@ -40,1 +32,3 @@
bool IsHighway(ftypes::HighwayClass hwClass, bool isLink)
// Min difference of route and alternative turn abs angles in degrees
// to ignore this alternative candidate (when alternative road is the same or smaller).
double constexpr kMinAbsAngleDiffForSameOrSmallerRoad = 35.0;
ok
@AntonM030481 I do merge? Or you gonna append the PR?
@vng Merge please.
Let's add more tests next time and continue to improve in next PR, if you don't mind.
@vng Sorry for huge amount of changes.
But I hope now it is more easy to understand and modify.
So next time I suppose changes will be not so dramatic.
Thank you for quick review.