TDME2 1.9.121
ShaderParameter.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <string>
5
6#include <tdme/tdme.h>
8#include <tdme/math/Vector2.h>
9#include <tdme/math/Vector3.h>
10#include <tdme/math/Vector4.h>
11
12using std::array;
13using std::string;
14using std::to_string;
15
19
20/**
21 * Shader parameter model class
22 */
24public:
26
27private:
29 int integerValue { 0 };
30 array<float, 4> floatValues { 0.0f, 0.0f, 0.0f, 0.0f };
31
32 /**
33 * @return value as string
34 */
35 inline const string toString(float value) const {
36 string floatString = to_string(value);
37 return floatString.substr(0, floatString.length() - 3);
38 }
39
40public:
41 /**
42 * Public default constructor
43 */
45 }
46
47 /**
48 * Public constructor for boolean value
49 * @param booleanValue boolean value
50 */
51 ShaderParameter(bool booleanValue): type(TYPE_BOOLEAN), integerValue(booleanValue) {
52 }
53
54 /**
55 * Public constructor for int value
56 * @param integerValue int value
57 */
59 }
60
61 /**
62 * Public constructor for float value
63 * @param floatValue float value
64 */
65 ShaderParameter(float floatValue): type(TYPE_FLOAT), floatValues( { floatValue, 0.0f, 0.0f, 0.0f} ) {
66 }
67
68 /**
69 * Public constructor for Vector2 value
70 * @param vector2Value Vector2 value
71 */
72 ShaderParameter(const Vector2& vector2Value): type(TYPE_VECTOR2), floatValues( { vector2Value[0], vector2Value[1], 0.0f, 0.0f} ) {
73 }
74
75 /**
76 * Public constructor for Vector3 value
77 * @param vector3Value Vector3 value
78 */
79 ShaderParameter(const Vector3& vector3Value): type(TYPE_VECTOR3), floatValues( { vector3Value[0], vector3Value[1], vector3Value[2], 0.0f} ) {
80 }
81
82 /**
83 * Public constructor for Vector4 value
84 * @param vector4Value Vector4 value
85 */
86 ShaderParameter(const Vector4& vector4Value): type(TYPE_VECTOR4), floatValues( { vector4Value[0], vector4Value[1], vector4Value[2], vector4Value[3]} ) {
87 }
88
89 /**
90 * @return type
91 */
92 inline Type getType() const {
93 return type;
94 }
95
96 /**
97 * @return boolean value
98 */
99 inline bool getBooleanValue() const {
100 return integerValue;
101 }
102
103 /**
104 * @return integer value
105 */
106 inline float getIntegerValue() const {
107 return integerValue;
108 }
109
110 /**
111 * @return float value
112 */
113 inline float getFloatValue() const {
114 return floatValues[0];
115 }
116
117 /**
118 * @return Vector2 value
119 */
120 inline const Vector2 getVector2Value() const {
121 return Vector2(floatValues[0], floatValues[1]);
122 }
123
124 /**
125 * @return Vector3 value
126 */
127 inline const Vector3 getVector3Value() const {
128 return Vector3(floatValues[0], floatValues[1], floatValues[2]);
129 }
130
131 /**
132 * @return Vector4 value
133 */
134 inline const Vector4 getVector4Value() const {
136 }
137
138 /**
139 * @return string representation
140 */
141 inline const string toString() const {
142 switch(type) {
144 return string();
146 return toString(integerValue);
148 return toString(integerValue);
150 return toString(floatValues[0]);
152 {
153 string result;
154 for (auto i = 0; i < 2; i++) {
155 if (i != 0) result+= ",";
156 result+= toString(floatValues[i]);
157 }
158 return result;
159 }
161 {
162 string result;
163 for (auto i = 0; i < 3; i++) {
164 if (i != 0) result+= ",";
165 result+= toString(floatValues[i]);
166 }
167 return result;
168 }
170 {
171 string result;
172 for (auto i = 0; i < 4; i++) {
173 if (i != 0) result+= ",";
174 result+= toString(floatValues[i]);
175 }
176 return result;
177 }
178 break;
179 default:
180 return string();
181 }
182 }
183
184};
Shader parameter model class.
ShaderParameter(const Vector2 &vector2Value)
Public constructor for Vector2 value.
ShaderParameter(float floatValue)
Public constructor for float value.
ShaderParameter()
Public default constructor.
const Vector3 getVector3Value() const
const Vector4 getVector4Value() const
ShaderParameter(bool booleanValue)
Public constructor for boolean value.
ShaderParameter(int integerValue)
Public constructor for int value.
const string toString(float value) const
ShaderParameter(const Vector3 &vector3Value)
Public constructor for Vector3 value.
const string toString() const
ShaderParameter(const Vector4 &vector4Value)
Public constructor for Vector4 value.
const Vector2 getVector2Value() const
2D vector 2 class
Definition: Vector2.h:19
3D vector 3 class
Definition: Vector3.h:22
3D vector 4 class
Definition: Vector4.h:19