TDME2 1.9.121
PrototypeLODLevel.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 * Prototype LOD level definition
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24private:
26 string fileName;
27 Model* model { nullptr };
31
32public:
33 /**
34 * Public constructor
35 * @param type file name
36 * @param fileName model
37 * @param model min distance
38 * @param minDistance type
39 */
42 const string& fileName,
43 Model* model,
44 float minDistance
45 );
46
47 /**
48 * Destructor
49 */
51
52 /**
53 * @return type
54 */
56 return type;
57 }
58
59 /**
60 * Set type
61 * @param type type
62 */
64 this->type = type;
65 }
66
67 /**
68 * @return file name
69 */
70 inline const string& getFileName() {
71 return fileName;
72 }
73
74 /**
75 * Set file name
76 * @param fileName file name
77 */
78 inline void setFileName(const string& fileName) {
79 this->fileName = fileName;
80 }
81
82 /**
83 * @return model
84 */
85 inline Model* getModel() {
86 return model;
87 }
88
89 /**
90 * Set model
91 * @param model model
92 */
93 inline void setModel(Model* model) {
94 if (this->model == model) return;
95 if (this->model != nullptr) delete this->model;
96 this->model = model;
97 }
98
99 /**
100 * @return min distance
101 */
102 inline float getMinDistance() const {
103 return minDistance;
104 }
105
106 /**
107 * Set min distance
108 * @param minDistance min distance
109 */
110 inline void setMinDistance(float minDistance) {
111 this->minDistance = minDistance;
112 }
113
114 /**
115 * @return color add
116 */
117 inline const Color4& getColorAdd() const {
118 return colorAdd;
119 }
120
121 /**
122 * Set color add
123 * @param colorAdd color add
124 */
125 inline void setColorAdd(const Color4& colorAdd) {
126 this->colorAdd = colorAdd;
127 }
128
129 /**
130 * @return color mul
131 */
132 inline const Color4& getColorMul() const {
133 return colorMul;
134 }
135
136 /**
137 * Set color mul
138 * @param colorMul color mul
139 */
140 inline void setColorMul(const Color4& colorMul) {
141 this->colorMul = colorMul;
142 }
143
144};
LOD object 3D to be used with engine class.
Definition: LODObject3D.h:47
Color 4 definition.
Definition: Color4.h:20
Representation of a 3d model.
Definition: Model.h:32
Prototype LOD level definition.
LODObject3D::LODLevelType getType() const
void setFileName(const string &fileName)
Set file name.
void setColorAdd(const Color4 &colorAdd)
Set color add.
PrototypeLODLevel(LODObject3D::LODLevelType type, const string &fileName, Model *model, float minDistance)
Public constructor.
void setColorMul(const Color4 &colorMul)
Set color mul.
void setType(LODObject3D::LODLevelType type)
Set type.
void setMinDistance(float minDistance)
Set min distance.