TDME2 1.9.121
PrototypeImposterLOD.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
10
11using std::string;
12using std::vector;
13
16
17/**
18 * Prototype imposter LOD
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24private:
25 vector<string> fileNames;
26 vector<Model*> models;
30
31public:
32 /**
33 * Public constructor
34 * @param fileNames file names
35 * @param models models
36 * @param minDistance type
37 */
39 const vector<string>& fileNames,
40 const vector<Model*>& models,
41 float minDistance
42 );
43
44 /**
45 * Destructor
46 */
48
49 /**
50 * @return file name
51 */
52 inline const vector<string>& getFileNames() {
53 return fileNames;
54 }
55
56 /**
57 * Set file names
58 * @param fileNames file names
59 */
60 inline void setFileNames(const vector<string>& fileNames) {
61 this->fileNames = fileNames;
62 }
63
64 /**
65 * @return model
66 */
67 inline const vector<Model*>& getModels() {
68 return models;
69 }
70
71 /**
72 * Set model
73 * @param model model
74 */
75 inline void setModels(const vector<Model*>& models) {
76 this->models.resize(models.size());
77 for (auto i = 0; i < models.size(); i++) {
78 if (i < this->models.size() && this->models[i] == models[i]) continue;
79 if (i < this->models.size() && this->models[i] != nullptr) delete this->models[i];
80 this->models[i] = models[i];
81 }
82 }
83
84 /**
85 * @return min distance
86 */
87 inline float getMinDistance() const {
88 return minDistance;
89 }
90
91 /**
92 * Set min distance
93 * @param minDistance min distance
94 */
95 inline void setMinDistance(float minDistance) {
96 this->minDistance = minDistance;
97 }
98
99 /**
100 * @return color add
101 */
102 inline const Color4& getColorAdd() const {
103 return colorAdd;
104 }
105
106 /**
107 * Set color add
108 * @param colorAdd color add
109 */
110 inline void setColorAdd(const Color4& colorAdd) {
111 this->colorAdd = colorAdd;
112 }
113
114 /**
115 * @return color mul
116 */
117 inline const Color4& getColorMul() const {
118 return colorMul;
119 }
120
121 /**
122 * Set color mul
123 * @param colorMul color mul
124 */
125 inline void setColorMul(const Color4& colorMul) {
126 this->colorMul = colorMul;
127 }
128
129};
Color 4 definition.
Definition: Color4.h:20
Representation of a 3d model.
Definition: Model.h:32
void setColorAdd(const Color4 &colorAdd)
Set color add.
void setFileNames(const vector< string > &fileNames)
Set file names.
void setModels(const vector< Model * > &models)
Set model.
void setColorMul(const Color4 &colorMul)
Set color mul.
PrototypeImposterLOD(const vector< string > &fileNames, const vector< Model * > &models, float minDistance)
Public constructor.
void setMinDistance(float minDistance)
Set min distance.