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
use std::collections::BTreeSet;
use abstutil::prettyprint_usize;
use geom::{Circle, Distance, Pt2D, Time};
use map_gui::tools::{make_heatmap, HeatmapOptions};
use sim::{Problem, TripInfo, TripMode};
use widgetry::{
Color, Drawable, EventCtx, GeomBatch, GfxCtx, Line, Outcome, Panel, Slider, Text, TextExt,
Toggle, Widget,
};
use crate::app::App;
use crate::common::checkbox_per_mode;
use crate::layer::{header, Layer, LayerOutcome, PANEL_PLACEMENT};
pub struct ProblemMap {
time: Time,
opts: Options,
draw: Drawable,
panel: Panel,
}
impl Layer for ProblemMap {
fn name(&self) -> Option<&'static str> {
Some("problem map")
}
fn event(&mut self, ctx: &mut EventCtx, app: &mut App) -> Option<LayerOutcome> {
if app.primary.sim.time() != self.time {
let mut new = ProblemMap::new(ctx, app, self.opts.clone());
new.panel.restore(ctx, &self.panel);
*self = new;
}
match self.panel.event(ctx) {
Outcome::Clicked(x) => match x.as_ref() {
"close" => {
return Some(LayerOutcome::Close);
}
_ => unreachable!(),
},
_ => {
let new_opts = self.options(app);
if self.opts != new_opts {
*self = ProblemMap::new(ctx, app, new_opts);
}
}
}
None
}
fn draw(&self, g: &mut GfxCtx, app: &App) {
self.panel.draw(g);
if g.canvas.cam_zoom < app.opts.min_zoom_for_detail {
g.redraw(&self.draw);
}
}
fn draw_minimap(&self, g: &mut GfxCtx) {
g.redraw(&self.draw);
}
}
impl ProblemMap {
pub fn new(ctx: &mut EventCtx, app: &App, opts: Options) -> ProblemMap {
let mut pts = Vec::new();
for (trip, problems) in &app.primary.sim.get_analytics().problems_per_trip {
for (time, problem) in problems {
if opts.show(app.primary.sim.trip_info(*trip), *time, problem) {
pts.push(match problem {
Problem::IntersectionDelay(i, _)
| Problem::ComplexIntersectionCrossing(i) => {
app.primary.map.get_i(*i).polygon.center()
}
Problem::OvertakeDesired(on) => on.get_polyline(&app.primary.map).middle(),
Problem::ArterialIntersectionCrossing(t) => {
app.primary.map.get_t(*t).geom.middle()
}
});
}
}
}
let num_pts = pts.len();
let mut batch = GeomBatch::new();
let legend = if let Some(ref o) = opts.heatmap {
Some(make_heatmap(
ctx,
&mut batch,
app.primary.map.get_bounds(),
pts,
o,
))
} else {
let circle = Circle::new(Pt2D::new(0.0, 0.0), Distance::meters(10.0)).to_polygon();
for pt in pts {
batch.push(Color::PURPLE.alpha(0.8), circle.translate(pt.x(), pt.y()));
}
None
};
let controls = make_controls(ctx, app, &opts, legend, num_pts);
ProblemMap {
time: app.primary.sim.time(),
opts,
draw: ctx.upload(batch),
panel: controls,
}
}
fn options(&self, app: &App) -> Options {
let heatmap = if self.panel.is_checked("Show heatmap") {
Some(HeatmapOptions::from_controls(&self.panel))
} else {
None
};
let mut modes = BTreeSet::new();
for m in TripMode::all() {
if self.panel.is_checked(m.ongoing_verb()) {
modes.insert(m);
}
}
let end_of_day = app.primary.sim.get_end_of_day();
Options {
heatmap,
modes,
time1: end_of_day.percent_of(self.panel.slider("time1").get_percent()),
time2: end_of_day.percent_of(self.panel.slider("time2").get_percent()),
show_delays: self.panel.is_checked("show delays"),
show_complex_crossings: self
.panel
.is_checked("show where cyclists cross complex intersections"),
show_overtakes: self
.panel
.is_checked("show where cars want to overtake cyclists"),
show_arterial_crossings: self
.panel
.is_checked("show where pedestrians cross arterial intersections"),
}
}
}
#[derive(Clone, PartialEq)]
pub struct Options {
heatmap: Option<HeatmapOptions>,
modes: BTreeSet<TripMode>,
time1: Time,
time2: Time,
show_delays: bool,
show_complex_crossings: bool,
show_overtakes: bool,
show_arterial_crossings: bool,
}
impl Options {
pub fn new(app: &App) -> Options {
Options {
heatmap: Some(HeatmapOptions::new()),
modes: TripMode::all().into_iter().collect(),
time1: Time::START_OF_DAY,
time2: app.primary.sim.get_end_of_day(),
show_delays: true,
show_complex_crossings: true,
show_overtakes: true,
show_arterial_crossings: true,
}
}
fn show(&self, trip: TripInfo, time: Time, problem: &Problem) -> bool {
if !self.modes.contains(&trip.mode) || time < self.time1 || time > self.time2 {
return false;
}
match problem {
Problem::IntersectionDelay(_, _) => self.show_delays,
Problem::ComplexIntersectionCrossing(_) => self.show_complex_crossings,
Problem::OvertakeDesired(_) => self.show_overtakes,
Problem::ArterialIntersectionCrossing(_) => self.show_arterial_crossings,
}
}
}
fn make_controls(
ctx: &mut EventCtx,
app: &App,
opts: &Options,
legend: Option<Widget>,
num_problems: usize,
) -> Panel {
let mut col = vec![
header(ctx, "Problems encountered"),
Text::from_all(vec![
Line("Matching problems: ").secondary(),
Line(prettyprint_usize(num_problems)),
])
.into_widget(ctx),
];
let end_of_day = app.primary.sim.get_end_of_day();
col.push(Widget::row(vec![
"Happening between:".text_widget(ctx).margin_right(20),
Slider::area(
ctx,
0.15 * ctx.canvas.window_width,
opts.time1.to_percent(end_of_day),
"time1",
)
.align_right(),
]));
col.push(Widget::row(vec![
"and:".text_widget(ctx).margin_right(20),
Slider::area(
ctx,
0.15 * ctx.canvas.window_width,
opts.time2.to_percent(end_of_day),
"time2",
)
.align_right(),
]));
col.push(checkbox_per_mode(ctx, app, &opts.modes));
col.push(Toggle::checkbox(ctx, "show delays", None, opts.show_delays));
col.push(Toggle::checkbox(
ctx,
"show where cyclists cross complex intersections",
None,
opts.show_complex_crossings,
));
col.push(Toggle::checkbox(
ctx,
"show where cars want to overtake cyclists",
None,
opts.show_overtakes,
));
col.push(Toggle::checkbox(
ctx,
"show where pedestrians cross arterial intersections",
None,
opts.show_arterial_crossings,
));
col.push(Toggle::choice(
ctx,
"Show heatmap",
"Heatmap",
"Points",
None,
opts.heatmap.is_some(),
));
if let Some(ref o) = opts.heatmap {
col.push(Line("Heatmap Options").small_heading().into_widget(ctx));
col.extend(o.to_controls(ctx, legend.unwrap()));
}
Panel::new_builder(Widget::col(col))
.aligned_pair(PANEL_PLACEMENT)
.build(ctx)
}