mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
break up shader mod
This commit is contained in:
parent
428bb985c4
commit
5306fa36fa
4 changed files with 173 additions and 161 deletions
|
@ -11,6 +11,7 @@ Here is the current list of planned features. All items are sorted in approximat
|
|||
* Physically based rendering
|
||||
* Skeletal animation
|
||||
* Macro to produce vertex buffer attributes (and maybe descriptors) from structs
|
||||
* Add runtime type safety to uniform bindings (and maybe compile time)
|
||||
* Dynamic / user defined shaders
|
||||
* consider using shaderc-rs. but this introduces compile complexity and requires other C++ build systems
|
||||
* Input
|
||||
|
|
|
@ -12,7 +12,8 @@ mod resource;
|
|||
pub mod resource_name;
|
||||
pub mod resource_provider;
|
||||
pub mod resource_providers;
|
||||
mod shader;
|
||||
mod standard_material;
|
||||
mod uniform;
|
||||
|
||||
pub use draw_target::*;
|
||||
pub use pass::*;
|
||||
|
@ -22,4 +23,5 @@ pub use render_graph::*;
|
|||
pub use renderer::*;
|
||||
pub use resource::*;
|
||||
pub use resource_provider::*;
|
||||
pub use shader::*;
|
||||
pub use standard_material::*;
|
||||
pub use uniform::*;
|
110
src/render/render_graph_2/standard_material.rs
Normal file
110
src/render/render_graph_2/standard_material.rs
Normal file
|
@ -0,0 +1,110 @@
|
|||
use crate::{
|
||||
math::Vec4,
|
||||
render::render_graph_2::{BindType, UniformPropertyType, uniform::{UniformInfo, AsUniforms, GetBytes}},
|
||||
};
|
||||
|
||||
use zerocopy::AsBytes;
|
||||
|
||||
pub struct StandardMaterial {
|
||||
pub albedo: Vec4,
|
||||
}
|
||||
|
||||
|
||||
// create this from a derive macro
|
||||
const STANDARD_MATERIAL_UNIFORM_INFO: &[UniformInfo] = &[UniformInfo {
|
||||
name: "StandardMaterial",
|
||||
bind_type: BindType::Uniform {
|
||||
dynamic: false,
|
||||
// TODO: fill this in with properties
|
||||
properties: Vec::new(),
|
||||
},
|
||||
}];
|
||||
|
||||
// these are separate from BindType::Uniform{properties} because they need to be const
|
||||
const STANDARD_MATERIAL_UNIFORM_LAYOUTS: &[&[UniformPropertyType]] = &[&[]];
|
||||
|
||||
// const
|
||||
impl AsUniforms for StandardMaterial {
|
||||
fn get_uniform_infos(&self) -> &[UniformInfo] {
|
||||
STANDARD_MATERIAL_UNIFORM_INFO
|
||||
}
|
||||
|
||||
fn get_uniform_layouts(&self) -> &[&[UniformPropertyType]] {
|
||||
STANDARD_MATERIAL_UNIFORM_LAYOUTS
|
||||
}
|
||||
|
||||
fn get_uniform_bytes(&self, name: &str) -> Option<Vec<u8>> {
|
||||
match name {
|
||||
"StandardMaterial" => Some(self.albedo.get_bytes()),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
fn get_uniform_info(&self, name: &str) -> Option<&UniformInfo> {
|
||||
match name {
|
||||
"StandardMaterial" => Some(&STANDARD_MATERIAL_UNIFORM_INFO[0]),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
|
||||
// fn iter_properties(&self) -> std::slice::Iter<&'static str> {
|
||||
// STANDARD_MATERIAL_PROPERTIES.iter()
|
||||
// }
|
||||
// fn get_property(&self, name: &str) -> Option<ShaderValue> {
|
||||
// match name {
|
||||
// "albedo" => Some(match self.albedo {
|
||||
// Albedo::Color(color) => ShaderValue::Vec4(color),
|
||||
// Albedo::Texture(ref texture) => ShaderValue::Texture(texture)
|
||||
// }),
|
||||
// _ => None,
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
// create this from a derive macro
|
||||
const LOCAL_TO_WORLD_UNIFORM_INFO: &[UniformInfo] = &[UniformInfo {
|
||||
name: "Object",
|
||||
bind_type: BindType::Uniform {
|
||||
dynamic: false,
|
||||
// TODO: maybe fill this in with properties (vec.push cant be const though)
|
||||
properties: Vec::new(),
|
||||
},
|
||||
}];
|
||||
|
||||
// these are separate from BindType::Uniform{properties} because they need to be const
|
||||
const LOCAL_TO_WORLD_UNIFORM_LAYOUTS: &[&[UniformPropertyType]] = &[&[]];
|
||||
|
||||
// const ST
|
||||
impl AsUniforms for bevy_transform::prelude::LocalToWorld {
|
||||
fn get_uniform_infos(&self) -> &[UniformInfo] {
|
||||
LOCAL_TO_WORLD_UNIFORM_INFO
|
||||
}
|
||||
|
||||
fn get_uniform_layouts(&self) -> &[&[UniformPropertyType]] {
|
||||
LOCAL_TO_WORLD_UNIFORM_LAYOUTS
|
||||
}
|
||||
|
||||
fn get_uniform_bytes(&self, name: &str) -> Option<Vec<u8>> {
|
||||
match name {
|
||||
"Object" => Some(self.0.to_cols_array_2d().as_bytes().into()),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
fn get_uniform_info(&self, name: &str) -> Option<&UniformInfo> {
|
||||
match name {
|
||||
"Object" => Some(&LOCAL_TO_WORLD_UNIFORM_INFO[0]),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
// fn iter_properties(&self) -> std::slice::Iter<&'static str> {
|
||||
// STANDARD_MATERIAL_PROPERTIES.iter()
|
||||
// }
|
||||
// fn get_property(&self, name: &str) -> Option<ShaderValue> {
|
||||
// match name {
|
||||
// "albedo" => Some(match self.albedo {
|
||||
// Albedo::Color(color) => ShaderValue::Vec4(color),
|
||||
// Albedo::Texture(ref texture) => ShaderValue::Texture(texture)
|
||||
// }),
|
||||
// _ => None,
|
||||
// }
|
||||
// }
|
||||
}
|
|
@ -9,6 +9,63 @@ use crate::{
|
|||
use legion::storage::Component;
|
||||
use zerocopy::AsBytes;
|
||||
|
||||
pub trait GetBytes {
|
||||
fn get_bytes(&self) -> Vec<u8>;
|
||||
fn get_bytes_ref(&self) -> Option<&[u8]>;
|
||||
}
|
||||
|
||||
// TODO: might need to add zerocopy to this crate to impl AsBytes for external crates
|
||||
// impl<T> GetBytes for T where T : AsBytes {
|
||||
// fn get_bytes(&self) -> Vec<u8> {
|
||||
// self.as_bytes().into()
|
||||
// }
|
||||
|
||||
// fn get_bytes_ref(&self) -> Option<&[u8]> {
|
||||
// Some(self.as_bytes())
|
||||
// }
|
||||
// }
|
||||
|
||||
impl GetBytes for Vec4 {
|
||||
fn get_bytes(&self) -> Vec<u8> {
|
||||
let vec4_array: [f32; 4] = (*self).into();
|
||||
vec4_array.as_bytes().into()
|
||||
}
|
||||
|
||||
fn get_bytes_ref(&self) -> Option<&[u8]> {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
pub trait AsUniforms {
|
||||
fn get_uniform_infos(&self) -> &[UniformInfo];
|
||||
fn get_uniform_info(&self, name: &str) -> Option<&UniformInfo>;
|
||||
fn get_uniform_layouts(&self) -> &[&[UniformPropertyType]];
|
||||
fn get_uniform_bytes(&self, name: &str) -> Option<Vec<u8>>;
|
||||
// TODO: support zero-copy uniforms
|
||||
// fn get_uniform_bytes_ref(&self, name: &str) -> Option<&[u8]>;
|
||||
}
|
||||
|
||||
// pub struct UniformInfo<'a> {
|
||||
// pub name: &'a str,
|
||||
// pub
|
||||
// }
|
||||
|
||||
pub struct UniformInfo<'a> {
|
||||
pub name: &'a str,
|
||||
pub bind_type: BindType,
|
||||
}
|
||||
|
||||
pub fn uniform_selector<T>(entity: Entity, world: &World) -> Option<RefMap<&dyn AsUniforms>>
|
||||
where
|
||||
T: AsUniforms + Component,
|
||||
{
|
||||
world
|
||||
.get_component::<T>(entity)
|
||||
.map(|c| c.map_into(|s| s as &dyn AsUniforms))
|
||||
}
|
||||
|
||||
// TODO: Remove these
|
||||
|
||||
pub type ShaderUniformSelector = fn(Entity, &World) -> Option<RefMap<&dyn AsUniforms>>;
|
||||
|
||||
pub struct ShaderUniforms {
|
||||
|
@ -72,162 +129,4 @@ impl ShaderUniforms {
|
|||
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
pub struct StandardMaterial {
|
||||
pub albedo: Vec4,
|
||||
}
|
||||
|
||||
pub trait GetBytes {
|
||||
fn get_bytes(&self) -> Vec<u8>;
|
||||
fn get_bytes_ref(&self) -> Option<&[u8]>;
|
||||
}
|
||||
|
||||
// TODO: might need to add zerocopy to this crate to impl AsBytes for external crates
|
||||
// impl<T> GetBytes for T where T : AsBytes {
|
||||
// fn get_bytes(&self) -> Vec<u8> {
|
||||
// self.as_bytes().into()
|
||||
// }
|
||||
|
||||
// fn get_bytes_ref(&self) -> Option<&[u8]> {
|
||||
// Some(self.as_bytes())
|
||||
// }
|
||||
// }
|
||||
|
||||
impl GetBytes for Vec4 {
|
||||
fn get_bytes(&self) -> Vec<u8> {
|
||||
let vec4_array: [f32; 4] = (*self).into();
|
||||
vec4_array.as_bytes().into()
|
||||
}
|
||||
|
||||
fn get_bytes_ref(&self) -> Option<&[u8]> {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
pub trait AsUniforms {
|
||||
fn get_uniform_infos(&self) -> &[UniformInfo];
|
||||
fn get_uniform_info(&self, name: &str) -> Option<&UniformInfo>;
|
||||
fn get_uniform_layouts(&self) -> &[&[UniformPropertyType]];
|
||||
fn get_uniform_bytes(&self, name: &str) -> Option<Vec<u8>>;
|
||||
// TODO: support zero-copy uniforms
|
||||
// fn get_uniform_bytes_ref(&self, name: &str) -> Option<&[u8]>;
|
||||
}
|
||||
|
||||
// pub struct UniformInfo<'a> {
|
||||
// pub name: &'a str,
|
||||
// pub
|
||||
// }
|
||||
|
||||
pub struct UniformInfo<'a> {
|
||||
pub name: &'a str,
|
||||
pub bind_type: BindType,
|
||||
}
|
||||
|
||||
pub fn uniform_selector<T>(entity: Entity, world: &World) -> Option<RefMap<&dyn AsUniforms>>
|
||||
where
|
||||
T: AsUniforms + Component,
|
||||
{
|
||||
world
|
||||
.get_component::<T>(entity)
|
||||
.map(|c| c.map_into(|s| s as &dyn AsUniforms))
|
||||
}
|
||||
|
||||
// create this from a derive macro
|
||||
const STANDARD_MATERIAL_UNIFORM_INFO: &[UniformInfo] = &[UniformInfo {
|
||||
name: "StandardMaterial",
|
||||
bind_type: BindType::Uniform {
|
||||
dynamic: false,
|
||||
// TODO: fill this in with properties
|
||||
properties: Vec::new(),
|
||||
},
|
||||
}];
|
||||
|
||||
// these are separate from BindType::Uniform{properties} because they need to be const
|
||||
const STANDARD_MATERIAL_UNIFORM_LAYOUTS: &[&[UniformPropertyType]] = &[&[]];
|
||||
|
||||
// const
|
||||
impl AsUniforms for StandardMaterial {
|
||||
fn get_uniform_infos(&self) -> &[UniformInfo] {
|
||||
STANDARD_MATERIAL_UNIFORM_INFO
|
||||
}
|
||||
|
||||
fn get_uniform_layouts(&self) -> &[&[UniformPropertyType]] {
|
||||
STANDARD_MATERIAL_UNIFORM_LAYOUTS
|
||||
}
|
||||
|
||||
fn get_uniform_bytes(&self, name: &str) -> Option<Vec<u8>> {
|
||||
match name {
|
||||
"StandardMaterial" => Some(self.albedo.get_bytes()),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
fn get_uniform_info(&self, name: &str) -> Option<&UniformInfo> {
|
||||
match name {
|
||||
"StandardMaterial" => Some(&STANDARD_MATERIAL_UNIFORM_INFO[0]),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
|
||||
// fn iter_properties(&self) -> std::slice::Iter<&'static str> {
|
||||
// STANDARD_MATERIAL_PROPERTIES.iter()
|
||||
// }
|
||||
// fn get_property(&self, name: &str) -> Option<ShaderValue> {
|
||||
// match name {
|
||||
// "albedo" => Some(match self.albedo {
|
||||
// Albedo::Color(color) => ShaderValue::Vec4(color),
|
||||
// Albedo::Texture(ref texture) => ShaderValue::Texture(texture)
|
||||
// }),
|
||||
// _ => None,
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
// create this from a derive macro
|
||||
const LOCAL_TO_WORLD_UNIFORM_INFO: &[UniformInfo] = &[UniformInfo {
|
||||
name: "Object",
|
||||
bind_type: BindType::Uniform {
|
||||
dynamic: false,
|
||||
// TODO: maybe fill this in with properties (vec.push cant be const though)
|
||||
properties: Vec::new(),
|
||||
},
|
||||
}];
|
||||
|
||||
// these are separate from BindType::Uniform{properties} because they need to be const
|
||||
const LOCAL_TO_WORLD_UNIFORM_LAYOUTS: &[&[UniformPropertyType]] = &[&[]];
|
||||
|
||||
// const ST
|
||||
impl AsUniforms for bevy_transform::prelude::LocalToWorld {
|
||||
fn get_uniform_infos(&self) -> &[UniformInfo] {
|
||||
LOCAL_TO_WORLD_UNIFORM_INFO
|
||||
}
|
||||
|
||||
fn get_uniform_layouts(&self) -> &[&[UniformPropertyType]] {
|
||||
LOCAL_TO_WORLD_UNIFORM_LAYOUTS
|
||||
}
|
||||
|
||||
fn get_uniform_bytes(&self, name: &str) -> Option<Vec<u8>> {
|
||||
match name {
|
||||
"Object" => Some(self.0.to_cols_array_2d().as_bytes().into()),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
fn get_uniform_info(&self, name: &str) -> Option<&UniformInfo> {
|
||||
match name {
|
||||
"Object" => Some(&LOCAL_TO_WORLD_UNIFORM_INFO[0]),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
// fn iter_properties(&self) -> std::slice::Iter<&'static str> {
|
||||
// STANDARD_MATERIAL_PROPERTIES.iter()
|
||||
// }
|
||||
// fn get_property(&self, name: &str) -> Option<ShaderValue> {
|
||||
// match name {
|
||||
// "albedo" => Some(match self.albedo {
|
||||
// Albedo::Color(color) => ShaderValue::Vec4(color),
|
||||
// Albedo::Texture(ref texture) => ShaderValue::Texture(texture)
|
||||
// }),
|
||||
// _ => None,
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue