Merge pull request #34 from Ewpratten/outofbreathscreen
added win screen
This commit is contained in:
commit
a5614c54b2
@ -25,7 +25,8 @@ pub enum GameState {
|
|||||||
GameQuit,
|
GameQuit,
|
||||||
InGame,
|
InGame,
|
||||||
GameEnd,
|
GameEnd,
|
||||||
InShop
|
InShop,
|
||||||
|
WinGame
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Display for GameState {
|
impl fmt::Display for GameState {
|
||||||
|
@ -25,9 +25,8 @@ impl Screen for GameEndScreen {
|
|||||||
audio_system: &mut AudioPlayer,
|
audio_system: &mut AudioPlayer,
|
||||||
game_core: &mut GameCore,
|
game_core: &mut GameCore,
|
||||||
) -> Option<GameState> {
|
) -> Option<GameState> {
|
||||||
let mouse_position = draw_handle.get_mouse_position();
|
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?
|
|
||||||
|
|
||||||
// Render the background
|
// Render the background
|
||||||
draw_handle.draw_texture(&game_core.resources.shop_background, 0, 0, Color::WHITE);
|
draw_handle.draw_texture(&game_core.resources.shop_background, 0, 0, Color::WHITE);
|
||||||
@ -71,7 +70,7 @@ impl Screen for GameEndScreen {
|
|||||||
Color::BLACK,
|
Color::BLACK,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Render button
|
// Creates
|
||||||
let go_to_menu_button = OnScreenButton::new(
|
let go_to_menu_button = OnScreenButton::new(
|
||||||
String::from("Return to shop"),
|
String::from("Return to shop"),
|
||||||
Rectangle {
|
Rectangle {
|
||||||
@ -88,8 +87,10 @@ impl Screen for GameEndScreen {
|
|||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// render button
|
||||||
go_to_menu_button.render(draw_handle);
|
go_to_menu_button.render(draw_handle);
|
||||||
|
|
||||||
|
// If the player clicks on the button send them to shop
|
||||||
if go_to_menu_button.is_hovered(draw_handle) && draw_handle.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON){
|
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));
|
game_core.switch_state(GameState::InShop, Some(draw_handle));
|
||||||
|
@ -222,6 +222,10 @@ impl Screen for InGameScreen {
|
|||||||
return Some(GameState::GameEnd);
|
return Some(GameState::GameEnd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if game_core.world.end_position.distance_to(game_core.player.position) <= 70.0{
|
||||||
|
return Some(GameState::WinGame);
|
||||||
|
}
|
||||||
|
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,4 +4,5 @@ pub mod mainmenu;
|
|||||||
pub mod pausemenu;
|
pub mod pausemenu;
|
||||||
pub mod ingame;
|
pub mod ingame;
|
||||||
pub mod gameend;
|
pub mod gameend;
|
||||||
pub mod shop;
|
pub mod shop;
|
||||||
|
pub mod winscreen;
|
93
src/logic/winscreen.rs
Normal file
93
src/logic/winscreen.rs
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
use raylib::prelude::*;
|
||||||
|
|
||||||
|
use crate::lib::utils::button::OnScreenButton;
|
||||||
|
use crate::{
|
||||||
|
gamecore::{GameCore, GameState},
|
||||||
|
lib::wrappers::audio::player::AudioPlayer,
|
||||||
|
};
|
||||||
|
|
||||||
|
use super::screen::Screen;
|
||||||
|
|
||||||
|
const SCREEN_PANEL_SIZE: Vector2 = Vector2 { x: 300.0, y: 300.0 };
|
||||||
|
|
||||||
|
pub struct WinScreen {}
|
||||||
|
|
||||||
|
impl WinScreen {
|
||||||
|
pub fn new() -> Self {
|
||||||
|
return Self {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Screen for WinScreen {
|
||||||
|
fn render(
|
||||||
|
&mut self,
|
||||||
|
draw_handle: &mut RaylibDrawHandle,
|
||||||
|
thread: &RaylibThread,
|
||||||
|
audio_system: &mut AudioPlayer,
|
||||||
|
game_core: &mut GameCore,
|
||||||
|
) -> Option<GameState> {
|
||||||
|
let win_height = draw_handle.get_screen_height();
|
||||||
|
let win_width = draw_handle.get_screen_width();
|
||||||
|
|
||||||
|
// Render the backing to the menu itself
|
||||||
|
draw_handle.draw_rectangle(
|
||||||
|
(win_width / 2) - ((SCREEN_PANEL_SIZE.x as i32 + 6) / 2),
|
||||||
|
(win_height / 2) - ((SCREEN_PANEL_SIZE.y as i32 + 6) / 2),
|
||||||
|
SCREEN_PANEL_SIZE.x as i32 + 6,
|
||||||
|
SCREEN_PANEL_SIZE.y as i32 + 6,
|
||||||
|
Color::BLACK,
|
||||||
|
);
|
||||||
|
draw_handle.draw_rectangle(
|
||||||
|
(win_width / 2) - (SCREEN_PANEL_SIZE.x as i32 / 2),
|
||||||
|
(win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2),
|
||||||
|
SCREEN_PANEL_SIZE.x as i32,
|
||||||
|
SCREEN_PANEL_SIZE.y as i32,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Render heading text
|
||||||
|
draw_handle.draw_text(
|
||||||
|
"You've Won!!",
|
||||||
|
(win_width / 2) - ((SCREEN_PANEL_SIZE.x as i32 + 6) / 2) + 60,
|
||||||
|
(win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 10,
|
||||||
|
30,
|
||||||
|
Color::BLACK,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Render message
|
||||||
|
draw_handle.draw_text(
|
||||||
|
"You can use the transponder to \ncontact help!",
|
||||||
|
((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) + 80,
|
||||||
|
15,
|
||||||
|
Color::BLACK,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Render button
|
||||||
|
let go_to_menu_button = OnScreenButton::new(
|
||||||
|
String::from("Return to menu"),
|
||||||
|
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::MainMenu, Some(draw_handle));
|
||||||
|
}
|
||||||
|
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
}
|
12
src/main.rs
12
src/main.rs
@ -11,10 +11,7 @@ mod world;
|
|||||||
use gamecore::{GameCore, GameProgress, GameState};
|
use gamecore::{GameCore, GameProgress, GameState};
|
||||||
use lib::{utils::profiler::GameProfiler, wrappers::audio::player::AudioPlayer};
|
use lib::{utils::profiler::GameProfiler, wrappers::audio::player::AudioPlayer};
|
||||||
use log::info;
|
use log::info;
|
||||||
use logic::{
|
use logic::{gameend::GameEndScreen, ingame::InGameScreen, loadingscreen::LoadingScreen, mainmenu::MainMenuScreen, pausemenu::PauseMenuScreen, screen::Screen, shop::ShopScreen, winscreen::{self, WinScreen}};
|
||||||
gameend::GameEndScreen, ingame::InGameScreen, loadingscreen::LoadingScreen,
|
|
||||||
mainmenu::MainMenuScreen, pausemenu::PauseMenuScreen, screen::Screen, shop::ShopScreen,
|
|
||||||
};
|
|
||||||
use raylib::prelude::*;
|
use raylib::prelude::*;
|
||||||
use world::{load_world_colliders, World};
|
use world::{load_world_colliders, World};
|
||||||
|
|
||||||
@ -75,6 +72,7 @@ fn main() {
|
|||||||
let mut ingame_screen = InGameScreen::new();
|
let mut ingame_screen = InGameScreen::new();
|
||||||
let mut game_end_screen = GameEndScreen::new();
|
let mut game_end_screen = GameEndScreen::new();
|
||||||
let mut shop_screen = ShopScreen::new();
|
let mut shop_screen = ShopScreen::new();
|
||||||
|
let mut win_screen = WinScreen::new();
|
||||||
|
|
||||||
// Main rendering loop
|
// Main rendering loop
|
||||||
while !raylib.window_should_close() {
|
while !raylib.window_should_close() {
|
||||||
@ -119,6 +117,12 @@ fn main() {
|
|||||||
&mut audio_system,
|
&mut audio_system,
|
||||||
&mut game_core,
|
&mut game_core,
|
||||||
),
|
),
|
||||||
|
GameState::WinGame => win_screen.render(
|
||||||
|
&mut draw_handle,
|
||||||
|
&raylib_thread,
|
||||||
|
&mut audio_system,
|
||||||
|
&mut game_core,
|
||||||
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
// If needed, update the global state
|
// If needed, update the global state
|
||||||
|
Reference in New Issue
Block a user