passing around full context now

This commit is contained in:
Evan Pratten 2021-09-29 17:06:06 -04:00
parent d2372772f0
commit de4491c9f3
6 changed files with 34 additions and 23 deletions

5
.vscode/tasks.json vendored
View File

@ -17,7 +17,10 @@
"$rustc" "$rustc"
], ],
"group": "build", "group": "build",
"label": "Rust: Run Game" "label": "Rust: Run Game",
"env": {
"RUST_LOG": "debug"
}
} }
] ]
} }

View File

@ -1,14 +1,19 @@
use std::cell::RefCell;
use crate::utilities::non_ref_raylib::HackedRaylibHandle;
#[derive(Debug)] #[derive(Debug)]
pub struct GameContext { pub struct GameContext {
pub renderer: RefCell<HackedRaylibHandle>
} }
impl GameContext { impl GameContext {
/// Construct a new game context. /// Construct a new game context.
pub fn new() -> Self { pub fn new(raylib: RefCell<HackedRaylibHandle>) -> Self {
Self { Self {
renderer: raylib
} }
} }
} }

View File

@ -81,12 +81,10 @@ pub async fn game_begin() {
let mut game_state_machine = let mut game_state_machine =
build_screen_state_machine().expect("Could not init state main state machine"); build_screen_state_machine().expect("Could not init state main state machine");
// Build the game context let mut context;
let mut context = Rc::new(RefCell::new(GameContext::new())); let mut raylib_thread;
let mut raylib_handle: RefCell<HackedRaylibHandle>;
let raylib_thread;
{ {
// Set up FFI access to raylib
let (mut rl, thread) = raylib::init() let (mut rl, thread) = raylib::init()
.size(640, 480) .size(640, 480)
.title(&game_config.name) .title(&game_config.name)
@ -95,14 +93,16 @@ pub async fn game_begin() {
.resizable() .resizable()
.build(); .build();
rl.set_exit_key(None); rl.set_exit_key(None);
raylib_handle = RefCell::new(rl.into());
raylib_thread = thread; 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 // Create a dynamic texture to draw to for processing by shaders
info!("Allocating a resizable texture for the screen"); info!("Allocating a resizable texture for the screen");
let mut dynamic_texture = 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"); .expect("Failed to allocate a screen texture");
// Load the pixel art shader // Load the pixel art shader
@ -111,20 +111,20 @@ pub async fn game_begin() {
None, None,
Some(StaticGameData::get("shaders/pixelart.fs")).expect("Failed to load pixelart.fs"), Some(StaticGameData::get("shaders/pixelart.fs")).expect("Failed to load pixelart.fs"),
vec!["viewport"], vec!["viewport"],
&mut raylib_handle.borrow_mut(), &mut context.renderer.borrow_mut(),
&raylib_thread, &raylib_thread,
) )
.unwrap(); .unwrap();
info!("Starting the render loop"); info!("Starting the render loop");
while !raylib_handle.borrow().window_should_close() { while !context.renderer.borrow().window_should_close() {
// Profile the main game loop // Profile the main game loop
puffin::profile_scope!("main_loop"); puffin::profile_scope!("main_loop");
puffin::GlobalProfiler::lock().new_frame(); puffin::GlobalProfiler::lock().new_frame();
// Update the GPU texture that we draw to. This handles screen resizing and some other stuff // Update the GPU texture that we draw to. This handles screen resizing and some other stuff
dynamic_texture dynamic_texture
.update(&mut raylib_handle.borrow_mut(), &raylib_thread) .update(&mut context.renderer.borrow_mut(), &raylib_thread)
.unwrap(); .unwrap();
// Switch into draw mode (using unsafe code here to avoid borrow checker hell) // 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 // Fetch the screen size once to work with in render code
let screen_size = Vector2::new( let screen_size = Vector2::new(
raylib_handle.borrow().get_screen_width() as f32, context.renderer.borrow().get_screen_width() as f32,
raylib_handle.borrow().get_screen_height() as f32, context.renderer.borrow().get_screen_height() as f32,
); );
// Update the pixel shader to correctly handle the screen size // 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"); puffin::profile_scope!("internal_shaded_render");
// Run a state machine iteration // 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 { if let Err(err) = result {
error!("Main state machine encountered an error while running!"); 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 // Send the texture to the GPU to be drawn
pixel_shader.process_texture_and_render( pixel_shader.process_texture_and_render(
&mut raylib_handle.borrow_mut(), &mut context.renderer.borrow_mut(),
&raylib_thread, &raylib_thread,
&dynamic_texture, &dynamic_texture,
); );

View File

@ -4,7 +4,7 @@ use dirty_fsm::{Action, ActionFlag};
use raylib::{color::Color, prelude::RaylibDraw, RaylibHandle}; use raylib::{color::Color, prelude::RaylibDraw, RaylibHandle};
use tracing::{debug, error, info, trace}; 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}; use super::{Scenes, ScreenError};
@ -18,13 +18,13 @@ impl FsmErrorScreen {
} }
} }
impl Action<Scenes, ScreenError, RefCell<HackedRaylibHandle>> for FsmErrorScreen { impl Action<Scenes, ScreenError, GameContext> for FsmErrorScreen {
fn on_register(&mut self) -> Result<(), ScreenError> { fn on_register(&mut self) -> Result<(), ScreenError> {
debug!("Registered"); debug!("Registered");
Ok(()) Ok(())
} }
fn on_first_run(&mut self, context: &RefCell<HackedRaylibHandle>) -> Result<(), ScreenError> { fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> {
debug!("Running FsmErrorScreen for the first time"); debug!("Running FsmErrorScreen for the first time");
Ok(()) Ok(())
} }
@ -32,10 +32,10 @@ impl Action<Scenes, ScreenError, RefCell<HackedRaylibHandle>> for FsmErrorScreen
fn execute( fn execute(
&mut self, &mut self,
delta: &chrono::Duration, delta: &chrono::Duration,
context: &RefCell<HackedRaylibHandle>, context: &GameContext,
) -> Result<dirty_fsm::ActionFlag<Scenes>, ScreenError> { ) -> Result<dirty_fsm::ActionFlag<Scenes>, ScreenError> {
trace!("execute() called on FsmErrorScreen"); 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) Ok(ActionFlag::Continue)
} }

View File

@ -35,7 +35,7 @@ pub enum ScreenError {}
/// Build the state machine for all scenes /// Build the state machine for all scenes
pub fn build_screen_state_machine() -> Result< pub fn build_screen_state_machine() -> Result<
// StateMachine<Scenes, ScreenError, RefCell<(NonRefDrawHandle, Rc<RefCell<GameContext>>)>>, // StateMachine<Scenes, ScreenError, RefCell<(NonRefDrawHandle, Rc<RefCell<GameContext>>)>>,
StateMachine<Scenes, ScreenError, RefCell<HackedRaylibHandle>>, StateMachine<Scenes, ScreenError, GameContext>,
ScreenError, ScreenError,
> { > {
let mut machine = StateMachine::new(); let mut machine = StateMachine::new();

View File

@ -2,6 +2,8 @@ use std::{borrow::Borrow, cell::{Cell, RefCell, RefMut}, ops::{Deref, DerefMut},
use raylib::{prelude::RaylibDraw, RaylibHandle}; use raylib::{prelude::RaylibDraw, RaylibHandle};
#[derive(Debug)]
pub struct HackedRaylibHandle(RaylibHandle); pub struct HackedRaylibHandle(RaylibHandle);
impl RaylibDraw for HackedRaylibHandle {} impl RaylibDraw for HackedRaylibHandle {}