aboutsummaryrefslogtreecommitdiff
path: root/libgui
diff options
context:
space:
mode:
authorMarvin Borner2020-08-26 15:07:01 +0200
committerMarvin Borner2020-08-26 15:07:01 +0200
commitae31470ce5d666981ab1fe50cb2b4b38ca4b113f (patch)
tree2a0106921a4fd6e2b7854bba949a4fa16c6b992e /libgui
parentdb64897e79c92f7655fde53564e264d8c42dcd41 (diff)
Some optimizations and window moving
Diffstat (limited to 'libgui')
-rw-r--r--libgui/Makefile3
-rw-r--r--libgui/gui.c36
-rw-r--r--libgui/inc/gui.h3
-rw-r--r--libgui/inc/vesa.h4
-rw-r--r--libgui/vesa.c34
5 files changed, 22 insertions, 58 deletions
diff --git a/libgui/Makefile b/libgui/Makefile
index 2638cb0..d1f820f 100644
--- a/libgui/Makefile
+++ b/libgui/Makefile
@@ -1,7 +1,6 @@
# MIT License, Copyright (c) 2020 Marvin Borner
-COBJS = vesa.o \
- psf.o \
+COBJS = psf.o \
bmp.o \
gui.o
CC = ../cross/opt/bin/i686-elf-gcc
diff --git a/libgui/gui.c b/libgui/gui.c
index 331c940..a22ee51 100644
--- a/libgui/gui.c
+++ b/libgui/gui.c
@@ -37,9 +37,7 @@ static void write_char(struct window *win, int x, int y, const u32 c[3], char ch
static void draw_rectangle(struct window *win, int x1, int y1, int x2, int y2, const u32 c[3])
{
int bypp = win->bpp >> 3;
-
- int pos1 = x1 * bypp + y1 * win->pitch;
- u8 *draw = &win->fb[pos1];
+ u8 *draw = &win->fb[x1 * bypp + y1 * win->pitch];
for (int i = 0; i < y2 - y1; i++) {
for (int j = 0; j < x2 - x1; j++) {
draw[bypp * j] = c[2];
@@ -71,15 +69,11 @@ void gui_load_image(struct window *win, char *path, int x, int y)
assert(bmp && bmp->height + y <= win->height);
// TODO: Support padding with odd widths
- u8 *srcfb = bmp->data;
- u8 *destfb = win->fb;
int bypp = bmp->bpp >> 3;
+ u8 *srcfb = &bmp->data[bypp];
+ u8 *destfb = &win->fb[bypp];
for (u32 cy = 0; cy < bmp->height; cy++) {
- for (u32 cx = 0; cx < bmp->width; cx++) {
- destfb[bypp * cx + 0] = srcfb[bypp * cx + 0];
- destfb[bypp * cx + 1] = srcfb[bypp * cx + 1];
- destfb[bypp * cx + 2] = srcfb[bypp * cx + 2];
- }
+ memcpy(destfb, srcfb, bmp->pitch);
srcfb += bmp->pitch;
destfb += win->pitch;
}
@@ -91,6 +85,18 @@ void gui_load_wallpaper(struct window *win, char *path)
gui_load_image(win, path, 0, 0);
}
+void gui_copy(struct window *dest, struct window *src, int x, int y, u32 width, u32 height)
+{
+ int bypp = dest->bpp >> 3;
+ u8 *srcfb = &src->fb[(x + 1) * bypp + y * src->pitch];
+ u8 *destfb = &dest->fb[(x + 1) * bypp + y * dest->pitch];
+ for (u32 cy = 0; cy < height; cy++) {
+ memcpy(destfb, srcfb, width * (dest->bpp >> 3));
+ srcfb += src->pitch;
+ destfb += dest->pitch;
+ }
+}
+
// TODO: Optimize!
void gui_win_on_win(struct window *dest, struct window *src, int x, int y)
{
@@ -101,14 +107,10 @@ void gui_win_on_win(struct window *dest, struct window *src, int x, int y)
}
int bypp = dest->bpp >> 3;
- u8 *srcfb = src->fb;
- u8 *destfb = &dest->fb[x * bypp + y * dest->pitch];
+ u8 *srcfb = &src->fb[bypp];
+ u8 *destfb = &dest->fb[(x + 1) * bypp + y * dest->pitch];
for (u32 cy = 0; cy < src->height; cy++) {
- for (u32 cx = 0; cx < src->width; cx++) {
- destfb[bypp * cx + 0] = srcfb[bypp * cx + 0];
- destfb[bypp * cx + 1] = srcfb[bypp * cx + 1];
- destfb[bypp * cx + 2] = srcfb[bypp * cx + 2];
- }
+ memcpy(destfb, srcfb, src->pitch);
srcfb += src->pitch;
destfb += dest->pitch;
}
diff --git a/libgui/inc/gui.h b/libgui/inc/gui.h
index e228772..6244e22 100644
--- a/libgui/inc/gui.h
+++ b/libgui/inc/gui.h
@@ -29,6 +29,7 @@ struct window {
void gui_write_char(struct window *win, int x, int y, const u32 c[3], char ch);
void gui_write(struct window *win, int x, int y, const u32 c[3], char *text);
void gui_load_wallpaper(struct window *win, char *path);
+void gui_copy(struct window *dest, struct window *src, int x, int y, u32 width, u32 height);
void gui_win_on_win(struct window *dest, struct window *src, int x, int y);
void gui_draw_rectangle(struct window *win, int x1, int y1, int x2, int y2, const u32 c[3]);
void gui_fill(struct window *win, const u32 c[3]);
@@ -41,5 +42,5 @@ void gui_init(char *font_path);
#define gui_new_window() \
(msg_send(2, MSG_NEW_WINDOW, NULL), (struct window *)msg_receive_loop()->data)
-#define gui_redraw() (msg_send(2, MSG_REDRAW, NULL)) // TODO: Partial redraw (optimisation)
+#define gui_redraw() (msg_send(2, MSG_REDRAW, NULL)) // TODO: Partial redraw (optimization)
#endif
diff --git a/libgui/inc/vesa.h b/libgui/inc/vesa.h
index bd758a5..892bd89 100644
--- a/libgui/inc/vesa.h
+++ b/libgui/inc/vesa.h
@@ -43,8 +43,4 @@ struct vbe {
u8 reserved1[206];
};
-void vesa_draw_rectangle(struct vbe *vbe, int x1, int y1, int x2, int y2, const u32 color[3]);
-void vesa_fill(struct vbe *vbe, const u32 color[3]);
-void vesa_set_pixel(struct vbe *vbe, u16 x, u16 y, const u32 color[3]);
-
#endif
diff --git a/libgui/vesa.c b/libgui/vesa.c
deleted file mode 100644
index c005711..0000000
--- a/libgui/vesa.c
+++ /dev/null
@@ -1,34 +0,0 @@
-// MIT License, Copyright (c) 2020 Marvin Borner
-
-#include <def.h>
-#include <vesa.h>
-
-void vesa_draw_rectangle(struct vbe *vbe, int x1, int y1, int x2, int y2, const u32 color[3])
-{
- int bypp = vbe->bpp >> 3;
-
- int pos1 = x1 * bypp + y1 * vbe->pitch;
- u8 *draw = &vbe->fb[pos1];
- for (int i = 0; i <= y2 - y1; i++) {
- for (int j = 0; j <= x2 - x1; j++) {
- draw[bypp * j] = color[2];
- draw[bypp * j + 1] = color[1];
- draw[bypp * j + 2] = color[0];
- }
- draw += vbe->pitch;
- }
-}
-
-void vesa_set_pixel(struct vbe *vbe, u16 x, u16 y, const u32 color[3])
-{
- u8 pos = x * (vbe->bpp >> 3) + y * vbe->pitch;
- u8 *draw = &vbe->fb[pos];
- draw[pos] = (char)color[2];
- draw[pos + 1] = (char)color[1];
- draw[pos + 2] = (char)color[0];
-}
-
-void vesa_fill(struct vbe *vbe, const u32 color[3])
-{
- vesa_draw_rectangle(vbe, 0, 0, vbe->width - 1, vbe->height - 1, color);
-}