TDME2 1.9.121
GUIColor.cpp
Go to the documentation of this file.
2
3#include <array>
4#include <cstdio>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
14
15using std::array;
16using std::string;
17using std::vector;
18
25
26GUIColor GUIColor::GUICOLOR_WHITE(1.0f, 1.0f, 1.0f, 1.0f);
27GUIColor GUIColor::GUICOLOR_BLACK(0.0f, 0.0f, 0.0f, 1.0f);
28GUIColor GUIColor::GUICOLOR_RED(1.0f, 0.0f, 0.0f, 1.0f);
29GUIColor GUIColor::GUICOLOR_GREEN(0.0f, 1.0f, 0.0f, 1.0f);
30GUIColor GUIColor::GUICOLOR_BLUE(0.0f, 0.0f, 1.0f, 1.0f);
31GUIColor GUIColor::GUICOLOR_TRANSPARENT(0.0f, 0.0f, 0.0f, 0.0f);
32GUIColor GUIColor::GUICOLOR_EFFECT_COLOR_MUL(1.0f, 1.0f, 1.0f, 1.0f);
33GUIColor GUIColor::GUICOLOR_EFFECT_COLOR_ADD(0.0f, 0.0f, 0.0f, 0.0f);
34
35vector<GUIColor*> GUIColor::COLOR_INSTANCES = {{
36 &GUICOLOR_WHITE,
37 &GUICOLOR_BLACK,
38 &GUICOLOR_RED,
39 &GUICOLOR_GREEN,
40 &GUICOLOR_BLUE,
41 &GUICOLOR_TRANSPARENT
42}};
43
44vector<string> GUIColor::COLOR_NAMES = {{
45 "WHITE",
46 "BLACK",
47 "RED",
48 "GREEN",
49 "BLUE",
50 "TRANSPARENT"
51}};
52
53GUIColor::GUIColor() : Color4Base()
54{
55}
56
57GUIColor::GUIColor(const Color4& color) : Color4Base(color)
58{
59}
60
61GUIColor::GUIColor(float r, float g, float b, float a) : Color4Base(r,g,b,a)
62{
63}
64
65GUIColor::GUIColor(const array<float, 4>& color): Color4Base(color)
66{
67}
68
69GUIColor::GUIColor(const string& colorString) : Color4Base()
70{
71 if (colorString.empty() == true) {
72 Console::println("GUI: Warning: No color given");
74 return;
75 }
76 for (auto i = 0; i < COLOR_NAMES.size(); i++) {
77 if (StringTools::equalsIgnoreCase(COLOR_NAMES[i], colorString) == true) {
78 this->data[0] = COLOR_INSTANCES[i]->data[0];
79 this->data[1] = COLOR_INSTANCES[i]->data[1];
80 this->data[2] = COLOR_INSTANCES[i]->data[2];
81 this->data[3] = COLOR_INSTANCES[i]->data[3];
82 return;
83 }
84 }
85 if (StringTools::startsWith(colorString, "#") == false || (colorString.length() != 7 && colorString.length() != 9)) {
86 Console::println("GUI: Warning: Invalid color '" + (colorString) + "'");
88 return;
89 }
90 int colorValue;
91 sscanf(colorString.substr(1, 3).c_str(), "%02x", &colorValue);
92 data[0] = colorValue / 255.0f;
93 sscanf(colorString.substr(3, 5).c_str(), "%02x", &colorValue);
94 data[1] = colorValue / 255.0f;
95 sscanf(colorString.substr(5, 7).c_str(), "%02x", &colorValue);
96 data[2] = colorValue / 255.0f;
97 if (colorString.length() > 7) {
98 sscanf(colorString.substr(7, 9).c_str(), "%02x", &colorValue);
99 data[3] = colorValue / 255.0f;
100 }
101}
Color 4 base definition class.
Definition: Color4Base.h:19
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
Color 4 definition.
Definition: Color4.h:20
static STATIC_DLL_IMPEXT vector< GUIColor * > COLOR_INSTANCES
Definition: GUIColor.h:42
GUIColor()
Public constructor.
Definition: GUIColor.cpp:53
static STATIC_DLL_IMPEXT vector< string > COLOR_NAMES
Definition: GUIColor.h:43
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_TRANSPARENT
Definition: GUIColor.h:37
Console class.
Definition: Console.h:26
String tools class.
Definition: StringTools.h:20