10 #include "font_load.h"
13 extern char *get_path ( char * );
15 raw_file
* load_raw(char *name
,int verbose
){
17 raw_file
* raw
=malloc(sizeof(raw_file
));
18 unsigned char head
[32];
19 FILE *f
=fopen(name
,"rb");
20 if(!f
) goto err_out
; // can't open
21 if(fread(head
,32,1,f
)<1) goto err_out
; // too small
22 if(memcmp(head
,"mhwanh",6)) goto err_out
; // not raw file
23 raw
->w
=head
[8]*256+head
[9];
24 raw
->h
=head
[10]*256+head
[11];
25 raw
->c
=head
[12]*256+head
[13];
26 if(raw
->w
== 0) // 2 bytes were not enough for the width... read 4 bytes from the end of the header
27 raw
->w
= ((head
[28]*0x100 + head
[29])*0x100 + head
[30])*0x100 + head
[31];
28 if(raw
->c
>256) goto err_out
; // too many colors!?
29 mp_msg(MSGT_OSD
, MSGL_DBG2
, "RAW: %s %d x %d, %d colors\n",name
,raw
->w
,raw
->h
,raw
->c
);
31 raw
->pal
=malloc(raw
->c
*3);
32 fread(raw
->pal
,3,raw
->c
,f
);
38 raw
->bmp
=malloc(raw
->h
*raw
->w
*bpp
);
39 fread(raw
->bmp
,raw
->h
*raw
->w
*bpp
,1,f
);
50 extern int sub_unicode
;
52 font_desc_t
* read_font_desc(char* fname
,float factor
,int verbose
){
53 unsigned char sor
[1024];
54 unsigned char sor2
[1024];
66 desc
=malloc(sizeof(font_desc_t
));if(!desc
) goto fail_out
;
67 memset(desc
,0,sizeof(font_desc_t
));
69 f
=fopen(fname
,"rt");if(!f
){ mp_msg(MSGT_OSD
, MSGL_V
, "font: can't open file: %s\n",fname
); goto fail_out
;}
71 i
= strlen (fname
) - 9;
72 if ((dn
= malloc(i
+1))){
73 strncpy (dn
, fname
, i
);
77 desc
->fpath
= dn
; // search in the same dir as fonts.desc
79 // desc->fpath=get_path("font/");
80 // if (stat(desc->fpath, &fstate)!=0) desc->fpath=DATADIR"/font";
85 // set up some defaults, and erase table
89 for(i
=0;i
<65536;i
++) desc
->start
[i
]=desc
->width
[i
]=desc
->font
[i
]=-1;
93 while(fgets(sor
,1020,f
)){
97 unsigned char *d
=sor2
;
102 /* skip files that look like: TTF (0x00, 0x01), PFM (0x00, 0x01), PFB
103 * (0x80, 0x01), PCF (0x01, 0x66), fon ("MZ"), gzipped (0x1f, 0x8b) */
106 if (!sor
[0] || sor
[1] == 1 || (sor
[0] == 'M' && sor
[1] == 'Z') || (sor
[0] == 0x1f && sor
[1] == 0x8b) || (sor
[0] == 1 && sor
[1] == 0x66)) {
107 mp_msg(MSGT_OSD
, MSGL_ERR
, "%s doesn't look like a font description, ignoring.\n", fname
);
116 if(c
==0 || c
==13 || c
==10) break;
118 if(c
==39 || c
==34){ id
=c
;continue;} // idezojel
119 if(c
==';' || c
=='#') break;
122 if(ec
==' ') continue;
129 if(id
==c
){ id
=0;continue;} // idezojel
135 if(d
==sor2
) continue; // skip empty lines
138 // printf("params=%d sor=%s\n",pdb,sor);
139 // for(i=0;i<pdb;i++) printf(" param %d = '%s'\n",i,p[i]);
141 if(pdb
==1 && p
[0][0]=='['){
142 int len
=strlen(p
[0]);
143 if(len
&& len
<63 && p
[0][len
-1]==']'){
144 strcpy(section
,p
[0]);
145 mp_msg(MSGT_OSD
, MSGL_DBG2
, "font: Reading section: %s\n",section
);
146 if(strcmp(section
,"[files]")==0){
148 if(fontdb
>=16){ mp_msg(MSGT_OSD
, MSGL_ERR
, "font: Too many bitmaps defined.\n");goto fail_out
;}
154 if(strcmp(section
,"[fpath]")==0){
157 free (desc
->fpath
); // release previously allocated memory
158 desc
->fpath
=strdup(p
[0]);
163 if(strcmp(section
,"[files]")==0){
164 char *default_dir
=MPLAYER_DATADIR
"/font";
165 if(pdb
==2 && strcmp(p
[0],"alpha")==0){
167 if (!(cp
=malloc(strlen(desc
->fpath
)+strlen(p
[1])+2))) goto fail_out
;
169 snprintf(cp
,strlen(desc
->fpath
)+strlen(p
[1])+2,"%s/%s",
171 if(!((desc
->pic_a
[fontdb
]=load_raw(cp
,verbose
)))){
173 if (!(cp
=malloc(strlen(default_dir
)+strlen(p
[1])+2)))
175 snprintf(cp
,strlen(default_dir
)+strlen(p
[1])+2,"%s/%s",
177 if (!((desc
->pic_a
[fontdb
]=load_raw(cp
,verbose
)))){
178 mp_msg(MSGT_OSD
, MSGL_ERR
, "Can't load font bitmap: %s\n",p
[1]);
186 if(pdb
==2 && strcmp(p
[0],"bitmap")==0){
188 if (!(cp
=malloc(strlen(desc
->fpath
)+strlen(p
[1])+2))) goto fail_out
;
190 snprintf(cp
,strlen(desc
->fpath
)+strlen(p
[1])+2,"%s/%s",
192 if(!((desc
->pic_b
[fontdb
]=load_raw(cp
,verbose
)))){
194 if (!(cp
=malloc(strlen(default_dir
)+strlen(p
[1])+2)))
196 snprintf(cp
,strlen(default_dir
)+strlen(p
[1])+2,"%s/%s",
198 if (!((desc
->pic_b
[fontdb
]=load_raw(cp
,verbose
)))){
199 mp_msg(MSGT_OSD
, MSGL_ERR
, "Can't load font bitmap: %s\n",p
[1]);
209 if(strcmp(section
,"[info]")==0){
210 if(pdb
==2 && strcmp(p
[0],"name")==0){
211 desc
->name
=strdup(p
[1]);
214 if(pdb
==2 && strcmp(p
[0],"descversion")==0){
218 if(pdb
==2 && strcmp(p
[0],"spacewidth")==0){
219 desc
->spacewidth
=atoi(p
[1]);
222 if(pdb
==2 && strcmp(p
[0],"charspace")==0){
223 desc
->charspace
=atoi(p
[1]);
226 if(pdb
==2 && strcmp(p
[0],"height")==0){
227 desc
->height
=atoi(p
[1]);
232 if(strcmp(section
,"[characters]")==0){
235 int start
=atoi(p
[1]);
237 if(sub_unicode
&& (chr
>=0x80)) chr
=(chr
<<8)+p
[0][1];
238 else if(strlen(p
[0])!=1) chr
=strtol(p
[0],NULL
,0);
240 mp_msg(MSGT_OSD
, MSGL_WARN
, "error in font desc: end<start for char '%c'\n",chr
);
242 desc
->start
[chr
]=start
;
243 desc
->width
[chr
]=end
-start
+1;
244 desc
->font
[chr
]=fontdb
;
245 // printf("char %d '%c' start=%d width=%d\n",chr,chr,desc->start[chr],desc->width[chr]);
251 mp_msg(MSGT_OSD
, MSGL_ERR
, "Syntax error in font desc: %s",sor
);
259 mp_msg(MSGT_OSD
, MSGL_ERR
, "%s is empty or a directory, ignoring.\n", fname
);
263 //printf("font: pos of U = %d\n",desc->start[218]);
265 for(i
=0;i
<=fontdb
;i
++){
266 if(!desc
->pic_a
[i
] || !desc
->pic_b
[i
]){
267 mp_msg(MSGT_OSD
, MSGL_ERR
, "font: Missing bitmap(s) for sub-font #%d\n",i
);
274 int size
=desc
->pic_a
[i
]->w
*desc
->pic_a
[i
]->h
;
276 mp_msg(MSGT_OSD
, MSGL_DBG2
, "font: resampling alpha by factor %5.3f (%d) ",factor
,f
);fflush(stdout
);
278 int x
=desc
->pic_a
[i
]->bmp
[j
]; // alpha
279 int y
=desc
->pic_b
[i
]->bmp
[j
]; // bitmap
285 x
=255-((x
*f
)>>8); // scale
286 //if(x<0) x=0; else if(x>255) x=255;
289 if(x
+y
>255) x
=255-y
; // to avoid overflows
292 //x=((x*f*(255-y))>>16);
293 //x=((x*f*(255-y))>>16)+y;
294 //x=(x*f)>>8;if(x<y) x=y;
300 desc
->pic_a
[i
]->bmp
[j
]=x
;
301 // desc->pic_b[i]->bmp[j]=0; // hack
303 mp_msg(MSGT_OSD
, MSGL_DBG2
, "DONE!\n");
305 if(!desc
->height
) desc
->height
=desc
->pic_a
[i
]->h
;
308 j
='_';if(desc
->font
[j
]<0) j
='?';
311 desc
->start
[i
]=desc
->start
[j
];
312 desc
->width
[i
]=desc
->width
[j
];
313 desc
->font
[i
]=desc
->font
[j
];
316 desc
->width
[' ']=desc
->spacewidth
;
318 mp_msg(MSGT_OSD
, MSGL_V
, "Font %s loaded successfully! (%d chars)\n",fname
,chardb
);
337 read_font_desc("high_arpi.desc",1);