new: textui支持彩色

This commit is contained in:
fslongjin
2022-08-04 22:14:54 +08:00
parent 0dc12cb1ca
commit db024b34e0
6 changed files with 52 additions and 418 deletions

View File

@ -44,7 +44,7 @@ int textui_refresh_vlines(struct textui_window_t *window, uint16_t start, uint16
textui_refresh_vline(window, i);
}
start = 0;
while (count>0)
while (count > 0)
{
// sprintk(bufff, "[ 2fresh: %d ] ", start);
// uart_send_str(COM1, bufff);
@ -116,17 +116,13 @@ static void __textui_render_chromatic(uint16_t actual_line, uint16_t index, stru
* @param font 字符的bitmap
*/
// #if DEBUG
// uart_send(COM1, font);
// #endif
unsigned char *font_ptr = font_ascii[(uint8_t)character->c];
unsigned int *addr;
uint32_t *fb = (uint32_t *)textui_framework.buf->vaddr;
// uint32_t FRcolor = YELLOW;
uint32_t FRcolor = calculate_color(character->Fr, character->Fg, character->Fb);
// uint32_t BKcolor = BLACK;
uint32_t BKcolor = calculate_color(character->Br, character->Bg, character->Bb);
uint32_t FRcolor = character->FRcolor & 0x00ffffff;
uint32_t BKcolor = character->BKcolor & 0x00ffffff;
uint32_t x = index * TEXTUI_CHAR_WIDTH;
uint32_t y = actual_line * TEXTUI_CHAR_HEIGHT;

View File

@ -90,7 +90,6 @@ int textui_change_handler(struct scm_buffer_info_t *buf)
{
memcpy((void *)buf->vaddr, (void *)(textui_framework.buf->vaddr), textui_framework.buf->size);
textui_framework.buf = buf;
set_pos_VBE_FB_addr((uint *)buf->vaddr);
return 0;
}
@ -144,13 +143,12 @@ static int __textui_new_line(struct textui_window_t *window, uint16_t vline_id)
if (likely(window->vlines_used == window->vlines_num)) // 需要滚动屏幕
{
// uart_send_str(COM1, " scroll, top vline= ");
++window->top_vline;
// uart_send(COM1, '0' + window->top_vline);
if (unlikely(window->top_vline >= window->vlines_num))
window->top_vline = 0;
// int delta = ABS((int)window->vline_operating - (int)window->top_vline);
// 刷新所有行
textui_refresh_vlines(window, window->top_vline, window->vlines_num);
}
@ -159,19 +157,23 @@ static int __textui_new_line(struct textui_window_t *window, uint16_t vline_id)
return 0;
}
static int __textui_putchar_window(struct textui_window_t *window, uint16_t character)
/**
* @brief 真正向屏幕上输出字符的函数
*
* @param window
* @param character
* @return int
*/
static int __textui_putchar_window(struct textui_window_t *window, uint16_t character, uint32_t FRcolor, uint32_t BKcolor)
{
if (textui_is_chromatic(window->flags)) // 启用彩色字符
{
struct textui_vline_chromatic_t *vline = &window->vlines.chromatic[window->vline_operating];
vline->chars[vline->index].c = character;
vline->chars[vline->index].Fr = 0xff;
vline->chars[vline->index].Fg = 0xff;
vline->chars[vline->index].Fb = 0xff;
vline->chars[vline->index].Br = 0;
vline->chars[vline->index].Bg = 0;
vline->chars[vline->index].Bb = 0;
vline->chars[vline->index].FRcolor = FRcolor & 0xffffff;
vline->chars[vline->index].BKcolor = BKcolor & 0xffffff;
++vline->index;
textui_refresh_characters(window, window->vline_operating, vline->index - 1, 1);
// 换行
@ -188,20 +190,23 @@ static int __textui_putchar_window(struct textui_window_t *window, uint16_t char
}
return 0;
}
/**
* @brief 在指定窗口上输出一个字符
*
* @param window 窗口
* @param character 字符
* @param FRcolor 前景色RGB
* @param BKcolor 背景色RGB
* @return int
*/
int textui_putchar_window(struct textui_window_t *window, uint16_t character)
int textui_putchar_window(struct textui_window_t *window, uint16_t character, uint32_t FRcolor, uint32_t BKcolor)
{
if (unlikely(character == '\0'))
return 0;
if (!textui_is_chromatic(window->flags)) // 暂不支持纯文本窗口
return 0;
uint64_t rflags = 0; // 加锁后rflags存储到这里
spin_lock_irqsave(&window->lock, rflags);
uart_send(COM1, character);
@ -217,7 +222,7 @@ int textui_putchar_window(struct textui_window_t *window, uint16_t character)
while (space_to_print--)
{
__textui_putchar_window(window, ' ');
__textui_putchar_window(window, ' ', FRcolor, BKcolor);
}
}
else if (character == '\b') // 退格
@ -251,7 +256,7 @@ int textui_putchar_window(struct textui_window_t *window, uint16_t character)
}
}
else
__textui_putchar_window(window, character);
__textui_putchar_window(window, character, FRcolor, BKcolor);
spin_unlock_irqrestore(&window->lock, rflags);
return 0;
@ -261,12 +266,14 @@ int textui_putchar_window(struct textui_window_t *window, uint16_t character)
* @brief 在默认窗口上输出一个字符
*
* @param character 字符
* @param FRcolor 前景色RGB
* @param BKcolor 背景色RGB
* @return int
*/
int textui_putchar(uint16_t character)
int textui_putchar(uint16_t character, uint32_t FRcolor, uint32_t BKcolor)
{
return textui_putchar_window(__private_info.default_window, character);
return textui_putchar_window(__private_info.default_window, character, FRcolor, BKcolor);
}
/**
@ -293,7 +300,7 @@ int textui_init()
int retval = scm_register(&textui_framework);
if (retval != 0)
{
uart_send_str(COM1, "text ui init failed");
uart_send_str(COM1, "text ui init failed\n");
while (1)
pause();
}
@ -317,6 +324,6 @@ int textui_init()
__private_info.default_window = &__initial_window;
__private_info.actual_line = textui_framework.buf->height / TEXTUI_CHAR_HEIGHT;
uart_send_str(COM1, "text ui initialized");
uart_send_str(COM1, "text ui initialized\n");
return 0;
}

View File

@ -29,16 +29,13 @@ struct textui_char_normal_t
*/
struct textui_char_chromatic_t
{
uint16_t c; // 字符
unsigned c : 16;
// 前景色
uint8_t Fr; //
uint8_t Fg; // 绿
uint8_t Fb; // 蓝
unsigned FRcolor : 24; // rgb
// 背景色
uint8_t Br;
uint8_t Bg;
uint8_t Bb;
unsigned BKcolor : 24; // rgb
};
// 注意!!! 请保持vline结构体的大小、成员变量命名相等
@ -122,17 +119,21 @@ int textui_refresh_characters(struct textui_window_t *window, uint16_t vline_id,
*
* @param window 窗口
* @param character 字符
* @param FRcolor 前景色RGB
* @param BKcolor 背景色RGB
* @return int
*/
int textui_putchar_window(struct textui_window_t *window, uint16_t character);
int textui_putchar_window(struct textui_window_t *window, uint16_t character, uint32_t FRcolor, uint32_t BKcolor);
/**
* @brief 在默认窗口上输出一个字符
*
* @param character 字符
* @param FRcolor 前景色RGB
* @param BKcolor 背景色RGB
* @return int
*/
int textui_putchar(uint16_t character);
int textui_putchar(uint16_t character, uint32_t FRcolor, uint32_t BKcolor);
/**
* @brief 获取textui的帧缓冲区能容纳的内容的行数