aboutsummaryrefslogtreecommitdiff
path: root/libs/libgui/psf.c
blob: 5a6b1bb497d4004f0f8802c35bc35896ead023bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// MIT License, Copyright (c) 2020 Marvin Borner
// PSF parser

#include <def.h>
#include <libgui/gfx.h>
#include <libgui/psf.h>
#include <mem.h>
#include <print.h>

// Verifies the PSF magics
// Returns the PSF version or 0
static int psf_verify(char *data)
{
	struct psf1_header *header1 = (struct psf1_header *)data;
	struct psf2_header *header2 = (struct psf2_header *)data;

	if (header1->magic[0] == PSF1_MAGIC_0 && header1->magic[1] == PSF1_MAGIC_1)
		return 1;
	else if (header2->magic[0] == PSF2_MAGIC_0 && header2->magic[1] == PSF2_MAGIC_1 &&
		 header2->magic[2] == PSF2_MAGIC_2 && header2->magic[3] == PSF2_MAGIC_3)
		return 2;
	else
		return 0;
}

struct gfx_font *psf_parse(char *data)
{
	int version = psf_verify(data);

	char *chars;
	int height;
	int width;
	int char_size;

	if (version == 1) {
		chars = data + sizeof(struct psf1_header);
		height = ((struct psf1_header *)data)->char_size;
		width = 8;
		char_size = ((struct psf1_header *)data)->char_size;
	} else if (version == 2) {
		chars = data + ((struct psf2_header *)data)->size;
		height = ((struct psf2_header *)data)->height;
		width = ((struct psf2_header *)data)->width;
		char_size = ((struct psf2_header *)data)->char_size;
	} else {
		print("Unknown font!\n");
		return NULL;
	}

	struct gfx_font *font = malloc(sizeof(*font));
	font->raw = data;
	font->chars = chars;
	font->size.x = width;
	font->size.y = height;
	font->char_size = char_size;

	return font;
}