From 74170f8876fc7a0b785fdaa73b7a176d13bb83a2 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 2 Oct 2021 19:15:07 -0400 Subject: [PATCH] working on redoing the loading sequence --- game/src/lib.rs | 2 +- game/src/scenes/loading_screen.rs | 164 ------------------------------ game/src/scenes/mod.rs | 7 -- 3 files changed, 1 insertion(+), 172 deletions(-) delete mode 100644 game/src/scenes/loading_screen.rs diff --git a/game/src/lib.rs b/game/src/lib.rs index d6a98ca..4adb624 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -176,7 +176,7 @@ pub async fn game_begin(game_config: &mut GameConfig) -> Result<(), Box>, - game_logo_texture: Texture2D, - game_logo_size: Vector2, -} - -impl LoadingScreen { - /// Construct a new `LoadingScreen` - pub fn new( - raylib_handle: &mut HackedRaylibHandle, - thread: &RaylibThread, - ) -> Result { - // Load the game logo asset - let game_logo = - load_texture_from_internal_data(raylib_handle, thread, "logos/game-logo.png")?; - - Ok(Self { - start_timestamp: None, - game_logo_size: Vector2::new(game_logo.width as f32, game_logo.height as f32), - game_logo_texture: game_logo, - }) - } -} - -impl Action for LoadingScreen { - fn on_register(&mut self) -> Result<(), ScreenError> { - debug!("Registered"); - Ok(()) - } - - fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> { - debug!("Running LoadingScreen for the first time"); - - // Update discord - if let Err(e) = context.discord_rpc_send.send(Some( - ActivityBuilder::default().details("loading...").assets( - Assets::default().large("game-logo-small", Some(context.config.name.clone())), - ), - )) { - error!("Failed to update discord: {}", e); - } - - // Keep track of when this screen is opened - self.start_timestamp = Some(Utc::now()); - - Ok(()) - } - - fn execute( - &mut self, - _delta: &chrono::Duration, - context: &GameContext, - ) -> Result, ScreenError> { - trace!("execute() called on LoadingScreen"); - self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config); - - // Check for a quick skip button in debug builds - cfg_if! { - if #[cfg(debug_assertions)] { - let debug_skip_screen = context.renderer.borrow_mut().is_key_pressed(KeyboardKey::KEY_ESCAPE); - } else { - let debug_skip_screen = false; - } - } - - // Keep rendering until we pass the loading screen duration - if let Some(start_timestamp) = self.start_timestamp { - let duration = Utc::now().signed_duration_since(start_timestamp); - if duration.num_seconds() >= LOADING_SCREEN_DURATION_SECONDS as i64 || debug_skip_screen - { - info!("LoadingScreen duration reached, moving to next screen"); - Ok(ActionFlag::SwitchState(Scenes::MainMenuScreen)) - } else { - Ok(ActionFlag::Continue) - } - } else { - Ok(ActionFlag::Continue) - } - } - - fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> { - debug!("Finished LoadingScreen"); - - // Reset the start timestamp - self.start_timestamp = None; - - Ok(()) - } -} - -impl ScreenSpaceRender for LoadingScreen { - fn render_screen_space( - &mut self, - raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle, - config: &GameConfig - ) { - // Calculate the loading screen fade in/out value - // This makes the loading screen fade in/out over the duration of the loading screen - let cur_time = Utc::now(); - let time_since_start = - cur_time.signed_duration_since(self.start_timestamp.unwrap_or(cur_time)); - let fade_percentage = interpolate_exp( - time_since_start.num_milliseconds() as f32, - 0.0..(LOADING_SCREEN_DURATION_SECONDS as f32 * 1000.0), - 0.0..1.0, - 8.0, - ); - trace!("Loading screen fade at {:.2}%", fade_percentage); - - // Render the background - raylib.clear_background(Color::BLACK); - - // Calculate the logo position - let screen_size = raylib.get_screen_size(); - - // Render the game logo - raylib.draw_texture_ex( - &self.game_logo_texture, - screen_size.div(2.0).sub(self.game_logo_size.div(2.0)), - 0.0, - 1.0, - Color::WHITE.fade(fade_percentage), - ); - - // Only in debug mode, render a debug message - #[cfg(debug_assertions)] - { - raylib.draw_rectangle_v( - Vector2::zero(), - Vector2::new(screen_size.x, 40.0), - Color::RED, - ); - raylib.draw_text( - "Game in DEBUG MODE. Do not redistribute!", - 10, - 10, - 20, - Color::WHITE, - ); - } - } -} diff --git a/game/src/scenes/mod.rs b/game/src/scenes/mod.rs index 3221362..ad0787c 100644 --- a/game/src/scenes/mod.rs +++ b/game/src/scenes/mod.rs @@ -2,7 +2,6 @@ use self::{ pause_screen::PauseScreen, fsm_error_screen::FsmErrorScreen, ingame_scene::{level::loader::load_all_levels, InGameScreen}, - loading_screen::LoadingScreen, main_menu_screen::MainMenuScreen, options_screen::OptionsScreen, how_to_play_screen::HowToPlayScreen, }; use crate::{ @@ -17,7 +16,6 @@ use raylib::{texture::Texture2D, RaylibThread}; pub mod fsm_error_screen; pub mod ingame_scene; -pub mod loading_screen; pub mod main_menu_screen; pub mod how_to_play_screen; pub mod options_screen; @@ -28,7 +26,6 @@ pub mod pause_screen; pub enum Scenes { #[default] FsmErrorScreen, - LoadingScreen, MainMenuScreen, InGameScene, HowToPlayScreen, @@ -62,10 +59,6 @@ pub fn build_screen_state_machine( // Set up the state machine let mut machine = StateMachine::new(); machine.add_action(Scenes::FsmErrorScreen, FsmErrorScreen::new())?; - machine.add_action( - Scenes::LoadingScreen, - LoadingScreen::new(raylib_handle, thread)?, - )?; machine.add_action(Scenes::MainMenuScreen, MainMenuScreen::new())?; machine.add_action(Scenes::HowToPlayScreen, HowToPlayScreen::new())?; machine.add_action(Scenes::OptionsScreen, OptionsScreen::new())?;