1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
use std::cell::RefCell;
use aabb_quadtree::QuadTree;
use lazy_static::lazy_static;
use regex::Regex;
use geom::{Distance, Pt2D};
use map_model::{osm, Road};
use widgetry::{Color, Drawable, GeomBatch, GfxCtx, Line, Text};
use crate::AppLike;
pub struct DrawRoadLabels {
per_zoom: RefCell<[Option<Drawable>; 11]>,
include_roads: Box<dyn Fn(&Road) -> bool>,
fg_color: Color,
outline_color: Color,
}
impl DrawRoadLabels {
pub fn new(include_roads: Box<dyn Fn(&Road) -> bool>) -> Self {
Self {
per_zoom: Default::default(),
include_roads,
fg_color: Color::WHITE,
outline_color: Color::BLACK,
}
}
pub fn only_major_roads() -> Self {
Self::new(Box::new(|r| {
r.get_rank() != osm::RoadRank::Local && !r.is_light_rail()
}))
}
pub fn light_background(mut self) -> Self {
self.fg_color = Color::BLACK;
self.outline_color = Color::WHITE;
self
}
pub fn draw(&self, g: &mut GfxCtx, app: &dyn AppLike) {
let (zoom, idx) = Self::discretize_zoom(g.canvas.cam_zoom);
let value = &mut self.per_zoom.borrow_mut()[idx];
if value.is_none() {
*value = Some(self.render(g, app, zoom));
}
g.redraw(value.as_ref().unwrap());
}
fn discretize_zoom(zoom: f64) -> (f64, usize) {
if zoom >= 1.0 {
return (1.0, 10);
}
let rounded = (zoom * 10.0).round();
let idx = rounded as usize;
(rounded / 10.0, idx)
}
fn render(&self, g: &mut GfxCtx, app: &dyn AppLike, zoom: f64) -> Drawable {
let mut batch = GeomBatch::new();
let map = app.map();
let text_scale = 1.0 + 2.0 * (1.0 - zoom);
let mut quadtree = QuadTree::default(map.get_bounds().as_bbox());
'ROAD: for r in map.all_roads() {
if !(self.include_roads)(r) || r.length() < Distance::meters(30.0) {
continue;
}
let name = if let Some(x) = simplify_name(r.get_name(app.opts().language.as_ref())) {
x
} else {
continue;
};
let (pt, angle) = r.center_pts.must_dist_along(r.length() / 2.0);
fn cheaply_overestimate_bounds(
text: &str,
text_scale: f64,
center: Pt2D,
angle: geom::Angle,
) -> geom::Bounds {
let letter_width = 30.0 * text_scale;
let letter_height = 30.0 * text_scale;
geom::Polygon::rectangle_centered(
center,
Distance::meters(letter_width * text.len() as f64),
Distance::meters(letter_height),
)
.rotate(angle.reorient())
.get_bounds()
}
let big_bounds = cheaply_overestimate_bounds(&name, text_scale, pt, angle);
if !quadtree.query(big_bounds.as_bbox()).is_empty() {
continue 'ROAD;
}
quadtree.insert_with_box((), big_bounds.as_bbox());
let txt = Text::from(
Line(&name)
.big_heading_plain()
.fg(self.fg_color)
.outlined(self.outline_color),
);
let txt_batch = txt
.render_autocropped(g)
.scale(text_scale)
.centered_on(pt)
.rotate_around_batch_center(angle.reorient());
batch.append(txt_batch);
}
g.upload(batch)
}
}
fn simplify_name(mut x: String) -> Option<String> {
if x == "???" || x.starts_with("Exit for ") {
return None;
}
lazy_static! {
static ref SIMPLIFY_PATTERNS: Vec<(Regex, String)> = simplify_patterns();
}
for (search, replace_with) in SIMPLIFY_PATTERNS.iter() {
x = search.replace(&x, replace_with).to_string();
}
Some(x)
}
fn simplify_patterns() -> Vec<(Regex, String)> {
let mut replace = Vec::new();
for (long, short) in [
("Northeast", "NE"),
("Northwest", "NW"),
("Southeast", "SE"),
("Southwest", "SW"),
("North", "N"),
("South", "S"),
("East", "E"),
("West", "W"),
] {
replace.push((
Regex::new(&format!("^{}", long)).unwrap(),
short.to_string(),
));
replace.push((
Regex::new(&format!("{}$", long)).unwrap(),
short.to_string(),
));
}
for (long, short) in [
("Street", "St"),
("Boulevard", "Blvd"),
("Avenue", "Ave"),
("Place", "Pl"),
] {
replace.push((
Regex::new(&format!("{}$", long)).unwrap(),
short.to_string(),
));
replace.push((
Regex::new(&format!(" {} ", long)).unwrap(),
format!(" {} ", short),
));
}
replace
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_simplify_name() {
for (input, want) in [
("Northeast Northgate Way", "NE Northgate Way"),
("South 42nd Street", "S 42nd St"),
] {
let got = simplify_name(input.to_string()).unwrap();
if got != want {
panic!("simplify_name({}) = {}; expected {}", input, got, want);
}
}
}
}