38 m_StringToColor[nNameHash] =
color;
46 std::optional<color> get(
size_t nNameHash)
const
48 if (
const auto it = m_StringToColor.find(nNameHash); it != m_StringToColor.end())
55 std::unordered_map<size_t, color> m_StringToColor;
60 constexpr color::color(
float fRed,
float fGreen,
float fBlue,
float fAlpha) noexcept
62 assign_checked({ fRed, fGreen, fBlue, fAlpha });
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))
70 constexpr color::color(
u64 nHexValue) noexcept
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))
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)
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))
111 return m_Color[
static_cast<glm::length_t
>(i)];
116 return m_Color[
static_cast<glm::length_t
>(i)];
121 return float_to_dec(m_Color.x);
126 return float_to_dec(m_Color.y);
131 return float_to_dec(m_Color.z);
136 return float_to_dec(m_Color.w);
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));
150 return ((
r & 0xff) << 16) + ((
g & 0xff) << 8) + ((
b & 0xff) << 0);
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));
160 return ((
r & 0xff) << 24) + ((
g & 0xff) << 16) + ((
b & 0xff) << 8) + (
a & 0xff);
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));
170 return ((
a & 0xff) << 24) + ((
r & 0xff) << 16) + ((
g & 0xff) << 8) + (
b & 0xff);
173 constexpr
bool color::operator==(
const color& other)
const noexcept
175 return m_Color == other.m_Color;
178 constexpr color::operator glm::vec3() const noexcept
183 constexpr color::operator glm::vec4() const noexcept
190 assign_component_checked(m_Color.x, m_Color.x + fDeltaValue);
195 assign_component_checked(m_Color.y, m_Color.y + fDeltaValue);
200 assign_component_checked(m_Color.z, m_Color.z + fDeltaValue);
205 assign_component_checked(m_Color.w, m_Color.w + fDeltaValue);
210 assign_component_checked(m_Color.x, m_Color.x + dec_to_float(nDeltaValue));
215 assign_component_checked(m_Color.y, m_Color.y + dec_to_float(nDeltaValue));
220 assign_component_checked(m_Color.z, m_Color.z + dec_to_float(nDeltaValue));
225 assign_component_checked(m_Color.w, m_Color.w + dec_to_float(nDeltaValue));
230 assign_component_checked(m_Color.x, fValue);
235 assign_component_checked(m_Color.y, fValue);
240 assign_component_checked(m_Color.z, fValue);
245 assign_component_checked(m_Color.w, fValue);
250 assign_component_checked(m_Color.x, dec_to_float(nValue));
255 assign_component_checked(m_Color.y, dec_to_float(nValue));
260 assign_component_checked(m_Color.z, dec_to_float(nValue));
265 assign_component_checked(m_Color.w, dec_to_float(nValue));
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;
294 inline bool color::add_color_to_mapping(string_view svColorName,
int nRed,
int nGreen,
int nBlue) noexcept
296 string sName = svColorName;
297 details::string_to_color_converter::get_instance().add(
string_hash(sName),
color(nRed, nGreen, nBlue));
300 details::string_to_color_converter::get_instance().add(
string_hash(sName),
color(nRed, nGreen, nBlue));
307 if (
const auto optColor = details::string_to_color_converter::get_instance().get(
string_hash(svColorName)))
310 std::optional<color> optColor;
312 const bool bStartsWith0x =
313 svColorName.starts_with(QX_TEXT(
"0x")) && (svColorName.size() == 8 || svColorName.size() == 10);
315 if (bStartsWith0x || svColorName.starts_with(QX_TEXT(
"#")) && svColorName.size() == 7)
319 const size_t nOffset = bStartsWith0x ? 2 : 1;
320 string sColorName = string_view(svColorName.data() + nOffset, svColorName.size() - nOffset);
322 auto ReadHex = [](
string& s) -> std::optional<color>
325 if (
const auto optInt = s.template to<u64>(QX_TEXT(
"%llx")))
326 return color(*optInt);
331 if (sColorName.
length() == 6)
333 sColorName += QX_TEXT(
"FF");
334 optColor = ReadHex(sColorName);
336 else if (sColorName.
length() == 8)
338 optColor = ReadHex(sColorName);
347 return color(0, 0, 0, 0);
355 constexpr
float color::clamp_value(
float fValue) noexcept
357 return std::clamp(fValue, 0.f, 1.f);
360 constexpr
float color::dec_to_float(
int nValue) noexcept
362 return static_cast<float>(nValue) / 255.f;
365 constexpr
int color::float_to_dec(
float fValue) noexcept
367 return static_cast<int>(fValue * 255.f);
370 constexpr
void color::assign_checked(
const glm::vec4& other) noexcept
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);
378 constexpr
void color::assign_component_checked(
float& pComponent,
float fValue) noexcept
380 pComponent = clamp_value(fValue);
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.
size_type length() const noexcept
Get string length.
constexpr float g() const noexcept
Get green component.
constexpr void update_r_dec(int nDeltaValue) noexcept
Add value to red component.
constexpr void update_a(float fDeltaValue) noexcept
Add value to alpha component.
constexpr int r_dec() const noexcept
Get red component as decimal.
static std::optional< color > from_string(string_view svColorName) noexcept
Try to create color from string.
constexpr void update_g(float fDeltaValue) noexcept
Add value to green component.
constexpr void update_b(float fDeltaValue) noexcept
Add value to blue component.
constexpr void darken(float fPercent) noexcept
Make color darker.
constexpr int g_dec() const noexcept
Get green component as decimal.
constexpr float a() const noexcept
Get alpha component.
constexpr const float * data() const noexcept
Get pointer to the first component.
constexpr float b() const noexcept
Get blue component.
constexpr float r() const noexcept
Get red component.
constexpr void set_g(float fValue) noexcept
Set new value of green component.
constexpr float & operator[](size_t i) noexcept
Get color component.
constexpr void set_b(float fValue) noexcept
Set new value of blue component.
constexpr int b_dec() const noexcept
Get blue component as decimal.
static constexpr color empty() noexcept
Get empty color (0, 0, 0, 0)
constexpr void update_g_dec(int nDeltaValue) noexcept
Add value to green component.
constexpr void set_r(float fValue) noexcept
Set new value of red component.
constexpr unsigned int hex_rgba() const noexcept
Get color as hex.
constexpr unsigned int hex_rgb() const noexcept
Get color as hex.
constexpr void update_r(float fDeltaValue) noexcept
Add value to red component.
constexpr int a_dec() const noexcept
Get alpha component as decimal.
constexpr void set_g_dec(int nValue) noexcept
Set new value of green component.
static constexpr size_t size() noexcept
Get number of float components.
constexpr void brighten(float fPercent) noexcept
Make color brighter.
constexpr unsigned int hex_argb() const noexcept
Get color as hex.
constexpr void update_b_dec(int nDeltaValue) noexcept
Add value to blue component.
constexpr void set_r_dec(int nValue) noexcept
Set new value of red component.
constexpr void set_b_dec(int nValue) noexcept
Set new value of blue component.
constexpr void update_a_dec(int nDeltaValue) noexcept
Add value to alpha component.
constexpr void set_a(float fValue) noexcept
Set new value of alpha component.
constexpr void set_a_dec(int nValue) noexcept
Set new value of alpha component.
Helper class for string -> color conversion.