[Navigation] Refactoring of CarDirectionsEngine and PedestrianDirectionsEngine #2547

Merged
AntonM030481 merged 11 commits from navigation-refactoring into master 2022-05-16 16:29:59 +00:00
AntonM030481 commented 2022-05-12 16:25:12 +00:00 (Migrated from github.com)

Reason:
A lot of duplicated code which is not easy to read.
Results are not easy to understand.

  1. Preparation by updating pedestrian turn tests.
  2. Make functions the same, but hold different names. Line by line comparison can be seen here.
  3. Remove MakeTurnAnnotationPedestrian.
  4. Added comments for input and output data structures.

Logical continuation is changing of CarDirectionsEngine and PedestrianDirectionsEngine (childs of DirectionsEngine).
Currently the only method they have - almost identical Generate().

Suggested changes:
MakeTurnAnnotation() - becomes method of DirectionsEngine.
All VehicleType dependent logic is incapsulated in virtual methods GetTurnDirection(), FixupTurns().
Existing functions become methods of CarDirectionsEngine and PedestrianDirectionsEngine.

If this next step is OK, I will make changes in this PR.

Reason: A lot of duplicated code which is not easy to read. Results are not easy to understand. 1. Preparation by updating pedestrian turn tests. 2. Make functions the same, but hold different names. Line by line comparison can be seen here. 3. Remove MakeTurnAnnotationPedestrian. 4. Added comments for input and output data structures. Logical continuation is changing of CarDirectionsEngine and PedestrianDirectionsEngine (childs of DirectionsEngine). Currently the only method they have - almost identical Generate(). Suggested changes: MakeTurnAnnotation() - becomes method of DirectionsEngine. All VehicleType dependent logic is incapsulated in virtual methods GetTurnDirection(), FixupTurns(). Existing functions become methods of CarDirectionsEngine and PedestrianDirectionsEngine. If this next step is OK, I will make changes in this PR.
vng commented 2022-05-12 17:04:28 +00:00 (Migrated from github.com)

@AntonM030481 You are doing great, so do not hesitate to refactor according to your vision of a better code.

@AntonM030481 You are doing great, so do not hesitate to refactor according to your vision of a better code.
AntonM030481 commented 2022-05-13 17:02:12 +00:00 (Migrated from github.com)

No further changes are planned. Ready for review.

No further changes are planned. Ready for review.
vng commented 2022-05-13 17:31:34 +00:00 (Migrated from github.com)

Is it necessary to update icu and boost here?

Is it necessary to update icu and boost here?
vng (Migrated from github.com) reviewed 2022-05-13 18:09:49 +00:00
vng (Migrated from github.com) commented 2022-05-13 17:40:07 +00:00

Sure that junctions is not empty here?

Sure that junctions is not empty here?
vng (Migrated from github.com) commented 2022-05-13 17:48:02 +00:00

So if validFirstOutgoingSeg == false, we can return false immediately before this loop.
Or there is an error here in logic ..

So if validFirstOutgoingSeg == false, we can return false immediately before this loop. Or there is an error here in logic ..
vng (Migrated from github.com) commented 2022-05-13 17:50:52 +00:00

Should we take out named constant = 70?

Should we take out named constant = 70?
vng (Migrated from github.com) commented 2022-05-13 18:00:53 +00:00

Can assign directly without intermediate outgoingSegmentDist here

Can assign directly without intermediate outgoingSegmentDist here
vng (Migrated from github.com) commented 2022-05-13 18:07:55 +00:00

Split on 2 lines

Split on 2 lines
vng (Migrated from github.com) commented 2022-05-13 18:08:56 +00:00

Split like normal block:
{
...
};

Split like normal block: { ... };
AntonM030481 commented 2022-05-16 07:49:01 +00:00 (Migrated from github.com)

Reset + push --force to remove accidental icu and boost changes.

Reset + push --force to remove accidental icu and boost changes.
AntonM030481 (Migrated from github.com) reviewed 2022-05-16 08:24:12 +00:00
AntonM030481 (Migrated from github.com) commented 2022-05-16 08:24:11 +00:00

Yes. Added assert just in case.

Yes. Added assert just in case.
AntonM030481 (Migrated from github.com) reviewed 2022-05-16 12:21:38 +00:00
AntonM030481 (Migrated from github.com) commented 2022-05-16 12:21:38 +00:00

ok

ok
AntonM030481 (Migrated from github.com) reviewed 2022-05-16 12:22:48 +00:00
AntonM030481 (Migrated from github.com) commented 2022-05-16 12:22:48 +00:00

ok

ok
AntonM030481 (Migrated from github.com) reviewed 2022-05-16 12:34:13 +00:00
AntonM030481 (Migrated from github.com) commented 2022-05-16 12:34:12 +00:00

ok

ok
AntonM030481 (Migrated from github.com) reviewed 2022-05-16 12:52:53 +00:00
AntonM030481 (Migrated from github.com) commented 2022-05-16 12:52:53 +00:00

ok

ok
AntonM030481 (Migrated from github.com) reviewed 2022-05-16 13:14:58 +00:00
AntonM030481 (Migrated from github.com) commented 2022-05-16 13:14:58 +00:00

In fact this check can be removed.
It was checked before in GetTurnDirectionBasic().

In fact this check can be removed. It was checked before in GetTurnDirectionBasic().
vng (Migrated from github.com) approved these changes 2022-05-16 13:31:59 +00:00
AntonM030481 commented 2022-05-16 13:32:40 +00:00 (Migrated from github.com)

Ready for merge.

Ready for merge.
vng commented 2022-05-16 14:26:38 +00:00 (Migrated from github.com)

Please, rebase and resolve conflicts.

Please, rebase and resolve conflicts.
AntonM030481 commented 2022-05-16 14:33:23 +00:00 (Migrated from github.com)

I am not an expert in git.
This branch is 11 commits ahead of organicmaps/organicmaps:master.
Does it mean that there are no conflicts now?

A had merge before organicmaps/organicmaps#2547/commits/be8f4e064e13b904700c2f541c1f7ef44a150d39

Update: trying to rebase.

I am not an expert in git. This branch is 11 commits ahead of organicmaps/organicmaps:master. Does it mean that there are no conflicts now? A had merge before https://git.omaps.dev/organicmaps/organicmaps/pulls/2547/commits/be8f4e064e13b904700c2f541c1f7ef44a150d39 Update: trying to rebase.
vng commented 2022-05-16 15:15:53 +00:00 (Migrated from github.com)

@AntonM030481 Don't worry, seems like I can squash and merge. You have got conflicts between your commits some how ..

@AntonM030481 Don't worry, seems like I can squash and merge. You have got conflicts between your commits some how ..
AntonM030481 commented 2022-05-16 15:58:12 +00:00 (Migrated from github.com)

@vng Do you need any assistance?

@vng Do you need any assistance?
AntonM030481 commented 2022-05-16 16:07:16 +00:00 (Migrated from github.com)

This is commit message for squash:

[Routing] Refactoring of CarDirectionsEngine and PedestrianDirectionsEngine

Almost identical Generate()
from CarDirectionsEngine and PedestrianDirectionsEngine
moved to parent class.

MakeTurnAnnotation() - became method of DirectionsEngine.

All VehicleType dependent logic was incapsulated in virtual methods:
- GetTurnDirection()
- FixupTurns().

According existing functions became methods of
CarDirectionsEngine and PedestrianDirectionsEngine.

VehicleType dependent functions moved
from turns_generator to according DirectionsEngines.

Pedestrian turn tests updated.
This is commit message for squash: ``` [Routing] Refactoring of CarDirectionsEngine and PedestrianDirectionsEngine Almost identical Generate() from CarDirectionsEngine and PedestrianDirectionsEngine moved to parent class. MakeTurnAnnotation() - became method of DirectionsEngine. All VehicleType dependent logic was incapsulated in virtual methods: - GetTurnDirection() - FixupTurns(). According existing functions became methods of CarDirectionsEngine and PedestrianDirectionsEngine. VehicleType dependent functions moved from turns_generator to according DirectionsEngines. Pedestrian turn tests updated. ```
AntonM030481 commented 2022-05-16 16:32:04 +00:00 (Migrated from github.com)

@vng Thank you!

@vng Thank you!
This repo is archived. You cannot comment on pull requests.
No reviewers
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
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#2547
No description provided.