[drape] Refactor Stylist and RuleDrawer #6034
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
3 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#6034
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "pastk-drape-stylist"
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?
Depends on housenumbers PRs, so please check the last commit only!
Simplify the structure, reduce same parameters passing and storing several times, better division of classes' responsibilities, many smaller optimizations (like don't do various pre-processing if there are no drules that will use it), get rid of TRuleWrapper...
I plan to continue refactoring the related code in subsequent PRs:
nit: It looks very safe, but we usually don't write const for integral types in input function params by value.
Unusual syntax overhead imo.
How NAN is possible in theory?
nit: one-line without {}
@ -704,19 +739,20 @@ void ApplyAreaFeature::CalculateBuildingOutline(bool calculateNormals, BuildingO
}
}
nit: Same here for const
Aha, here it is :) I'd prefer simple -1 value and check that areaDepth > 0 in a Priprity function.
@ -385,1 +381,3 @@
s.ForEachRule(std::bind(&ApplyLineFeatureAdditional::ProcessLineRule, &applyAdditional, _1));
ApplyLineFeatureAdditional applyAdditional(m_context->GetTileKey(), insertShape, f, m_currentScaleGtoP,
s.GetCaptionDescription(), clippedSplines);
if (s.m_pathtextRule != nullptr)
Should be >0 right?
My fix is missing. Happens that areaSize is 0 -> areaSizeCompact is NAN.
yeap lost in a rebase
I'll fix it.
areaDepth should be in the
[-11000,-10100)
range, but we might move/resize the ranges, so using NAN is more reliable.fixed
fixed
@ -704,19 +739,20 @@ void ApplyAreaFeature::CalculateBuildingOutline(bool calculateNormals, BuildingO
}
}
fixed
Please do not use NAN. We use -ffast-math in our code.
Yes, add kEmptyDepth constant somewhere near kBaseDepthXXX.
Changed to an out-of-range const.
PTAL!
nit: remove const
nit: remove const near bool
nit: Here can add double const depth
@ -262,13 +40,13 @@ bool IsHatchingTerritoryChecker::IsMatched(uint32_t type) const
return std::find(iEnd3, m_types.end(), PrepareToMatch(type, 2)) != m_types.end();
nit: Remove consts here
nit: remove const
nit: remove consts here