-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflib.c
200 lines (154 loc) · 3.99 KB
/
flib.c
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
// flib - A TrueType font library for the PSP
//
// Based on the freetype2 tutorials and example code
//
// Copyright 2006 [email protected]
//
// Requirements: PSP graphics library by Psilocybeing
// libpng for PSP
// libfreetype2 for PSP
#include <pspkernel.h>
#include <pspctrl.h>
#include <pspdisplay.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "graphics.h"
#include "flib.h"
#include <ft2build.h>
#include FT_FREETYPE_H
// private
Color font_color = 0xffffffff;
double font_angle = 0.0;
FT_Library library = 0;
FT_Face face = 0;
//private
void render_font(char *text, Image *image, int x, int y);
void draw_bitmap(Image *image, FT_Bitmap *bitmap, FT_Int x, FT_Int y, int width, int height);
void set_font_color(Color color)
{
font_color = color;
}
void set_font_angle(double angle)
{
if(angle >= 360.0 || angle <= -360.0)
font_angle = 0.0;
else if(angle < 0.0)
font_angle = 360.0 - angle;
else
font_angle = angle;
}
int set_font_size(int size)
{
FT_Error error;
if(!face)
return FLIB_ERR_INVALIDFONT;
error = FT_Set_Char_Size( face, size * 64, 0, 100, 0 );
if(error)
return FLIB_ERR_BADSIZE;
return 0;
}
// Note: load_font() returns a void pointer which will be defined in
// a future flib version when support for multiple fonts is added.
// At that time a set_font() function will be added to switch the
// current font face used in all other functions. For now just
// treat the return value as NULL on failure and non-NULL on
// success.
FLIB_FONT load_font(char *filename)
{
FT_Error error;
error = FT_Init_FreeType( &library ); /* initialize library */
if(error)
return 0;
error = FT_New_Face( library, filename, 0, &face );
if(error)
return 0;
FT_Set_Char_Size( face, 14 * 64, 0, 100, 0 ); // set default 14 point size
return (FLIB_FONT) 1;
}
void unload_font(void)
{
FT_Done_Face(face);
FT_Done_FreeType(library);
face = 0;
library = 0;
}
void text_to_screen(char *text, int x, int y)
{
render_font(text, 0, x, y);
}
void text_to_image(char *text, Image *image, int x, int y)
{
render_font(text, image, x, y);
}
void render_font(char *text, Image *image, int x, int y)
{
FT_GlyphSlot slot;
FT_Matrix matrix;
FT_Vector pen;
FT_Error error;
double angle;
int target_height = 272;
int n, num_chars;
if(!text || !*text)
return;
if(image)
target_height = image->textureHeight;
slot = face->glyph;
num_chars = strlen(text);
angle = ( font_angle / 360 ) * 3.14159 * 2;
matrix.xx = (FT_Fixed)(cos(angle) * 0x10000L);
matrix.xy = (FT_Fixed)(-sin(angle) * 0x10000L);
matrix.yx = (FT_Fixed)(sin(angle) * 0x10000L);
matrix.yy = (FT_Fixed)(cos(angle) * 0x10000L);
pen.x = x * 64;
pen.y = (target_height - y) * 64;
for(n = 0; n < num_chars; n++)
{
FT_Set_Transform(face, &matrix, &pen);
error = FT_Load_Char( face, text[n], FT_LOAD_RENDER );
if(error)
continue; /* ignore errors */
if(image)
draw_bitmap(image, &slot->bitmap, slot->bitmap_left,
target_height - slot->bitmap_top, image->imageWidth,
image->imageHeight);
else // to screen
draw_bitmap(0, &slot->bitmap, slot->bitmap_left,
target_height - slot->bitmap_top, 480,
272);
pen.x += slot->advance.x;
pen.y += slot->advance.y;
}
}
void draw_bitmap(Image *image, FT_Bitmap *bitmap, FT_Int x, FT_Int y, int width, int height)
{
FT_Int i, j, p, q;
FT_Int x_max = x + bitmap->width;
FT_Int y_max = y + bitmap->rows;
Color pixel, grey;
int r, g, b;
for(i = x, p = 0; i < x_max; i++, p++)
{
for(j = y, q = 0; j < y_max; j++, q++)
{
if(i >= width || i < 0 || j >= height || j < 0)
continue;
grey = bitmap->buffer[q * bitmap->width + p];
if(grey > 0)
{
r = (grey * R(font_color)) / 255;
g = (grey * G(font_color)) / 255;
b = (grey * B(font_color)) / 255;
pixel = 0xff000000 | (b << 16) | (g << 8) | r;
}
else
pixel = 0;
if(pixel && image)
putPixelImage(pixel, i, j, image);
else if(pixel)
putPixelScreen(pixel, i, j);
}
}
}