diff --git a/game/assets/logos/game-logo.png b/game/assets/logos/game-logo.png new file mode 100644 index 0000000..8f734b3 Binary files /dev/null and b/game/assets/logos/game-logo.png differ diff --git a/game/src/lib.rs b/game/src/lib.rs index c79bc08..c042bdc 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -75,10 +75,15 @@ use raylib::prelude::*; use tracing::{error, info}; use utilities::discord::DiscordConfig; -use crate::{context::GameContext, discord_rpc::{maybe_set_discord_presence, try_connect_to_local_discord}, scenes::{Scenes, build_screen_state_machine}, utilities::shaders::{ +use crate::{ + context::GameContext, + discord_rpc::{maybe_set_discord_presence, try_connect_to_local_discord}, + scenes::{build_screen_state_machine, Scenes}, + utilities::shaders::{ shader::ShaderWrapper, util::{dynamic_screen_texture::DynScreenTexture, render_texture::render_to_texture}, - }}; + }, +}; #[macro_use] extern crate thiserror; @@ -124,10 +129,6 @@ pub async fn game_begin(game_config: &GameConfig) -> Result<(), Box Result<(), Box Self { + pub fn new(raylib_handle: &HackedRaylibHandle, thread: &RaylibThread) -> Self { + + // Load the game logo asset + // TODO: in-memory texture loading + // raylib_handle.load_texture_from_image(, image) + + Self { start_timestamp: None, } @@ -78,8 +88,5 @@ impl ScreenSpaceRender for LoadingScreen { // Calculate the loading screen fade in/out value // This makes the loading screen fade in/out over the duration of the loading screen - - - } } diff --git a/game/src/scenes/mod.rs b/game/src/scenes/mod.rs index c4f3252..a4d84a3 100644 --- a/game/src/scenes/mod.rs +++ b/game/src/scenes/mod.rs @@ -1,5 +1,6 @@ use dirty_fsm::StateMachine; -use crate::context::GameContext; +use raylib::RaylibThread; +use crate::{context::GameContext, utilities::non_ref_raylib::HackedRaylibHandle}; use self::{fsm_error_screen::FsmErrorScreen, loading_screen::LoadingScreen}; pub mod fsm_error_screen; @@ -18,13 +19,13 @@ pub enum Scenes { pub enum ScreenError {} /// Build the state machine for all scenes -pub fn build_screen_state_machine() -> Result< +pub fn build_screen_state_machine(raylib_handle: &HackedRaylibHandle, thread: &RaylibThread) -> Result< // StateMachine>)>>, StateMachine, ScreenError, > { let mut machine = StateMachine::new(); machine.add_action(Scenes::FsmErrorScreen, FsmErrorScreen::new())?; - machine.add_action(Scenes::LoadingScreen, LoadingScreen::new())?; + machine.add_action(Scenes::LoadingScreen, LoadingScreen::new(raylib_handle, thread))?; Ok(machine) }