summaryrefslogtreecommitdiff
path: root/engine/src/lighting.rs
blob: 48adb0ea25b6b25281e4ad728869444894c9e37e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
use ecs::{Component, Sole};

use crate::color::Color;
use crate::data_types::vector::Vec3;
use crate::util::builder;

builder! {
#[builder(name = PointLightBuilder, derives = (Debug, Clone))]
#[derive(Debug, Clone, Component)]
#[non_exhaustive]
pub struct PointLight
{
    pub position: Vec3<f32>,
    pub diffuse: Color<f32>,
    pub specular: Color<f32>,
    pub attenuation_params: AttenuationParams,
}
}

impl PointLight
{
    #[must_use]
    pub fn builder() -> PointLightBuilder
    {
        PointLightBuilder::default()
    }
}

impl Default for PointLight
{
    fn default() -> Self
    {
        Self {
            position: Vec3::default(),
            diffuse: Color { red: 0.5, green: 0.5, blue: 0.5 },
            specular: Color { red: 1.0, green: 1.0, blue: 1.0 },
            attenuation_params: AttenuationParams::default(),
        }
    }
}

impl Default for PointLightBuilder
{
    fn default() -> Self
    {
        PointLight::default().into()
    }
}

/// Parameters for light [attenuation](https://en.wikipedia.org/wiki/Attenuation).
#[derive(Debug, Clone)]
pub struct AttenuationParams
{
    pub constant: f32,
    pub linear: f32,
    pub quadratic: f32,
}

impl Default for AttenuationParams
{
    #[must_use]
    fn default() -> Self
    {
        Self {
            constant: 1.0,
            linear: 0.0,
            quadratic: 0.0,
        }
    }
}

builder! {
#[builder(name = DirectionalLightBuilder, derives = (Debug, Default, Clone))]
#[derive(Debug, Default, Clone, Component)]
#[non_exhaustive]
pub struct DirectionalLight
{
    pub diffuse: Color<f32>,
    pub specular: Color<f32>,
    pub direction: Vec3<f32>,
}
}

impl DirectionalLight
{
    #[must_use]
    pub fn builder() -> DirectionalLightBuilder
    {
        DirectionalLightBuilder::default()
    }
}

builder! {
/// Global light properties.
#[builder(name = GlobalLightBuilder, derives = (Debug, Clone, Default))]
#[derive(Debug, Clone, Default, Sole)]
#[non_exhaustive]
pub struct GlobalLight
{
    pub ambient: Color<f32>,
}
}

impl GlobalLight
{
    #[must_use]
    pub fn builder() -> GlobalLightBuilder
    {
        GlobalLightBuilder::default()
    }
}