2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
2002-05-23 19:15:32 +00:00
|
|
|
#include <inttypes.h>
|
2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
#include "skin.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "cut.h"
|
2002-02-23 15:12:55 +00:00
|
|
|
#include "../../mp_msg.h"
|
2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
int items;
|
|
|
|
|
2002-05-28 11:55:17 +00:00
|
|
|
bmpFont * Fonts[26] = { NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL };
|
2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
int fntAddNewFont( char * name )
|
|
|
|
{
|
|
|
|
int id;
|
2002-05-28 11:55:17 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for( id=0;id<26;id++ )
|
|
|
|
if ( !Fonts[id] ) break;
|
|
|
|
|
|
|
|
if ( id == 25 ) return -2;
|
|
|
|
|
|
|
|
if ( ( Fonts[id]=calloc( 1,sizeof( bmpFont ) ) ) == NULL ) return -1;
|
|
|
|
|
2001-08-25 21:04:29 +00:00
|
|
|
strcpy( Fonts[id]->name,name );
|
2002-05-28 11:55:17 +00:00
|
|
|
for ( i=0;i<256;i++ )
|
|
|
|
Fonts[id]->Fnt[i].x=Fonts[id]->Fnt[i].y=Fonts[id]->Fnt[i].sx=Fonts[id]->Fnt[i].sy=-1;
|
|
|
|
|
2001-08-25 21:04:29 +00:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2001-09-01 19:57:44 +00:00
|
|
|
void fntFreeFont( void )
|
2001-08-25 21:04:29 +00:00
|
|
|
{
|
2001-09-01 19:57:44 +00:00
|
|
|
int i;
|
2002-05-28 11:55:17 +00:00
|
|
|
for( i=0;i < 25;i++ )
|
2001-09-01 19:57:44 +00:00
|
|
|
{
|
|
|
|
if ( Fonts[i] )
|
|
|
|
{
|
|
|
|
if ( Fonts[i]->Bitmap.Image ) free( Fonts[i]->Bitmap.Image );
|
|
|
|
free( Fonts[i] );
|
|
|
|
Fonts[i]=NULL;
|
|
|
|
}
|
|
|
|
}
|
2001-08-25 21:04:29 +00:00
|
|
|
}
|
|
|
|
|
2002-05-28 11:55:17 +00:00
|
|
|
int fntRead( char * path,char * fname )
|
2001-08-25 21:04:29 +00:00
|
|
|
{
|
|
|
|
FILE * f;
|
|
|
|
unsigned char tmp[512];
|
|
|
|
unsigned char * ptmp;
|
|
|
|
unsigned char command[32];
|
|
|
|
unsigned char param[256];
|
2002-02-23 15:12:55 +00:00
|
|
|
int c,linenumber = 0;
|
2002-05-28 11:55:17 +00:00
|
|
|
int id = fntAddNewFont( fname );
|
|
|
|
|
|
|
|
if ( id < 0 ) return id;
|
2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
strcpy( tmp,path ); strcat( tmp,fname ); strcat( tmp,".fnt" );
|
2002-05-28 11:55:17 +00:00
|
|
|
if ( ( f=fopen( tmp,"rt" ) ) == NULL )
|
|
|
|
{ free( Fonts[id] ); return -3; }
|
|
|
|
|
2001-08-25 21:04:29 +00:00
|
|
|
while ( !feof( f ) )
|
|
|
|
{
|
|
|
|
fgets( tmp,255,f ); linenumber++;
|
|
|
|
|
|
|
|
c=tmp[ strlen( tmp ) - 1 ]; if ( ( c == '\n' )||( c == '\r' ) ) tmp[ strlen( tmp ) - 1 ]=0;
|
|
|
|
c=tmp[ strlen( tmp ) - 1 ]; if ( ( c == '\n' )||( c == '\r' ) ) tmp[ strlen( tmp ) - 1 ]=0;
|
2002-02-23 15:12:55 +00:00
|
|
|
for ( c=0;c < (int)strlen( tmp );c++ )
|
2002-05-28 11:55:17 +00:00
|
|
|
if ( tmp[c] == ';' ) { tmp[c]=0; break; }
|
|
|
|
if ( !tmp[0] ) continue;
|
2001-08-25 21:04:29 +00:00
|
|
|
ptmp=strdelspacesbeforecommand( tmp );
|
2002-05-28 11:55:17 +00:00
|
|
|
if ( !tmp[0] ) continue;
|
2001-08-25 21:04:29 +00:00
|
|
|
ptmp=strswap( ptmp,'\t',' ' );
|
|
|
|
ptmp=strdelspaces( ptmp );
|
|
|
|
cutItem( ptmp,command,'=',0 ); cutItem( ptmp,param,'=',1 );
|
|
|
|
if ( command[0] == '"' )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
cutItem( command,command,'"',1 );
|
|
|
|
i=(int)command[0];
|
|
|
|
cutItem( param,tmp,',',0 ); Fonts[id]->Fnt[i].x=atoi( tmp );
|
|
|
|
cutItem( param,tmp,',',1 ); Fonts[id]->Fnt[i].y=atoi( tmp );
|
|
|
|
cutItem( param,tmp,',',2 ); Fonts[id]->Fnt[i].sx=atoi( tmp );
|
|
|
|
cutItem( param,tmp,',',3 ); Fonts[id]->Fnt[i].sy=atoi( tmp );
|
2002-02-23 15:12:55 +00:00
|
|
|
mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"[font] char: '%s' params: %d,%d %dx%d\n",command,Fonts[id]->Fnt[i].x,Fonts[id]->Fnt[i].y,Fonts[id]->Fnt[i].sx,Fonts[id]->Fnt[i].sy );
|
2001-08-25 21:04:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !strcmp( command,"image" ) )
|
|
|
|
{
|
|
|
|
strcpy( tmp,path ); strcat( tmp,param );
|
2002-02-23 15:12:55 +00:00
|
|
|
mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"[font] font imagefile: %s\n",tmp );
|
2002-05-28 11:55:17 +00:00
|
|
|
if ( skinBPRead( tmp,&Fonts[id]->Bitmap ) ) return -4;
|
2001-08-25 21:04:29 +00:00
|
|
|
}
|
|
|
|
}
|
2002-05-28 11:55:17 +00:00
|
|
|
}
|
|
|
|
|
2001-08-25 21:04:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fntFindID( char * name )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for ( i=0;i < 25;i++ )
|
2002-05-28 11:55:17 +00:00
|
|
|
if ( Fonts[i] )
|
|
|
|
if ( !strcmp( name,Fonts[i]->name ) ) return i;
|
2001-08-25 21:04:29 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fntTextWidth( int id,char * str )
|
|
|
|
{
|
|
|
|
int size = 0;
|
|
|
|
int i;
|
2002-05-28 11:55:17 +00:00
|
|
|
|
|
|
|
if ( ( !Fonts[id] )||( !str[0] ) ) return 0;
|
|
|
|
|
|
|
|
for ( i=0;i < (unsigned int)strlen( str );i++ )
|
2002-09-10 12:44:47 +00:00
|
|
|
{
|
|
|
|
unsigned char c = (unsigned char)str[i];
|
|
|
|
if ( Fonts[id]->Fnt[c].sx == -1 ) c = ' ';
|
|
|
|
size+= Fonts[id]->Fnt[ c ].sx;
|
|
|
|
}
|
2001-08-25 21:04:29 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fntTextHeight( int id,char * str )
|
|
|
|
{
|
|
|
|
int max = 0,i;
|
2002-05-28 11:55:17 +00:00
|
|
|
|
|
|
|
if ( ( !Fonts[id] )||( !str[0] ) ) return 0;
|
|
|
|
|
2002-02-23 15:12:55 +00:00
|
|
|
for ( i=0;i < (int)strlen( str );i++ )
|
2002-05-28 11:55:17 +00:00
|
|
|
{
|
2002-09-10 12:44:47 +00:00
|
|
|
int h;
|
|
|
|
unsigned char c = (unsigned char)str[i];
|
|
|
|
if ( Fonts[id]->Fnt[c].sx == -1 ) c = ' ';
|
|
|
|
h = Fonts[id]->Fnt[c].sy;
|
2002-05-28 11:55:17 +00:00
|
|
|
if ( h > max ) max=h;
|
|
|
|
}
|
2001-08-25 21:04:29 +00:00
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
|
|
|
txSample * fntRender( int id,int px,int sx,char * fmt,... )
|
|
|
|
{
|
|
|
|
txSample * tmp = NULL;
|
2002-02-24 19:34:52 +00:00
|
|
|
txSample tmp2;
|
2001-08-25 21:04:29 +00:00
|
|
|
char p[512];
|
|
|
|
va_list ap;
|
2002-05-23 14:46:08 +00:00
|
|
|
uint32_t * ibuf;
|
|
|
|
uint32_t * obuf;
|
2001-08-25 21:04:29 +00:00
|
|
|
int i,x,y;
|
|
|
|
int oy = 0, ox = 0, dx = 0;
|
|
|
|
|
|
|
|
va_start( ap,fmt );
|
|
|
|
vsnprintf( p,512,fmt,ap );
|
|
|
|
va_end( ap );
|
|
|
|
|
|
|
|
if ( ( !Fonts[id] )||
|
|
|
|
( !strlen( p ) )||
|
|
|
|
( !fntTextWidth( id,p ) )||
|
|
|
|
( (tmp=malloc( sizeof( txSample ) )) == NULL ) ) return NULL;
|
2002-05-28 11:55:17 +00:00
|
|
|
|
2001-08-25 21:04:29 +00:00
|
|
|
tmp->Width=fntTextWidth( id,p );
|
|
|
|
tmp->Height=fntTextHeight( id,p );
|
|
|
|
tmp->BPP=32;
|
|
|
|
tmp->ImageSize=tmp->Width * tmp->Height * 4;
|
|
|
|
if ( ( tmp->Image=malloc( tmp->ImageSize ) ) == NULL ) return NULL;
|
2002-05-23 14:46:08 +00:00
|
|
|
obuf=(uint32_t *)tmp->Image;
|
|
|
|
ibuf=(uint32_t *)Fonts[id]->Bitmap.Image;
|
2002-02-23 15:12:55 +00:00
|
|
|
for ( i=0;i < (int)strlen( p );i++ )
|
2001-08-25 21:04:29 +00:00
|
|
|
{
|
2002-05-28 11:55:17 +00:00
|
|
|
unsigned int c = (unsigned char)p[i];
|
|
|
|
if ( Fonts[id]->Fnt[c].sx == -1 ) c=32;
|
2001-08-25 21:04:29 +00:00
|
|
|
for ( oy=0,y=Fonts[id]->Fnt[c].y;y < Fonts[id]->Fnt[c].y + Fonts[id]->Fnt[c].sy; y++,oy++ )
|
2002-05-28 11:55:17 +00:00
|
|
|
for ( ox=0,x=Fonts[id]->Fnt[c].x;x < Fonts[id]->Fnt[c].x + Fonts[id]->Fnt[c].sx; x++,ox++ )
|
|
|
|
obuf[ oy * tmp->Width + dx + ox ]=ibuf[ y * Fonts[id]->Bitmap.Width + x ];
|
2001-08-25 21:04:29 +00:00
|
|
|
dx+=Fonts[id]->Fnt[c].sx;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ( sx > 0 )&&( sx < tmp->Width ) )
|
|
|
|
{
|
|
|
|
tmp2.ImageSize=sx * tmp->Height * 4;
|
|
|
|
if ( ( tmp2.Image=malloc( tmp2.ImageSize ) ) == NULL ) { free( tmp->Image ); return NULL; }
|
|
|
|
|
2002-05-23 14:46:08 +00:00
|
|
|
obuf=(uint32_t *)tmp->Image;
|
|
|
|
ibuf=(uint32_t *)tmp2.Image;
|
2002-05-01 09:29:06 +00:00
|
|
|
oy=0;
|
2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
for ( y=0;y < tmp->Height;y++ )
|
|
|
|
{
|
|
|
|
ox=px;
|
2002-05-01 09:29:06 +00:00
|
|
|
dx=y * tmp->Width;
|
2001-08-25 21:04:29 +00:00
|
|
|
for ( x=0;x < sx;x++ )
|
|
|
|
{
|
|
|
|
ibuf[oy++]=obuf[dx + ox++];
|
|
|
|
if ( ox >= tmp->Width ) ox=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free( tmp->Image ); tmp->Width=sx; tmp->ImageSize=tmp2.ImageSize; tmp->Image=tmp2.Image;
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|