[drape] Refactor apply_feature_functors #6243
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
2 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#6243
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "pastk-drape-apply_feature_functors"
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?
Follow-up to #6034.
Optimizations:
...and many minor things like replace redundant checks with asserts, less params wrapping and passing, simpler structure, etc.
P.S. I'll squash and sign commits after review.
I'd prefer to keep here and fix in other functors best (double) precision for m_currentScaleGtoP.
Also, make m_baseGtoPScale -> double (LineViewParams, AreaViewParams). Because later they are used as double. I suspect that may have an impact in points conversion. float plays only after the final points conversion.
Ok, I'll do!
actually it seems like in LineShape its used as float only
LGTM. Can't guarantee that I've checked all possible cases :)
All changes looks reasonable for me. Should test on devices.
Ok, good to convert here.
Why was this assert removed?
An explanation "why" it should not be here in the assert message would be helpful.
indentation?
and other TODOs too.
nit: refactor spline to set it in constructor's initializer list, like
m_spline{std::make_shared<m2::Spline>(f.GetPointsCount())}
Will compiler or IDE help us to know if we forgot to initialize/set some variable in all places?
The code doesn't check areaRule for null. Should it be a reference?
What is this case? How often does it happen? Should the higher level code filter it out?
Can you reuse these vars in the if above to avoid double checking of the same flags?
Why is it not needed anymore?
@ -28,0 +25,4 @@
static double constexpr k6plusScale = 2.4;
static double constexpr kXxhdpiScale = 3.0;
static double constexpr kXxxhdpiScale = 3.5;
There is no need to use
static
with constexpr.Why floats are assigned to doubles?
Why check and not assert?
Should it be ASSERT?
it was moved to drules loading in drawing_rules.cpp
fixed,thanks!
fixed, thanks!
fixed, thanks!
fixed
fixed, thanks
nope, they're init to defaults in shape_view_params.hpp...
nope, this code is under
#ifdef DEBUG
its being validated in kothic already
fixed, thanks!
@ -28,0 +25,4 @@
static double constexpr k6plusScale = 2.4;
static double constexpr kXxhdpiScale = 3.0;
static double constexpr kXxxhdpiScale = 3.5;
GCC complains
I prefer not to touch the Spline for now..
It happens when e.g. all feature's drules are not drawable on a given zoom level, normally it means the feature shouldn't be in the visibility index for this zoom. But there could be old mwms, vis changes in styles...
Maybe there are some other cases also.
What would be the benefit?
(looks like its more matter of style nowadays? https://stackoverflow.com/questions/6732706/c-passing-arguments-by-reference-and-pointer)
I thought to keep passing as pointers so its the same way across the whole file.
It's not about the spline class. Is spline recreation here necessary? Each allocation and deallocation slows down the code.
The benefit is that it's clear that a non-null object is expected.
Its not necessary and that is why I've removed it.
changed to refs
@ -28,0 +25,4 @@
static double constexpr k6plusScale = 2.4;
static double constexpr kXxhdpiScale = 3.0;
static double constexpr kXxxhdpiScale = 3.5;
My bad, in class members it's required!