1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 14:23:38 +02:00

Change color functions

This commit is contained in:
supremestdoggo 2023-03-15 12:33:31 -04:00
parent 937494bfb0
commit 93ada2077b

View File

@ -49,11 +49,30 @@ char generate_color_control_char(string color) {
} }
} }
// Generate a string that sets the foreground color // Generates a string that changes the foreground color
string set_fg(string color) {return [generate_color_control_char(color)] ~ color;} string set_foreground(string color) {
char[1] control_char;
if (color.length == 6) {
control_char[0] = hex_color_code;
} else if (color.length == 2) {
control_char[0] = ascii_color_code;
} else {
throw new StringException("Invalid color code (must be either two ASCII digits or a hexadecimal code of the form RRGGBB)");
}
return control_char ~ color;
// Generate a string that sets the foreground and background color // Generate a string that sets the foreground and background color
string set_fg_bg(string color) {return [generate_color_control_char(color)] ~ color ~ "," ~ color;} string set_foreground_background(string fg, string bg) {
char[1] control_char;
if (color.length == 6) {
control_char[0] = hex_color_code;
} else if (color.length == 2) {
control_char[0] = ascii_color_code;
} else {
throw new StringException("Invalid color code (must be either two ASCII digits or a hexadecimal code of the form RRGGBB)");
}
return control_char ~ fg ~ "," ~ bg;
}
// Generate a string that resets the foreground and background colors // Generate a string that resets the foreground and background colors
pragma(inline) pragma(inline)