diff options
author | Marvin Borner | 2021-02-24 15:28:40 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-24 15:28:40 +0100 |
commit | 6281f580674813e58f083f63031c433393a30129 (patch) | |
tree | ea8587a1abf7097cd30265e7aebf4b79cfcbb810 /apps | |
parent | e0100f6b98fc3b453d38024f579ead7cf84f581c (diff) |
Awesome indeed
Diffstat (limited to 'apps')
-rw-r--r-- | apps/window.c | 5 | ||||
-rw-r--r-- | apps/wm.c | 28 |
2 files changed, 22 insertions, 11 deletions
diff --git a/apps/window.c b/apps/window.c index f993ea4..da84eff 100644 --- a/apps/window.c +++ b/apps/window.c @@ -9,6 +9,11 @@ int main() struct gui_window win = { 0 }; assert(gui_new_window(&win) > 0); gfx_fill(win.ctx, COLOR_GREEN); + // Professional testing + for (int i = 0; i < 12; i++) { + gfx_write(win.ctx, vec2(0, i * gfx_font_height(FONT_32)), FONT_32, COLOR_BLACK, + "Hallo, wie geht es Ihnen denn heute?"); + } assert(gui_redraw_window(win.id) > 0); log("%d\n", win.ctx->size.x); return 0; @@ -19,7 +19,7 @@ struct client { struct window { u32 id; - char *name; + const char *name; struct context ctx; struct client client; u32 flags; @@ -72,11 +72,10 @@ static struct window *window_new(struct client client, const char *name, struct { struct window *win = malloc(sizeof(*win)); win->id = rand(); - win->name = strdup(name); + win->name = name; // strdup? win->ctx.size = size; win->ctx.bpp = screen.bpp; win->ctx.pitch = size.x * bypp; - log("%s: %d %d\n", name, size.x, win->ctx.pitch); win->ctx.bytes = win->ctx.pitch * win->ctx.size.y; if ((flags & WF_NO_FB) != 0) { win->ctx.fb = NULL; @@ -105,7 +104,7 @@ static struct window *window_find(u32 id) static void window_destroy(struct window *win) { - free(win->name); + /* free(win->name); */ free(win->ctx.fb); free(win); } @@ -164,6 +163,7 @@ static struct rectangle rectangle_at(vec2 pos1, vec2 pos2, struct window *exclud { u32 width = pos2.x - pos1.x; u32 height = pos2.y - pos1.y; + u32 pitch = width * bypp; void *data = zalloc(width * height * bypp); struct list *windows_at = list_new(); @@ -176,14 +176,21 @@ static struct rectangle rectangle_at(vec2 pos1, vec2 pos2, struct window *exclud if (win == excluded) continue; - // This will only work for background windows - TODO - u32 pitch = width * bypp; - u8 *srcfb = &win->ctx.fb[pos1.x * bypp + pos1.y * win->ctx.pitch]; + vec2 pos = vec2_sub(pos1, win->pos); + u8 *srcfb = &win->ctx.fb[pos.x * bypp + pos.y * win->ctx.pitch]; u8 *destfb = data; for (u32 cy = 0; cy < height; cy++) { - memcpy(destfb, srcfb, pitch); - srcfb += win->ctx.pitch; - destfb += pitch; + int diff = 0; + for (u32 cx = 0; cx < width; cx++) { + if (srcfb[bypp - 1]) + memcpy(destfb, srcfb, bypp); + + srcfb += bypp; + destfb += bypp; + diff += bypp; + } + srcfb += win->ctx.pitch - diff; + destfb += pitch - diff; } } list_destroy(windows_at); @@ -261,7 +268,6 @@ static void handle_event_mouse(struct event_mouse *event) else if (mouse.pos.y + cursor->ctx.size.y > (unsigned)screen.height - 1) mouse.pos.y = screen.height - cursor->ctx.size.y - 1; - /* log("%d %d\n", mouse.pos.x, mouse.pos.y); */ cursor->pos = mouse.pos; if (!vec2_eq(cursor->pos, cursor->pos_prev)) |