From fd7a08dbee77f93980f564c1d62fed5a2cacaa8e Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 30 Sep 2021 11:35:10 -0400 Subject: [PATCH] more file loading work --- .vscode/settings.json | 3 +-- .vscode/tasks.json | 12 ++++++++++++ game/src/lib.rs | 2 +- game/src/scenes/loading_screen.rs | 19 ++++++++----------- game/src/scenes/mod.rs | 11 +++++++---- game/src/utilities/datastore.rs | 6 +++--- rust-toolchain.toml | 2 +- 7 files changed, 33 insertions(+), 22 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 8397364..d695928 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,6 +3,5 @@ "clippy", "raylib", "renderable" - ], - "rust-analyzer.checkOnSave.command": "clippy" + ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 62c0c43..737fdd9 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -10,6 +10,18 @@ "group": "build", "label": "Rust: Build Code" }, + { + "type": "cargo", + "command": "clippy", + "args": [ + "--fix" + ], + "problemMatcher": [ + "$rustc" + ], + "group": "build", + "label": "Rust: Clippy Fix" + }, { "type": "cargo", "command": "run", diff --git a/game/src/lib.rs b/game/src/lib.rs index c042bdc..5576cd1 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -153,7 +153,7 @@ pub async fn game_begin(game_config: &GameConfig) -> Result<(), Box>, + game_logo_texture: Texture2D } impl LoadingScreen { /// Construct a new `LoadingScreen` - pub fn new(raylib_handle: &HackedRaylibHandle, thread: &RaylibThread) -> Self { + pub fn new(raylib_handle: &mut HackedRaylibHandle, thread: &RaylibThread) -> Result { // Load the game logo asset - // TODO: in-memory texture loading - // raylib_handle.load_texture_from_image(, image) + let game_logo = load_texture_from_internal_data(raylib_handle, thread, "logos/game-logo.png")?; - - Self { + Ok(Self { start_timestamp: None, - } + game_logo_texture: game_logo + }) } } diff --git a/game/src/scenes/mod.rs b/game/src/scenes/mod.rs index a4d84a3..45262b4 100644 --- a/game/src/scenes/mod.rs +++ b/game/src/scenes/mod.rs @@ -1,6 +1,6 @@ use dirty_fsm::StateMachine; use raylib::RaylibThread; -use crate::{context::GameContext, utilities::non_ref_raylib::HackedRaylibHandle}; +use crate::{context::GameContext, utilities::{datastore::ResourceLoadError, non_ref_raylib::HackedRaylibHandle}}; use self::{fsm_error_screen::FsmErrorScreen, loading_screen::LoadingScreen}; pub mod fsm_error_screen; @@ -16,16 +16,19 @@ pub enum Scenes { /// Contains any possible errors thrown while rendering #[derive(Debug, Error)] -pub enum ScreenError {} +pub enum ScreenError { + #[error(transparent)] + ResourceLoad(#[from] ResourceLoadError) +} /// Build the state machine for all scenes -pub fn build_screen_state_machine(raylib_handle: &HackedRaylibHandle, thread: &RaylibThread) -> Result< +pub fn build_screen_state_machine(raylib_handle: &mut 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(raylib_handle, thread))?; + machine.add_action(Scenes::LoadingScreen, LoadingScreen::new(raylib_handle, thread)?)?; Ok(machine) } diff --git a/game/src/utilities/datastore.rs b/game/src/utilities/datastore.rs index c037967..19a4147 100644 --- a/game/src/utilities/datastore.rs +++ b/game/src/utilities/datastore.rs @@ -22,7 +22,7 @@ pub enum ResourceLoadError { } pub fn load_texture_from_internal_data( - raylib_handle: &RaylibHandle, + raylib_handle: &mut RaylibHandle, thread: &RaylibThread, path: &str, ) -> Result { @@ -31,14 +31,14 @@ pub fn load_texture_from_internal_data( // Unpack the raw image data to a real file on the local filesystem so raylib will read it correctly std::fs::write( - tmp_path, + &tmp_path, &StaticGameData::get(path) .ok_or(ResourceLoadError::AssetNotFound(path.to_string()))? .data, )?; // Call through via FFI to re-load the file - let texture = raylib_handle.load_texture(thread, tmp_path.to_str().unwrap()).map_err(|e| ResourceLoadError::Generic(e)); + let texture = raylib_handle.load_texture(thread, tmp_path.to_str().unwrap()).map_err(|e| ResourceLoadError::Generic(e))?; // Close the file tmp_path.close()?; diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ced8d9b..4789ccc 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -8,4 +8,4 @@ # Make sure to check the build status before changing this # https://rust-lang.github.io/rustup-components-history/ channel = "nightly-2021-09-30" -components = ["clippy", "rustfmt"] +# components = ["clippy", "rustfmt"]