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