use new SWFFONT struct
[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>='A')&&(a<='Z'))||((a>='a')&&(a<='z'))||((a>='0')&&(a<='9'))
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->flags    = 0x%02x;\n",f->flags);
66   printf("  f->numchars = %d;\n",f->numchars);
67   printf("  f->glyph    = (SWFGLYPH*)malloc(sizeof(SWFGLYPH)*%d);\n\n",f->numchars);
68   printf("  f->codes    = (U16*)malloc(sizeof(U16)*%d);\n\n",f->numchars);
69
70   for (i=0;i<f->numchars;i++)
71     if (f->glyph[i].shape)
72     { printf("  addGlyph(f,%3i, 0x%02x,%4i,%3i, &Glyphs_%s[0x%04x],%4i); // %c\n",
73              i, f->codes[i], f->glyph[i].advance, f->glyph[i].gid, name, gpos[i],
74              f->glyph[i].shape->bitlen,(i!='\\')?i:0x20);
75     }
76
77   printf("  return f;\n}\n\n");
78   free(gpos);
79 }
80
81 void DumpGlobal(char * funcname)
82 { printf("\nvoid %s(SWFFONT * f,int i,U16 code,U16 advance,U16 gid,U8 * data,U32 bitlen)\n",funcname);
83   printf("{ SHAPE * s;\n  U32 l = (bitlen+7)/8;\n\n");
84   printf("  if (FAILED(swf_ShapeNew(&s))) return;\n");
85   printf("  s->data = malloc(l);\n");
86   printf("  if (!s->data) { swf_ShapeFree(s); return; }\n\n");
87   printf("  f->codes[i]         = code;\n");
88   printf("  f->glyph[i].advance = advance;\n");
89   printf("  f->glyph[i].gid     = gid;\n");
90   printf("  f->glyph[i].shape   = s;\n");
91   printf("  s->bitlen           = bitlen;\n");
92   printf("  s->bits.fill        = 1;\n");
93   printf("  memcpy(s->data,data,l);\n}\n\n");
94 }
95
96
97 void fontcallback(U16 id,U8 * name)
98 { SWFFONT * font;
99
100   int f;
101   char s[500],*ss;
102   
103   swf_FontExtract(&swf,id,&font);
104   sprintf(s,"%s%s%s",name,swf_FontIsBold(font)?"_bold":"",swf_FontIsItalic(font)?"_italic":"");
105   
106   ss = s;
107   while(*ss)
108   { 
109     if(!((*ss>='a' && *ss<='z') ||
110          (*ss>='A' && *ss<='Z') ||
111          (*ss>='0' && *ss<='9' && ss!=s) ||
112          (*ss=='_')))
113                 *ss = '_';
114     ss++;
115   }
116
117   DumpFont(font,s);
118   
119   swf_FontFree(font);
120 }
121
122 int main(int argc,char ** argv)
123 { int f;
124
125   if (argc>1)
126   { f = open(argv[1],O_RDONLY);
127     if (f>=0)
128     { if FAILED(swf_ReadSWF(f,&swf))
129       { fprintf(stderr,"%s is not a valid SWF file or contains errors.\n",argv[1]);
130         close(f);
131       }
132       else
133       { char fn[200];
134         close(f);
135         sprintf(fn,"fn%04x",getpid()); // avoid name conflicts @ using multiple fonts
136         printf("#define addGlyph %s\n",fn);
137         DumpGlobal(fn);
138         swf_FontEnumerate(&swf,&fontcallback);
139         swf_FreeTags(&swf);
140         printf("#undef addGlyph\n");
141       }
142     } else fprintf(stderr,"File not found: %s\n",argv[1]);
143   }
144   else fprintf(stderr,"\nreflex SWF Font Dump Utility\n(w) 2000 by Rainer Boehme <rb@reflex-studio.de>\n\nUsage: dumpfont filename.swf\n");
145   
146   return 0;
147 }
148