Death screen added
This commit is contained in:
parent
5d019bf39f
commit
fcaeee4877
@ -2,7 +2,7 @@ use raylib::prelude::*;
|
|||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
gamecore::{GameCore, GameState},
|
gamecore::{GameCore, GameState},
|
||||||
lib::wrappers::audio::player::AudioPlayer,
|
lib::{utils::button::OnScreenButton, wrappers::audio::player::AudioPlayer},
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::screen::Screen;
|
use super::screen::Screen;
|
||||||
@ -29,7 +29,6 @@ impl Screen for GameEndScreen {
|
|||||||
draw_handle.clear_background(Color::GRAY);
|
draw_handle.clear_background(Color::GRAY);
|
||||||
// TODO: Maybe we can stick some art here?
|
// TODO: Maybe we can stick some art here?
|
||||||
|
|
||||||
|
|
||||||
// Window dimensions
|
// Window dimensions
|
||||||
let win_height = draw_handle.get_screen_height();
|
let win_height = draw_handle.get_screen_height();
|
||||||
let win_width = draw_handle.get_screen_width();
|
let win_width = draw_handle.get_screen_width();
|
||||||
@ -53,14 +52,48 @@ impl Screen for GameEndScreen {
|
|||||||
// Render heading text
|
// Render heading text
|
||||||
draw_handle.draw_text(
|
draw_handle.draw_text(
|
||||||
"OUT OF BREATH",
|
"OUT OF BREATH",
|
||||||
(win_width / 2) - 80,
|
(win_width / 2) - ((SCREEN_PANEL_SIZE.x as i32 + 6) / 2) + 25,
|
||||||
(win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 10,
|
(win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 10,
|
||||||
40,
|
30,
|
||||||
Color::BLACK,
|
Color::BLACK,
|
||||||
);
|
);
|
||||||
|
|
||||||
// TODO: Save game progress
|
// Render message
|
||||||
|
draw_handle.draw_text(
|
||||||
|
"Your clone can now buy items ",
|
||||||
|
((win_width / 2) - ((SCREEN_PANEL_SIZE.x as i32 + 6) / 2))
|
||||||
|
+ (0.15 * SCREEN_PANEL_SIZE.x) as i32,
|
||||||
|
(win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 50,
|
||||||
|
15,
|
||||||
|
Color::BLACK,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Render button
|
||||||
|
let go_to_menu_button = OnScreenButton::new(
|
||||||
|
String::from("Return to shop"),
|
||||||
|
Rectangle {
|
||||||
|
x: (((win_width / 2) - ((SCREEN_PANEL_SIZE.x as i32 + 6) / 2) + 5)
|
||||||
|
+ (0.15 * SCREEN_PANEL_SIZE.x) as i32) as f32,
|
||||||
|
y: (((win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 90) as f32) + 100.0,
|
||||||
|
width: 210.0,
|
||||||
|
height: 50.0,
|
||||||
|
},
|
||||||
|
Color::WHITE,
|
||||||
|
Color::BLACK,
|
||||||
|
Color::GRAY,
|
||||||
|
25,
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
|
||||||
|
go_to_menu_button.render(draw_handle);
|
||||||
|
|
||||||
|
if go_to_menu_button.is_hovered(draw_handle) && draw_handle.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON){
|
||||||
|
|
||||||
|
game_core.switch_state(GameState::InShop, Some(draw_handle));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Save game progress
|
||||||
|
|
||||||
// // Close and quit buttons
|
// // Close and quit buttons
|
||||||
// let bottom_left_button_dimensions = Rectangle {
|
// let bottom_left_button_dimensions = Rectangle {
|
||||||
|
@ -216,6 +216,7 @@ impl Screen for InGameScreen {
|
|||||||
// Render the hud
|
// Render the hud
|
||||||
hud::render_hud(draw_handle, game_core, window_center);
|
hud::render_hud(draw_handle, game_core, window_center);
|
||||||
|
|
||||||
|
|
||||||
// Handle player out of breath
|
// Handle player out of breath
|
||||||
if game_core.player.breath_percent == 0.0 {
|
if game_core.player.breath_percent == 0.0 {
|
||||||
return Some(GameState::GameEnd);
|
return Some(GameState::GameEnd);
|
||||||
|
Reference in New Issue
Block a user