09985faa14c13acc060ed1262fd430e3559d5390
[swftools.git] / lib / example / dumpfont.c
1 /* dumpfont.c
2
3    Example for font handling
4
5    This tool dumps font information into C files
6    which can be included to rfxswf applications.
7    This is an easy way for developers to use
8    fonts in applications without dealing with
9    external files.
10
11    Usage: ./dumpfont filename.swf > myfont.c
12
13    Limits: does not parse ST_DEFINEFONT2 
14    
15    Part of the swftools package.
16
17    Copyright (c) 2000, 2001 Rainer Böhme <rfxswf@reflex-studio.de>
18  
19    This file is distributed under the GPL, see file COPYING for details 
20
21 */
22
23 #include <stdio.h>
24 #include <fcntl.h>
25 #include <unistd.h>
26 #include "../rfxswf.h"
27
28 #define PRINTABLE(a) (((a>0x20)&&(a<0xff)&&(a!='\\'))?a:0x20)
29
30 SWF swf;
31
32 void DumpFont(SWFFONT * f,char * name)
33 { int n,i;
34   int*gpos = malloc(sizeof(int*)*f->numchars);
35   memset(gpos,0,sizeof(int*)*f->numchars);
36
37   // Glyph Shapes Data
38
39   n = 0;
40   printf("U8 Glyphs_%s[] = {\n\t  ",name);
41   
42   for (i=0;i<f->numchars;i++)
43     if (f->glyph[i].shape)
44     { SHAPE * s = f->glyph[i].shape;
45       int j,l = (s->bitlen+7)/8;
46       gpos[i] = n;
47
48       for (j=0;j<l;j++)
49       { printf("0x%02x, ",s->data[j]);
50         if ((n&7)==7) printf("\n\t  ");
51         n++;
52       }
53     }
54   printf("0x00 };\n");
55   
56   // SWFFONT function
57
58   printf("\nSWFFONT * Font_%s(U16 id)\n",name);
59   printf("{ SWFFONT * f;\n  int i;\n\n");
60   printf("  if (!(f=malloc(sizeof(SWFFONT)))) return NULL;\n");
61   printf("  memset(f,0x00,sizeof(SWFFONT));\n");
62   printf("  f->id       = id;\n");
63   printf("  f->version  = %d;\n", f->version);
64   printf("  f->name     = strdup(\"%s\");\n",f->name);
65   printf("  f->style    = 0x%02x;\n",f->style);
66   printf("  f->encoding = 0x%02x;\n",f->encoding);
67   printf("  f->numchars = %d;\n",f->numchars);
68   printf("  f->maxascii = %d;\n",f->maxascii);
69   printf("  f->glyph    = (SWFGLYPH*)malloc(sizeof(SWFGLYPH)*%d);\n",f->numchars);
70   printf("  f->glyph2ascii = (U16*)malloc(sizeof(U16)*%d);\n",f->numchars);
71   printf("  f->ascii2glyph = (int*)malloc(sizeof(int)*%d);\n",f->maxascii);
72   printf("  memset(f->ascii2glyph, -1, sizeof(int)*%d);\n\n", f->maxascii);
73   if(f->layout) {
74       printf("  f->layout = (SWFLAYOUT*)malloc(sizeof(SWFLAYOUT));\n");
75       printf("  f->layout->ascent = %d;\n", f->layout->ascent);
76       printf("  f->layout->descent = %d;\n", f->layout->descent);
77       printf("  f->layout->leading = %d;\n", f->layout->leading);
78       printf("  f->layout->kerningcount = 0;\n");
79       printf("  f->layout->kerning = 0;\n");
80       printf("  f->layout->bounds = (SRECT*)malloc(sizeof(SRECT)*%d);\n", f->numchars);
81       printf("  memset(f->layout->bounds, 0, sizeof(SRECT)*%d);\n\n", f->numchars);
82   }
83
84   for (i=0;i<f->numchars;i++)
85     if (f->glyph[i].shape)
86     { printf("  addGlyph(f,%3i, 0x%03x,%4i, &Glyphs_%s[0x%04x],%4i); // %c\n",
87              i, f->glyph2ascii[i], f->glyph[i].advance, name, gpos[i],
88              f->glyph[i].shape->bitlen,PRINTABLE(f->glyph2ascii[i]));
89     }
90
91   printf("  return f;\n}\n\n");
92   free(gpos);
93 }
94
95 void DumpGlobal(char * funcname)
96 { printf("\nvoid %s(SWFFONT * f,int i,U16 ascii,U16 advance,U8 * data,U32 bitlen)\n",funcname);
97   printf("{ SHAPE * s;\n  U32 l = (bitlen+7)/8;\n\n");
98   printf("  if (FAILED(swf_ShapeNew(&s))) return;\n");
99   printf("  s->data = malloc(l);\n");
100   printf("  if (!s->data) { swf_ShapeFree(s); return; }\n\n");
101   printf("  f->glyph2ascii[i]     = ascii;\n");
102   printf("  f->ascii2glyph[ascii] = i;\n");
103   printf("  f->glyph[i].advance   = advance;\n");
104   printf("  f->glyph[i].shape     = s;\n");
105   printf("  s->bitlen             = bitlen;\n");
106   printf("  s->bits.fill          = 1;\n");
107   printf("  memcpy(s->data,data,l);\n}\n\n");
108 }
109
110
111 void fontcallback(U16 id,U8 * name)
112 { SWFFONT * font;
113
114   int f;
115   char s[500],*ss;
116   
117   swf_FontExtract(&swf,id,&font);
118   sprintf(s,"%s%s%s",name,swf_FontIsBold(font)?"_bold":"",swf_FontIsItalic(font)?"_italic":"");
119   
120   ss = s;
121   while(*ss)
122   { 
123     if(!((*ss>='a' && *ss<='z') ||
124          (*ss>='A' && *ss<='Z') ||
125          (*ss>='0' && *ss<='9' && ss!=s) ||
126          (*ss=='_')))
127                 *ss = '_';
128     ss++;
129   }
130
131   DumpFont(font,s);
132   
133   swf_FontFree(font);
134 }
135
136 int main(int argc,char ** argv)
137 { int f;
138
139   if (argc>1)
140   { f = open(argv[1],O_RDONLY);
141     if (f>=0)
142     { if FAILED(swf_ReadSWF(f,&swf))
143       { fprintf(stderr,"%s is not a valid SWF file or contains errors.\n",argv[1]);
144         close(f);
145       }
146       else
147       { char fn[200];
148         close(f);
149         sprintf(fn,"fn%04x",getpid()); // avoid name conflicts @ using multiple fonts
150         printf("#define addGlyph %s\n",fn);
151         DumpGlobal(fn);
152         swf_FontEnumerate(&swf,&fontcallback);
153         swf_FreeTags(&swf);
154         printf("#undef addGlyph\n");
155       }
156     } else fprintf(stderr,"File not found: %s\n",argv[1]);
157   }
158   else fprintf(stderr,"\nreflex SWF Font Dump Utility\n(w) 2000 by Rainer Boehme <rb@reflex-studio.de>\n\nUsage: dumpfont filename.swf\n");
159   
160   return 0;
161 }
162