2019-12-02 04:03:04 +00:00
|
|
|
use crate::{math, render::camera};
|
|
|
|
use std::ops::Range;
|
|
|
|
use zerocopy::{AsBytes, FromBytes};
|
|
|
|
|
|
|
|
|
|
|
|
pub struct Light {
|
|
|
|
pub pos: math::Vec3,
|
|
|
|
pub color: wgpu::Color,
|
|
|
|
pub fov: f32,
|
|
|
|
pub depth: Range<f32>,
|
2019-12-02 23:19:56 +00:00
|
|
|
pub target_view: Option<wgpu::TextureView>,
|
2019-12-02 04:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Clone, Copy, AsBytes, FromBytes)]
|
|
|
|
pub struct LightRaw {
|
|
|
|
pub proj: [[f32; 4]; 4],
|
|
|
|
pub pos: [f32; 4],
|
|
|
|
pub color: [f32; 4],
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Light {
|
2019-12-02 23:19:56 +00:00
|
|
|
pub fn to_raw(&self, transform: &math::Mat4) -> LightRaw {
|
|
|
|
let proj = camera::get_projection_matrix(self.fov, 1.0, self.depth.start, self.depth.end) * transform;
|
2019-12-02 04:03:04 +00:00
|
|
|
LightRaw {
|
2019-12-02 23:19:56 +00:00
|
|
|
proj: proj.into(),
|
2019-12-02 04:03:04 +00:00
|
|
|
pos: [self.pos.x, self.pos.y, self.pos.z, 1.0],
|
|
|
|
color: [
|
|
|
|
self.color.r as f32,
|
|
|
|
self.color.g as f32,
|
|
|
|
self.color.b as f32,
|
|
|
|
1.0,
|
|
|
|
],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|