Refactor color functions
This commit is contained in:
parent
248c1bda02
commit
71bfe5498d
55
src/color.cc
55
src/color.cc
|
@ -1,5 +1,6 @@
|
||||||
#include "color.hh"
|
#include "color.hh"
|
||||||
|
|
||||||
|
#include "containers.hh"
|
||||||
#include "exception.hh"
|
#include "exception.hh"
|
||||||
#include "regex.hh"
|
#include "regex.hh"
|
||||||
|
|
||||||
|
@ -8,30 +9,28 @@
|
||||||
namespace Kakoune
|
namespace Kakoune
|
||||||
{
|
{
|
||||||
|
|
||||||
|
static constexpr const char* color_names[] = {
|
||||||
|
"default",
|
||||||
|
"black",
|
||||||
|
"red",
|
||||||
|
"green",
|
||||||
|
"yellow",
|
||||||
|
"blue",
|
||||||
|
"magenta",
|
||||||
|
"cyan",
|
||||||
|
"white",
|
||||||
|
};
|
||||||
|
|
||||||
bool is_color_name(StringView color)
|
bool is_color_name(StringView color)
|
||||||
{
|
{
|
||||||
return color == "default" or
|
return contains(color_names, color);
|
||||||
color == "black" or
|
|
||||||
color == "red" or
|
|
||||||
color == "green" or
|
|
||||||
color == "yellow" or
|
|
||||||
color == "blue" or
|
|
||||||
color == "magenta" or
|
|
||||||
color == "cyan" or
|
|
||||||
color == "white";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Color str_to_color(StringView color)
|
Color str_to_color(StringView color)
|
||||||
{
|
{
|
||||||
if (color == "default") return Colors::Default;
|
auto it = find_if(color_names, [&](const char* c){ return color == c; });
|
||||||
if (color == "black") return Colors::Black;
|
if (it != std::end(color_names))
|
||||||
if (color == "red") return Colors::Red;
|
return static_cast<Colors>(it - color_names);
|
||||||
if (color == "green") return Colors::Green;
|
|
||||||
if (color == "yellow") return Colors::Yellow;
|
|
||||||
if (color == "blue") return Colors::Blue;
|
|
||||||
if (color == "magenta") return Colors::Magenta;
|
|
||||||
if (color == "cyan") return Colors::Cyan;
|
|
||||||
if (color == "white") return Colors::White;
|
|
||||||
|
|
||||||
static const Regex rgb_regex{"rgb:[0-9a-fA-F]{6}"};
|
static const Regex rgb_regex{"rgb:[0-9a-fA-F]{6}"};
|
||||||
if (regex_match(color.begin(), color.end(), rgb_regex))
|
if (regex_match(color.begin(), color.end(), rgb_regex))
|
||||||
|
@ -48,26 +47,18 @@ Color str_to_color(StringView color)
|
||||||
|
|
||||||
String color_to_str(Color color)
|
String color_to_str(Color color)
|
||||||
{
|
{
|
||||||
switch (color.color)
|
if (color.color == Colors::RGB)
|
||||||
{
|
|
||||||
case Colors::Default: return "default";
|
|
||||||
case Colors::Black: return "black";
|
|
||||||
case Colors::Red: return "red";
|
|
||||||
case Colors::Green: return "green";
|
|
||||||
case Colors::Yellow: return "yellow";
|
|
||||||
case Colors::Blue: return "blue";
|
|
||||||
case Colors::Magenta: return "magenta";
|
|
||||||
case Colors::Cyan: return "cyan";
|
|
||||||
case Colors::White: return "white";
|
|
||||||
case Colors::RGB:
|
|
||||||
{
|
{
|
||||||
char buffer[11];
|
char buffer[11];
|
||||||
sprintf(buffer, "rgb:%02x%02x%02x", color.r, color.g, color.b);
|
sprintf(buffer, "rgb:%02x%02x%02x", color.r, color.g, color.b);
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
size_t index = static_cast<size_t>(color.color);
|
||||||
|
kak_assert(index < std::end(color_names) - std::begin(color_names));
|
||||||
|
return color_names[index];
|
||||||
}
|
}
|
||||||
kak_assert(false);
|
|
||||||
return "default";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String option_to_string(Color color)
|
String option_to_string(Color color)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user