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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
use std::cmp::Ordering;
use geom::{Circle, Distance, Duration, FindClosest, PolyLine, Polygon};
use map_gui::tools::PopupMsg;
use map_model::{Path, PathStep, NORMAL_LANE_THICKNESS};
use sim::{TripEndpoint, TripMode};
use widgetry::mapspace::{ToggleZoomed, ToggleZoomedBuilder};
use widgetry::{
Color, Drawable, EventCtx, GeomBatch, GfxCtx, Line, LinePlot, Outcome, Panel, PlotOptions,
ScreenDims, Series, Text, Widget,
};
use super::{before_after_button, RoutingPreferences};
use crate::app::{App, Transition};
pub struct BuiltRoute {
pub details: RouteDetails,
pub details_widget: Widget,
pub draw: ToggleZoomedBuilder,
pub hitbox: Polygon,
pub tooltip_for_alt: Option<Text>,
}
pub struct RouteDetails {
pub preferences: RoutingPreferences,
pub stats: RouteStats,
paths: Vec<(Path, Option<PolyLine>)>,
closest_path_segment: FindClosest<usize>,
hover_on_line_plot: Option<(Distance, Drawable)>,
hover_on_route_tooltip: Option<Text>,
draw_high_stress: Drawable,
draw_traffic_signals: Drawable,
draw_unprotected_turns: Drawable,
}
#[derive(PartialEq)]
pub struct RouteStats {
total_distance: Distance,
dist_along_high_stress_roads: Distance,
total_time: Duration,
num_traffic_signals: usize,
num_unprotected_turns: usize,
total_up: Distance,
total_down: Distance,
}
impl RouteDetails {
pub fn main_route(ctx: &mut EventCtx, app: &App, waypoints: Vec<TripEndpoint>) -> BuiltRoute {
RouteDetails::new_route(
ctx,
app,
waypoints,
Color::RED,
None,
app.session.routing_preferences,
)
}
pub fn alt_route(
ctx: &mut EventCtx,
app: &App,
waypoints: Vec<TripEndpoint>,
main: &RouteDetails,
preferences: RoutingPreferences,
) -> BuiltRoute {
let mut built = RouteDetails::new_route(
ctx,
app,
waypoints,
Color::grey(0.3),
Some(Color::RED),
preferences,
);
built.tooltip_for_alt = Some(compare_routes(
app,
&main.stats,
&built.details.stats,
preferences,
));
built
}
fn new_route(
ctx: &mut EventCtx,
app: &App,
waypoints: Vec<TripEndpoint>,
route_color: Color,
outline_color: Option<Color>,
preferences: RoutingPreferences,
) -> BuiltRoute {
let mut draw_route = ToggleZoomed::builder();
let mut hitbox_pieces = Vec::new();
let mut draw_high_stress = GeomBatch::new();
let mut draw_traffic_signals = GeomBatch::new();
let mut draw_unprotected_turns = GeomBatch::new();
let map = &app.primary.map;
let mut total_distance = Distance::ZERO;
let mut total_time = Duration::ZERO;
let mut dist_along_high_stress_roads = Distance::ZERO;
let mut num_traffic_signals = 0;
let mut num_unprotected_turns = 0;
let mut elevation_pts: Vec<(Distance, Distance)> = Vec::new();
let mut current_dist = Distance::ZERO;
let mut paths = Vec::new();
let mut closest_path_segment = FindClosest::new(map.get_bounds());
let routing_params = preferences.routing_params();
for pair in waypoints.windows(2) {
if let Some(path) = TripEndpoint::path_req(pair[0], pair[1], TripMode::Bike, map)
.and_then(|req| map.pathfind_with_params(req, &routing_params, true).ok())
{
total_distance += path.total_length();
total_time += path.estimate_duration(map, Some(map_model::MAX_BIKE_SPEED));
for step in path.get_steps() {
let this_pl = step.as_traversable().get_polyline(map);
match step {
PathStep::Lane(l) | PathStep::ContraflowLane(l) => {
let road = map.get_parent(*l);
if road.high_stress_for_bikes(map, road.lanes[l.offset].dir) {
dist_along_high_stress_roads += this_pl.length();
draw_high_stress.push(
Color::YELLOW,
this_pl.make_polygons(5.0 * NORMAL_LANE_THICKNESS),
);
}
}
PathStep::Turn(t) => {
let i = map.get_i(t.parent);
elevation_pts.push((current_dist, i.elevation));
if i.is_traffic_signal() {
num_traffic_signals += 1;
draw_traffic_signals.push(Color::YELLOW, i.polygon.clone());
}
if map.is_unprotected_turn(
t.src.road,
t.dst.road,
map.get_t(*t).turn_type,
) {
num_unprotected_turns += 1;
draw_unprotected_turns.push(Color::YELLOW, i.polygon.clone());
}
}
}
current_dist += this_pl.length();
}
let maybe_pl = path.trace(map);
if let Some(ref pl) = maybe_pl {
let shape = pl.make_polygons(5.0 * NORMAL_LANE_THICKNESS);
draw_route
.unzoomed
.push(route_color.alpha(0.8), shape.clone());
draw_route
.zoomed
.push(route_color.alpha(0.5), shape.clone());
hitbox_pieces.push(shape);
if let Some(color) = outline_color {
if let Some(outline) =
pl.to_thick_boundary(5.0 * NORMAL_LANE_THICKNESS, NORMAL_LANE_THICKNESS)
{
draw_route.unzoomed.push(color, outline.clone());
draw_route.zoomed.push(color.alpha(0.5), outline);
}
}
closest_path_segment.add(paths.len(), pl.points());
}
paths.push((path, maybe_pl));
}
}
let mut total_up = Distance::ZERO;
let mut total_down = Distance::ZERO;
for pair in elevation_pts.windows(2) {
let dy = pair[1].1 - pair[0].1;
if dy < Distance::ZERO {
total_down -= dy;
} else {
total_up += dy;
}
}
let stats = RouteStats {
total_distance,
dist_along_high_stress_roads,
total_time,
num_traffic_signals,
num_unprotected_turns,
total_up,
total_down,
};
let details_widget = make_detail_widget(ctx, app, &stats, elevation_pts);
BuiltRoute {
details: RouteDetails {
preferences,
draw_high_stress: ctx.upload(draw_high_stress),
draw_traffic_signals: ctx.upload(draw_traffic_signals),
draw_unprotected_turns: ctx.upload(draw_unprotected_turns),
paths,
closest_path_segment,
hover_on_line_plot: None,
hover_on_route_tooltip: None,
stats,
},
details_widget,
draw: draw_route,
hitbox: if hitbox_pieces.is_empty() {
Polygon::rectangle(0.0001, 0.0001)
} else {
Polygon::union_all(hitbox_pieces)
},
tooltip_for_alt: None,
}
}
pub fn event(
&mut self,
ctx: &mut EventCtx,
app: &App,
outcome: &Outcome,
panel: &mut Panel,
) -> Option<Transition> {
if let Outcome::Clicked(x) = outcome {
match x.as_ref() {
"high-stress roads" => {
return Some(Transition::Push(PopupMsg::new_state(
ctx,
"High-stress roads",
vec![
"Roads are defined as high-stress for biking if:",
"- they're classified as arterials",
"- they lack dedicated space for biking",
],
)));
}
"traffic signals" | "unprotected turns" => {
return Some(Transition::Keep);
}
_ => {
return None;
}
}
}
if let Some(line_plot) = panel.maybe_find::<LinePlot<Distance, Distance>>("elevation") {
let current_dist_along = line_plot.get_hovering().get(0).map(|pair| pair.0);
if self.hover_on_line_plot.as_ref().map(|pair| pair.0) != current_dist_along {
self.hover_on_line_plot = current_dist_along.map(|mut dist| {
let mut batch = GeomBatch::new();
for (path, maybe_pl) in &self.paths {
if dist > path.total_length() {
dist -= path.total_length();
continue;
}
if let Some(ref pl) = maybe_pl {
if let Ok((pt, _)) = pl.dist_along(dist) {
batch.push(
Color::YELLOW,
Circle::new(pt, Distance::meters(30.0)).to_polygon(),
);
}
}
break;
}
(dist, batch.upload(ctx))
});
}
}
if ctx.redo_mouseover() {
self.hover_on_route_tooltip = None;
if let Some(pt) = ctx.canvas.get_cursor_in_map_space() {
if let Some((idx, pt)) = self
.closest_path_segment
.closest_pt(pt, 10.0 * NORMAL_LANE_THICKNESS)
{
let mut dist = Distance::ZERO;
for (path, _) in &self.paths[0..idx] {
dist += path.total_length();
}
if let Some(ref pl) = self.paths[idx].1 {
if let Some((dist_here, _)) = pl.dist_along_of_point(pt) {
let map = &app.primary.map;
let elevation = match self.paths[idx]
.0
.get_step_at_dist_along(map, dist_here)
.unwrap_or_else(|_| self.paths[idx].0.last_step())
{
PathStep::Lane(l) | PathStep::ContraflowLane(l) => {
map.get_i(map.get_l(l).src_i).elevation
}
PathStep::Turn(t) => map.get_i(t.parent).elevation,
};
panel
.find_mut::<LinePlot<Distance, Distance>>("elevation")
.set_hovering(ctx, "Elevation", dist + dist_here, elevation);
self.hover_on_route_tooltip = Some(Text::from(Line(format!(
"Elevation: {}",
elevation.to_string(&app.opts.units)
))));
}
}
}
}
}
None
}
pub fn draw(&self, g: &mut GfxCtx, panel: &Panel) {
if let Some((_, ref draw)) = self.hover_on_line_plot {
g.redraw(draw);
}
if let Some(ref txt) = self.hover_on_route_tooltip {
g.draw_mouse_tooltip(txt.clone());
}
if panel.currently_hovering() == Some(&"high-stress roads".to_string()) {
g.redraw(&self.draw_high_stress);
}
if panel.currently_hovering() == Some(&"traffic signals".to_string()) {
g.redraw(&self.draw_traffic_signals);
}
if panel.currently_hovering() == Some(&"unprotected turns".to_string()) {
g.redraw(&self.draw_unprotected_turns);
}
}
}
fn make_detail_widget(
ctx: &mut EventCtx,
app: &App,
stats: &RouteStats,
elevation_pts: Vec<(Distance, Distance)>,
) -> Widget {
let pct_stressful = if stats.total_distance == Distance::ZERO {
0.0
} else {
((stats.dist_along_high_stress_roads / stats.total_distance) * 100.0).round()
};
Widget::col(vec![
Line("Route details").small_heading().into_widget(ctx),
before_after_button(ctx, app),
Text::from_all(vec![
Line("Distance: ").secondary(),
Line(stats.total_distance.to_string(&app.opts.units)),
])
.into_widget(ctx),
Widget::row(vec![
Text::from_all(vec![
Line(format!(
" {} or {}%",
stats
.dist_along_high_stress_roads
.to_string(&app.opts.units),
pct_stressful
)),
Line(" along ").secondary(),
])
.into_widget(ctx)
.centered_vert(),
ctx.style()
.btn_plain
.btn()
.label_underlined_text("high-stress roads")
.build_def(ctx),
]),
Text::from_all(vec![
Line("Estimated time: ").secondary(),
Line(stats.total_time.to_string(&app.opts.units)),
])
.into_widget(ctx),
Widget::row(vec![
Line("Traffic signals crossed: ")
.secondary()
.into_widget(ctx)
.centered_vert(),
ctx.style()
.btn_plain
.btn()
.label_underlined_text(stats.num_traffic_signals.to_string())
.build_widget(ctx, "traffic signals"),
]),
Widget::row(vec![
Line("Unprotected left turns onto busy roads: ")
.secondary()
.into_widget(ctx)
.centered_vert(),
ctx.style()
.btn_plain
.btn()
.label_underlined_text(stats.num_unprotected_turns.to_string())
.build_widget(ctx, "unprotected turns"),
]),
Text::from_all(vec![
Line("Elevation change: ").secondary(),
Line(format!(
"{}↑, {}↓",
stats.total_up.to_string(&app.opts.units),
stats.total_down.to_string(&app.opts.units)
)),
])
.into_widget(ctx),
LinePlot::new_widget(
ctx,
"elevation",
vec![Series {
label: "Elevation".to_string(),
color: Color::RED,
pts: elevation_pts,
}],
PlotOptions {
max_x: Some(stats.total_distance.round_up_for_axis()),
max_y: Some(app.primary.map.max_elevation().round_up_for_axis()),
dims: Some(ScreenDims {
width: 400.0,
height: 200.0,
}),
..Default::default()
},
app.opts.units,
),
])
}
fn compare_routes(
app: &App,
main: &RouteStats,
alt: &RouteStats,
preferences: RoutingPreferences,
) -> Text {
let mut txt = Text::new();
txt.add_line(Line(format!("Click to use {} trip", preferences.name())));
cmp_dist(
&mut txt,
app,
alt.total_distance - main.total_distance,
"shorter",
"longer",
);
cmp_duration(
&mut txt,
app,
alt.total_time - main.total_time,
"shorter",
"longer",
);
cmp_dist(
&mut txt,
app,
alt.dist_along_high_stress_roads - main.dist_along_high_stress_roads,
"less on high-stress roads",
"more on high-stress roads",
);
if alt.total_up != main.total_up || alt.total_down != main.total_down {
txt.add_line(Line("Elevation change: "));
let up = alt.total_up - main.total_up;
match up.cmp(&Distance::ZERO) {
Ordering::Less => {
txt.append(
Line(format!("{} less ↑", (-up).to_string(&app.opts.units))).fg(Color::GREEN),
);
}
Ordering::Greater => {
txt.append(
Line(format!("{} more ↑", up.to_string(&app.opts.units))).fg(Color::RED),
);
}
Ordering::Equal => {}
}
}
txt
}
fn cmp_dist(txt: &mut Text, app: &App, dist: Distance, shorter: &str, longer: &str) {
match dist.cmp(&Distance::ZERO) {
Ordering::Less => {
txt.add_line(
Line(format!(
"{} {}",
(-dist).to_string(&app.opts.units),
shorter
))
.fg(Color::GREEN),
);
}
Ordering::Greater => {
txt.add_line(
Line(format!("{} {}", dist.to_string(&app.opts.units), longer)).fg(Color::RED),
);
}
Ordering::Equal => {}
}
}
fn cmp_duration(txt: &mut Text, app: &App, duration: Duration, shorter: &str, longer: &str) {
match duration.cmp(&Duration::ZERO) {
Ordering::Less => {
txt.add_line(
Line(format!(
"{} {}",
(-duration).to_string(&app.opts.units),
shorter
))
.fg(Color::GREEN),
);
}
Ordering::Greater => {
txt.add_line(
Line(format!(
"{} {}",
duration.to_string(&app.opts.units),
longer
))
.fg(Color::RED),
);
}
Ordering::Equal => {}
}
}