root / proj / src / font.c @ 270
History | View | Annotate | Download (5.94 KB)
1 |
#include <lcom/lcf.h> |
---|---|
2 |
|
3 |
#include "font.h" |
4 |
|
5 |
#include "xpm_utils.h" |
6 |
#include "graph.h" |
7 |
#include "utils.h" |
8 |
#include "errors.h" |
9 |
#include <assert.h> |
10 |
|
11 |
struct glyph{
|
12 |
uint16_t w, h; |
13 |
uint8_t *map; |
14 |
}; |
15 |
typedef struct glyph glyph_t; |
16 |
static glyph_t* (glyph_ctor)(const char **xpm){ |
17 |
if(xpm == NULL) return NULL; |
18 |
glyph_t *ret = malloc(sizeof(glyph_t));
|
19 |
if(ret == NULL) return NULL; |
20 |
enum xpm_image_type type = XPM_8_8_8_8;
|
21 |
xpm_image_t img; |
22 |
ret->map = NULL;
|
23 |
uint8_t *map = xpm_load((xpm_map_t)xpm, type, &img); |
24 |
if(map == NULL){ |
25 |
free(ret); |
26 |
return NULL; |
27 |
} |
28 |
ret->w = img.width; |
29 |
ret->h = img.height; |
30 |
ret->map = malloc(ret->w*ret->h*sizeof(uint8_t));
|
31 |
if(ret->map == NULL){ |
32 |
free(ret); |
33 |
return NULL; |
34 |
} |
35 |
for(unsigned i = 0; i < ret->w*ret->h; ++i){ |
36 |
ret->map[i] = map[4*i+3]; |
37 |
} |
38 |
return ret;
|
39 |
} |
40 |
static void (glyph_dtor)(glyph_t *p){ |
41 |
if(p == NULL) return; |
42 |
free(p->map); |
43 |
free(p); |
44 |
} |
45 |
static int (glyph_draw_to_alpha_buffer)(const glyph_t *p, int16_t x, int16_t y, uint8_t *alp_buf, uint16_t W, uint16_t H){ |
46 |
if(p == NULL) return NULL_PTR; |
47 |
for(int16_t h = 0; h < p->h; ++h){ |
48 |
for(int16_t w = 0; w < p->w; ++w){ |
49 |
uint8_t a = *(p->map + w + h*p->w); |
50 |
int16_t x_ = x+w, y_ = y-p->h+h; |
51 |
unsigned pos = x_ +y_*W;
|
52 |
alp_buf[pos] = a; |
53 |
} |
54 |
} |
55 |
return SUCCESS;
|
56 |
} |
57 |
|
58 |
struct font{
|
59 |
size_t nchars; |
60 |
glyph_t **glyphs; |
61 |
}; |
62 |
#include "sprite.h" |
63 |
#include "rectangle.h" |
64 |
font_t* (font_ctor)(const char *s){ |
65 |
font_t *ret = malloc(sizeof(font_t));
|
66 |
if(ret == NULL) return NULL; |
67 |
ret->nchars = 128;
|
68 |
ret->glyphs = malloc(ret->nchars*sizeof(glyph_t*));
|
69 |
if(ret->glyphs == NULL){ |
70 |
free(ret->glyphs); |
71 |
free(ret); |
72 |
return NULL; |
73 |
} |
74 |
int good = false; |
75 |
char filepath[1024]; |
76 |
for(size_t i = 0; i < ret->nchars; ++i){ |
77 |
sprintf(filepath, "%s/ascii%03d.xpm2", s, i);
|
78 |
char **xpm = xpm_load_xpm2(filepath);
|
79 |
ret->glyphs[i] = glyph_ctor((const char**)xpm); |
80 |
if(ret->glyphs[i] != NULL) good = true; |
81 |
} |
82 |
if(good) return ret; |
83 |
else{
|
84 |
//font_dtor(ret);
|
85 |
return NULL; |
86 |
} |
87 |
} |
88 |
void (font_dtor)(font_t *p){
|
89 |
if(p == NULL) return; |
90 |
for(size_t i = 0; i < p->nchars; ++i) |
91 |
glyph_dtor(p->glyphs[i]); |
92 |
free(p->glyphs); |
93 |
free(p); |
94 |
} |
95 |
|
96 |
struct text{
|
97 |
const font_t *fnt;
|
98 |
char *txt;
|
99 |
int16_t x, y; |
100 |
int size;
|
101 |
uint32_t color; |
102 |
enum text_valign valign;
|
103 |
enum text_halign halign;
|
104 |
}; |
105 |
text_t* (text_ctor)(const font_t *fnt, const char *txt){ |
106 |
if(fnt == NULL) return NULL; |
107 |
text_t *ret = malloc(sizeof(text_t));
|
108 |
if(ret == NULL) return NULL; |
109 |
ret->fnt = fnt; |
110 |
ret->txt = NULL;
|
111 |
text_set_text(ret, txt); |
112 |
ret->x = 0;
|
113 |
ret->y = 0;
|
114 |
ret->size = 25;
|
115 |
ret->color = GRAPH_BLACK; |
116 |
ret->valign = text_valign_top; |
117 |
ret->halign = text_halign_left; |
118 |
return ret;
|
119 |
} |
120 |
void (text_dtor)(text_t *p){
|
121 |
if(p == NULL) return; |
122 |
free(p->txt); |
123 |
free(p); |
124 |
} |
125 |
void (text_set_text) (text_t *p, const char *txt){ |
126 |
size_t sz = strlen(txt); |
127 |
p->txt = realloc(p->txt, (sz+1)*sizeof(char)); |
128 |
if(p->txt == NULL) return; |
129 |
strcpy(p->txt, txt); |
130 |
} |
131 |
char* (text_get_string)(const text_t *p){return p->txt; } |
132 |
void (text_set_pos) (text_t *p, int16_t x, int16_t y ){ p->x = x; p->y = y; }
|
133 |
void (text_set_size) (text_t *p, unsigned size ){ p->size = size ; } |
134 |
void (text_set_color) (text_t *p, uint32_t color ){ p->color = color ; }
|
135 |
void (text_set_valign)(text_t *p, enum text_valign valign){ p->valign = valign; } |
136 |
void (text_set_halign)(text_t *p, enum text_halign halign){ p->halign = halign; } |
137 |
|
138 |
int (text_draw)(const text_t *p){ |
139 |
if(p == NULL) return NULL_PTR; |
140 |
int ret = SUCCESS;
|
141 |
// Get buffer with rescaled text
|
142 |
uint8_t *alp_new_buf = NULL;
|
143 |
uint16_t newH, newW;{ |
144 |
const size_t len = strlen(p->txt);
|
145 |
uint16_t W = 0, H = 0; { |
146 |
for(size_t i = 0; i < len; ++i){ |
147 |
const glyph_t *g = p->fnt->glyphs[(size_t)p->txt[i]];
|
148 |
if(g != NULL){ W += g->w; H = max(H, g->h); } |
149 |
} |
150 |
} |
151 |
uint8_t *alp_buf = malloc(W*H); |
152 |
if(alp_buf == NULL) return ALLOC_ERROR;{ |
153 |
int16_t y = H; |
154 |
int16_t x = 0;
|
155 |
for(size_t i = 0; i < len; ++i){ |
156 |
const glyph_t *g = p->fnt->glyphs[(size_t)p->txt[i]];
|
157 |
if(g != NULL){ |
158 |
if((ret = glyph_draw_to_alpha_buffer(g, x, y, alp_buf, W, H))) return ret; |
159 |
x += g->w; |
160 |
} |
161 |
} |
162 |
} |
163 |
|
164 |
double factor = (double)p->size/(double)H; |
165 |
|
166 |
newH = H*factor; |
167 |
newW = W*factor; |
168 |
alp_new_buf = malloc(newW*newH); |
169 |
if(alp_new_buf == NULL) return ALLOC_ERROR; |
170 |
|
171 |
for(size_t newy = 0; newy < newH; ++newy){ |
172 |
size_t y = newy/factor; |
173 |
for(size_t newx = 0; newx < newW; ++newx){ |
174 |
size_t x = newx/factor; |
175 |
*(alp_new_buf+newx+newy*newW) = *(alp_buf+x+y*W); |
176 |
} |
177 |
} |
178 |
free(alp_buf); |
179 |
|
180 |
|
181 |
} |
182 |
// Get initial value of x
|
183 |
int16_t initx;{ |
184 |
switch(p->halign){
|
185 |
case text_halign_left : initx = p->x ; break; |
186 |
case text_halign_center: initx = p->x - newW/2; break; |
187 |
case text_halign_right : initx = p->x - newW ; break; |
188 |
default: return LOGIC_ERROR; |
189 |
} |
190 |
} |
191 |
// Get initial value of y
|
192 |
int16_t inity;{ |
193 |
switch(p->valign){
|
194 |
case text_valign_top : inity = p->y ; break; |
195 |
case text_valign_center: inity = p->y - newH/2; break; |
196 |
case text_valign_bottom: inity = p->y - newH ; break; |
197 |
default: return LOGIC_ERROR; |
198 |
} |
199 |
} |
200 |
// Draw text
|
201 |
for(int16_t newy = 0; newy < newH; ++newy){ |
202 |
for(int16_t newx = 0; newx < newW; ++newx){ |
203 |
uint8_t a = *(alp_new_buf+newx+newy*newW); |
204 |
if(a < 0x7F) graph_set_pixel(initx+newx,inity+newy,p->color); |
205 |
} |
206 |
} |
207 |
free(alp_new_buf); |
208 |
return SUCCESS;
|
209 |
} |