aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-09-04 15:50:21 +0200
committerMarvin Borner2020-09-04 15:50:21 +0200
commitb8f00b77e965c73a047e71193c8c6e2d7488f34d (patch)
tree168354a8cd9b8a69a2f06a09e8ce73aadd4e2521 /apps
parent15a8cb8fa64b12d6c0b65eafb226971cd66dc3cd (diff)
Added mandelbrot demo and fpu driver
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile4
-rw-r--r--apps/init.c5
-rw-r--r--apps/mandelbrot.c58
-rw-r--r--apps/window.c2
4 files changed, 64 insertions, 5 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 6a22e35..44222d9 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -1,6 +1,6 @@
# MIT License, Copyright (c) 2020 Marvin Borner
-COBJS = init.o wm.o window.o test.o
+COBJS = init.o wm.o mandelbrot.o window.o test.o
CC = ../cross/opt/bin/i686-elf-gcc
LD = ../cross/opt/bin/i686-elf-ld
OC = ../cross/opt/bin/i686-elf-objcopy
@@ -8,7 +8,7 @@ OC = ../cross/opt/bin/i686-elf-objcopy
# Flags to make the binary smaller TODO: Remove after indirect pointer support!
CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os
-CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -I../libc/inc/ -I../libgui/inc/ -fPIE -Duserspace
+CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -fno-builtin -std=c99 -m32 -pedantic-errors -I../libc/inc/ -I../libgui/inc/ -fPIE -Duserspace
all: $(COBJS)
diff --git a/apps/init.c b/apps/init.c
index 072e24e..01eb47d 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -11,7 +11,8 @@ int main(int argc, char **argv)
// TODO: Fix GPF if file doesn't exist
int wm = exec("/wm", "wm", argv[1], NULL);
- int test = exec("/window", "test", NULL);
+ /* int test = exec("/window", "test", NULL); */
+ int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL);
- return wm + test;
+ return wm + mandelbrot;
}
diff --git a/apps/mandelbrot.c b/apps/mandelbrot.c
new file mode 100644
index 0000000..6b6d45c
--- /dev/null
+++ b/apps/mandelbrot.c
@@ -0,0 +1,58 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#include <conv.h>
+#include <def.h>
+#include <gui.h>
+#include <input.h>
+#include <print.h>
+#include <random.h>
+#include <str.h>
+#include <sys.h>
+
+void draw_pixel(struct window *win, int x, int y, u32 c)
+{
+ int pos = x * (win->bpp >> 3) + y * win->pitch;
+ win->fb[pos + 0] = GET_BLUE(c);
+ win->fb[pos + 1] = GET_GREEN(c);
+ win->fb[pos + 2] = GET_RED(c);
+ win->fb[pos + 3] = GET_ALPHA(c);
+}
+
+int main()
+{
+ print("[mandelbrot window loaded]\n");
+
+ struct window *win = gui_new_window(WF_DEFAULT);
+ gui_fill(win, BG_COLOR);
+
+ int height = win->height;
+ int width = win->width;
+ int max = 500;
+
+ for (int row = 0; row < height; row++) {
+ for (int col = 0; col < width; col++) {
+ double c_re = (col - width / 2.0) * 4.0 / width;
+ double c_im = (row - height / 2.0) * 4.0 / width;
+ double x = 0, y = 0;
+ int iteration = 0;
+ while (x * x + y * y <= 4 && iteration < max) {
+ double x_new = x * x - y * y + c_re;
+ y = 2 * x * y + c_im;
+ x = x_new;
+ iteration++;
+ }
+ srand(iteration);
+ if (iteration < max)
+ draw_pixel(win, col, row, rand() | 0xff000000);
+ else
+ draw_pixel(win, col, row, BG_COLOR);
+ }
+ }
+ gui_redraw();
+
+ while (1) {
+ yield();
+ };
+
+ return 0;
+}
diff --git a/apps/window.c b/apps/window.c
index eabac97..a1311a0 100644
--- a/apps/window.c
+++ b/apps/window.c
@@ -11,7 +11,7 @@ int main()
{
print("[test window loaded]\n");
- struct window *win = gui_new_window(0);
+ struct window *win = gui_new_window(WF_DEFAULT);
gui_fill(win, BG_COLOR);
gui_border(win, FG_COLOR, 2);