diff options
Diffstat (limited to 'apps/wm.c')
-rw-r--r-- | apps/wm.c | 40 |
1 files changed, 26 insertions, 14 deletions
@@ -11,6 +11,8 @@ #include <vesa.h> struct vbe *vbe; +struct window *direct; // Direct video memory window +struct window *root; // Root window (wallpaper etc.) struct list *windows; void onkey(u32 scancode) @@ -29,8 +31,9 @@ static struct window *new_window(int x, int y, u16 width, u16 height) win->y = y; win->width = width; win->height = height; - win->vbe = vbe; - win->fb = malloc(width * height * (vbe->bpp >> 3)); + win->bpp = vbe->bpp; + win->pitch = win->width * (win->bpp >> 3); + win->fb = malloc(height * win->pitch); return win; } @@ -38,27 +41,36 @@ int main(int argc, char **argv) { (void)argc; vbe = (struct vbe *)argv[1]; - windows = list_new(); - printf("VBE: %dx%d\n", vbe->width, vbe->height); const u32 color[3] = { 0, 0, 0 }; vesa_fill(vbe, color); gui_init("/font/spleen-16x32.psfu"); - gui_load_wallpaper(vbe, "/wall.bmp"); - event_map(EVENT_KEYBOARD, onkey); + windows = list_new(); + root = new_window(0, 0, vbe->width, vbe->height); + direct = malloc(sizeof(*direct)); + memcpy(direct, root, sizeof(*direct)); + direct->fb = vbe->fb; + + const u32 background[3] = { 0x10, 0x10, 0x10 }; + gui_fill(root, background); + gui_load_wallpaper(root, "/wall.bmp"); + list_add(windows, root); + + // TODO: Remove async events completely + /* event_map(EVENT_KEYBOARD, onkey); */ u32 last_time = 0; struct message *msg; - while (1) { // TODO: Remove continuous polling? - /* u32 current_time = time(); */ - /* if (current_time - last_time > 1000 / 60) { // 60Hz */ - /* struct window *win = windows->head->data; */ - /* memcpy(vbe->fb, windows->head->data, */ - /* win->width * win->height * (vbe->bpp >> 3)); */ - /* } */ - /* last_time = current_time; */ + while (1) { + u32 current_time = time(); + if (current_time - last_time > 1000 / 60) { // 60Hz + struct window *win; + if (windows->head && (win = windows->head->data)) + gui_win_on_win(win, direct, 0, 0); + } + last_time = current_time; if (!(msg = msg_receive())) { yield(); |