18 #include <unordered_map>
20 QX_PUSH_SUPPRESS_ALL_WARNINGS();
21 #include <glm/vec3.hpp>
22 #include <glm/vec4.hpp>
23 QX_POP_SUPPRESS_WARNINGS();
40 QX_COPYMOVABLE(
color);
42 constexpr
color() noexcept =
default;
52 constexpr
color(
float fRed,
float fGreen,
float fBlue,
float fAlpha = 1.f) noexcept;
62 constexpr
color(
int nRed,
int nGreen,
int nBlue,
int nAlpha = 255) noexcept;
68 constexpr
explicit color(
u64 nHexValue) noexcept;
74 constexpr
explicit color(
const glm::ivec3& vec3) noexcept;
80 constexpr
explicit color(
const glm::ivec4& vec4) noexcept;
86 constexpr
float r()
const noexcept;
92 constexpr
float g()
const noexcept;
98 constexpr
float b()
const noexcept;
104 constexpr
float a()
const noexcept;
111 constexpr
float&
operator[](
size_t i) noexcept;
118 constexpr
const float&
operator[](
size_t i)
const noexcept;
124 constexpr
int r_dec()
const noexcept;
130 constexpr
int g_dec()
const noexcept;
136 constexpr
int b_dec()
const noexcept;
142 constexpr
int a_dec()
const noexcept;
148 constexpr
const float*
data()
const noexcept;
154 constexpr
unsigned int hex_rgb()
const noexcept;
160 constexpr
unsigned int hex_rgba()
const noexcept;
166 constexpr
unsigned int hex_argb()
const noexcept;
168 constexpr
bool operator==(
const color& other)
const noexcept;
169 constexpr
operator glm::vec3()
const noexcept;
170 constexpr
operator glm::vec4()
const noexcept;
177 constexpr
void update_r(
float fDeltaValue) noexcept;
184 constexpr
void update_g(
float fDeltaValue) noexcept;
191 constexpr
void update_b(
float fDeltaValue) noexcept;
198 constexpr
void update_a(
float fDeltaValue) noexcept;
233 constexpr
void set_r(
float fValue) noexcept;
240 constexpr
void set_g(
float fValue) noexcept;
247 constexpr
void set_b(
float fValue) noexcept;
254 constexpr
void set_a(
float fValue) noexcept;
261 constexpr
void set_r_dec(
int nValue) noexcept;
268 constexpr
void set_g_dec(
int nValue) noexcept;
275 constexpr
void set_b_dec(
int nValue) noexcept;
282 constexpr
void set_a_dec(
int nValue) noexcept;
288 constexpr
void darken(
float fPercent) noexcept;
294 constexpr
void brighten(
float fPercent) noexcept;
321 static bool add_color_to_mapping(string_view svColorName,
int nRed,
int nGreen,
int nBlue) noexcept;
323 #define _QX_DEFINE_COLOR(snakeCaseName, pascalCaseName, r, g, b) \
324 static constexpr auto snakeCaseName(float fAlpha = 1.f) noexcept \
326 return color(r, g, b, float_to_dec(fAlpha)); \
328 inline static const volatile bool QX_LINE_NAME(_stub1) = add_color_to_mapping(QX_TEXT(#snakeCaseName), r, g, b); \
329 inline static const volatile bool QX_LINE_NAME(_stub2) = add_color_to_mapping(QX_TEXT(#pascalCaseName), r, g, b)
402 _QX_DEFINE_COLOR(light_goldenrod_yellow , LightGoldenrodYellow , 250, 250, 210);
483 static std::optional<color>
from_string(string_view svColorName) noexcept;
497 static constexpr
size_t size() noexcept;
505 static constexpr
float clamp_value(
float fValue) noexcept;
512 static constexpr
float dec_to_float(
int nValue) noexcept;
519 static constexpr
int float_to_dec(
float fValue) noexcept;
525 constexpr
void assign_checked(const glm::vec4& other) noexcept;
532 static constexpr
void assign_component_checked(
float& pComponent,
float fValue) noexcept;
535 glm::vec4 m_Color = glm::vec4(1.f);
540 #include <qx/render/color.inl>
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.
_QX_DEFINE_COLOR(alice_blue, AliceBlue, 240, 248, 255)
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.