Debug warning on loading screen

This commit is contained in:
Evan Pratten 2021-04-23 11:58:46 -04:00
parent 0d8572c892
commit ac5bd2c790
6 changed files with 23 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 244 B

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@ -8,7 +8,7 @@ use crate::{
use super::screen::Screen; use super::screen::Screen;
const SECONDS_PER_LOGO: f64 = 2.0; const SECONDS_PER_LOGO: f64 = 4.0;
const RUST_ORANGE: Color = Color::new(222, 165, 132, 255); const RUST_ORANGE: Color = Color::new(222, 165, 132, 255);
#[derive(Debug, PartialEq)] #[derive(Debug, PartialEq)]
@ -72,7 +72,7 @@ impl LoadingScreen {
self.state = LoadingScreenState::LoadingResources; self.state = LoadingScreenState::LoadingResources;
} }
fn get_logo_mask(&self, draw_handle: &RaylibDrawHandle, playthrough_percent: f64) -> Color { fn get_logo_mask(&self, playthrough_percent: f64) -> Color {
// Determine the alpha // Determine the alpha
let alpha; let alpha;
if playthrough_percent < 0.25 { if playthrough_percent < 0.25 {
@ -105,7 +105,7 @@ impl LoadingScreen {
(draw_handle.get_time() - self.last_state_switch_time) / SECONDS_PER_LOGO; (draw_handle.get_time() - self.last_state_switch_time) / SECONDS_PER_LOGO;
// Build a color mask // Build a color mask
let mask = self.get_logo_mask(draw_handle, playthrough_percent); let mask = self.get_logo_mask( playthrough_percent);
// Render the logo // Render the logo
// TODO // TODO
@ -120,7 +120,7 @@ impl LoadingScreen {
fn show_raylib_logo( fn show_raylib_logo(
&mut self, &mut self,
draw_handle: &mut RaylibDrawHandle, draw_handle: &mut RaylibDrawHandle,
game_core: &mut GameCore, _game_core: &mut GameCore,
win_height: i32, win_height: i32,
win_width: i32, win_width: i32,
) { ) {
@ -130,7 +130,7 @@ impl LoadingScreen {
(draw_handle.get_time() - self.last_state_switch_time) / SECONDS_PER_LOGO; (draw_handle.get_time() - self.last_state_switch_time) / SECONDS_PER_LOGO;
// Build a color mask // Build a color mask
let mask = self.get_logo_mask(draw_handle, playthrough_percent); let mask = self.get_logo_mask( playthrough_percent);
// Create modified colors // Create modified colors
let alpha_orange = Color { let alpha_orange = Color {
@ -139,12 +139,6 @@ impl LoadingScreen {
b: RUST_ORANGE.b, b: RUST_ORANGE.b,
a: mask.a a: mask.a
}; };
let alpha_black = Color {
r: Color::BLACK.r,
g: Color::BLACK.g,
b: Color::BLACK.b,
a: mask.a
};
// Render the raylib logo // Render the raylib logo
draw_handle.draw_rectangle( draw_handle.draw_rectangle(
@ -198,8 +192,6 @@ impl Screen for LoadingScreen {
let win_height = draw_handle.get_screen_height(); let win_height = draw_handle.get_screen_height();
let win_width = draw_handle.get_screen_width(); let win_width = draw_handle.get_screen_width();
//TODO: Debug mode skip button
// Call the appropriate internal handler function // Call the appropriate internal handler function
match self.state { match self.state {
LoadingScreenState::Preload => { LoadingScreenState::Preload => {
@ -217,6 +209,20 @@ impl Screen for LoadingScreen {
LoadingScreenState::Finished => return Some(GameState::MainMenu), LoadingScreenState::Finished => return Some(GameState::MainMenu),
} }
// A DEBUG warning and skip button
#[cfg(debug_assertions)]
{
// Render debug text
draw_handle.draw_text("RUNNING IN DEBUG MODE", 0, 0, 20, Color::RED);
draw_handle.draw_text("Press ESC to skip this screen", 0, 25, 20, Color::RED);
if draw_handle.is_key_pressed(KeyboardKey::KEY_ESCAPE) {
return Some(GameState::MainMenu);
}
}
return None; return None;
} }
} }

View File

@ -19,6 +19,10 @@ impl Screen for MainMenuScreen {
audio_system: &mut AudioPlayer, audio_system: &mut AudioPlayer,
game_core: &mut GameCore, game_core: &mut GameCore,
) -> Option<GameState> { ) -> Option<GameState> {
// Clear frame
draw_handle.clear_background(Color::RED);
return None; return None;
} }
} }