qxLib
color.inl
Go to the documentation of this file.
1 /**
2 
3  @file color.inl
4  @author Khrapov
5  @date 10.04.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 namespace details
14 {
15 
16 /**
17 
18  @class string_to_color_converter
19  @brief Helper class for string -> color conversion
20  @details The only purpose of this class is to hide the map from a user
21  @author Khrapov
22  @date 5.04.2023
23 
24 **/
26 {
27  QX_SINGLETON(string_to_color_converter);
28  friend color;
29 
30 private:
31  /**
32  @brief Add new color to the mapping
33  @param nNameHash - color name hash
34  @param color - color
35  **/
36  void add(size_t nNameHash, color color)
37  {
38  m_StringToColor[nNameHash] = color;
39  }
40 
41  /**
42  @brief Try to get color from the color name
43  @param nNameHash - color name hash
44  @retval - color or nullopt
45  **/
46  std::optional<color> get(size_t nNameHash) const
47  {
48  if (const auto it = m_StringToColor.find(nNameHash); it != m_StringToColor.end())
49  return it->second;
50 
51  return std::nullopt;
52  }
53 
54 private:
55  std::unordered_map<size_t, color> m_StringToColor;
56 };
57 
58 } // namespace details
59 
60 constexpr color::color(float fRed, float fGreen, float fBlue, float fAlpha) noexcept
61 {
62  assign_checked({ fRed, fGreen, fBlue, fAlpha });
63 }
64 
65 constexpr color::color(int nRed, int nGreen, int nBlue, int nAlpha) noexcept
66  : color(dec_to_float(nRed), dec_to_float(nGreen), dec_to_float(nBlue), dec_to_float(nAlpha))
67 {
68 }
69 
70 constexpr color::color(u64 nHexValue) noexcept
71  : color(
72  dec_to_float(nHexValue >> 24 & 0xFF),
73  dec_to_float(nHexValue >> 16 & 0xFF),
74  dec_to_float(nHexValue >> 8 & 0xFF),
75  dec_to_float(nHexValue >> 0 & 0xFF))
76 {
77 }
78 
79 constexpr color::color(const glm::ivec3& vec3) noexcept
80  : color(dec_to_float(vec3.x), dec_to_float(vec3.y), dec_to_float(vec3.z), 1.f)
81 {
82 }
83 
84 constexpr color::color(const glm::ivec4& vec4) noexcept
85  : color(dec_to_float(vec4.x), dec_to_float(vec4.y), dec_to_float(vec4.z), dec_to_float(vec4.w))
86 {
87 }
88 
89 constexpr float color::r() const noexcept
90 {
91  return m_Color.x;
92 }
93 
94 constexpr float color::g() const noexcept
95 {
96  return m_Color.y;
97 }
98 
99 constexpr float color::b() const noexcept
100 {
101  return m_Color.z;
102 }
103 
104 constexpr float color::a() const noexcept
105 {
106  return m_Color.w;
107 }
108 
109 constexpr float& color::operator[](size_t i) noexcept
110 {
111  return m_Color[static_cast<glm::length_t>(i)];
112 }
113 
114 constexpr const float& color::operator[](size_t i) const noexcept
115 {
116  return m_Color[static_cast<glm::length_t>(i)];
117 }
118 
119 constexpr int color::r_dec() const noexcept
120 {
121  return float_to_dec(m_Color.x);
122 }
123 
124 constexpr int color::g_dec() const noexcept
125 {
126  return float_to_dec(m_Color.y);
127 }
128 
129 constexpr int color::b_dec() const noexcept
130 {
131  return float_to_dec(m_Color.z);
132 }
133 
134 constexpr int color::a_dec() const noexcept
135 {
136  return float_to_dec(m_Color.w);
137 }
138 
139 constexpr const float* color::data() const noexcept
140 {
141  return &(m_Color.x);
142 }
143 
144 constexpr unsigned int color::hex_rgb() const noexcept
145 {
146  const unsigned int r = static_cast<unsigned int>(float_to_dec(m_Color.x));
147  const unsigned int g = static_cast<unsigned int>(float_to_dec(m_Color.y));
148  const unsigned int b = static_cast<unsigned int>(float_to_dec(m_Color.z));
149 
150  return ((r & 0xff) << 16) + ((g & 0xff) << 8) + ((b & 0xff) << 0);
151 }
152 
153 constexpr unsigned int color::hex_rgba() const noexcept
154 {
155  const unsigned int r = static_cast<unsigned int>(float_to_dec(m_Color.x));
156  const unsigned int g = static_cast<unsigned int>(float_to_dec(m_Color.y));
157  const unsigned int b = static_cast<unsigned int>(float_to_dec(m_Color.z));
158  const unsigned int a = static_cast<unsigned int>(float_to_dec(m_Color.w));
159 
160  return ((r & 0xff) << 24) + ((g & 0xff) << 16) + ((b & 0xff) << 8) + (a & 0xff);
161 }
162 
163 constexpr unsigned int color::hex_argb() const noexcept
164 {
165  const unsigned int r = static_cast<unsigned int>(float_to_dec(m_Color.x));
166  const unsigned int g = static_cast<unsigned int>(float_to_dec(m_Color.y));
167  const unsigned int b = static_cast<unsigned int>(float_to_dec(m_Color.z));
168  const unsigned int a = static_cast<unsigned int>(float_to_dec(m_Color.w));
169 
170  return ((a & 0xff) << 24) + ((r & 0xff) << 16) + ((g & 0xff) << 8) + (b & 0xff);
171 }
172 
173 constexpr bool color::operator==(const color& other) const noexcept
174 {
175  return m_Color == other.m_Color;
176 }
177 
178 constexpr color::operator glm::vec3() const noexcept
179 {
180  return m_Color;
181 }
182 
183 constexpr color::operator glm::vec4() const noexcept
184 {
185  return m_Color;
186 }
187 
188 constexpr void color::update_r(float fDeltaValue) noexcept
189 {
190  assign_component_checked(m_Color.x, m_Color.x + fDeltaValue);
191 }
192 
193 constexpr void color::update_g(float fDeltaValue) noexcept
194 {
195  assign_component_checked(m_Color.y, m_Color.y + fDeltaValue);
196 }
197 
198 constexpr void color::update_b(float fDeltaValue) noexcept
199 {
200  assign_component_checked(m_Color.z, m_Color.z + fDeltaValue);
201 }
202 
203 constexpr void color::update_a(float fDeltaValue) noexcept
204 {
205  assign_component_checked(m_Color.w, m_Color.w + fDeltaValue);
206 }
207 
208 constexpr void color::update_r_dec(int nDeltaValue) noexcept
209 {
210  assign_component_checked(m_Color.x, m_Color.x + dec_to_float(nDeltaValue));
211 }
212 
213 constexpr void color::update_g_dec(int nDeltaValue) noexcept
214 {
215  assign_component_checked(m_Color.y, m_Color.y + dec_to_float(nDeltaValue));
216 }
217 
218 constexpr void color::update_b_dec(int nDeltaValue) noexcept
219 {
220  assign_component_checked(m_Color.z, m_Color.z + dec_to_float(nDeltaValue));
221 }
222 
223 constexpr void color::update_a_dec(int nDeltaValue) noexcept
224 {
225  assign_component_checked(m_Color.w, m_Color.w + dec_to_float(nDeltaValue));
226 }
227 
228 constexpr void color::set_r(float fValue) noexcept
229 {
230  assign_component_checked(m_Color.x, fValue);
231 }
232 
233 constexpr void color::set_g(float fValue) noexcept
234 {
235  assign_component_checked(m_Color.y, fValue);
236 }
237 
238 constexpr void color::set_b(float fValue) noexcept
239 {
240  assign_component_checked(m_Color.z, fValue);
241 }
242 
243 constexpr void color::set_a(float fValue) noexcept
244 {
245  assign_component_checked(m_Color.w, fValue);
246 }
247 
248 constexpr void color::set_r_dec(int nValue) noexcept
249 {
250  assign_component_checked(m_Color.x, dec_to_float(nValue));
251 }
252 
253 constexpr void color::set_g_dec(int nValue) noexcept
254 {
255  assign_component_checked(m_Color.y, dec_to_float(nValue));
256 }
257 
258 constexpr void color::set_b_dec(int nValue) noexcept
259 {
260  assign_component_checked(m_Color.z, dec_to_float(nValue));
261 }
262 
263 constexpr void color::set_a_dec(int nValue) noexcept
264 {
265  assign_component_checked(m_Color.w, dec_to_float(nValue));
266 }
267 
268 constexpr void color::darken(float fPercent) noexcept
269 {
270  brighten(-fPercent);
271 }
272 
273 constexpr void color::brighten(float fPercent) noexcept
274 {
275  m_Color.x *= (100.f + fPercent) / 100.f;
276  m_Color.y *= (100.f + fPercent) / 100.f;
277  m_Color.z *= (100.f + fPercent) / 100.f;
278 }
279 
280 constexpr color color::darken(const color& other, float fPercent) noexcept
281 {
282  color ret = other;
283  ret.darken(fPercent);
284  return ret;
285 }
286 
287 constexpr color color::brighten(const color& other, float fPercent) noexcept
288 {
289  color ret = other;
290  ret.brighten(fPercent);
291  return ret;
292 }
293 
294 inline bool color::add_color_to_mapping(string_view svColorName, int nRed, int nGreen, int nBlue) noexcept
295 {
296  string sName = svColorName;
297  details::string_to_color_converter::get_instance().add(string_hash(sName), color(nRed, nGreen, nBlue));
298 
299  sName.remove_all(QX_TEXT('_'));
300  details::string_to_color_converter::get_instance().add(string_hash(sName), color(nRed, nGreen, nBlue));
301 
302  return true;
303 }
304 
305 inline std::optional<color> color::from_string(string_view svColorName) noexcept
306 {
307  if (const auto optColor = details::string_to_color_converter::get_instance().get(string_hash(svColorName)))
308  return *optColor;
309 
310  std::optional<color> optColor;
311 
312  const bool bStartsWith0x =
313  svColorName.starts_with(QX_TEXT("0x")) && (svColorName.size() == 8 || svColorName.size() == 10);
314 
315  if (bStartsWith0x || svColorName.starts_with(QX_TEXT("#")) && svColorName.size() == 7)
316  {
317  // TODO no conversion method for string view so far
318  // but with SSO this should be fine
319  const size_t nOffset = bStartsWith0x ? 2 : 1;
320  string sColorName = string_view(svColorName.data() + nOffset, svColorName.size() - nOffset);
321 
322  auto ReadHex = [](string& s) -> std::optional<color>
323  {
324  s.to_lower();
325  if (const auto optInt = s.template to<u64>(QX_TEXT("%llx")))
326  return color(*optInt);
327 
328  return std::nullopt;
329  };
330 
331  if (sColorName.length() == 6)
332  {
333  sColorName += QX_TEXT("FF");
334  optColor = ReadHex(sColorName);
335  }
336  else if (sColorName.length() == 8)
337  {
338  optColor = ReadHex(sColorName);
339  }
340  }
341 
342  return optColor;
343 }
344 
345 constexpr color color::empty() noexcept
346 {
347  return color(0, 0, 0, 0);
348 }
349 
350 constexpr size_t color::size() noexcept
351 {
352  return 4;
353 }
354 
355 constexpr float color::clamp_value(float fValue) noexcept
356 {
357  return std::clamp(fValue, 0.f, 1.f);
358 }
359 
360 constexpr float color::dec_to_float(int nValue) noexcept
361 {
362  return static_cast<float>(nValue) / 255.f;
363 }
364 
365 constexpr int color::float_to_dec(float fValue) noexcept
366 {
367  return static_cast<int>(fValue * 255.f);
368 }
369 
370 constexpr void color::assign_checked(const glm::vec4& other) noexcept
371 {
372  assign_component_checked(m_Color.x, other.x);
373  assign_component_checked(m_Color.y, other.y);
374  assign_component_checked(m_Color.z, other.z);
375  assign_component_checked(m_Color.w, other.w);
376 }
377 
378 constexpr void color::assign_component_checked(float& pComponent, float fValue) noexcept
379 {
380  pComponent = clamp_value(fValue);
381 }
382 
383 } // namespace qx
String hash object.
Definition: string_hash.h:38
size_type remove_all(value_type chSymbol, size_type nBegin=0, size_type nEnd=npos) noexcept
Remove all occurrences of a substring in a string.
Definition: string.inl:1061
size_type length() const noexcept
Get string length.
Definition: string.inl:242
RGBA color.
Definition: color.h:38
constexpr float g() const noexcept
Get green component.
Definition: color.inl:94
constexpr void update_r_dec(int nDeltaValue) noexcept
Add value to red component.
Definition: color.inl:208
constexpr void update_a(float fDeltaValue) noexcept
Add value to alpha component.
Definition: color.inl:203
constexpr int r_dec() const noexcept
Get red component as decimal.
Definition: color.inl:119
static std::optional< color > from_string(string_view svColorName) noexcept
Try to create color from string.
Definition: color.inl:305
constexpr void update_g(float fDeltaValue) noexcept
Add value to green component.
Definition: color.inl:193
constexpr void update_b(float fDeltaValue) noexcept
Add value to blue component.
Definition: color.inl:198
constexpr void darken(float fPercent) noexcept
Make color darker.
Definition: color.inl:268
constexpr int g_dec() const noexcept
Get green component as decimal.
Definition: color.inl:124
constexpr float a() const noexcept
Get alpha component.
Definition: color.inl:104
constexpr const float * data() const noexcept
Get pointer to the first component.
Definition: color.inl:139
constexpr float b() const noexcept
Get blue component.
Definition: color.inl:99
constexpr float r() const noexcept
Get red component.
Definition: color.inl:89
constexpr void set_g(float fValue) noexcept
Set new value of green component.
Definition: color.inl:233
constexpr float & operator[](size_t i) noexcept
Get color component.
Definition: color.inl:109
constexpr void set_b(float fValue) noexcept
Set new value of blue component.
Definition: color.inl:238
constexpr int b_dec() const noexcept
Get blue component as decimal.
Definition: color.inl:129
static constexpr color empty() noexcept
Get empty color (0, 0, 0, 0)
Definition: color.inl:345
constexpr void update_g_dec(int nDeltaValue) noexcept
Add value to green component.
Definition: color.inl:213
constexpr void set_r(float fValue) noexcept
Set new value of red component.
Definition: color.inl:228
constexpr unsigned int hex_rgba() const noexcept
Get color as hex.
Definition: color.inl:153
constexpr unsigned int hex_rgb() const noexcept
Get color as hex.
Definition: color.inl:144
constexpr void update_r(float fDeltaValue) noexcept
Add value to red component.
Definition: color.inl:188
constexpr int a_dec() const noexcept
Get alpha component as decimal.
Definition: color.inl:134
constexpr void set_g_dec(int nValue) noexcept
Set new value of green component.
Definition: color.inl:253
static constexpr size_t size() noexcept
Get number of float components.
Definition: color.inl:350
constexpr void brighten(float fPercent) noexcept
Make color brighter.
Definition: color.inl:273
constexpr unsigned int hex_argb() const noexcept
Get color as hex.
Definition: color.inl:163
constexpr void update_b_dec(int nDeltaValue) noexcept
Add value to blue component.
Definition: color.inl:218
constexpr void set_r_dec(int nValue) noexcept
Set new value of red component.
Definition: color.inl:248
constexpr void set_b_dec(int nValue) noexcept
Set new value of blue component.
Definition: color.inl:258
constexpr void update_a_dec(int nDeltaValue) noexcept
Add value to alpha component.
Definition: color.inl:223
constexpr void set_a(float fValue) noexcept
Set new value of alpha component.
Definition: color.inl:243
constexpr void set_a_dec(int nValue) noexcept
Set new value of alpha component.
Definition: color.inl:263
Helper class for string -> color conversion.
Definition: color.inl:26
uint64_t u64
Definition: typedefs.h:27