From f287e638c021bf6b4bd431f0271dae4738629250 Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 3 Oct 2021 16:19:01 -0400 Subject: [PATCH] glitchy titles go brrrr --- game/src/scenes/how_to_play_screen.rs | 34 +++++++++++++++++++++------ game/src/scenes/options_screen.rs | 16 ++++++++++++- 2 files changed, 42 insertions(+), 8 deletions(-) diff --git a/game/src/scenes/how_to_play_screen.rs b/game/src/scenes/how_to_play_screen.rs index 1592b81..4593499 100644 --- a/game/src/scenes/how_to_play_screen.rs +++ b/game/src/scenes/how_to_play_screen.rs @@ -20,6 +20,7 @@ use tracing::{debug, error, info, trace}; #[derive(Debug)] pub struct HowToPlayScreen { is_btm_pressed: bool, //Is back to menu button pressed + counter: i32, } impl HowToPlayScreen { @@ -27,6 +28,7 @@ impl HowToPlayScreen { pub fn new() -> Self { Self { is_btm_pressed: false, + counter: 0, } } } @@ -61,6 +63,8 @@ impl Action for HowToPlayScreen { trace!("execute() called on HowToPlayScreen"); self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config); + self.counter += 1; + if self.is_btm_pressed { context .flag_send @@ -75,6 +79,7 @@ impl Action for HowToPlayScreen { fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> { debug!("Finished HowToPlayScreen"); self.is_btm_pressed = false; + self.counter = 0; Ok(()) } } @@ -105,13 +110,28 @@ impl ScreenSpaceRender for HowToPlayScreen { let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON); //Render the title - raylib.draw_rgb_split_text( - Vector2::new(40.0, 80.0), - "How to Play", - 70, - true, - Color::WHITE, - ); + let timer: i32 = get_random_value(50, 400); + if self.counter > timer { + raylib.draw_rgb_split_text( + Vector2::new(40.0, 80.0), + "[How to Play]", + 70, + true, + Color::WHITE, + ); + if self.counter > timer + 20 { + self.counter = 0; + } + } + else{ + raylib.draw_rgb_split_text( + Vector2::new(40.0, 80.0), + "[How to Play]", + 70, + false, + Color::WHITE, + ); + } // Render the instructions raylib.draw_rgb_split_text( diff --git a/game/src/scenes/options_screen.rs b/game/src/scenes/options_screen.rs index cff3716..0e43647 100644 --- a/game/src/scenes/options_screen.rs +++ b/game/src/scenes/options_screen.rs @@ -20,6 +20,7 @@ use tracing::{debug, error, info, trace}; #[derive(Debug)] pub struct OptionsScreen { is_btm_pressed: bool, //Is back to menu button pressed + counter: i32, } impl OptionsScreen { @@ -27,6 +28,7 @@ impl OptionsScreen { pub fn new() -> Self { Self { is_btm_pressed: false, + counter: 0, } } } @@ -64,6 +66,8 @@ impl Action for OptionsScreen { trace!("execute() called on OptionsScreen"); self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config); + self.counter += 1; + if self.is_btm_pressed { context .flag_send @@ -108,7 +112,17 @@ impl ScreenSpaceRender for OptionsScreen { let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON); // Render the title - raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "Options", 70, true, Color::WHITE); + let timer: i32 = get_random_value(50, 400); + if self.counter > timer { + raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "[Options]", 70, true, Color::WHITE); + if self.counter > timer + 20 { + self.counter = 0; + } + } + else{ + raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "[Options]", 70, false, Color::WHITE); + + } // Render the text raylib.draw_rgb_split_text(