TDME2 1.9.121
SpecularMaterialProperties.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
10
11using std::string;
12
16
17/**
18 * Represents specular material properties
19 * @author andreas.drewke
20 * @version $Id$
21 */
23{
24
25private:
31 float shininess;
49
50 /**
51 * Checks and set ups diffuse texture transparency
52 */
54
55public:
56 /**
57 * Public constructor
58 */
60
61 /**
62 * Destructor
63 */
65
66 /**
67 * @return if textures will be embedded in model files
68 */
69 inline bool hasEmbeddedTextures() const {
70 return embedTextures;
71 }
72
73 /**
74 * Set if to embed textures
75 * @param embedTextures embed textures
76 */
77 inline void setEmbedTextures(bool embedTextures) {
78 this->embedTextures = embedTextures;
79 }
80
81 /**
82 * @return ambient color
83 */
84 inline const Color4& getAmbientColor() const {
85 return ambientColor;
86 }
87
88 /**
89 * Set ambient color component
90 * @param ambientColor ambient color
91 */
92 inline void setAmbientColor(const Color4& ambientColor) {
93 this->ambientColor = ambientColor;
94 }
95
96 /**
97 * @return diffuse color
98 */
99 inline const Color4& getDiffuseColor() const {
100 return diffuseColor;
101 }
102
103 /**
104 * Set diffuse color component
105 * @param diffuseColor diffuse color
106 */
107 inline void setDiffuseColor(const Color4& diffuseColor) {
108 this->diffuseColor = diffuseColor;
109 }
110
111 /**
112 * @return specular color
113 */
114 inline const Color4& getSpecularColor() const {
115 return specularColor;
116 }
117
118 /**
119 * Set specular color component
120 * @param specularColor specular color
121 */
123 this->specularColor = specularColor;
124 }
125
126 /**
127 * @return emission color
128 */
129 inline const Color4& getEmissionColor() const {
130 return emissionColor;
131 }
132
133 /**
134 * Set emission color component
135 * @param emissionColor emission color
136 */
138 this->emissionColor = emissionColor;
139 }
140
141 /**
142 * @return shininess
143 */
144 inline float getShininess() const {
145 return shininess;
146 }
147
148 /**
149 * Set up material shininess
150 * @param shininess shininess
151 */
152 inline void setShininess(float shininess) {
153 this->shininess = shininess;
154 }
155
156 /**
157 * @return reflection
158 */
159 inline float getReflection() const {
160 return reflection;
161 }
162
163 /**
164 * Set up material reflection
165 * @param reflection reflection
166 */
167 inline void setReflection(float reflection) {
168 this->reflection = reflection;
169 }
170
171 /**
172 * @return texture atlas size
173 */
174 inline int32_t getTextureAtlasSize() const {
175 return textureAtlasSize;
176 }
177
178 /**
179 * Set texture atlas size
180 * @param textureAtlasSize texture atlas size
181 */
183 this->textureAtlasSize = textureAtlasSize;
184 }
185
186 /**
187 * @return diffuse texture path name
188 */
189 inline const string& getDiffuseTexturePathName() const {
191 }
192
193 /**
194 * Set diffuse texture path name
195 * @param diffuseTexturePathName diffuse texture path name
196 */
198 this->diffuseTexturePathName = diffuseTexturePathName;
199 }
200
201 /**
202 * @return diffuse texture file name
203 */
204 inline const string& getDiffuseTextureFileName() const {
206 }
207
208 /**
209 * Set diffuse texture file name
210 * @return diffuseTextureFileName diffuse texture file name
211 */
213 this->diffuseTextureFileName = diffuseTextureFileName;
214 }
215
216 /**
217 * @return diffuse transparency texture path name
218 */
219 inline const string& getDiffuseTransparencyTexturePathName() const {
221 }
222
223 /**
224 * @return diffuse transparency texture file name
225 */
226 inline const string& getDiffuseTransparencyTextureFileName() const {
228 }
229
230 /**
231 * Set up a diffuse texture by the texture itself
232 * @param diffuseTexture diffuse texture
233 */
235
236 /**
237 * Set up a diffuse texture
238 * @param pathName path name
239 * @param fileName file name
240 * @param transparencyPathName transparency path name
241 * @param transparencyFileName transparency file name
242 */
243 void setDiffuseTexture(const string& pathName, const string& fileName, const string& transparencyPathName = string(), const string& transparencyFileName = string());
244
245 /**
246 * @return if material has a diffuse texture
247 */
248 inline bool hasDiffuseTexture() const {
249 return diffuseTexture != nullptr;
250 }
251
252 /**
253 * @return the material's diffuse texture
254 */
255 inline Texture* getDiffuseTexture() const {
256 return diffuseTexture;
257 }
258
259 /**
260 * @return diffuse texture has transparent pixels
261 */
262 inline bool hasDiffuseTextureTransparency() const {
264 }
265
266 /**
267 * @return diffuse texture has masked transparency, means pixel are eighter opaque or not visible
268 */
271 }
272
273 /**
274 * Set if diffuse texture uses masked transparency(means pixel are eighter opaque or not visible)
275 * @param maskedTransparency masked transparency
276 */
277 inline void setDiffuseTextureMaskedTransparency(bool maskedTransparency) {
278 diffuseTextureMaskedTransparency = maskedTransparency;
279 }
280
281 /**
282 * @return diffuse masked transparency threshold
283 */
286 }
287
288 /**
289 * Set diffuse texture masked transparency threshold
290 * @param maskedTransparencyThreshold diffuse texture masked transparency threshold
291 */
292 inline void setDiffuseTextureMaskedTransparencyThreshold(float maskedTransparencyThreshold) {
293 diffuseTextureMaskedTransparencyThreshold = maskedTransparencyThreshold;
294 }
295
296 /**
297 * @return specular texture path name
298 */
299 inline const string& getSpecularTexturePathName() const {
301 }
302
303 /**
304 * Set specular texture path name
305 * @param specularTexturePathName specular texture path name
306 */
308 this->specularTexturePathName = specularTexturePathName;
309 }
310
311 /**
312 * @return specular texture file name
313 */
314 inline const string& getSpecularTextureFileName() const {
316 }
317
318 /**
319 * Set specular texture file name
320 * @return specularTextureFileName specular texture file name
321 */
323 this->specularTextureFileName = specularTextureFileName;
324 }
325
326 /**
327 * Set up a specular texture by the texture itself
328 * @param specularTexture specular texture
329 */
331
332 /**
333 * Set up a specular texture
334 * @param pathName path name
335 * @param fileName file name
336 */
337 void setSpecularTexture(const string& pathName, const string& fileName);
338
339 /**
340 * @return if material has a specular texture
341 */
342 inline bool hasSpecularTexture() const {
343 return specularTexture != nullptr;
344 }
345
346 /**
347 * @return the material's specular texture
348 */
349 inline Texture* getSpecularTexture() const {
350 return specularTexture;
351 }
352
353 /**
354 * @return normal texture path name
355 */
356 inline const string& getNormalTexturePathName() const {
358 }
359
360 /**
361 * Set normal texture path name
362 * @param normalTexturePathName normal texture path name
363 */
365 this->normalTexturePathName = normalTexturePathName;
366 }
367
368 /**
369 * @return normal texture file name
370 */
371 inline const string& getNormalTextureFileName() const {
373 }
374
375 /**
376 * Set normal texture file name
377 * @return normalTextureFileName normal texture file name
378 */
380 this->normalTextureFileName = specularTextureFileName;
381 }
382
383 /**
384 * Set up a normal texture by the texture itself
385 * @param normalTexture normal texture
386 */
388
389 /**
390 * Set up a normal texture
391 * @param pathName path name
392 * @param fileName file name
393 */
394 void setNormalTexture(const string& pathName, const string& fileName);
395
396 /**
397 * @return if material has a normal texture
398 */
399 inline bool hasNormalTexture() const {
400 return normalTexture != nullptr;
401 }
402
403 /**
404 * @return the material's normal texture
405 */
406 inline Texture* getNormalTexture() const {
407 return normalTexture;
408 }
409
410 /**
411 * @return if color is transparent
412 */
413 inline bool hasColorTransparency() const {
414 return diffuseColor.getAlpha() < 1.0f - Math::EPSILON;
415 }
416
417 /**
418 * @return diffuse texture has transparency
419 */
422 }
423
424 /**
425 * Set diffuse texture transparency
426 * @param diffuseTextureTransparency diffuse texture has transparency
427 */
428 inline void setDiffuseTextureTransparency(bool textureTransparency) {
429 diffuseTextureTransparency = textureTransparency;
430 }
431
432 /**
433 * @return if texture has transparency with masked transparency disabled
434 */
435 inline bool hasTextureTransparency() const {
437 }
438
439 /**
440 * @return texture matrix
441 */
443 return textureMatrix;
444 }
445
446 /**
447 * Set texture matrix
448 * @param texture matrix
449 */
451 this->textureMatrix = textureMatrix;
452 }
453
454};
Color 4 definition.
Definition: Color4.h:20
Represents specular material properties.
void setAmbientColor(const Color4 &ambientColor)
Set ambient color component.
void checkDiffuseTextureTransparency()
Checks and set ups diffuse texture transparency.
void setDiffuseColor(const Color4 &diffuseColor)
Set diffuse color component.
void setDiffuseTextureTransparency(bool textureTransparency)
Set diffuse texture transparency.
void setEmissionColor(const Color4 &emissionColor)
Set emission color component.
void setDiffuseTextureMaskedTransparency(bool maskedTransparency)
Set if diffuse texture uses masked transparency(means pixel are eighter opaque or not visible)
void setDiffuseTexturePathName(const string &diffuseTexturePathName)
Set diffuse texture path name.
void setSpecularColor(const Color4 &specularColor)
Set specular color component.
void setNormalTextureFileName(const string &normalTextureFileName)
Set normal texture file name.
void setTextureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
void setNormalTexturePathName(const string &normalTexturePathName)
Set normal texture path name.
void setSpecularTextureFileName(const string &specularTextureFileName)
Set specular texture file name.
void setDiffuseTextureMaskedTransparencyThreshold(float maskedTransparencyThreshold)
Set diffuse texture masked transparency threshold.
void setDiffuseTextureFileName(const string &diffuseTextureFileName)
Set diffuse texture file name.
void setEmbedTextures(bool embedTextures)
Set if to embed textures.
void setSpecularTexture(Texture *specularTexture)
Set up a specular texture by the texture itself.
void setDiffuseTexture(Texture *diffuseTexture)
Set up a diffuse texture by the texture itself.
void setNormalTexture(Texture *normalTexture)
Set up a normal texture by the texture itself.
void setSpecularTexturePathName(const string &specularTexturePathName)
Set specular texture path name.
void setTextureAtlasSize(int32_t textureAtlasSize)
Set texture atlas size.
void setReflection(float reflection)
Set up material reflection.
void setShininess(float shininess)
Set up material shininess.
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22