diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 20c9cbe..62c0c43 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -17,7 +17,10 @@ "$rustc" ], "group": "build", - "label": "Rust: Run Game" + "label": "Rust: Run Game", + "env": { + "RUST_LOG": "debug" + } } ] } diff --git a/game/src/context.rs b/game/src/context.rs index 3e2c4ff..54e1d4f 100644 --- a/game/src/context.rs +++ b/game/src/context.rs @@ -1,14 +1,19 @@ +use std::cell::RefCell; + +use crate::utilities::non_ref_raylib::HackedRaylibHandle; + #[derive(Debug)] pub struct GameContext { + pub renderer: RefCell } impl GameContext { /// Construct a new game context. - pub fn new() -> Self { + pub fn new(raylib: RefCell) -> Self { Self { - + renderer: raylib } } } diff --git a/game/src/lib.rs b/game/src/lib.rs index 53509c6..ab5b562 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -81,12 +81,10 @@ pub async fn game_begin() { let mut game_state_machine = build_screen_state_machine().expect("Could not init state main state machine"); - // Build the game context - let mut context = Rc::new(RefCell::new(GameContext::new())); - - let mut raylib_handle: RefCell; - let raylib_thread; + let mut context; + let mut raylib_thread; { + // Set up FFI access to raylib let (mut rl, thread) = raylib::init() .size(640, 480) .title(&game_config.name) @@ -95,14 +93,16 @@ pub async fn game_begin() { .resizable() .build(); rl.set_exit_key(None); - raylib_handle = RefCell::new(rl.into()); raylib_thread = thread; + + // Build the game context + context = Box::new(GameContext::new(RefCell::new(rl.into()))); } // Create a dynamic texture to draw to for processing by shaders info!("Allocating a resizable texture for the screen"); let mut dynamic_texture = - DynScreenTexture::new(&mut raylib_handle.borrow_mut(), &raylib_thread) + DynScreenTexture::new(&mut context.renderer.borrow_mut(), &raylib_thread) .expect("Failed to allocate a screen texture"); // Load the pixel art shader @@ -111,20 +111,20 @@ pub async fn game_begin() { None, Some(StaticGameData::get("shaders/pixelart.fs")).expect("Failed to load pixelart.fs"), vec!["viewport"], - &mut raylib_handle.borrow_mut(), + &mut context.renderer.borrow_mut(), &raylib_thread, ) .unwrap(); info!("Starting the render loop"); - while !raylib_handle.borrow().window_should_close() { + while !context.renderer.borrow().window_should_close() { // Profile the main game loop puffin::profile_scope!("main_loop"); puffin::GlobalProfiler::lock().new_frame(); // Update the GPU texture that we draw to. This handles screen resizing and some other stuff dynamic_texture - .update(&mut raylib_handle.borrow_mut(), &raylib_thread) + .update(&mut context.renderer.borrow_mut(), &raylib_thread) .unwrap(); // Switch into draw mode (using unsafe code here to avoid borrow checker hell) @@ -135,8 +135,8 @@ pub async fn game_begin() { // Fetch the screen size once to work with in render code let screen_size = Vector2::new( - raylib_handle.borrow().get_screen_width() as f32, - raylib_handle.borrow().get_screen_height() as f32, + context.renderer.borrow().get_screen_width() as f32, + context.renderer.borrow().get_screen_height() as f32, ); // Update the pixel shader to correctly handle the screen size @@ -148,7 +148,8 @@ pub async fn game_begin() { puffin::profile_scope!("internal_shaded_render"); // Run a state machine iteration - let result = game_state_machine.run(&raylib_handle); + // let x = (context.renderer, context); + let result = game_state_machine.run(&context); if let Err(err) = result { error!("Main state machine encountered an error while running!"); @@ -160,7 +161,7 @@ pub async fn game_begin() { // Send the texture to the GPU to be drawn pixel_shader.process_texture_and_render( - &mut raylib_handle.borrow_mut(), + &mut context.renderer.borrow_mut(), &raylib_thread, &dynamic_texture, ); diff --git a/game/src/scenes/fsm_error_screen.rs b/game/src/scenes/fsm_error_screen.rs index 10b8ae0..1e80672 100644 --- a/game/src/scenes/fsm_error_screen.rs +++ b/game/src/scenes/fsm_error_screen.rs @@ -4,7 +4,7 @@ use dirty_fsm::{Action, ActionFlag}; use raylib::{color::Color, prelude::RaylibDraw, RaylibHandle}; use tracing::{debug, error, info, trace}; -use crate::{gfx::render_layer::ScreenSpaceRender, utilities::non_ref_raylib::HackedRaylibHandle}; +use crate::{context::GameContext, gfx::render_layer::ScreenSpaceRender, utilities::non_ref_raylib::HackedRaylibHandle}; use super::{Scenes, ScreenError}; @@ -18,13 +18,13 @@ impl FsmErrorScreen { } } -impl Action> for FsmErrorScreen { +impl Action for FsmErrorScreen { fn on_register(&mut self) -> Result<(), ScreenError> { debug!("Registered"); Ok(()) } - fn on_first_run(&mut self, context: &RefCell) -> Result<(), ScreenError> { + fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> { debug!("Running FsmErrorScreen for the first time"); Ok(()) } @@ -32,10 +32,10 @@ impl Action> for FsmErrorScreen fn execute( &mut self, delta: &chrono::Duration, - context: &RefCell, + context: &GameContext, ) -> Result, ScreenError> { trace!("execute() called on FsmErrorScreen"); - self.render_screen_space(&mut context.borrow_mut()); + self.render_screen_space(&mut context.renderer.borrow_mut()); Ok(ActionFlag::Continue) } diff --git a/game/src/scenes/mod.rs b/game/src/scenes/mod.rs index 9e55931..4e5dc40 100644 --- a/game/src/scenes/mod.rs +++ b/game/src/scenes/mod.rs @@ -35,7 +35,7 @@ pub enum ScreenError {} /// Build the state machine for all scenes pub fn build_screen_state_machine() -> Result< // StateMachine>)>>, - StateMachine>, + StateMachine, ScreenError, > { let mut machine = StateMachine::new(); diff --git a/game/src/utilities/non_ref_raylib.rs b/game/src/utilities/non_ref_raylib.rs index 3aac10f..483f8d8 100644 --- a/game/src/utilities/non_ref_raylib.rs +++ b/game/src/utilities/non_ref_raylib.rs @@ -2,6 +2,8 @@ use std::{borrow::Borrow, cell::{Cell, RefCell, RefMut}, ops::{Deref, DerefMut}, use raylib::{prelude::RaylibDraw, RaylibHandle}; + +#[derive(Debug)] pub struct HackedRaylibHandle(RaylibHandle); impl RaylibDraw for HackedRaylibHandle {}