From 7eecc79f8485e4ed4ab2a4ce619d11127f6c2e3d Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 2 Oct 2021 22:45:43 -0400 Subject: [PATCH] we gottem bois --- game/Cargo.toml | 1 + game/src/scenes/how_to_play_screen.rs | 2 +- game/src/scenes/options_screen.rs | 15 ++++++++++++++- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/game/Cargo.toml b/game/Cargo.toml index c39c71e..4538ee0 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -33,6 +33,7 @@ num-derive = "0.3" num = "0.4" tiled = { version ="0.9.5", default-features = false } async-trait = "0.1.51" +webbrowser = "0.5" [dev-dependencies] puffin_viewer = "0.6" diff --git a/game/src/scenes/how_to_play_screen.rs b/game/src/scenes/how_to_play_screen.rs index e69ba4b..b41f542 100644 --- a/game/src/scenes/how_to_play_screen.rs +++ b/game/src/scenes/how_to_play_screen.rs @@ -105,7 +105,7 @@ impl ScreenSpaceRender for HowToPlayScreen { // Render the instructions raylib.draw_rgb_split_text( Vector2::new(100.0, 300.0), - ">> SPACE to jump\n>> SHIFT to dash\n>> Don't die", + ">> SPACE to jump\n>> SHIFT to dash\n>> Marcelo made these maps\n>> Marcelo hates you", 45, true, Color::WHITE, diff --git a/game/src/scenes/options_screen.rs b/game/src/scenes/options_screen.rs index 84a9a40..3f85ef6 100644 --- a/game/src/scenes/options_screen.rs +++ b/game/src/scenes/options_screen.rs @@ -43,6 +43,9 @@ impl Action for OptionsScreen { fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { debug!("Running OptionsScreen for the first time"); + // Rick-roll the user + let _ = webbrowser::open("https://www.youtube.com/watch?v=dQw4w9WgXcQ"); + Ok(()) } @@ -96,12 +99,22 @@ impl ScreenSpaceRender for OptionsScreen { // Render the title raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "Options", 70, true, Color::WHITE); + // Render the text + raylib.draw_rgb_split_text( + Vector2::new(100.0, 300.0), + ">> The game controls YOU", + 45, + true, + Color::WHITE, + ); + + //Back to Menu let hovering_back = Rectangle::new(35.0, screen_size.y as f32 - 80.0, 200.0, 40.0) .check_collision_point_rec(mouse_position); raylib.draw_rgb_split_text( Vector2::new(25.0, screen_size.y - 50.0), - "Options", + "BACK TO MENU", 25, hovering_back, Color::WHITE,