diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ab1db25 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "cSpell.words": [ + "raylib" + ] +} \ No newline at end of file diff --git a/game/src/shaders/mod.rs b/game/src/shaders/mod.rs new file mode 100644 index 0000000..08e7f43 --- /dev/null +++ b/game/src/shaders/mod.rs @@ -0,0 +1,2 @@ +pub mod util; +pub mod shader; \ No newline at end of file diff --git a/game/src/shaders/shader.rs b/game/src/shaders/shader.rs new file mode 100644 index 0000000..331fa83 --- /dev/null +++ b/game/src/shaders/shader.rs @@ -0,0 +1,14 @@ + + +pub struct ShaderWrapper { + +} + +impl ShaderWrapper { + /// Construct a new shader wrapper. + pub fn new() -> Self { + Self { + + } + } +} \ No newline at end of file diff --git a/game/src/shaders/util/dynamic_screen_texture.rs b/game/src/shaders/util/dynamic_screen_texture.rs new file mode 100644 index 0000000..3cab102 --- /dev/null +++ b/game/src/shaders/util/dynamic_screen_texture.rs @@ -0,0 +1,57 @@ +use std::ops::{Deref, DerefMut}; + +use raylib::{ + texture::{RaylibTexture2D, RenderTexture2D}, + RaylibHandle, RaylibThread, +}; + +/// A texture that resizes with the screen size +pub struct DynScreenTexture { + texture: RenderTexture2D, +} + +impl DynScreenTexture { + /// Construct a new dynamic screen texture. + pub fn new(raylib: &mut RaylibHandle, thread: &RaylibThread) -> Result { + Ok(Self { + texture: raylib.load_render_texture( + &thread, + raylib.get_screen_width() as u32, + raylib.get_screen_height() as u32, + )?, + }) + } + + /// Handle updating the texture + pub fn update( + &mut self, + raylib: &mut RaylibHandle, + thread: &RaylibThread, + ) -> Result<(), String> { + // Check if the window has been resized + if self.texture.width() != raylib.get_screen_width() + || self.texture.height() != raylib.get_screen_height() + { + self.texture = raylib.load_render_texture( + &thread, + raylib.get_screen_width() as u32, + raylib.get_screen_height() as u32, + )?; + } + Ok(()) + } +} + +impl Deref for DynScreenTexture { + type Target = RenderTexture2D; + + fn deref(&self) -> &Self::Target { + &self.texture + } +} + +impl DerefMut for DynScreenTexture { + fn deref_mut(&mut self) -> &mut Self::Target { + &mut self.texture + } +} diff --git a/game/src/shaders/util/mod.rs b/game/src/shaders/util/mod.rs new file mode 100644 index 0000000..7c49d19 --- /dev/null +++ b/game/src/shaders/util/mod.rs @@ -0,0 +1,2 @@ +pub mod render_texture; +pub mod dynamic_screen_texture; \ No newline at end of file diff --git a/game/src/shaders/util/render_texture.rs b/game/src/shaders/util/render_texture.rs new file mode 100644 index 0000000..eee49a6 --- /dev/null +++ b/game/src/shaders/util/render_texture.rs @@ -0,0 +1,12 @@ +use raylib::ffi::RenderTexture; + +/// Renders everything in the draw function to a texture +pub fn render_to_texture(texture: &mut RenderTexture, draw_fn: Func) where Func: FnOnce() { + unsafe { + raylib::ffi::BeginTextureMode(*texture); + } + draw_fn(); + unsafe { + raylib::ffi::EndTextureMode(); + } +}