aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics
diff options
context:
space:
mode:
authorMarvin Borner2019-10-02 20:01:17 +0200
committerMarvin Borner2019-10-02 20:01:17 +0200
commit3238ced93283a167675f20244ec9fd6310eb8002 (patch)
tree288078ca30e9e4b5d5ba9a178315cb5ee9f6a2d8 /src/kernel/graphics
parent682c47a98844ffec3f3129160e9cdb98ba129989 (diff)
Finally fixed VESA auto resolution finder
This was quite hard and strange but it works now!
Diffstat (limited to 'src/kernel/graphics')
-rw-r--r--src/kernel/graphics/graphics.h6
-rw-r--r--src/kernel/graphics/vesa.c41
-rw-r--r--src/kernel/graphics/vga.c6
3 files changed, 24 insertions, 29 deletions
diff --git a/src/kernel/graphics/graphics.h b/src/kernel/graphics/graphics.h
index e20d1ed..118fe50 100644
--- a/src/kernel/graphics/graphics.h
+++ b/src/kernel/graphics/graphics.h
@@ -34,6 +34,12 @@ void terminal_clear();
void terminal_write_string(const char *data);
/**
+ * Write an integer to the terminal
+ * @param data The integer that should be written
+ */
+void terminal_write_number(int data);
+
+/**
* Put a new char at the x+1 cursor position and
* handle according events (e.g. overflow, linebreak)
* @param c The character (can also be \n or \r)
diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c
index 32bc0e9..9ea83aa 100644
--- a/src/kernel/graphics/vesa.c
+++ b/src/kernel/graphics/vesa.c
@@ -2,7 +2,7 @@
#include "graphics.h"
#include "../input/input.h"
#include "../system.h"
-#include "../paging/kheap.h"
+#include "../lib/lib.h"
void switch_to_vga() {
regs16_t regs;
@@ -57,21 +57,15 @@ struct vbe_mode_info *vbe_set_mode(unsigned short mode) {
}
void set_optimal_resolution() {
- struct vbe_info *info;
- struct vbe_mode_info *mode_info;
+ struct vbe_info *info = (struct vbe_info *) 0x2000;
+ struct vbe_mode_info *mode_info = (struct vbe_mode_info *) 0x3000;
- info = kmalloc(sizeof(struct vbe_info));
- mode_info = kmalloc(sizeof(struct vbe_mode_info));
-
- info->signature[0] = 'V';
- info->signature[1] = 'B';
- info->signature[2] = 'E';
- info->signature[3] = '2';
+ memory_copy(info->signature, "VBE2", 4);
regs16_t regs;
regs.ax = 0x4F00;
- regs.es = get_segment(info);
- regs.di = get_offset(info);
+ regs.es = 0;
+ regs.di = info;
int32(0x10, &regs);
if (regs.ax != 0x004F) {
@@ -81,7 +75,8 @@ void set_optimal_resolution() {
uint16_t *mode_ptr = get_ptr(info->video_modes);
uint16_t mode;
uint16_t highest = 0x11B;
- uint16_t highest_height = 0;
+ uint16_t highest_width = 0;
+
while ((mode = *mode_ptr++) != 0xFFFF) {
mode &= 0x1FF;
regs16_t regs2;
@@ -92,24 +87,12 @@ void set_optimal_resolution() {
int32(0x10, &regs2);
if ((mode_info->attributes & 0x90) != 0x90) continue;
- if (mode_info->height >= highest_height) {
+
+ if (mode_info->width >= highest_width && (float) mode_info->width / (float) mode_info->height < 2.0) {
highest = mode;
- highest_height = mode_info->height;
+ highest_width = mode_info->width;
}
}
- vbe_set_mode(0x11B);
-
- kfree(info);
-
- /*if (strcmp((const char *) info->version, (const char *) 0x300) == 0) {
- init();
- terminal_write_string("SUCCESS!\n");
- terminal_write_line((const char *) &info->vendor);
- keyboard_install();
- } else {
- init();
- terminal_write_string("FAILED!\n");
- keyboard_install(); // Find out why commands only work when keyboard gets reinstalled after write
- }*/
+ vbe_set_mode(highest);
} \ No newline at end of file
diff --git a/src/kernel/graphics/vga.c b/src/kernel/graphics/vga.c
index 8fde84f..cf1888b 100644
--- a/src/kernel/graphics/vga.c
+++ b/src/kernel/graphics/vga.c
@@ -148,6 +148,12 @@ void terminal_write_string(const char *data) {
terminal_write(data, strlen(data));
}
+void terminal_write_number(int data) {
+ char converted[128];
+ itoa(data, converted, 10);
+ terminal_write(converted, strlen(converted));
+}
+
void terminal_write_line(const char *data) {
terminal_column = 0;
terminal_write_string(data);