reorganized file layout (part 1: moves and renames)
[org.ibex.core.git] / src / org / ibex / graphics / Freetype.c
1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
2
3 #include <unistd.h>
4 #include <freetype/freetype.h>
5
6 /* NOTE: _user_info is defined in crt0.c. It points to a 4096 byte
7    block of memory that contains 1024 32-bit values that can be set
8    with the setUserInfo() method of MIPSEmu.
9
10    The VM will pause after initialization.  When unpaused, it expects
11    that:
12
13      user_info[0] = ptr to font byte stream in memory
14      user_info[1] = length of font stream
15      user_info[2] = unicode index of first glyph to render
16      user_info[3] = unicode index of last glyph to render
17      user_info[4] = point size to render in
18
19    The VM will then iterate over the requested glyphs, performing the
20    following actions for each glyph:
21    
22      - render the glyph
23      - store the address of the glyph bitmap in user_info[5]
24      - store the width of the glyph bitmap in user_info[6]
25      - store the height of the glyph bitmap in user_info[7]
26      - store the font's ascender into user_info[8]
27      - store the font's height into user_info[9]
28      - store the glyph's ascender into user_info[10]
29      - store the glyph's advance into user_info[11]
30
31    The VM will then pause after each glyph.  The VM should not be
32    unpaused after the last glyph until the next glyph set has been
33    configured in user_info (ie it does not pause twice).
34
35 */
36
37 extern char *user_info[1024];
38
39 #define FT_Check(expr) do { \
40     if((expr) != 0) { \
41         errprint(#expr " failed\n"); \
42         exit(EXIT_FAILURE); \
43     } \
44 } while(0)
45
46 #define max(a, b) ((a) > (b) ? (a) : (b))
47 #define min(a, b) ((a) < (b) ? (a) : (b))
48
49 static int errprint(const char *s) {
50     int l = strlen(s);
51     int n;
52     while(l) {
53         n = write(STDERR_FILENO,s,l);
54         if(n < 0) return n;
55         l -= n;
56         s += n;
57     }
58     return 0;
59 }
60
61 extern void _pause();
62
63 int freetype_main() {
64     char *fontdata;
65     int glyph_index;
66     short charcode;
67     FT_Library  library;   /* handle to library     */
68     FT_Face     face;      /* handle to face object */
69
70     FT_Check(FT_Init_FreeType(&library));
71     FT_Check(FT_New_Memory_Face(library, user_info[0], (int)user_info[1], 0, &face));
72
73     for(;;) {
74       
75         _pause();
76         FT_Check(FT_Set_Char_Size(face, 0, ((int)user_info[4]) * 64, 72, 72));
77         for(charcode = (int)user_info[2]; charcode <= (int)user_info[3]; charcode++) {
78
79             glyph_index = FT_Get_Char_Index(face, charcode);
80             FT_Check(FT_Load_Glyph(face, glyph_index, FT_LOAD_DEFAULT | FT_LOAD_FORCE_AUTOHINT));
81             FT_Check(FT_Render_Glyph(face->glyph, FT_RENDER_MODE_NORMAL));
82
83             user_info[5]  = (char*)face->glyph->bitmap.buffer;
84             user_info[6]  = (char*)face->glyph->bitmap.width;
85             user_info[7]  = (char*)face->glyph->bitmap.rows;
86             user_info[8]  = (char*)(face->size->metrics.ascender >> 6);
87             user_info[9]  = (char*)((-1 * face->size->metrics.descender) >> 6);
88             user_info[10] = (char*)(face->glyph->metrics.horiBearingY >> 6);
89             user_info[11] = (char*)(face->glyph->advance.x >> 6);
90
91         }
92     }
93 }
94
95
96 // Kerning code; add back in later
97 /*
98 if (old_glyph_index != -1) {
99   if (FT_HAS_KERNING(face)) {
100     FT_Check(FT_Get_Kerning(face, old_glyph_index, glyph_index, 0, &kerning));
101     x += kerning.x >> 6;
102   } else {
103     x += face->glyph->advance.x >> 6;
104   }
105 }
106 old_glyph_index = glyph_index;
107 */