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
use abstutil::prettyprint_usize;
use map_gui::tools::PopupMsg;
use widgetry::{
Btn, EventCtx, GfxCtx, HorizontalAlignment, Key, Line, Outcome, Panel, State, Text,
VerticalAlignment, Widget,
};
use crate::levels::Level;
use crate::title::TitleScreen;
use crate::{App, Transition};
const ZOOM: f64 = 2.0;
pub struct Results {
panel: Panel,
unlock_messages: Option<Vec<String>>,
}
impl Results {
pub fn new(
ctx: &mut EventCtx,
app: &mut App,
score: usize,
level: &Level,
) -> Box<dyn State<App>> {
ctx.canvas.cam_zoom = ZOOM;
ctx.canvas.center_on_map_pt(app.map.get_bounds().center());
let unlock_messages = app.session.record_score(level.title.clone(), score);
let mut txt = Text::new();
txt.add(Line(format!("Results for {}", level.title)).small_heading());
txt.add(Line(format!(
"You delivered {} presents in {}. Your goal was {}",
prettyprint_usize(score),
level.time_limit,
prettyprint_usize(level.goal)
)));
txt.add(Line(""));
txt.add(Line("High scores:"));
for (idx, score) in app.session.high_scores[&level.title].iter().enumerate() {
txt.add(Line(format!("{}) {}", idx + 1, prettyprint_usize(*score))));
}
let panel = Panel::new(Widget::col(vec![
txt.draw(ctx),
Btn::text_bg2("Back to title screen").build_def(ctx, Key::Enter),
]))
.aligned(HorizontalAlignment::Center, VerticalAlignment::Top)
.build(ctx);
Box::new(Results {
panel,
unlock_messages,
})
}
}
impl State<App> for Results {
fn event(&mut self, ctx: &mut EventCtx, app: &mut App) -> Transition {
ctx.canvas_movement();
match self.panel.event(ctx) {
Outcome::Clicked(x) => match x.as_ref() {
"Back to title screen" => {
let mut transitions = vec![
Transition::Pop,
Transition::Replace(TitleScreen::new(ctx, app)),
];
if let Some(msgs) = self.unlock_messages.take() {
transitions.push(Transition::Push(PopupMsg::new(
ctx,
"Level complete!",
msgs,
)));
}
return Transition::Multi(transitions);
}
_ => unreachable!(),
},
_ => {}
}
Transition::Keep
}
fn draw(&self, g: &mut GfxCtx, _: &App) {
self.panel.draw(g);
}
}