Added level select button
This commit is contained in:
parent
7be250f5b0
commit
b51728ad1d
@ -24,6 +24,7 @@ use tracing::{debug, error, info, trace};
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct NextLevelScreen {
|
pub struct NextLevelScreen {
|
||||||
is_next_pressed: bool,
|
is_next_pressed: bool,
|
||||||
|
is_level_select_pressed: bool,
|
||||||
screen_load_time: DateTime<Utc>,
|
screen_load_time: DateTime<Utc>,
|
||||||
attempt_time: String,
|
attempt_time: String,
|
||||||
best_time: String,
|
best_time: String,
|
||||||
@ -34,6 +35,7 @@ impl NextLevelScreen {
|
|||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self {
|
Self {
|
||||||
is_next_pressed: false,
|
is_next_pressed: false,
|
||||||
|
is_level_select_pressed: false,
|
||||||
screen_load_time: Utc::now(),
|
screen_load_time: Utc::now(),
|
||||||
attempt_time: String::new(),
|
attempt_time: String::new(),
|
||||||
best_time: String::new(),
|
best_time: String::new(),
|
||||||
@ -100,7 +102,10 @@ impl Action<Scenes, ScreenError, GameContext> for NextLevelScreen {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
Ok(ActionFlag::SwitchState(Scenes::InGameScene))
|
Ok(ActionFlag::SwitchState(Scenes::InGameScene))
|
||||||
} else {
|
}
|
||||||
|
else if self.is_level_select_pressed {
|
||||||
|
Ok(ActionFlag::SwitchState(Scenes::LevelSelectScreen))
|
||||||
|
}else {
|
||||||
Ok(ActionFlag::Continue)
|
Ok(ActionFlag::Continue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -108,6 +113,7 @@ impl Action<Scenes, ScreenError, GameContext> for NextLevelScreen {
|
|||||||
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
||||||
debug!("Finished NextLevelScreen");
|
debug!("Finished NextLevelScreen");
|
||||||
self.is_next_pressed = false;
|
self.is_next_pressed = false;
|
||||||
|
self.is_level_select_pressed = false;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -168,11 +174,42 @@ impl ScreenSpaceRender for NextLevelScreen {
|
|||||||
.check_collision_point_rec(mouse_position);
|
.check_collision_point_rec(mouse_position);
|
||||||
raylib.draw_rgb_split_text(
|
raylib.draw_rgb_split_text(
|
||||||
Vector2::new(80.0, screen_size.y / 2.0 + 50.0),
|
Vector2::new(80.0, screen_size.y / 2.0 + 50.0),
|
||||||
">> Next Level",
|
"Next Level",
|
||||||
25,
|
25,
|
||||||
hovering_next_button,
|
hovering_next_button,
|
||||||
Color::WHITE,
|
Color::WHITE,
|
||||||
);
|
);
|
||||||
|
if hovering_next_button {
|
||||||
|
raylib.draw_rgb_split_text(
|
||||||
|
Vector2::new(50.0, screen_size.y as f32 / 2.0 + 50.0),
|
||||||
|
">>",
|
||||||
|
25,
|
||||||
|
hovering_next_button,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
};
|
||||||
self.is_next_pressed = hovering_next_button && mouse_pressed;
|
self.is_next_pressed = hovering_next_button && mouse_pressed;
|
||||||
|
|
||||||
|
//Next Level
|
||||||
|
let hovering_level_select_button =
|
||||||
|
Rectangle::new(80.0, screen_size.y as f32 / 2.0 + 90.0, 300.0, 20.0)
|
||||||
|
.check_collision_point_rec(mouse_position);
|
||||||
|
raylib.draw_rgb_split_text(
|
||||||
|
Vector2::new(80.0, screen_size.y / 2.0 + 100.0),
|
||||||
|
"Back To Level Select",
|
||||||
|
25,
|
||||||
|
hovering_level_select_button,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
if hovering_level_select_button {
|
||||||
|
raylib.draw_rgb_split_text(
|
||||||
|
Vector2::new(50.0, screen_size.y as f32 / 2.0 + 100.0),
|
||||||
|
">>",
|
||||||
|
25,
|
||||||
|
hovering_level_select_button,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
};
|
||||||
|
self.is_level_select_pressed = hovering_level_select_button && mouse_pressed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user