TDME2 1.9.121
PBRMaterialProperties.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8
9
10using std::string;
11
14
15/**
16 * Represents specular material properties
17 * @author andreas.drewke
18 * @version $Id$
19 */
21{
22
23private:
41 float exposure;
42
43 /**
44 * Checks and set ups base color texture transparency
45 */
47
48public:
49 /**
50 * Public constructor
51 */
53
54 /**
55 * Destructor
56 */
58
59 /**
60 * @return if textures will be embedded in model files
61 */
62 inline bool hasEmbeddedTextures() const {
63 return embedTextures;
64 }
65
66 /**
67 * Set if to embed textures
68 * @param embedTextures embed textures
69 */
70 inline void setEmbedTextures(bool embedTextures) {
71 this->embedTextures = embedTextures;
72 }
73
74 /**
75 * @return base color factor
76 */
77 inline const Color4& getBaseColorFactor() const {
78 return baseColorFactor;
79 }
80
81 /**
82 * Set base color factor
83 * @param baseColorFactor base color factor
84 */
86 this->baseColorFactor = baseColorFactor;
87 }
88
89 /**
90 * @return base color texture path name
91 */
92 inline const string& getBaseColorTexturePathName() const {
94 }
95
96 /**
97 * @return base color texture file name
98 */
99 inline const string& getBaseColorTextureFileName() const {
101 }
102
103 /**
104 * Set up a base color texture by the texture itself
105 * @param baseColorTexture base color texture
106 */
108
109 /**
110 * Set up a base color texture
111 * @param pathName path name
112 * @param fileName file name
113 */
114 void setBaseColorTexture(const string& pathName, const string& fileName);
115
116 /**
117 * @return if material has a base color texture
118 */
119 inline bool hasBaseColorTexture() const {
120 return baseColorTexture != nullptr;
121 }
122
123 /**
124 * @return the material's base color texture
125 */
126 inline Texture* getBaseColorTexture() const {
127 return baseColorTexture;
128 }
129
130 /**
131 * @return base color texture has transparent pixels
132 */
135 }
136
137 /**
138 * Set if base color texture uses transparency
139 * @param transparency transparency
140 */
141 inline void setBaseColorTextureTransparency(bool transparency) {
142 baseColorTextureTransparency = transparency;
143 }
144
145 /**
146 * @return base color texture has masked transparency, means pixel are eighter opaque or not visible
147 */
150 }
151
152 /**
153 * Set if base color texture uses masked transparency(means pixel are eighter opaque or not visible)
154 * @param maskedTransparency masked transparency
155 */
156 inline void setBaseColorTextureMaskedTransparency(bool maskedTransparency) {
157 baseColorTextureMaskedTransparency = maskedTransparency;
158 }
159
160 /**
161 * @return base color texture masked transparency threshold
162 */
165 }
166
167 /**
168 * Set base color texture masked transparency threshold
169 * @param maskedTransparencyThreshold diffuse texture masked transparency threshold
170 */
171 inline void setBaseColorTextureMaskedTransparencyThreshold(float maskedTransparencyThreshold) {
172 baseColorTextureMaskedTransparencyThreshold = maskedTransparencyThreshold;
173 }
174
175 /**
176 * @return metallic factor
177 */
178 inline float getMetallicFactor() const {
179 return metallicFactor;
180 }
181
182 /**
183 * Set metallic factor
184 * @param metallicFactor metallic factor
185 */
187 this->metallicFactor = metallicFactor;
188 }
189
190 /**
191 * @return roughness factor
192 */
193 inline float getRoughnessFactor() const {
194 return roughnessFactor;
195 }
196
197 /**
198 * Set roughness factor
199 * @param roughnessFactor roughness factor
200 */
202 this->roughnessFactor = roughnessFactor;
203 }
204
205 /**
206 * @return metallic roughness texture path name
207 */
208 inline const string& getMetallicRoughnessTexturePathName() const {
210 }
211
212 /**
213 * @return metallic roughness texture file name
214 */
215 inline const string& getMetallicRoughnessTextureFileName() const {
217 }
218
219 /**
220 * Set up a metallic roughness texture by the texture itself
221 * @param metallicRoughnessTexture metallic roughness texture
222 */
224
225 /**
226 * Set up a metallic roughness texture
227 * @param pathName path name
228 * @param fileName file name
229 */
230 void setMetallicRoughnessTexture(const string& pathName, const string& fileName);
231
232 /**
233 * @return if material has a metallic roughness texture
234 */
235 inline bool hasMetallicRoughnessTexture() const {
236 return metallicRoughnessTexture != nullptr;
237 }
238
239 /**
240 * @return the material's metallic roughness texture
241 */
244 }
245
246 /**
247 * @return normal scale
248 */
249 inline float getNormalScale() const {
250 return normalScale;
251 }
252
253 /**
254 * Set normal scale
255 * @param normalScale normal scale
256 */
257 inline void setNormalScale(float normalScale) {
258 this->normalScale = normalScale;
259 }
260
261 /**
262 * @return normal texture path name
263 */
264 inline const string& getNormalTexturePathName() const {
266 }
267
268 /**
269 * @return normal texture file name
270 */
271 inline const string& getNormalTextureFileName() const {
273 }
274
275 /**
276 * Set up a normal texture by the texture itself
277 * @param normalTexture normal texture
278 */
280
281 /**
282 * Set up a normal texture
283 * @param pathName path name
284 * @param fileName file name
285 */
286 void setNormalTexture(const string& pathName, const string& fileName);
287
288 /**
289 * @return if material has a normal texture
290 */
291 inline bool hasNormalTexture() const {
292 return normalTexture != nullptr;
293 }
294
295 /**
296 * @return the material's normal texture
297 */
298 inline Texture* getNormalTexture() const {
299 return normalTexture;
300 }
301
302 /**
303 * @return exposure
304 */
305 inline float getExposure() const {
306 return exposure;
307 }
308
309 /**
310 * Set exposure
311 * @param exposure exposure
312 */
313 inline void setExposure(float exposure) {
314 this->exposure = exposure;
315 }
316
317};
Color 4 definition.
Definition: Color4.h:20
Represents specular material properties.
void setBaseColorTextureMaskedTransparencyThreshold(float maskedTransparencyThreshold)
Set base color texture masked transparency threshold.
void setBaseColorTexture(Texture *baseColorTexture)
Set up a base color texture by the texture itself.
void setBaseColorTextureTransparency(bool transparency)
Set if base color texture uses transparency.
void setRoughnessFactor(float roughnessFactor)
Set roughness factor.
void setBaseColorFactor(const Color4 &baseColorFactor)
Set base color factor.
void setExposure(float exposure)
Set exposure.
void setNormalScale(float normalScale)
Set normal scale.
void setMetallicRoughnessTexture(Texture *metallicRoughnessTexture)
Set up a metallic roughness texture by the texture itself.
void setBaseColorTextureMaskedTransparency(bool maskedTransparency)
Set if base color texture uses masked transparency(means pixel are eighter opaque or not visible)
void setEmbedTextures(bool embedTextures)
Set if to embed textures.
void setNormalTexture(Texture *normalTexture)
Set up a normal texture by the texture itself.
void setMetallicFactor(float metallicFactor)
Set metallic factor.
void checkBaseColorTextureTransparency()
Checks and set ups base color texture transparency.