2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <sys/types.h>
28 #include "font_load.h"
31 raw_file
* load_raw(char *name
,int verbose
){
33 raw_file
* raw
=malloc(sizeof(raw_file
));
34 unsigned char head
[32];
35 FILE *f
=fopen(name
,"rb");
36 if(!f
) goto err_out
; // can't open
37 if(fread(head
,32,1,f
)<1) goto err_out
; // too small
38 if(memcmp(head
,"mhwanh",6)) goto err_out
; // not raw file
39 raw
->w
=head
[8]*256+head
[9];
40 raw
->h
=head
[10]*256+head
[11];
41 raw
->c
=head
[12]*256+head
[13];
42 if(raw
->w
== 0) // 2 bytes were not enough for the width... read 4 bytes from the end of the header
43 raw
->w
= ((head
[28]*0x100 + head
[29])*0x100 + head
[30])*0x100 + head
[31];
44 if(raw
->c
>256) goto err_out
; // too many colors!?
45 mp_msg(MSGT_OSD
, MSGL_DBG2
, "RAW: %s %d x %d, %d colors\n",name
,raw
->w
,raw
->h
,raw
->c
);
47 raw
->pal
=malloc(raw
->c
*3);
48 fread(raw
->pal
,3,raw
->c
,f
);
54 raw
->bmp
=malloc(raw
->h
*raw
->w
*bpp
);
55 fread(raw
->bmp
,raw
->h
*raw
->w
*bpp
,1,f
);
66 extern int sub_unicode
;
68 font_desc_t
* read_font_desc(const char* fname
,float factor
,int verbose
){
69 unsigned char sor
[1024];
70 unsigned char sor2
[1024];
82 desc
=malloc(sizeof(font_desc_t
));if(!desc
) goto fail_out
;
83 memset(desc
,0,sizeof(font_desc_t
));
85 f
=fopen(fname
,"rt");if(!f
){ mp_msg(MSGT_OSD
, MSGL_V
, "font: can't open file: %s\n",fname
); goto fail_out
;}
87 i
= strlen (fname
) - 9;
88 if ((dn
= malloc(i
+1))){
89 strncpy (dn
, fname
, i
);
93 desc
->fpath
= dn
; // search in the same dir as fonts.desc
95 // desc->fpath=get_path("font/");
96 // if (stat(desc->fpath, &fstate)!=0) desc->fpath=DATADIR"/font";
101 // set up some defaults, and erase table
105 for(i
=0;i
<65536;i
++) desc
->start
[i
]=desc
->width
[i
]=desc
->font
[i
]=-1;
109 while(fgets(sor
,1020,f
)){
112 unsigned char *s
=sor
;
113 unsigned char *d
=sor2
;
118 /* skip files that look like: TTF (0x00, 0x01), PFM (0x00, 0x01), PFB
119 * (0x80, 0x01), PCF (0x01, 0x66), fon ("MZ"), gzipped (0x1f, 0x8b) */
122 if (!sor
[0] || sor
[1] == 1 || (sor
[0] == 'M' && sor
[1] == 'Z') || (sor
[0] == 0x1f && sor
[1] == 0x8b) || (sor
[0] == 1 && sor
[1] == 0x66)) {
123 mp_msg(MSGT_OSD
, MSGL_ERR
, "%s doesn't look like a bitmap font description, ignoring.\n", fname
);
132 if(c
==0 || c
==13 || c
==10) break;
134 if(c
==39 || c
==34){ id
=c
;continue;} // idezojel
135 if(c
==';' || c
=='#') break;
138 if(ec
==' ') continue;
145 if(id
==c
){ id
=0;continue;} // idezojel
151 if(d
==sor2
) continue; // skip empty lines
154 // printf("params=%d sor=%s\n",pdb,sor);
155 // for(i=0;i<pdb;i++) printf(" param %d = '%s'\n",i,p[i]);
157 if(pdb
==1 && p
[0][0]=='['){
158 int len
=strlen(p
[0]);
159 if(len
&& len
<63 && p
[0][len
-1]==']'){
160 strcpy(section
,p
[0]);
161 mp_msg(MSGT_OSD
, MSGL_DBG2
, "font: Reading section: %s\n",section
);
162 if(strcmp(section
,"[files]")==0){
164 if(fontdb
>=16){ mp_msg(MSGT_OSD
, MSGL_ERR
, "font: Too many bitmaps defined.\n");goto fail_out
;}
170 if(strcmp(section
,"[fpath]")==0){
173 free (desc
->fpath
); // release previously allocated memory
174 desc
->fpath
=strdup(p
[0]);
180 #define FONT_PATH_SEP ""
182 //! path seperator for font paths, may not be more than one character
183 #define FONT_PATH_SEP "/"
186 if(strcmp(section
,"[files]")==0){
187 char *default_dir
=MPLAYER_DATADIR FONT_PATH_SEP
"font";
188 if(pdb
==2 && strcmp(p
[0],"alpha")==0){
190 if (!(cp
=malloc(strlen(desc
->fpath
)+strlen(p
[1])+2))) goto fail_out
;
192 snprintf(cp
,strlen(desc
->fpath
)+strlen(p
[1])+2,"%s" FONT_PATH_SEP
"%s",
194 if(!((desc
->pic_a
[fontdb
]=load_raw(cp
,verbose
)))){
196 if (!(cp
=malloc(strlen(default_dir
)+strlen(p
[1])+2)))
198 snprintf(cp
,strlen(default_dir
)+strlen(p
[1])+2,"%s" FONT_PATH_SEP
"%s",
200 if (!((desc
->pic_a
[fontdb
]=load_raw(cp
,verbose
)))){
201 mp_msg(MSGT_OSD
, MSGL_ERR
, "Can't load font bitmap: %s\n",p
[1]);
209 if(pdb
==2 && strcmp(p
[0],"bitmap")==0){
211 if (!(cp
=malloc(strlen(desc
->fpath
)+strlen(p
[1])+2))) goto fail_out
;
213 snprintf(cp
,strlen(desc
->fpath
)+strlen(p
[1])+2,"%s" FONT_PATH_SEP
"%s",
215 if(!((desc
->pic_b
[fontdb
]=load_raw(cp
,verbose
)))){
217 if (!(cp
=malloc(strlen(default_dir
)+strlen(p
[1])+2)))
219 snprintf(cp
,strlen(default_dir
)+strlen(p
[1])+2,"%s" FONT_PATH_SEP
"%s",
221 if (!((desc
->pic_b
[fontdb
]=load_raw(cp
,verbose
)))){
222 mp_msg(MSGT_OSD
, MSGL_ERR
, "Can't load font bitmap: %s\n",p
[1]);
232 if(strcmp(section
,"[info]")==0){
233 if(pdb
==2 && strcmp(p
[0],"name")==0){
234 desc
->name
=strdup(p
[1]);
237 if(pdb
==2 && strcmp(p
[0],"descversion")==0){
241 if(pdb
==2 && strcmp(p
[0],"spacewidth")==0){
242 desc
->spacewidth
=atoi(p
[1]);
245 if(pdb
==2 && strcmp(p
[0],"charspace")==0){
246 desc
->charspace
=atoi(p
[1]);
249 if(pdb
==2 && strcmp(p
[0],"height")==0){
250 desc
->height
=atoi(p
[1]);
255 if(strcmp(section
,"[characters]")==0){
258 int start
=atoi(p
[1]);
260 if(sub_unicode
&& (chr
>=0x80)) chr
=(chr
<<8)+p
[0][1];
261 else if(strlen(p
[0])!=1) chr
=strtol(p
[0],NULL
,0);
263 mp_msg(MSGT_OSD
, MSGL_WARN
, "error in font desc: end<start for char '%c'\n",chr
);
265 desc
->start
[chr
]=start
;
266 desc
->width
[chr
]=end
-start
+1;
267 desc
->font
[chr
]=fontdb
;
268 // printf("char %d '%c' start=%d width=%d\n",chr,chr,desc->start[chr],desc->width[chr]);
274 mp_msg(MSGT_OSD
, MSGL_ERR
, "Syntax error in font desc: %s",sor
);
282 mp_msg(MSGT_OSD
, MSGL_ERR
, "%s is empty or a directory, ignoring.\n", fname
);
286 //printf("font: pos of U = %d\n",desc->start[218]);
288 for(i
=0;i
<=fontdb
;i
++){
289 if(!desc
->pic_a
[i
] || !desc
->pic_b
[i
]){
290 mp_msg(MSGT_OSD
, MSGL_ERR
, "font: Missing bitmap(s) for sub-font #%d\n",i
);
297 int size
=desc
->pic_a
[i
]->w
*desc
->pic_a
[i
]->h
;
299 mp_msg(MSGT_OSD
, MSGL_DBG2
, "font: resampling alpha by factor %5.3f (%d) ",factor
,f
);fflush(stdout
);
301 int x
=desc
->pic_a
[i
]->bmp
[j
]; // alpha
302 int y
=desc
->pic_b
[i
]->bmp
[j
]; // bitmap
308 x
=255-((x
*f
)>>8); // scale
309 //if(x<0) x=0; else if(x>255) x=255;
312 if(x
+y
>255) x
=255-y
; // to avoid overflows
315 //x=((x*f*(255-y))>>16);
316 //x=((x*f*(255-y))>>16)+y;
317 //x=(x*f)>>8;if(x<y) x=y;
323 desc
->pic_a
[i
]->bmp
[j
]=x
;
324 // desc->pic_b[i]->bmp[j]=0; // hack
326 mp_msg(MSGT_OSD
, MSGL_DBG2
, "DONE!\n");
328 if(!desc
->height
) desc
->height
=desc
->pic_a
[i
]->h
;
331 j
='_';if(desc
->font
[j
]<0) j
='?';
334 desc
->start
[i
]=desc
->start
[j
];
335 desc
->width
[i
]=desc
->width
[j
];
336 desc
->font
[i
]=desc
->font
[j
];
339 desc
->width
[' ']=desc
->spacewidth
;
341 mp_msg(MSGT_OSD
, MSGL_V
, "Bitmap font %s loaded successfully! (%d chars)\n",fname
,chardb
);
357 #ifndef CONFIG_FREETYPE
358 void render_one_glyph(font_desc_t
*desc
, int c
) {}
359 int kerning(font_desc_t
*desc
, int prevc
, int c
) { return 0; }