shade
This commit is contained in:
parent
f1bbcfa9b2
commit
f205eea928
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"cSpell.words": [
|
||||||
|
"raylib"
|
||||||
|
]
|
||||||
|
}
|
2
game/src/shaders/mod.rs
Normal file
2
game/src/shaders/mod.rs
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
pub mod util;
|
||||||
|
pub mod shader;
|
14
game/src/shaders/shader.rs
Normal file
14
game/src/shaders/shader.rs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
|
||||||
|
|
||||||
|
pub struct ShaderWrapper {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ShaderWrapper {
|
||||||
|
/// Construct a new shader wrapper.
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Self {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
57
game/src/shaders/util/dynamic_screen_texture.rs
Normal file
57
game/src/shaders/util/dynamic_screen_texture.rs
Normal file
@ -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<Self, String> {
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
2
game/src/shaders/util/mod.rs
Normal file
2
game/src/shaders/util/mod.rs
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
pub mod render_texture;
|
||||||
|
pub mod dynamic_screen_texture;
|
12
game/src/shaders/util/render_texture.rs
Normal file
12
game/src/shaders/util/render_texture.rs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
use raylib::ffi::RenderTexture;
|
||||||
|
|
||||||
|
/// Renders everything in the draw function to a texture
|
||||||
|
pub fn render_to_texture<Func>(texture: &mut RenderTexture, draw_fn: Func) where Func: FnOnce() {
|
||||||
|
unsafe {
|
||||||
|
raylib::ffi::BeginTextureMode(*texture);
|
||||||
|
}
|
||||||
|
draw_fn();
|
||||||
|
unsafe {
|
||||||
|
raylib::ffi::EndTextureMode();
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user