summaryrefslogtreecommitdiff
path: root/engine/src/material.rs
blob: 56ff15f07c3eea3cd72ef0eb461004f698f161e7 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
use ecs::Component;

use crate::color::Color;
use crate::texture::Texture;
use crate::builder;

#[derive(Debug, Clone)]
#[non_exhaustive]
pub struct Material
{
    pub ambient: Color<f32>,
    pub diffuse: Color<f32>,
    pub specular: Color<f32>,
    pub ambient_map: Option<Texture>,
    pub diffuse_map: Option<Texture>,
    pub specular_map: Option<Texture>,
    pub shininess: f32,
}

impl Material
{
    pub fn builder() -> Builder
    {
        Builder::default()
    }
}

impl Default for Material
{
    fn default() -> Self
    {
        Self::builder().build()
    }
}

/// [`Material`] builder.
#[derive(Debug, Clone)]
pub struct Builder
{
    ambient: Color<f32>,
    diffuse: Color<f32>,
    specular: Color<f32>,
    ambient_map: Option<Texture>,
    diffuse_map: Option<Texture>,
    specular_map: Option<Texture>,
    shininess: f32,
}

impl Builder
{
    #[must_use]
    pub fn new() -> Self
    {
        Self {
            ambient: Color::WHITE_F32,
            diffuse: Color::WHITE_F32,
            specular: Color::WHITE_F32,
            ambient_map: None,
            diffuse_map: None,
            specular_map: None,
            shininess: 32.0,
        }
    }

    #[must_use]
    pub fn ambient(mut self, ambient: Color<f32>) -> Self
    {
        self.ambient = ambient;

        self
    }

    #[must_use]
    pub fn diffuse(mut self, diffuse: Color<f32>) -> Self
    {
        self.diffuse = diffuse;

        self
    }

    #[must_use]
    pub fn specular(mut self, specular: Color<f32>) -> Self
    {
        self.specular = specular;

        self
    }

    #[must_use]
    pub fn ambient_map(mut self, ambient_map: Texture) -> Self
    {
        self.ambient_map = Some(ambient_map);

        self
    }

    #[must_use]
    pub fn diffuse_map(mut self, diffuse_map: Texture) -> Self
    {
        self.diffuse_map = Some(diffuse_map);

        self
    }

    #[must_use]
    pub fn specular_map(mut self, specular_map: Texture) -> Self
    {
        self.specular_map = Some(specular_map);

        self
    }

    #[must_use]
    pub fn shininess(mut self, shininess: f32) -> Self
    {
        self.shininess = shininess;

        self
    }

    /// Builds a new [`Material`].
    ///
    /// # Panics
    /// Will panic if no ambient map, diffuse map or specular map is set.
    #[must_use]
    pub fn build(self) -> Material
    {
        Material {
            ambient: self.ambient,
            diffuse: self.diffuse,
            specular: self.specular,
            ambient_map: self.ambient_map,
            diffuse_map: self.diffuse_map,
            specular_map: self.specular_map,
            shininess: self.shininess,
        }
    }
}

impl Default for Builder
{
    fn default() -> Self
    {
        Self::new()
    }
}

builder! {
/// Material flags.
#[builder(name = FlagsBuilder, derives = (Debug, Default, Clone))]
#[derive(Debug, Default, Clone, Component)]
#[non_exhaustive]
pub struct Flags
{
    /// Whether to use material's ambient color instead of the global ambient color.
    /// Default is `false`
    pub use_ambient_color: bool,
}
}

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