summaryrefslogtreecommitdiff
path: root/engine/src/renderer/mod.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-05-19 18:21:53 +0200
committerHampusM <hampus@hampusmat.com>2024-05-19 21:39:59 +0200
commit5ce6133e120bd5e3d7490db1872bc8b667a0fb4f (patch)
treedeb418997d515a9762170c0d5f8c8896ecce1210 /engine/src/renderer/mod.rs
parent2ab8ca293f9548238b22d96d4fd88ec93d6b2431 (diff)
fix(engine): use ambient light from GlobalLight
Diffstat (limited to 'engine/src/renderer/mod.rs')
-rw-r--r--engine/src/renderer/mod.rs39
1 files changed, 30 insertions, 9 deletions
diff --git a/engine/src/renderer/mod.rs b/engine/src/renderer/mod.rs
index 2035a3c..4f9d7e6 100644
--- a/engine/src/renderer/mod.rs
+++ b/engine/src/renderer/mod.rs
@@ -13,7 +13,7 @@ use crate::color::Color;
use crate::data_types::dimens::Dimens;
use crate::event::{Present as PresentEvent, Start as StartEvent};
use crate::lighting::{GlobalLight, LightSource};
-use crate::material::Material;
+use crate::material::{Flags as MaterialFlags, Material};
use crate::matrix::Matrix;
use crate::mesh::Mesh;
use crate::opengl::buffer::{Buffer, Usage as BufferUsage};
@@ -91,7 +91,13 @@ fn initialize(window: Single<Window>)
}
fn render(
- query: Query<(Mesh, ShaderProgram, Material, Transform)>,
+ query: Query<(
+ Mesh,
+ ShaderProgram,
+ Material,
+ Option<MaterialFlags>,
+ Transform,
+ )>,
light_source_query: Query<(LightSource, Transform)>,
camera_query: Query<(Camera,)>,
window: Single<Window>,
@@ -125,7 +131,11 @@ fn render(
clear_buffers(BufferClearMask::COLOR | BufferClearMask::DEPTH);
- for (mesh, shader_program, material, transform) in &query {
+ for (mesh, shader_program, material, material_flags, transform) in &query {
+ let material_flags = material_flags
+ .map(|material_flags| material_flags.clone())
+ .unwrap_or_default();
+
let shader_program = gl_shader_programs
.entry(shader_program.u64_hash())
.or_insert_with(|| create_gl_shader_program(&shader_program).unwrap());
@@ -139,6 +149,7 @@ fn render(
apply_light(
&material,
+ &material_flags,
&global_light,
shader_program,
light_source
@@ -346,6 +357,7 @@ fn apply_transformation_matrices(
fn apply_light(
material: &Material,
+ material_flags: &MaterialFlags,
global_light: &GlobalLight,
gl_shader_program: &mut GlShaderProgram,
light_source: Option<(&LightSource, &Transform)>,
@@ -361,11 +373,12 @@ fn apply_light(
gl_shader_program.set_uniform_vec_3fv(
cstr!("light.ambient"),
- &light_source
- .map_or(Color::WHITE_F32, |(light_source, _)| {
- light_source.ambient.clone()
- })
- .into(),
+ // There cannot be both a material ambient color and a global ambient color
+ &if material_flags.use_ambient_color {
+ Color::WHITE_F32.into()
+ } else {
+ global_light.ambient.clone().into()
+ },
);
gl_shader_program.set_uniform_vec_3fv(
@@ -388,7 +401,15 @@ fn apply_light(
gl_shader_program.set_uniform_vec_3fv(
cstr!("material.ambient"),
- &(material.ambient.clone() + global_light.ambient_offset.clone()).into(),
+ // When using the material ambient color is disabled, the ambient color has to be
+ // white and not black since the material's ambient color is multiplied
+ // with the global ambient light in the shader
+ &if material_flags.use_ambient_color {
+ material.ambient.clone()
+ } else {
+ Color::WHITE_F32
+ }
+ .into(),
);
gl_shader_program