mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 04:07:34 +00:00
LibDraw: Add Color::from_string(StringView)
This parses hex colors in either #RRGGBBAA or #RRGGBB format. No other formats are supported at the moment.
This commit is contained in:
parent
f511421aaa
commit
e43b27a3fa
2 changed files with 43 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
#include "Color.h"
|
|
||||||
#include <AK/Assertions.h>
|
#include <AK/Assertions.h>
|
||||||
|
#include <LibDraw/Color.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
Color::Color(NamedColor named)
|
Color::Color(NamedColor named)
|
||||||
{
|
{
|
||||||
|
@ -79,3 +81,41 @@ String Color::to_string() const
|
||||||
{
|
{
|
||||||
return String::format("#%b%b%b%b", red(), green(), blue(), alpha());
|
return String::format("#%b%b%b%b", red(), green(), blue(), alpha());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Optional<Color> Color::from_string(const StringView& string)
|
||||||
|
{
|
||||||
|
if (string.is_empty())
|
||||||
|
return {};
|
||||||
|
|
||||||
|
if (string[0] != '#')
|
||||||
|
return {};
|
||||||
|
|
||||||
|
if (string.length() != 7 && string.length() != 9)
|
||||||
|
return {};
|
||||||
|
|
||||||
|
auto hex_nibble_to_u8 = [](char nibble) -> Optional<u8> {
|
||||||
|
if (!isxdigit(nibble))
|
||||||
|
return {};
|
||||||
|
if (nibble >= '0' && nibble <= '9')
|
||||||
|
return nibble - '0';
|
||||||
|
return 10 + (tolower(nibble) - 'a');
|
||||||
|
};
|
||||||
|
|
||||||
|
auto to_hex = [&](char c1, char c2) -> Optional<u8> {
|
||||||
|
auto nib1 = hex_nibble_to_u8(c1);
|
||||||
|
auto nib2 = hex_nibble_to_u8(c2);
|
||||||
|
if (!nib1.has_value() || !nib2.has_value())
|
||||||
|
return {};
|
||||||
|
return nib1.value() << 4 | nib2.value();
|
||||||
|
};
|
||||||
|
|
||||||
|
Optional<u8> r = to_hex(string[1], string[2]);
|
||||||
|
Optional<u8> g = to_hex(string[3], string[4]);
|
||||||
|
Optional<u8> b = to_hex(string[5], string[6]);
|
||||||
|
Optional<u8> a = string.length() == 9 ? to_hex(string[7], string[8]) : Optional<u8>(255);
|
||||||
|
|
||||||
|
if (!r.has_value() || !g.has_value() || !b.has_value() || !a.has_value())
|
||||||
|
return {};
|
||||||
|
|
||||||
|
return Color(r.value(), g.value(), b.value(), a.value());
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <AK/AKString.h>
|
#include <AK/AKString.h>
|
||||||
|
#include <AK/Optional.h>
|
||||||
#include <AK/Types.h>
|
#include <AK/Types.h>
|
||||||
|
|
||||||
typedef u32 RGBA32;
|
typedef u32 RGBA32;
|
||||||
|
@ -132,6 +133,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
String to_string() const;
|
String to_string() const;
|
||||||
|
static Optional<Color> from_string(const StringView&);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
explicit Color(RGBA32 rgba)
|
explicit Color(RGBA32 rgba)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue