aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/wm.c47
-rw-r--r--libc/cpu.c2
-rw-r--r--libc/mem.c30
-rw-r--r--libgui/inc/gfx.h1
4 files changed, 41 insertions, 39 deletions
diff --git a/apps/wm.c b/apps/wm.c
index de086db..9c629e1 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -10,6 +10,7 @@
#include <vesa.h>
//#define FLUSH_TIMEOUT 6
+#define bypp (screen.bpp >> 3)
struct client {
u32 pid;
@@ -33,8 +34,9 @@ struct rectangle {
static struct vbe screen = { 0 };
static struct list *windows = NULL; // THIS LIST SHALL BE SORTED BY Z-INDEX!
-static struct window *root = NULL;
static struct window *direct = NULL;
+static struct window *root = NULL;
+static struct window *wallpaper = NULL;
static struct window *cursor = NULL;
static struct keymap *keymap = NULL;
static struct client wm_client = { 0 };
@@ -58,7 +60,7 @@ static struct window *window_create(struct client client, const char *name, stru
win->name = name;
win->ctx.size = size;
win->ctx.bpp = screen.bpp;
- win->ctx.pitch = size.x * (win->ctx.bpp >> 3);
+ win->ctx.pitch = size.x * bypp;
win->ctx.bytes = win->ctx.pitch * win->ctx.size.y;
if (flags && (flags & WF_NO_FB) == 0)
win->ctx.fb = zalloc(size.y * win->ctx.pitch);
@@ -107,7 +109,7 @@ static void windows_at_rec(vec2 pos1, vec2 pos2, struct list *list)
struct node *iterator = windows->head;
while (iterator) {
struct window *win = iterator->data;
- if ((win->flags & WF_NO_FB) != 0)
+ if ((win->flags & WF_NO_WINDOW) != 0)
goto next;
vec2 corners[] = {
@@ -154,7 +156,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;
- void *data = malloc(width * height * 4);
+ void *data = zalloc(width * height * bypp);
struct list *windows_at = list_new();
windows_at_rec(pos1, pos2, windows_at);
@@ -166,17 +168,15 @@ static struct rectangle rectangle_at(vec2 pos1, vec2 pos2, struct window *exclud
if (win == excluded)
continue;
- // This won't work correctly
- int bypp = win->ctx.bpp >> 3;
+ // 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];
u8 *destfb = data;
for (u32 cy = 0; cy < height; cy++) {
- memcpy(destfb, srcfb, width * bypp);
+ memcpy(destfb, srcfb, pitch);
srcfb += win->ctx.pitch;
- destfb += win->ctx.pitch;
+ destfb += pitch;
}
-
- /* log("Window found: %s\n", win->name); */
}
list_destroy(windows_at);
@@ -186,25 +186,20 @@ static struct rectangle rectangle_at(vec2 pos1, vec2 pos2, struct window *exclud
static void redraw_window(struct window *win)
{
if (win->ctx.size.x == win->ctx.size.y) {
- // TODO: Redraw rectangle
struct rectangle rec =
rectangle_at(win->pos_prev, vec2_add(win->pos_prev, win->ctx.size), win);
- u32 width = rec.pos2.x - rec.pos1.x;
- u32 height = rec.pos2.y - rec.pos1.y;
- int bypp = root->ctx.bpp >> 3;
u8 *srcfb = rec.data;
u8 *destfb = &root->ctx.fb[rec.pos1.x * bypp + rec.pos1.y * root->ctx.pitch];
- for (u32 cy = 0; cy < height; cy++) {
- memcpy(destfb, srcfb, width * bypp);
+ for (u32 cy = 0; cy < win->ctx.size.y; cy++) {
+ memcpy(destfb, srcfb, win->ctx.size.x * bypp);
srcfb += win->ctx.pitch;
destfb += root->ctx.pitch;
}
- /* gfx_draw_rectangle(&root->ctx, win->pos_prev, */
- /* vec2_add(win->pos_prev, win->ctx.size), 0); */
+ free(rec.data);
} else {
- err(1, "Rectangle splitting isn't supported yet!\n");
+ log("Rectangle splitting isn't supported yet!\n");
}
gfx_ctx_on_ctx(&root->ctx, &win->ctx, win->pos);
@@ -263,7 +258,8 @@ static void handle_event_mouse(struct event_mouse *event)
/* log("%d %d\n", mouse.pos.x, mouse.pos.y); */
cursor->pos = mouse.pos;
- redraw_window(cursor);
+ if (!vec2_eq(cursor->pos, cursor->pos_prev))
+ redraw_window(cursor);
}
int main(int argc, char **argv)
@@ -277,16 +273,21 @@ int main(int argc, char **argv)
keymap = keymap_parse("/res/keymaps/en.keymap");
direct = window_create(wm_client, "direct", vec2(0, 0), vec2(screen.width, screen.height),
- WF_NO_FB | WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE);
+ WF_NO_WINDOW | WF_NO_FB | WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE);
direct->ctx.fb = screen.fb;
+ direct->flags ^= WF_NO_FB;
root = window_create(wm_client, "root", vec2(0, 0), vec2(screen.width, screen.height),
- WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE);
+ WF_NO_WINDOW | WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE);
+ wallpaper =
+ window_create(wm_client, "wallpaper", vec2(0, 0), vec2(screen.width, screen.height),
+ WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE);
cursor = window_create(wm_client, "cursor", vec2(0, 0), vec2(32, 32),
WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE);
/* gfx_write(&direct->ctx, vec2(0, 0), FONT_32, COLOR_FG, "Loading Melvix..."); */
- gfx_load_wallpaper(&root->ctx, "/res/wall.png");
+ gfx_load_wallpaper(&wallpaper->ctx, "/res/wall.png");
gfx_load_wallpaper(&cursor->ctx, "/res/cursor.png");
+ redraw_window(wallpaper);
struct message msg = { 0 };
struct event_keyboard event_keyboard = { 0 };
diff --git a/libc/cpu.c b/libc/cpu.c
index 2eb6c46..983a4a8 100644
--- a/libc/cpu.c
+++ b/libc/cpu.c
@@ -113,7 +113,7 @@ void fpu_restore(void)
void cpu_enable_features(void)
{
- u32 a = 0, b = 0, c = 0, d = 0;
+ u32 a, b, c, d;
cpuid(CPUID_FEATURES, &a, &b, &c, &d);
cpu_features = d;
if (cpu_has_feature(CPUID_FEAT_EDX_SSE)) {
diff --git a/libc/mem.c b/libc/mem.c
index 953ef33..b70f8ef 100644
--- a/libc/mem.c
+++ b/libc/mem.c
@@ -10,10 +10,10 @@ void *memcpy(void *dest, const void *src, u32 n)
#ifdef userspace
// Inspired by Jeko at osdev
for (u32 i = 0; i < n / 16; i++) {
- __asm__ __volatile__("movups (%0), %%xmm0\n"
- "movntdq %%xmm0, (%1)\n" ::"r"(src),
- "r"(dest)
- : "memory");
+ __asm__ volatile("movups (%0), %%xmm0\n"
+ "movntdq %%xmm0, (%1)\n" ::"r"(src),
+ "r"(dest)
+ : "memory");
src = ((u8 *)src) + 16;
dest = ((u8 *)dest) + 16;
@@ -23,17 +23,17 @@ void *memcpy(void *dest, const void *src, u32 n)
n = n & 7;
int d0, d1, d2;
- __asm__ __volatile__("rep ; movsl\n\t"
- "testb $2,%b4\n\t"
- "je 1f\n\t"
- "movsw\n"
- "1:\ttestb $1,%b4\n\t"
- "je 2f\n\t"
- "movsb\n"
- "2:"
- : "=&c"(d0), "=&D"(d1), "=&S"(d2)
- : "0"(n / 4), "q"(n), "1"((long)dest), "2"((long)src)
- : "memory");
+ __asm__ volatile("rep ; movsl\n\t"
+ "testb $2,%b4\n\t"
+ "je 1f\n\t"
+ "movsw\n"
+ "1:\ttestb $1,%b4\n\t"
+ "je 2f\n\t"
+ "movsb\n"
+ "2:"
+ : "=&c"(d0), "=&D"(d1), "=&S"(d2)
+ : "0"(n / 4), "q"(n), "1"((long)dest), "2"((long)src)
+ : "memory");
}
return dest;
#else
diff --git a/libgui/inc/gfx.h b/libgui/inc/gfx.h
index cf98129..4a358ca 100644
--- a/libgui/inc/gfx.h
+++ b/libgui/inc/gfx.h
@@ -43,6 +43,7 @@
#define WF_NO_DRAG (1 << 1)
#define WF_NO_RESIZE (1 << 2)
#define WF_NO_FB (1 << 3)
+#define WF_NO_WINDOW (1 << 4)
/* #define WF_RELATIVE (1 << 4) */
enum font_type { FONT_8, FONT_12, FONT_16, FONT_24, FONT_32, FONT_64 };