TDME2 1.9.121
SpecularMaterialProperties.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
9#include <tdme/math/Math.h>
11
12using std::string;
13
20
21SpecularMaterialProperties::SpecularMaterialProperties()
22{
23 embedTextures = false;
24 ambientColor.set(0.2f, 0.2f, 0.2f, 0.0f);
25 diffuseColor.set(0.8f, 0.8f, 0.8f, 1.0f);
26 specularColor.set(0.0f, 0.0f, 0.0f, 0.0f);
27 emissionColor.set(0.0f, 0.0f, 0.0f, 0.0f);
28 shininess = 0.0f;
29 reflection = 0.0f;
30 diffuseTexture = nullptr;
34 specularTexture = nullptr;
35 normalTexture = nullptr;
37}
38
43}
44
46 if (this->diffuseTexture != nullptr) this->diffuseTexture->releaseReference();
52 this->diffuseTexture = diffuseTexture;
54}
55
56void SpecularMaterialProperties::setDiffuseTexture(const string& pathName, const string& fileName, const string& transparencyPathName, const string& transparencyFileName)
57{
59 diffuseTexture = nullptr;
60 // load diffuse texture
61 diffuseTexturePathName = pathName;
62 diffuseTextureFileName = fileName;
63 diffuseTransparencyTexturePathName = transparencyPathName;
64 diffuseTransparencyTextureFileName = transparencyFileName;
66 diffuseTexture = TextureReader::read2(
71 true,
72 textureAtlasSize > 1?false:true
73 );
75 } else {
76 diffuseTexture = TextureReader::read(
79 true,
80 textureAtlasSize > 1?false:true
81 );
83 }
85}
86
88{
90 auto diffuseTextureMaskedTransparencyTest = true;
91 if (diffuseTexture != nullptr && diffuseTexture->getDepth() == 32) {
92 auto textureData = diffuseTexture->getTextureData();
93 for (auto i = 0; i < diffuseTexture->getTextureWidth() * diffuseTexture->getTextureHeight(); i++) {
94 auto alpha = textureData->get(i * 4 + 3);
95 if (alpha != 255) diffuseTextureTransparency = true;
96 if (alpha > 5 || alpha < 250) diffuseTextureMaskedTransparencyTest = false;
97 }
98 }
99 if (diffuseTextureMaskedTransparency == false) diffuseTextureMaskedTransparency = diffuseTextureMaskedTransparencyTest;
100}
101
103 if (this->specularTexture != nullptr) this->specularTexture->releaseReference();
107 this->specularTexture = specularTexture;
108}
109
110void SpecularMaterialProperties::setSpecularTexture(const string& pathName, const string& fileName)
111{
113 specularTexture = nullptr;
114 specularTexturePathName = pathName;
115 specularTextureFileName = fileName;
116 specularTexture = TextureReader::read(pathName, fileName);
117}
118
120 if (this->normalTexture != nullptr) this->normalTexture->releaseReference();
121 normalTexturePathName.clear();
124 this->normalTexture = normalTexture;
125}
126
127void SpecularMaterialProperties::setNormalTexture(const string& pathName, const string& fileName)
128{
130 normalTexturePathName = pathName;
131 normalTextureFileName = fileName;
132 normalTexture = TextureReader::read(pathName, fileName);
133}
const string & getId() const
Definition: Texture.h:60
void setAtlasSize(int32_t atlasSize)
Set atlas size.
Definition: Texture.h:162
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
Color 4 definition.
Definition: Color4.h:20
Represents specular material properties.
void checkDiffuseTextureTransparency()
Checks and set ups diffuse texture transparency.
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.
Standard math functions.
Definition: Math.h:21
uint8_t get(int32_t position)
Definition: Buffer.h:102
Byte buffer class.
Definition: ByteBuffer.h:24
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
Definition: Reference.cpp:20
void acquireReference()
acquires a reference, incrementing the counter
Definition: Reference.cpp:16