diff options
author | Marvin Borner | 2020-04-29 15:26:21 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-29 15:26:21 +0200 |
commit | 396d7d303d3bf0e796d0c817883ec1dec928352a (patch) | |
tree | 69d79c31ca94da7aa3089709be08f1d959023472 /src/userspace/libgui/util.c | |
parent | 4f3c75d23188bd480739d6d1514543c95cfe3399 (diff) |
Some work on the libgui
Diffstat (limited to 'src/userspace/libgui/util.c')
-rw-r--r-- | src/userspace/libgui/util.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/userspace/libgui/util.c b/src/userspace/libgui/util.c new file mode 100644 index 0000000..5019175 --- /dev/null +++ b/src/userspace/libgui/util.c @@ -0,0 +1,33 @@ +#include <stdint.h> +#include <gui.h> + +void gui_convert_color(u32 *color_array, u32 color) +{ + u8 red = (u8)((color >> 16) & 255); + u8 green = (u8)((color >> 8) & 255); + u8 blue = (u8)(color & 255); + + if ((vbe_bpl << 3) == 8) { + u32 new_color = + ((red * 7 / 255) << 5) + ((green * 7 / 255) << 2) + (blue * 3 / 255); + color_array[0] = (new_color >> 16) & 255; + color_array[1] = (new_color >> 8) & 255; + color_array[2] = new_color & 255; + } else if ((vbe_bpl << 3) == 16) { + u32 new_color = + (((red & 0b11111000) << 8) + ((green & 0b11111100) << 3) + (blue >> 3)); + color_array[0] = (new_color >> 16) & 255; + color_array[1] = (new_color >> 8) & 255; + color_array[2] = new_color & 255; + } else if ((vbe_bpl << 3) == 24 || (vbe_bpl << 3) == 32) { + color_array[0] = red; + color_array[1] = green; + color_array[2] = blue; + } +} + +void gui_set_color(u32 color) +{ + gui_convert_color(terminal_color, color); + gui_convert_color(terminal_background, gui_black); +}
\ No newline at end of file |