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
use geom::{Distance, Duration};
use map_model::NORMAL_LANE_THICKNESS;
use sim::{TripEndpoint, TripMode};
use widgetry::mapspace::{ObjectID, ToggleZoomed, World};
use widgetry::{
Color, EventCtx, GfxCtx, Line, Outcome, Panel, RoundedF64, Spinner, State, Text, Widget,
};
use super::per_neighborhood::{FilterableObj, Tab, TakeNeighborhood};
use super::Neighborhood;
use crate::app::{App, Transition};
use crate::common::{cmp_dist, cmp_duration, InputWaypoints, WaypointID};
pub struct RoutePlanner {
panel: Panel,
waypoints: InputWaypoints,
world: World<Obj>,
draw_routes: ToggleZoomed,
neighborhood: Neighborhood,
}
impl TakeNeighborhood for RoutePlanner {
fn take_neighborhood(self) -> Neighborhood {
self.neighborhood
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
enum Obj {
Waypoint(WaypointID),
Filterable(FilterableObj),
}
impl ObjectID for Obj {}
impl RoutePlanner {
pub fn new_state(
ctx: &mut EventCtx,
app: &mut App,
neighborhood: Neighborhood,
) -> Box<dyn State<App>> {
let mut rp = RoutePlanner {
panel: Panel::empty(ctx),
waypoints: InputWaypoints::new(app),
world: World::unbounded(),
draw_routes: ToggleZoomed::empty(ctx),
neighborhood,
};
rp.update(ctx, app);
Box::new(rp)
}
fn update(&mut self, ctx: &mut EventCtx, app: &App) {
let contents = Widget::col(vec![
self.waypoints.get_panel_widget(ctx),
Widget::row(vec![
Line("Slow-down factor for main roads:")
.into_widget(ctx)
.centered_vert(),
Spinner::f64_widget(ctx, "main road penalty", (1.0, 10.0), 1.0, 0.5),
]),
Text::from_multiline(vec![
Line("1 means free-flow traffic conditions").secondary(),
Line("Increase to see how vehicles may try to detour in heavy traffic").secondary(),
])
.into_widget(ctx),
Text::new().into_widget(ctx).named("results"),
]);
let mut panel = Tab::Pathfinding
.panel_builder(ctx, app, contents)
.ignore_initial_events()
.build(ctx);
panel.restore(ctx, &self.panel);
self.panel = panel;
let mut world = World::bounded(app.primary.map.get_bounds());
super::per_neighborhood::populate_world(
ctx,
app,
&self.neighborhood,
&mut world,
Obj::Filterable,
0,
);
self.waypoints
.rebuild_world(ctx, &mut world, Obj::Waypoint, 1);
world.initialize_hover(ctx);
world.rebuilt_during_drag(&self.world);
self.world = world;
self.recalculate_paths(ctx, app);
}
fn recalculate_paths(&mut self, ctx: &mut EventCtx, app: &App) {
let map = &app.primary.map;
let mut results = Text::new();
let mut draw = ToggleZoomed::builder();
let (total_time_after, total_dist_after) = {
let mut params = map.routing_params().clone();
app.session.modal_filters.update_routing_params(&mut params);
params.main_road_penalty = self.panel.spinner::<RoundedF64>("main road penalty").0;
let cache_custom = true;
let mut total_time = Duration::ZERO;
let mut total_dist = Distance::ZERO;
for pair in self.waypoints.get_waypoints().windows(2) {
if let Some((path, pl)) =
TripEndpoint::path_req(pair[0], pair[1], TripMode::Drive, map)
.and_then(|req| map.pathfind_with_params(req, ¶ms, cache_custom).ok())
.and_then(|path| path.trace(map).map(|pl| (path, pl)))
{
let shape = pl.make_polygons(5.0 * NORMAL_LANE_THICKNESS);
draw.unzoomed.push(Color::RED.alpha(0.8), shape.clone());
draw.zoomed.push(Color::RED.alpha(0.5), shape);
total_time += path.estimate_duration(map, None);
total_dist += path.total_length();
}
}
if total_dist != Distance::ZERO {
results.add_line(Line("Route respecting the new modal filters").fg(Color::BLUE));
results.add_line(Line(format!("Time: {}", total_time)));
results.add_line(Line(format!("Distance: {}", total_dist)));
}
(total_time, total_dist)
};
{
let mut draw_old_route = ToggleZoomed::builder();
let mut total_time = Duration::ZERO;
let mut total_dist = Distance::ZERO;
let mut params = map.routing_params().clone();
params.main_road_penalty = self.panel.spinner::<RoundedF64>("main road penalty").0;
let cache_custom = true;
for pair in self.waypoints.get_waypoints().windows(2) {
if let Some((path, pl)) =
TripEndpoint::path_req(pair[0], pair[1], TripMode::Drive, map)
.and_then(|req| map.pathfind_with_params(req, ¶ms, cache_custom).ok())
.and_then(|path| path.trace(map).map(|pl| (path, pl)))
{
let shape = pl.make_polygons(5.0 * NORMAL_LANE_THICKNESS);
draw_old_route
.unzoomed
.push(Color::BLUE.alpha(0.8), shape.clone());
draw_old_route.zoomed.push(Color::BLUE.alpha(0.5), shape);
total_time += path.estimate_duration(map, None);
total_dist += path.total_length();
}
}
if total_dist != Distance::ZERO {
if total_time == total_time_after && total_dist == total_dist_after {
draw = draw_old_route;
results = Text::new();
results.add_line(Line(
"The route is the same before/after the new modal filters",
));
results.add_line(Line(format!("Time: {}", total_time)));
results.add_line(Line(format!("Distance: {}", total_dist)));
} else {
draw.append(draw_old_route);
results.add_line(Line("Route before the new modal filters").fg(Color::RED));
cmp_duration(
&mut results,
app,
total_time - total_time_after,
"shorter",
"longer",
);
results.remove_colors_from_last_line();
cmp_dist(
&mut results,
app,
total_dist - total_dist_after,
"shorter",
"longer",
);
results.remove_colors_from_last_line();
}
}
}
self.draw_routes = draw.build(ctx);
let label = results.into_widget(ctx);
self.panel.replace(ctx, "results", label);
}
}
impl State<App> for RoutePlanner {
fn event(&mut self, ctx: &mut EventCtx, app: &mut App) -> Transition {
let world_outcome = self.world.event(ctx);
if let Some(outcome) = world_outcome.clone().maybe_map_id(|id| match id {
Obj::Filterable(id) => Some(id),
_ => None,
}) {
if super::per_neighborhood::handle_world_outcome(ctx, app, outcome) {
self.neighborhood =
Neighborhood::new(ctx, app, self.neighborhood.orig_perimeter.clone());
self.update(ctx, app);
return Transition::Keep;
}
}
let world_outcome_for_waypoints = world_outcome.map_id(|id| match id {
Obj::Waypoint(id) => id,
_ => unreachable!(),
});
let panel_outcome = self.panel.event(ctx);
if let Outcome::Clicked(ref x) = panel_outcome {
if let Some(t) = Tab::Pathfinding.handle_action::<RoutePlanner>(ctx, app, x) {
return t;
}
}
if let Outcome::Changed(ref x) = panel_outcome {
if x == "main road penalty" {
self.recalculate_paths(ctx, app);
}
}
if self
.waypoints
.event(app, panel_outcome, world_outcome_for_waypoints)
{
self.update(ctx, app);
}
Transition::Keep
}
fn draw(&self, g: &mut GfxCtx, app: &App) {
self.panel.draw(g);
g.redraw(&self.neighborhood.fade_irrelevant);
self.draw_routes.draw(g);
self.neighborhood.draw_filters.draw(g);
if g.canvas.is_unzoomed() {
self.neighborhood.labels.draw(g, app);
}
self.world.draw(g);
}
fn on_destroy(&mut self, _: &mut EventCtx, app: &mut App) {
app.primary.map.clear_custom_pathfinder_cache();
}
}