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
use std::collections::BTreeSet;
use abstio::MapName;
use geom::Polygon;
use map_model::{IntersectionID, Map, RoadID};
use widgetry::{lctrl, EventCtx, GfxCtx, Key, Line, Text, Widget};
pub use self::camera::{CameraState, DefaultMap};
pub use self::city_picker::CityPicker;
pub use self::colors::{ColorDiscrete, ColorLegend, ColorNetwork, ColorScale, DivergingScale};
pub use self::heatmap::{draw_isochrone, make_heatmap, Grid, HeatmapOptions};
pub use self::icons::{goal_marker, start_marker};
pub use self::labels::DrawRoadLabels;
pub use self::minimap::{Minimap, MinimapControls};
pub use self::navigate::Navigator;
pub use self::title_screen::{Executable, TitleScreen};
pub use self::trip_files::{TripManagement, TripManagementState};
pub use self::turn_explorer::TurnExplorer;
pub use self::ui::{
checkbox_per_mode, cmp_count, cmp_dist, cmp_duration, color_for_mode, percentage_bar,
ChooseSomething, FilePicker, PromptInput,
};
pub use self::waypoints::{InputWaypoints, WaypointID};
use crate::AppLike;
#[cfg(not(target_arch = "wasm32"))]
pub use self::command::RunCommand;
#[cfg(not(target_arch = "wasm32"))]
pub use self::updater::prompt_to_download_missing_data;
mod camera;
mod city_picker;
mod colors;
#[cfg(not(target_arch = "wasm32"))]
mod command;
pub mod compare_counts;
mod heatmap;
mod icons;
#[cfg(not(target_arch = "wasm32"))]
mod importer;
mod labels;
mod minimap;
mod navigate;
mod title_screen;
mod trip_files;
mod turn_explorer;
mod ui;
#[cfg(not(target_arch = "wasm32"))]
mod updater;
mod waypoints;
const NEXT_RELEASE: &str = "0.3.18";
pub fn version() -> &'static str {
if cfg!(feature = "release_s3") {
NEXT_RELEASE
} else {
"dev"
}
}
pub fn loading_tips() -> Text {
Text::from_multiline(vec![
Line("Have you tried..."),
Line(""),
Line("- simulating cities in Britain, Taiwan, Poland, and more?"),
Line("- the 15-minute neighborhood tool?"),
Line("- exploring all of the map layers?"),
Line("- playing 15-minute Santa, our arcade game spin-off?"),
])
}
pub fn grey_out_map(g: &mut GfxCtx, app: &dyn AppLike) {
g.fork_screenspace();
g.draw_polygon(
app.cs().fade_map_dark,
Polygon::rectangle(g.canvas.window_width, g.canvas.window_height),
);
g.unfork();
}
pub fn nice_map_name(name: &MapName) -> &str {
match name.city.country.as_ref() {
"au" => match (name.city.city.as_ref(), name.map.as_ref()) {
("melbourne", "brunswick") => "Melbourne (Brunswick)",
("melbourne", "dandenong") => "Melbourne (Dandenong)",
_ => &name.map,
},
"at" => match (name.city.city.as_ref(), name.map.as_ref()) {
("salzburg", "north") => "Salzburg (north)",
("salzburg", "south") => "Salzburg (south)",
("salzburg", "east") => "Salzburg (east)",
("salzburg", "west") => "Salzburg (west)",
_ => &name.map,
},
"br" => match (name.city.city.as_ref(), name.map.as_ref()) {
("sao_paulo", "aricanduva") => "São Paulo (Avenue Aricanduva)",
("sao_paulo", "center") => "São Paulo (city center)",
("sao_paulo", "sao_miguel_paulista") => "São Miguel Paulista",
_ => &name.map,
},
"ca" => match (name.city.city.as_ref(), name.map.as_ref()) {
("montreal", "plateau") => "Montréal (Plateau)",
_ => &name.map,
},
"ch" => match (name.city.city.as_ref(), name.map.as_ref()) {
("geneva", "center") => "Geneva",
("zurich", "center") => "Zürich (city center)",
("zurich", "north") => "Zürich (north)",
("zurich", "south") => "Zürich (south)",
("zurich", "east") => "Zürich (east)",
("zurich", "west") => "Zürich (west)",
_ => &name.map,
},
"cz" => match (name.city.city.as_ref(), name.map.as_ref()) {
("frytek_mistek", "huge") => "Frýdek-Místek (entire area)",
_ => &name.map,
},
"de" => match (name.city.city.as_ref(), name.map.as_ref()) {
("berlin", "center") => "Berlin (city center)",
("berlin", "neukolln") => "Berlin-Neukölln",
("bonn", "center") => "Bonn (city center)",
("bonn", "nordstadt") => "Bonn (Nordstadt)",
("bonn", "venusberg") => "Bonn (Venusberg)",
("rostock", "center") => "Rostock",
_ => &name.map,
},
"fr" => match (name.city.city.as_ref(), name.map.as_ref()) {
("charleville_mezieres", "secteur1") => "Charleville-Mézières (secteur 1)",
("charleville_mezieres", "secteur2") => "Charleville-Mézières (secteur 2)",
("charleville_mezieres", "secteur3") => "Charleville-Mézières (secteur 3)",
("charleville_mezieres", "secteur4") => "Charleville-Mézières (secteur 4)",
("charleville_mezieres", "secteur5") => "Charleville-Mézières (secteur 5)",
("lyon", "center") => "Lyon",
("paris", "center") => "Paris (city center)",
("paris", "north") => "Paris (north)",
("paris", "south") => "Paris (south)",
("paris", "east") => "Paris (east)",
("paris", "west") => "Paris (west)",
_ => &name.map,
},
"gb" => match (name.city.city.as_ref(), name.map.as_ref()) {
("allerton_bywater", "center") => "Allerton Bywater",
("ashton_park", "center") => "Ashton Park",
("aylesbury", "center") => "Aylesbury",
("aylesham", "center") => "Aylesham",
("bailrigg", "center") => "Bailrigg (Lancaster)",
("bath_riverside", "center") => "Bath Riverside",
("bicester", "center") => "Bicester",
("bradford", "center") => "Bradford",
("bristol", "east") => "East Bristol",
("cambridge", "north") => "North Cambridge",
("castlemead", "center") => "Castlemead",
("chapelford", "center") => "Chapelford (Cheshire)",
("chapeltown_cohousing", "center") => "Chapeltown Cohousing",
("chorlton", "center") => "Chorlton",
("clackers_brook", "center") => "Clackers Brook",
("cricklewood", "center") => "Cricklewood",
("culm", "center") => "Culm",
("derby", "center") => "Derby",
("dickens_heath", "center") => "Dickens Heath",
("didcot", "center") => "Didcot (Harwell)",
("dunton_hills", "center") => "Dunton Hills",
("ebbsfleet", "center") => "Ebbsfleet (Dartford)",
("exeter_red_cow_village", "center") => "Exeter Red Cow Village",
("glenrothes", "center") => "Glenrothes (Scotland)",
("great_kneighton", "center") => "Great Kneighton (Cambridge)",
("halsnhead", "center") => "Halsnead",
("hampton", "center") => "Hampton",
("kergilliack", "center") => "Kergilliack",
("kidbrooke_village", "center") => "Kidbrooke Village",
("lcid", "center") => "Leeds Climate Innovation District",
("leeds", "central") => "Leeds (city center)",
("leeds", "huge") => "Leeds (entire area inside motorways)",
("leeds", "north") => "North Leeds",
("leeds", "west") => "West Leeds",
("lockleaze", "center") => "Lockleaze",
("london", "camden") => "Camden",
("london", "central") => "Central London",
("london", "hackney") => "Hackney",
("london", "kennington") => "Kennington (London)",
("london", "kingston_upon_thames") => "Kingston upon Thames",
("london", "southwark") => "Southwark",
("long_marston", "center") => "Long Marston (Stratford)",
("manchester", "levenshulme") => "Levenshulme (Manchester)",
("marsh_barton", "center") => "Marsh Barton",
("micklefield", "center") => "Micklefield",
("newborough_road", "center") => "Newborough Road",
("newcastle_great_park", "center") => "Newcastle Great Park",
("newcastle_upon_tyne", "center") => "Newcastle upon Tyne",
("nottingham", "center") => "Nottingham (city center)",
("nottingham", "huge") => "Nottingham (entire area)",
("northwick_park", "center") => "Northwick Park",
("oxford", "center") => "Oxford",
("poundbury", "center") => "Poundbury",
("priors_hall", "center") => "Priors Hall",
("st_albans", "center") => "St Albans",
("taunton_firepool", "center") => "Taunton Firepool",
("taunton_garden", "center") => "Taunton Garden",
("tresham", "center") => "Tresham",
("trumpington_meadows", "center") => "Trumpington Meadows",
("tyersal_lane", "center") => "Tyersal Lane",
("upton", "center") => "Upton",
("water_lane", "center") => "Water Lane",
("wichelstowe", "center") => "Wichelstowe",
("wixams", "center") => "Wixams",
("wokingham", "center") => "Wokingham",
("wynyard", "center") => "Wynyard",
_ => &name.map,
},
"il" => match (name.city.city.as_ref(), name.map.as_ref()) {
("tel_aviv", "center") => "Tel Aviv (city center)",
_ => &name.map,
},
"in" => match (name.city.city.as_ref(), name.map.as_ref()) {
("pune", "center") => "Pune",
_ => &name.map,
},
"ir" => match (name.city.city.as_ref(), name.map.as_ref()) {
("tehran", "parliament") => "Tehran (near Parliament)",
_ => &name.map,
},
"jp" => match (name.city.city.as_ref(), name.map.as_ref()) {
("hiroshima", "uni") => "Hiroshima University",
_ => &name.map,
},
"ly" => match (name.city.city.as_ref(), name.map.as_ref()) {
("tripoli", "center") => "Tripoli",
_ => &name.map,
},
"nz" => match (name.city.city.as_ref(), name.map.as_ref()) {
("auckland", "mangere") => "Māngere (Auckland)",
_ => &name.map,
},
"pl" => match (name.city.city.as_ref(), name.map.as_ref()) {
("krakow", "center") => "Kraków (city center)",
("warsaw", "center") => "Warsaw (city center)",
_ => &name.map,
},
"pt" => match (name.city.city.as_ref(), name.map.as_ref()) {
("lisbon", "huge") => "Lisbon (entire area)",
("lisbon", "center") => "Lisbon (city center)",
_ => &name.map,
},
"sg" => match (name.city.city.as_ref(), name.map.as_ref()) {
("jurong", "center") => "Jurong",
_ => &name.map,
},
"tw" => match (name.city.city.as_ref(), name.map.as_ref()) {
("keelung", "center") => "Keelung",
("taipei", "center") => "Taipei (city center)",
_ => &name.map,
},
"us" => match (name.city.city.as_ref(), name.map.as_ref()) {
("anchorage", "downtown") => "Anchorage",
("bellevue", "huge") => "Bellevue",
("beltsville", "i495") => "I-495 in Beltsville, MD",
("detroit", "downtown") => "Detroit",
("milwaukee", "downtown") => "Downtown Milwaukee",
("milwaukee", "oak_creek") => "Oak Creek",
("mt_vernon", "burlington") => "Burlington",
("mt_vernon", "downtown") => "Mt. Vernon",
("nyc", "fordham") => "Fordham",
("nyc", "lower_manhattan") => "Lower Manhattan",
("nyc", "midtown_manhattan") => "Midtown Manhattan",
("nyc", "downtown_brooklyn") => "Downtown Brooklyn",
("phoenix", "gilbert") => "Gilbert",
("phoenix", "loop101") => "Loop 101 (no local roads)",
("phoenix", "tempe") => "Tempe",
("providence", "downtown") => "Providence",
("san_francisco", "downtown") => "San Francisco",
("seattle", "arboretum") => "Arboretum",
("seattle", "central_seattle") => "Central Seattle",
("seattle", "downtown") => "Downtown Seattle",
("seattle", "huge_seattle") => "Seattle (entire area)",
("seattle", "lakeslice") => "Lake Washington corridor",
("seattle", "montlake") => "Montlake and Eastlake",
("seattle", "north_seattle") => "North Seattle",
("seattle", "phinney") => "Phinney Ridge",
("seattle", "qa") => "Queen Anne",
("seattle", "slu") => "South Lake Union",
("seattle", "south_seattle") => "South Seattle",
("seattle", "udistrict_ravenna") => "University District",
("seattle", "wallingford") => "Wallingford",
("seattle", "west_seattle") => "West Seattle",
("tucson", "center") => "Tucson",
_ => &name.map,
},
_ => &name.map,
}
}
pub fn nice_country_name(code: &str) -> &str {
match code {
"au" => "Australia",
"at" => "Austria",
"br" => "Brazil",
"ca" => "Canada",
"ch" => "Switzerland",
"cz" => "Czech Republic",
"de" => "Germany",
"fr" => "France",
"gb" => "Great Britain",
"il" => "Israel",
"in" => "India",
"ir" => "Iran",
"jp" => "Japan",
"ly" => "Libya",
"nz" => "New Zealand",
"pl" => "Poland",
"pt" => "Portugal",
"sg" => "Singapore",
"tw" => "Taiwan",
"us" => "United States of America",
_ => code,
}
}
pub fn find_exe(cmd: &str) -> String {
for dir in [
"./target/release",
"../target/release",
"../../target/release",
"./target/debug",
"../target/debug",
"../../target/debug",
".",
] {
let path = if cfg!(windows) {
format!("{}/{}.exe", dir, cmd).replace("/", "\\")
} else {
format!("{}/{}", dir, cmd)
};
if let Ok(metadata) = fs_err::metadata(&path) {
if metadata.is_file() {
return path;
} else {
debug!(
"found matching path: {}/{} but it's not a file.",
&path, cmd
);
}
}
}
panic!("Couldn't find the {} executable. Is it built?", cmd);
}
pub fn change_map_btn(ctx: &EventCtx, app: &dyn AppLike) -> Widget {
ctx.style()
.btn_popup_icon_text(
"system/assets/tools/map.svg",
nice_map_name(app.map().get_name()),
)
.hotkey(lctrl(Key::L))
.build_widget(ctx, "change map")
}
pub fn home_btn(ctx: &EventCtx) -> Widget {
ctx.style()
.btn_plain
.btn()
.image_path("system/assets/pregame/logo.svg")
.image_dims(50.0)
.build_widget(ctx, "Home")
}
pub fn app_header(ctx: &EventCtx, app: &dyn AppLike, title: &str) -> Widget {
Widget::col(vec![
Widget::row(vec![
home_btn(ctx),
Line(title).small_heading().into_widget(ctx).centered_vert(),
]),
change_map_btn(ctx, app),
])
}
pub fn intersections_from_roads(roads: &BTreeSet<RoadID>, map: &Map) -> BTreeSet<IntersectionID> {
let mut results = BTreeSet::new();
for r in roads {
let r = map.get_r(*r);
for i in [r.src_i, r.dst_i] {
if results.contains(&i) {
continue;
}
if map.get_i(i).roads.iter().all(|r| roads.contains(r)) {
results.insert(i);
}
}
}
results
}
pub fn update_url_map_name(app: &dyn AppLike) {
widgetry::tools::URLManager::update_url_free_param(
app.map()
.get_name()
.path()
.strip_prefix(&abstio::path(""))
.unwrap()
.to_string(),
);
}