TDME2 1.9.121
PBRMaterialProperties.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
9
10using std::string;
11
16
17PBRMaterialProperties::PBRMaterialProperties()
18{
19 embedTextures = false;
20 baseColorFactor.set(1.0f, 1.0f, 1.0f, 1.0f);
21 baseColorTexture = nullptr;
25 metallicFactor = 1.0f;
26 roughnessFactor = 1.0f;
28 normalScale = 1.0f;
29 normalTexture = nullptr;
30 exposure = 1.0f;
31}
32
37}
38
40 if (this->baseColorTexture != nullptr) this->baseColorTexture->releaseReference();
44 this->baseColorTexture = baseColorTexture;
46}
47
48void PBRMaterialProperties::setBaseColorTexture(const string& pathName, const string& fileName)
49{
51 baseColorTexturePathName = pathName;
52 baseColorTextureFileName = fileName;
53 baseColorTexture = TextureReader::read(pathName, fileName);
55}
56
58 if (this->metallicRoughnessTexture != nullptr) this->metallicRoughnessTexture->releaseReference();
62 this->metallicRoughnessTexture = metallicRoughnessTexture;
63}
64
65void PBRMaterialProperties::setMetallicRoughnessTexture(const string& pathName, const string& fileName)
66{
70 metallicRoughnessTexture = TextureReader::read(pathName, fileName);
71}
72
74 if (this->normalTexture != nullptr) this->normalTexture->releaseReference();
78 this->normalTexture = normalTexture;
79}
80
81void PBRMaterialProperties::setNormalTexture(const string& pathName, const string& fileName)
82{
84 normalTexturePathName = pathName;
85 normalTextureFileName = fileName;
86 normalTexture = TextureReader::read(pathName, fileName);
87}
88
90{
92 auto baseColorTextureMaskedTransparencyTest = true;
93 if (baseColorTexture != nullptr && baseColorTexture->getDepth() == 32) {
94 auto textureData = baseColorTexture->getTextureData();
95 for (auto i = 0; i < baseColorTexture->getTextureWidth() * baseColorTexture->getTextureHeight(); i++) {
96 auto alpha = textureData->get(i * 4 + 3);
97 if (alpha != 255) baseColorTextureTransparency = true;
98 if (alpha > 5 || alpha < 250) baseColorTextureMaskedTransparencyTest = false;
99 }
100 }
101 if (baseColorTextureMaskedTransparency == false) baseColorTextureMaskedTransparency = baseColorTextureMaskedTransparencyTest;
102}
const string & getId() const
Definition: Texture.h:60
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 setBaseColorTexture(Texture *baseColorTexture)
Set up a base color texture by the texture itself.
void setMetallicRoughnessTexture(Texture *metallicRoughnessTexture)
Set up a metallic roughness texture by the texture itself.
void setNormalTexture(Texture *normalTexture)
Set up a normal texture by the texture itself.
void checkBaseColorTextureTransparency()
Checks and set ups base color texture transparency.
uint8_t get(int32_t position)
Definition: Buffer.h:102
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