[routing] Add the street name to verbal turn instructions #3118

Closed
zyphlar wants to merge 1 commit from announce_streets_verbally into master
Member

Inserts the "nextStreet" variable into the Notifications struct
and then speaks that value with a new "onto" localized word joining
things for TTS output like "in 500 meters, turn left onto Main St."

I omitted the immediate "turn left / then turn right" notifications
since by then it's usually too late to read a street sign and it
can sound repetitious. A TODO is to check highway entrances/exits for
sane language (ideally "Take exit 123 for Main Street, City Center.)

I've added the "onto" localized string and poorly translated it into
all language files. A few languages didn't seem to have equivalents.
I also removed the period from the locale strings so announcements
flow naturally as one sentence.

The best localization would probably be to use formatter strings,
like "in 5000 feet" "turn left onto %s" so that languages with other
orderings or dynamic prepositional syntaxes can sound more natural.


Signed DCO.


I'm not natively a CPP programmer and I don't know how to run the test suite, I'm sure the TTS changes may cause those tests to fail.
Also I'm unsure what the localization/translation process is like, marking the "onto" string as desiring of feedback would be ideal.
I've tested this on my Android 12 phone but have no way to test iPhone.

Inserts the "nextStreet" variable into the Notifications struct and then speaks that value with a new "onto" localized word joining things for TTS output like "in 500 meters, turn left onto Main St." I omitted the immediate "turn left / then turn right" notifications since by then it's usually too late to read a street sign and it can sound repetitious. A TODO is to check highway entrances/exits for sane language (ideally "Take exit 123 for Main Street, City Center.) I've added the "onto" localized string and poorly translated it into all language files. A few languages didn't seem to have equivalents. I also removed the period from the locale strings so announcements flow naturally as one sentence. The best localization would probably be to use formatter strings, like "in 5000 feet" "turn left onto %s" so that languages with other orderings or dynamic prepositional syntaxes can sound more natural. --- Signed DCO. --- I'm not natively a CPP programmer and I don't know how to run the test suite, I'm sure the TTS changes may cause those tests to fail. Also I'm unsure what the localization/translation process is like, marking the `"onto"` string as desiring of feedback would be ideal. I've tested this on my Android 12 phone but have no way to test iPhone.
vng commented 2022-08-08 05:05:17 +00:00 (Migrated from github.com)

Great, thanks!

  • Please, fix ./data/strings/sounds.txt. Files like ./data/sound-strings/ar.json are generated by ./tools/unix/generate_localizations.sh script.
  • Better to take out string manipulations into separate commit.

Will take a look at the code :)

Great, thanks! - Please, fix ./data/strings/sounds.txt. Files like ./data/sound-strings/ar.json are generated by ./tools/unix/generate_localizations.sh script. - Better to take out string manipulations into separate commit. Will take a look at the code :)
vng (Migrated from github.com) reviewed 2022-08-08 05:13:29 +00:00
@ -76,2 +76,3 @@
measurement_utils::Units lengthUnits) const
measurement_utils::Units lengthUnits,
std::string nextStreet) const
{
vng (Migrated from github.com) commented 2022-08-08 05:11:58 +00:00

Better to use std::string const & nextStreet here and below.

Better to use std::string const & nextStreet here and below.
vng (Migrated from github.com) commented 2022-08-08 05:08:38 +00:00

We should add "onto" to the sound.txt with all the localizations. And I suspect that it's not an easy task according to languages grammar (not sure that we even can rely on a fixed word's order).

We should add "onto" to the sound.txt with all the localizations. And I suspect that it's not an easy task according to languages grammar (not sure that we even can rely on a fixed word's order).
Author
Member

@vng thanks for the review, all this seems fine. I mentioned the possibility of using formatter strings like

sprintf("Turn left onto %s", streetName);

However this would duplicate half the sounds.txt and as far as I could tell from automated translation suggestions only benefit a few languages, with Japanese and Turkish coming to mind, maybe a couple others. (Most languages seem happy to have the same ordering and I suspect users of these languages may be able to understand even if it sounds artificial... it is a robot after all.) I also worry about missing strings or misaligned formatters/types, maybe a sprintf wrapper to sanity check the inputs is advised.

Your choice, I am happy to do either way. Did you want me to edit strings.txt in this PR while reverting the individual locale files?

@vng thanks for the review, all this seems fine. I mentioned the possibility of using formatter strings like ``` sprintf("Turn left onto %s", streetName); ``` However this would duplicate half the sounds.txt and as far as I could tell from automated translation suggestions only benefit a few languages, with Japanese and Turkish coming to mind, maybe a couple others. (Most languages seem happy to have the same ordering and I suspect users of these languages may be able to understand even if it sounds artificial... it is a robot after all.) I also worry about missing strings or misaligned formatters/types, maybe a sprintf wrapper to sanity check the inputs is advised. Your choice, I am happy to do either way. Did you want me to edit strings.txt in this PR while reverting the individual locale files?
vng commented 2022-08-08 06:19:21 +00:00 (Migrated from github.com)

Agree, so:
1st commit: remove useless dots, add "onto" stub into sound.txt
2nd commit: Regenerated strings by generate_localizations.sh
3rd commit: Code modifications

Agree, so: 1st commit: remove useless dots, add "onto" stub into sound.txt 2nd commit: Regenerated strings by generate_localizations.sh 3rd commit: Code modifications
Author
Member

@vng which do you prefer, copying half of sound.txt like

[turn_right]
en: Turn right

[turn_right_onto]
en: Turn right onto %s

Or simply adding a single new string and forcing a few languages to have Western-style ordering:

[onto]
en: on to
@vng which do you prefer, copying half of sound.txt like ``` [turn_right] en: Turn right [turn_right_onto] en: Turn right onto %s ``` Or simply adding a single new string and forcing a few languages to have Western-style ordering: ``` [onto] en: on to ```
vng commented 2022-08-08 06:35:43 +00:00 (Migrated from github.com)

Single one new string [onto]

Single one new string [onto]
Author
Member

No problem will do. How can/should I run the cpp test suite locally to ensure no tests are broken?

No problem will do. How can/should I run the cpp test suite locally to ensure no tests are broken?
vng commented 2022-08-08 06:54:57 +00:00 (Migrated from github.com)

I'm not sure that this particular case is covered, but simply run routing_tests.

I'm not sure that this particular case is covered, but simply run routing_tests.
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
2 participants
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#3118
No description provided.