diff --git a/game/src/scenes/death_screen.rs b/game/src/scenes/death_screen.rs new file mode 100644 index 0000000..996eeb3 --- /dev/null +++ b/game/src/scenes/death_screen.rs @@ -0,0 +1,139 @@ +use std::ops::{Div, Sub}; + +use chrono::{DateTime, Utc}; +use dirty_fsm::{Action, ActionFlag}; +use pkg_version::pkg_version_major; +use raylib::prelude::*; + +use crate::{GameConfig, context::GameContext, utilities::{ + datastore::{load_texture_from_internal_data, ResourceLoadError}, + game_version::get_version_string, + math::interpolate_exp, + non_ref_raylib::HackedRaylibHandle, + render_layer::ScreenSpaceRender, + }}; + +use super::{Scenes, ScreenError}; +use tracing::{debug, info, trace}; + +#[derive(Debug)] +pub struct DeathScreen { + is_retry_pressed: bool +} + +impl DeathScreen { + /// Construct a new `DeathScreen` + pub fn new() -> Self { + Self { + is_retry_pressed: false + } + } +} + +impl Action for DeathScreen { + fn on_register(&mut self) -> Result<(), ScreenError> { + debug!("Registered"); + Ok(()) + } + + fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { + debug!("Running DeathScreen for the first time"); + + Ok(()) + } + + fn execute( + &mut self, + _delta: &chrono::Duration, + context: &GameContext, + ) -> Result, ScreenError> { + trace!("execute() called on DeathScreen"); + self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config); + + + if self.is_retry_pressed { + Ok(ActionFlag::SwitchState(Scenes::InGameScene)) + } + else{ + Ok(ActionFlag::Continue) + } + } + + fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> { + debug!("Finished DeathScreen"); + Ok(()) + } +} + +impl ScreenSpaceRender for DeathScreen { + fn render_screen_space( + &mut self, + raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle, + config: &GameConfig + ) { + + // Render the background + raylib.clear_background(Color::DARKBLUE); + + let screen_size = raylib.get_screen_size(); + + //Mouse Position + let mouse_position: Vector2 = raylib.get_mouse_position(); + + let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON); + + raylib.draw_text( + + "ERR: Corrupted Player Data Detected + +The program has detected lowering player integrity, and has halted as a safety precaution. + +If this is the first time you've seen this error screen, restart the level. If this screen appears \nagain, follow these steps: + +Check to make sure any new powerups or abilities are properly installed. +If this is a new run, ask the game dev for any game updates you might need. + +If problems continue, get better or stop being bad at the game. +If you need to use safemode to actually complete the game, please just get good. + +-------- Technical information -------- +*** CALL STACK: +*** C [libraylib.so+0x75c] END_DRAWING() +*** RS [data_loss.so+0x48f] validate_player() +*** --------------------------------------- +*** PROGRAM_HALT (TIME: XX:XX, BEST: XX:XX) +*** ---------------------------------------", + 25, + 20, + 20, + Color::WHITE, + ); + + //Retry + if Rectangle::new(35.0, screen_size.y as f32 - 80.0, 200.0, 40.0).check_collision_point_rec(mouse_position){ + raylib.draw_text( + + ">>CLICK HERE TO RETRY", + 20, + screen_size.y as i32 - 40, + 19, + Color::WHITE, + ); + + if mouse_pressed{ + self.is_retry_pressed = true; + + } + } + else { + raylib.draw_text( + + ">>CLICK HERE TO RETRY", + 25, + screen_size.y as i32 - 40, + 18, + Color::WHITE, + ); + } + } +} diff --git a/game/src/scenes/ingame_scene/mod.rs b/game/src/scenes/ingame_scene/mod.rs index af5e290..b944149 100644 --- a/game/src/scenes/ingame_scene/mod.rs +++ b/game/src/scenes/ingame_scene/mod.rs @@ -117,7 +117,7 @@ impl Action for InGameScreen { } else if self.player_dead { // TODO: (luna) make this switch to the death screen plz - Ok(ActionFlag::SwitchState(Scenes::FsmErrorScreen)) + Ok(ActionFlag::SwitchState(Scenes::DeathScreen)) } else { Ok(ActionFlag::Continue) } diff --git a/game/src/scenes/mod.rs b/game/src/scenes/mod.rs index 3221362..bb73e10 100644 --- a/game/src/scenes/mod.rs +++ b/game/src/scenes/mod.rs @@ -4,6 +4,7 @@ use self::{ ingame_scene::{level::loader::load_all_levels, InGameScreen}, loading_screen::LoadingScreen, main_menu_screen::MainMenuScreen, options_screen::OptionsScreen, how_to_play_screen::HowToPlayScreen, + death_screen::DeathScreen }; use crate::{ context::GameContext, @@ -22,6 +23,7 @@ pub mod main_menu_screen; pub mod how_to_play_screen; pub mod options_screen; pub mod pause_screen; +pub mod death_screen; /// Defines all scenes #[derive(Debug, Clone, Copy, PartialEq, Eq, Default, Hash)] @@ -34,6 +36,7 @@ pub enum Scenes { HowToPlayScreen, OptionsScreen, PauseScreen, + DeathScreen, } /// Contains any possible errors thrown while rendering @@ -74,6 +77,7 @@ pub fn build_screen_state_machine( Scenes::InGameScene, InGameScreen::new(player_sprite_sheet, world_background, levels), )?; + machine.add_action(Scenes::DeathScreen, DeathScreen::new())?; Ok(machine) }