TDME2 1.9.121
FacesEntity.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
11#include <tdme/math/Vector3.h>
12
13using std::string;
14using std::vector;
15
22
23FacesEntity::FacesEntity()
24{
25 this->id = "";
26 this->node = nullptr;
27 this->material = nullptr;
28 this->textureCoordinatesAvailable = false;
29 this->tangentBitangentAvailable = false;
30 this->lod1Distance = 64.0f;
31 this->lod2Distance = 128.0f;
32 this->lod3Distance = 192.0f;
33}
34
35FacesEntity::FacesEntity(Node* node, const string& id)
36{
37 this->id = id;
38 this->node = node;
39 this->material = nullptr;
40 this->textureCoordinatesAvailable = false;
41 this->tangentBitangentAvailable = false;
42 this->lod1Distance = 64.0f;
43 this->lod2Distance = 128.0f;
44 this->lod3Distance = 192.0f;
45}
46
47void FacesEntity::setFaces(const vector<Face>& faces)
48{
49 this->faces.clear();
50 this->faces.resize(faces.size());
51 int i = 0;
52 for (auto& face: faces) {
53 this->faces[i++] = face;
54 }
56}
57
59{
62 for (auto& face: faces) {
63 auto& textureCoordinateIndices = face.getTextureCoordinateIndices();
64 if (textureCoordinateIndices[0] != -1 && textureCoordinateIndices[1] != -1 && textureCoordinateIndices[2] != -1) textureCoordinatesAvailable = true;
65 auto& tangentIndices = face.getTangentIndices();
66 auto& biTangentIndices = face.getBitangentIndices();
67 if (tangentIndices[0] != -1 && tangentIndices[1] != -1 && tangentIndices[2] != -1 &&
68 biTangentIndices[0] != -1 && biTangentIndices[1] != -1 && biTangentIndices[2] != -1) tangentBitangentAvailable = true;
69 }
70}
71
72void FacesEntity::setLOD1Indices(const vector<int32_t>& lod1Indices) {
73 this->lod1Indices.resize(lod1Indices.size());
74 auto i = 0;
75 for (auto lod1Index: lod1Indices) {
76 this->lod1Indices[i++] = lod1Index;
77 }
78}
79
80void FacesEntity::setLOD2Indices(const vector<int32_t>& lod2Indices) {
81 this->lod2Indices.resize(lod2Indices.size());
82 auto i = 0;
83 for (auto lod2Index: lod2Indices) {
84 this->lod2Indices[i++] = lod2Index;
85 }
86}
87
88void FacesEntity::setLOD3Indices(const vector<int32_t>& lod3Indices) {
89 this->lod3Indices.resize(lod3Indices.size());
90 auto i = 0;
91 for (auto lod3Index: lod3Indices) {
92 this->lod3Indices[i++] = lod3Index;
93 }
94}
95
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Definition: Face.h:19
Node faces entity A node can have multiple entities containing faces and a applied material.
Definition: FacesEntity.h:28
FacesEntity()
Public constructor.
Definition: FacesEntity.cpp:23
void determineFeatures()
Determine features.
Definition: FacesEntity.cpp:58
vector< int32_t > lod1Indices
Definition: FacesEntity.h:36
vector< int32_t > lod2Indices
Definition: FacesEntity.h:37
vector< int32_t > lod3Indices
Definition: FacesEntity.h:38
void setLOD2Indices(const vector< int32_t > &lod2Indices)
Set LOD2 indices.
Definition: FacesEntity.cpp:80
void setLOD1Indices(const vector< int32_t > &lod1Indices)
Set LOD1 indices.
Definition: FacesEntity.cpp:72
void setLOD3Indices(const vector< int32_t > &lod3Indices)
Set LOD3 indices.
Definition: FacesEntity.cpp:88
void setFaces(const vector< Face > &faces)
Set up entity's faces.
Definition: FacesEntity.cpp:47
Represents a material.
Definition: Material.h:21
Model node.
Definition: Node.h:31
Class representing texture UV coordinates data.
3D vector 3 class
Definition: Vector3.h:22