Merge pull request #29 from Ewpratten/main_menu_screen

Let the user quit
This commit is contained in:
Evan Pratten 2021-10-02 16:12:21 -07:00 committed by GitHub
commit 8c0cdc959c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,8 @@ pub struct MainMenuScreen {
is_start_pressed: bool, //Is start button pressed
is_htp_pressed: bool, //Is how to play button pressed
is_options_pressed: bool //Is options button pressed
is_options_pressed: bool, //Is options button pressed
is_quit_pressed: bool //Is quit button pressed
}
@ -36,7 +37,8 @@ impl MainMenuScreen {
Self {
is_start_pressed: false,
is_htp_pressed: false,
is_options_pressed: false
is_options_pressed: false,
is_quit_pressed: false
}
}
}
@ -79,6 +81,9 @@ impl Action<Scenes, ScreenError, GameContext> for MainMenuScreen {
else if self.is_options_pressed {
Ok(ActionFlag::SwitchState(Scenes::OptionsScreen))
}
else if self.is_quit_pressed {
panic!();
}
else {
Ok(ActionFlag::Continue)
}
@ -89,6 +94,7 @@ impl Action<Scenes, ScreenError, GameContext> for MainMenuScreen {
self.is_start_pressed = false;
self.is_htp_pressed = false;
self.is_options_pressed = false;
self.is_quit_pressed = false;
Ok(())
}
}
@ -344,6 +350,69 @@ impl ScreenSpaceRender for MainMenuScreen {
25,
Color::WHITE,
);
}
// QUIT
if Rectangle::new(80.0, 445.0, 65.0, 20.0).check_collision_point_rec(mouse_position) {
raylib.draw_text(
"QUIT",
83,
450,
25,
Color::RED,
);
raylib.draw_text(
"QUIT",
77,
450,
25,
Color::BLUE,
);
raylib.draw_text(
"QUIT",
80,
450,
25,
Color::WHITE,
);
if mouse_pressed{
self.is_quit_pressed = true;
}
}
else{
raylib.draw_text(
"QUIT",
81,
450,
25,
Color::RED,
);
raylib.draw_text(
"QUIT",
79,
450,
25,
Color::BLUE,
);
raylib.draw_text(
"QUIT",
80,
450,
25,
Color::WHITE,
);
}
}
}