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
use std::collections::HashMap;
use crate::App;
use abstutil::{prettyprint_usize, Counter, Timer};
use geom::Percent;
use map_gui::tools::PopupMsg;
use map_model::connectivity::Spot;
use map_model::{AmenityType, BuildingID};
use widgetry::{
Color, Drawable, EventCtx, GeomBatch, GfxCtx, HorizontalAlignment, Key, Line, Panel,
SimpleState, State, TextExt, Toggle, Transition, VerticalAlignment, Widget,
};
use crate::isochrone::Options;
pub struct FindHome {
options: Options,
}
impl FindHome {
pub fn new_state(ctx: &mut EventCtx, options: Options) -> Box<dyn State<App>> {
let panel = Panel::new_builder(Widget::col(vec![
Widget::row(vec![
Line("Find your walkable home")
.small_heading()
.into_widget(ctx),
ctx.style().btn_close_widget(ctx),
]),
"Select the types of businesses you want within a 15 minute walkshed.".text_widget(ctx),
Widget::custom_row(
AmenityType::all()
.into_iter()
.map(|at| Toggle::switch(ctx, &at.to_string(), None, false))
.collect(),
)
.flex_wrap(ctx, Percent::int(50)),
ctx.style()
.btn_solid_primary
.text("Search")
.hotkey(Key::Enter)
.build_def(ctx),
]))
.build(ctx);
<dyn SimpleState<_>>::new_state(panel, Box::new(FindHome { options }))
}
}
impl SimpleState<App> for FindHome {
fn on_click(
&mut self,
ctx: &mut EventCtx,
app: &mut App,
x: &str,
panel: &Panel,
) -> Transition<App> {
match x {
"close" => Transition::Pop,
"Search" => {
let amenities: Vec<AmenityType> = AmenityType::all()
.into_iter()
.filter(|at| panel.is_checked(&at.to_string()))
.collect();
if amenities.is_empty() {
return Transition::Push(PopupMsg::new_state(
ctx,
"No amenities selected",
vec!["Please select at least one amenity that you want in your walkshd"],
));
}
let scores = ctx.loading_screen("search for houses", |_, timer| {
score_houses(app, amenities.clone(), self.options.clone(), timer)
});
return Transition::Push(Results::new_state(ctx, app, scores, amenities));
}
_ => unreachable!(),
}
}
}
fn score_houses(
app: &App,
amenities: Vec<AmenityType>,
options: Options,
timer: &mut Timer,
) -> HashMap<BuildingID, Percent> {
let num_categories = amenities.len();
let mut satisfied_per_bldg: Counter<BuildingID> = Counter::new();
let map = &app.map;
for times in timer.parallelize("find houses close to amenities", amenities, |category| {
let mut stores = Vec::new();
for b in map.all_buildings() {
if b.has_amenity(category) {
stores.push(Spot::Building(b.id));
}
}
options.clone().times_from(map, stores)
}) {
for (b, _) in times {
satisfied_per_bldg.inc(b);
}
}
let mut scores = HashMap::new();
for (b, cnt) in satisfied_per_bldg.consume() {
scores.insert(b, Percent::of(cnt, num_categories));
}
scores
}
struct Results {
draw_houses: Drawable,
}
impl Results {
fn new_state(
ctx: &mut EventCtx,
app: &App,
scores: HashMap<BuildingID, Percent>,
amenities: Vec<AmenityType>,
) -> Box<dyn State<App>> {
let mut batch = GeomBatch::new();
let mut count = 0;
for (b, pct) in scores {
if pct == Percent::int(100) {
batch.push(Color::RED, app.map.get_b(b).polygon.clone());
count += 1;
}
}
let panel = Panel::new_builder(Widget::col(vec![
Line("Results for your walkable home")
.small_heading()
.into_widget(ctx),
format!("{} houses match", prettyprint_usize(count)).text_widget(ctx),
format!(
"Containing at least 1 of each: {}",
amenities
.into_iter()
.map(|x| x.to_string())
.collect::<Vec<_>>()
.join(", ")
)
.text_widget(ctx),
ctx.style()
.btn_outline
.text("Back")
.hotkey(Key::Escape)
.build_def(ctx),
]))
.aligned(HorizontalAlignment::RightInset, VerticalAlignment::TopInset)
.build(ctx);
<dyn SimpleState<_>>::new_state(
panel,
Box::new(Results {
draw_houses: ctx.upload(batch),
}),
)
}
}
impl SimpleState<App> for Results {
fn on_click(&mut self, _: &mut EventCtx, _: &mut App, x: &str, _: &Panel) -> Transition<App> {
match x {
"Back" => Transition::Pop,
_ => unreachable!(),
}
}
fn other_event(&mut self, ctx: &mut EventCtx, _: &mut App) -> Transition<App> {
ctx.canvas_movement();
Transition::Keep
}
fn draw(&self, g: &mut GfxCtx, _: &App) {
g.redraw(&self.draw_houses);
}
}