blob: bb8f12edc59763e7183b01b2bb5384a8673dbe5e (
plain)
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
|
#include "fmplayer_fontrom.h"
#include "fmdsp/font.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "fmdsp/fontrom_shinonome.inc"
#define DATADIR "/.local/share/98fmplayer/"
static struct {
uint8_t fontrombuf[FONT_ROM_FILESIZE];
} g;
void fmplayer_font_rom_load(struct fmdsp_font *font) {
const char *path = "font.rom";
const char *home = getenv("HOME");
char *dpath = 0;
FILE *f = 0;
fmdsp_font_from_font_rom(font, g.fontrombuf);
if (home) {
const char *datadir = DATADIR;
dpath = malloc(strlen(home)+strlen(datadir)+strlen(path)+1);
if (dpath) {
strcpy(dpath, home);
strcat(dpath, datadir);
strcat(dpath, path);
path = dpath;
}
}
f = fopen(path, "r");
free(dpath);
if (!f) goto err;
if (fseek(f, 0, SEEK_END) != 0) goto err;
long size = ftell(f);
if (size != FONT_ROM_FILESIZE) goto err;
if (fseek(f, 0, SEEK_SET) != 0) goto err;
if (fread(g.fontrombuf, 1, FONT_ROM_FILESIZE, f) != FONT_ROM_FILESIZE) {
goto err;
}
fclose(f);
return;
err:
if (f) fclose(f);
fmdsp_font_from_font_rom(font, fmdsp_shinonome_font_rom);
}
|