changed from malloc to rfx_alloc.
[swftools.git] / lib / modules / swftext.c
1 /* swftext.c
2
3    Text and font routines
4       
5    Extension module for the rfxswf library.
6    Part of the swftools package.
7
8    Copyright (c) 2001 Rainer Böhme <rfxswf@reflex-studio.de>
9    Copyright (c) 2003,2004 Matthias Kramm
10  
11    This program is free software; you can redistribute it and/or modify
12    it under the terms of the GNU General Public License as published by
13    the Free Software Foundation; either version 2 of the License, or
14    (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
24
25 static U32 readUTF8char(U8 ** text)
26 {
27     U32 c = 0;
28     if (!(*(*text) & 0x80))
29         return *((*text)++);
30
31     /* 0000 0080-0000 07FF   110xxxxx 10xxxxxx */
32     if (((*text)[0] & 0xe0) == 0xc0 && (*text)[1]) {
33         c = ((*text)[0] & 0x1f) << 6 | ((*text)[1] & 0x3f);
34         (*text) += 2;
35         return c;
36     }
37     /* 0000 0800-0000 FFFF   1110xxxx 10xxxxxx 10xxxxxx */
38     if (((*text)[0] & 0xf0) == 0xe0 && (*text)[1] && (*text)[2]) {
39         c = ((*text)[0] & 0x0f) << 12 | ((*text)[1] & 0x3f) << 6 | ((*text)[2] & 0x3f);
40         (*text) += 3;
41         return c;
42     }
43     /* 0001 0000-001F FFFF   11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */
44     if (((*text)[0] & 0xf8) == 0xf0 && (*text)[1] && (*text)[2]
45         && (*text)[3]) {
46         c = ((*text)[0] & 0x07) << 18 | ((*text)[1] & 0x3f) << 12 | ((*text)[2] & 0x3f) << 6 | ((*text)[3] & 0x3f);
47         (*text) += 4;
48         return c;
49     }
50     /* 0020 0000-03FF FFFF   111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx */
51     if (((*text)[0] & 0xfc) == 0xf8 && (*text)[1] && (*text)[2]
52         && (*text)[3]
53         && (*text)[4]) {
54         c = ((*text)[0] & 0x03) << 24 | ((*text)[1] & 0x3f) << 18 | ((*text)[2] & 0x3f) << 12 | ((*text)[3] & 0x3f) << 6 | ((*text)[4] & 0x3f);
55         (*text) += 5;
56         return c;
57     }
58     /* 0400 0000-7FFF FFFF   1111110x 10xxxxxx ... 10xxxxxx */
59     if (((*text)[0] & 0xfe) == 0xfc && (*text)[1] && (*text)[2]
60         && (*text)[3]
61         && (*text)[4] && (*text)[5]) {
62         c = ((*text)[0] & 0x01) << 30 | ((*text)[1] & 0x3f) << 24 |
63             ((*text)[2] & 0x3f) << 18 | ((*text)[3] & 0x3f) << 12 | ((*text)[4] & 0x3f) << 6 | ((*text)[5] & 0x3f) << 6;
64         (*text) += 6;
65         return c;
66     }
67     return *((*text)++);
68 }
69
70 #define TF_TEXTCONTROL  0x80
71 #define TF_HASFONT      0x08
72 #define TF_HASCOLOR     0x04
73 #define TF_HASYOFFSET   0x02
74 #define TF_HASXOFFSET   0x01
75
76 #define FF_WIDECODES    0x01
77 #define FF_BOLD         0x02
78 #define FF_ITALIC       0x04
79 #define FF_ANSI         0x08
80 #define FF_SHIFTJIS     0x10
81 #define FF_UNICODE      0x20
82
83 #define FF2_BOLD         0x01
84 #define FF2_ITALIC       0x02
85 #define FF2_WIDECODES    0x04
86 #define FF2_WIDEOFFSETS  0x08
87 #define FF2_ANSI         0x10
88 #define FF2_UNICODE      0x20
89 #define FF2_SHIFTJIS     0x40
90 #define FF2_LAYOUT       0x80
91
92 int swf_FontIsItalic(SWFFONT * f)
93 {
94     return f->style & FONT_STYLE_ITALIC;
95 }
96
97 int swf_FontIsBold(SWFFONT * f)
98 {
99     return f->style & FONT_STYLE_BOLD;
100 }
101
102 static const int WRITEFONTID = 0x4e46;  // font id for WriteFont and ReadFont
103
104 int swf_FontEnumerate(SWF * swf, void (*FontCallback) (U16, U8 *))
105 {
106     int n;
107     TAG *t;
108     if (!swf)
109         return -1;
110     t = swf->firstTag;
111     n = 0;
112
113     while (t) {
114         if (swf_GetTagID(t) == ST_DEFINEFONT2 || swf_GetTagID(t) == ST_DEFINEFONT) {
115             n++;
116             if (FontCallback) {
117                 U16 id;
118                 int l;
119                 U8 s[257];
120                 s[0] = 0;
121                 swf_SaveTagPos(t);
122                 swf_SetTagPos(t, 0);
123
124                 id = swf_GetU16(t);
125                 if (swf_GetTagID(t) == ST_DEFINEFONT2 || swf_GetTagID(t) == ST_DEFINEFONTINFO || swf_GetTagID(t) == ST_DEFINEFONTINFO2) {
126                     swf_GetU16(t);
127                     l = swf_GetU8(t);
128                     swf_GetBlock(t, s, l);
129                     s[l] = 0;
130                 }
131
132                 (FontCallback) (id, s);
133
134                 swf_RestoreTagPos(t);
135             }
136         }
137         t = swf_NextTag(t);
138     }
139     return n;
140 }
141
142 int swf_FontExtract_DefineFont(int id, SWFFONT * f, TAG * t)
143 {
144     U16 fid;
145     swf_SaveTagPos(t);
146     swf_SetTagPos(t, 0);
147
148     fid = swf_GetU16(t);
149     if ((!id) || (id == fid)) {
150         U16 of;
151         int n, i;
152
153         id = fid;
154         f->version = 1;
155         f->id = fid;
156
157         of = swf_GetU16(t);
158         n = of / 2;
159         f->numchars = n;
160         f->glyph = rfx_calloc(sizeof(SWFGLYPH) * n);
161
162         for (i = 1; i < n; i++)
163             swf_GetU16(t);
164         for (i = 0; i < n; i++)
165             swf_GetSimpleShape(t, &f->glyph[i].shape);
166     }
167
168     swf_RestoreTagPos(t);
169     return id;
170 }
171
172 int swf_FontExtract_DefineFontInfo(int id, SWFFONT * f, TAG * t)
173 {
174     U16 fid;
175     U16 maxcode;
176     U8 flags;
177     swf_SaveTagPos(t);
178     swf_SetTagPos(t, 0);
179
180     fid = swf_GetU16(t);
181     if (fid == id) {
182         U8 l = swf_GetU8(t);
183         int i;
184
185         if (f->version > 1) {
186             /* Especially with Flash MX, DefineFont2 may have FontInfo fields,
187                too. However, they only add little information to what's already
188                inside the DefineFont2 tag */
189             return id;
190         }
191
192         if (f->name)
193             rfx_free(f->name);
194
195         f->name = (U8 *) rfx_alloc(l + 1);
196         swf_GetBlock(t, f->name, l);
197         f->name[l] = 0;
198
199         flags = swf_GetU8(t);
200         if (flags & 2)
201             f->style |= FONT_STYLE_BOLD;
202         if (flags & 4)
203             f->style |= FONT_STYLE_ITALIC;
204         if (flags & 8)
205             f->encoding |= FONT_ENCODING_ANSI;
206         if (flags & 16)
207             f->encoding |= FONT_ENCODING_SHIFTJIS;
208         if (flags & 32)
209             f->encoding |= FONT_ENCODING_UNICODE;
210
211         if (t->id == ST_DEFINEFONTINFO2) {
212             f->language = swf_GetU8(t);
213         }
214
215         f->glyph2ascii = (U16 *) rfx_alloc(sizeof(U16) * f->numchars);
216         maxcode = 0;
217         for (i = 0; i < f->numchars; i++) {
218             f->glyph2ascii[i] = ((flags & FF_WIDECODES) ? swf_GetU16(t) : swf_GetU8(t));
219             if (f->glyph2ascii[i] > maxcode)
220                 maxcode = f->glyph2ascii[i];
221         }
222         maxcode++;
223         if (maxcode < 256)
224             maxcode = 256;
225         f->maxascii = maxcode;
226         f->ascii2glyph = (int *) rfx_alloc(sizeof(int) * maxcode);
227         memset(f->ascii2glyph, -1, sizeof(int) * maxcode);
228
229         for (i = 0; i < f->numchars; i++)
230             f->ascii2glyph[f->glyph2ascii[i]] = i;
231     }
232
233     swf_RestoreTagPos(t);
234     return id;
235 }
236
237 int swf_FontExtract_GlyphNames(int id, SWFFONT * f, TAG * tag)
238 {
239     U16 fid;
240     U16 maxcode;
241     U8 flags;
242     swf_SaveTagPos(tag);
243     swf_SetTagPos(tag, 0);
244
245     fid = swf_GetU16(tag);
246
247     if (fid == id) {
248         int num = swf_GetU16(tag);
249         int t;
250         f->glyphnames = rfx_alloc(sizeof(char *) * num);
251         for (t = 0; t < num; t++) {
252             f->glyphnames[t] = strdup(swf_GetString(tag));
253         }
254     }
255
256     swf_RestoreTagPos(tag);
257     return id;
258 }
259
260
261 int swf_FontExtract_DefineFont2(int id, SWFFONT * font, TAG * tag)
262 {
263     int t, glyphcount;
264     int maxcode;
265     int fid;
266     U8 flags1, flags2, namelen;
267     swf_SaveTagPos(tag);
268     swf_SetTagPos(tag, 0);
269     font->version = 2;
270     fid = swf_GetU16(tag);
271     if (id && id != fid)
272         return id;
273     font->id = fid;
274     flags1 = swf_GetU8(tag);
275     flags2 = swf_GetU8(tag);    //reserved flags
276
277     if (flags1 & 1)
278         font->style |= FONT_STYLE_BOLD;
279     if (flags1 & 2)
280         font->style |= FONT_STYLE_ITALIC;
281     if (flags1 & 16)
282         font->encoding |= FONT_ENCODING_ANSI;
283     if (flags1 & 32)
284         font->encoding |= FONT_ENCODING_UNICODE;
285     if (flags1 & 64)
286         font->encoding |= FONT_ENCODING_SHIFTJIS;
287
288     namelen = swf_GetU8(tag);
289     font->name = (U8 *) rfx_alloc(namelen + 1);
290     font->name[namelen] = 0;
291     swf_GetBlock(tag, font->name, namelen);
292     font->version = 2;
293     glyphcount = swf_GetU16(tag);
294     font->numchars = glyphcount;
295
296     font->glyph = (SWFGLYPH *) rfx_calloc(sizeof(SWFGLYPH) * glyphcount);
297     font->glyph2ascii = (U16 *) rfx_calloc(sizeof(U16) * glyphcount);
298
299     if (flags1 & 8) {           // wide offsets
300         for (t = 0; t < glyphcount; t++)
301             swf_GetU32(tag);    //offset[t]
302
303         if (glyphcount)         /* this _if_ is not in the specs */
304             swf_GetU32(tag);    // fontcodeoffset
305     } else {
306         for (t = 0; t < glyphcount; t++)
307             swf_GetU16(tag);    //offset[t]
308
309         if (glyphcount)         /* this _if_ is not in the specs */
310             swf_GetU16(tag);    // fontcodeoffset
311     }
312     /* TODO: we should use the offset positions, not just
313              blindly read in shapes */
314     for (t = 0; t < glyphcount; t++)
315         swf_GetSimpleShape(tag, &(font->glyph[t].shape));
316
317     maxcode = 0;
318     for (t = 0; t < glyphcount; t++) {
319         int code;
320         if (flags1 & 4)         // wide codes
321             code = swf_GetU16(tag);
322         else
323             code = swf_GetU8(tag);
324         font->glyph2ascii[t] = code;
325         if (code > maxcode)
326             maxcode = code;
327     }
328     maxcode++;
329     if (maxcode < 256)
330         maxcode = 256;
331     font->maxascii = maxcode;
332     font->ascii2glyph = (int *) rfx_alloc(sizeof(int) * maxcode);
333     memset(font->ascii2glyph, -1, sizeof(int) * maxcode);
334     for (t = 0; t < glyphcount; t++) {
335         font->ascii2glyph[font->glyph2ascii[t]] = t;
336     }
337
338     if (flags1 & 128) {         // has layout
339         U16 kerningcount;
340         font->layout = (SWFLAYOUT *) rfx_alloc(sizeof(SWFLAYOUT));
341         font->layout->ascent = swf_GetU16(tag);
342         font->layout->descent = swf_GetU16(tag);
343         font->layout->leading = swf_GetU16(tag);
344         for (t = 0; t < glyphcount; t++) {
345             S16 advance = swf_GetS16(tag);
346             font->glyph[t].advance = advance;
347         }
348         font->layout->bounds = rfx_alloc(glyphcount * sizeof(SRECT));
349         for (t = 0; t < glyphcount; t++) {
350             swf_ResetReadBits(tag);
351             swf_GetRect(tag, &font->layout->bounds[t]);
352         }
353
354         kerningcount = swf_GetU16(tag);
355         font->layout->kerningcount = kerningcount;
356
357         font->layout->kerning = (SWFKERNING *) rfx_alloc(sizeof(SWFKERNING) * kerningcount);
358         if (kerningcount) {
359             font->layout->kerning = rfx_alloc(sizeof(*font->layout->kerning) * kerningcount);
360             for (t = 0; t < kerningcount; t++) {
361                 if (flags1 & 4) {       // wide codes
362                     font->layout->kerning[t].char1 = swf_GetU16(tag);
363                     font->layout->kerning[t].char2 = swf_GetU16(tag);
364                 } else {
365                     font->layout->kerning[t].char1 = swf_GetU8(tag);
366                     font->layout->kerning[t].char2 = swf_GetU8(tag);
367                 }
368                 font->layout->kerning[t].adjustment = swf_GetS16(tag);
369             }
370         }
371     }
372     swf_RestoreTagPos(t);
373     return font->id;
374 }
375
376
377 #define FEDTJ_PRINT  0x01
378 #define FEDTJ_MODIFY 0x02
379 #define FEDTJ_CALLBACK 0x04
380
381 static int
382 swf_FontExtract_DefineTextCallback(int id, SWFFONT * f, TAG * t, int jobs,
383                                    void (*callback) (void *self,
384                                                      int *chars, int *ypos, int nr, int fontid, int fontsize, int xstart, int ystart, RGBA * color), void *self)
385 {
386     U16 cid;
387     SRECT r;
388     MATRIX m;
389     U8 gbits, abits;
390     int fid = 0;
391     RGBA color;
392     int x = 0, y = 0;
393     int fontsize = 0;
394
395     memset(&color, 0, sizeof(color));
396
397     swf_SaveTagPos(t);
398     swf_SetTagPos(t, 0);
399
400     cid = swf_GetU16(t);
401     swf_GetRect(t, &r);
402     swf_GetMatrix(t, &m);
403     gbits = swf_GetU8(t);
404     abits = swf_GetU8(t);
405
406     while (1) {
407         int flags, num;
408         flags = swf_GetU8(t);
409         if (!flags)
410             break;
411
412         if (flags & TF_TEXTCONTROL) {
413             if (flags & TF_HASFONT)
414                 fid = swf_GetU16(t);
415             if (flags & TF_HASCOLOR) {
416                 color.r = swf_GetU8(t); // rgb
417                 color.g = swf_GetU8(t);
418                 color.b = swf_GetU8(t);
419                 if (swf_GetTagID(t) == ST_DEFINETEXT2)
420                     color.a = swf_GetU8(t);
421             }
422             if (flags & TF_HASXOFFSET)
423                 x = swf_GetS16(t);
424             if (flags & TF_HASYOFFSET)
425                 y = swf_GetS16(t);
426             if (flags & TF_HASFONT)
427                 fontsize = swf_GetU16(t);
428         }
429
430         num = swf_GetU8(t);
431         if (!num)
432             break;
433
434         {
435             int i;
436             int buf[256];
437             int advance[256];
438             int xpos = 0;
439             for (i = 0; i < num; i++) {
440                 int glyph;
441                 int adv = 0;
442                 advance[i] = xpos;
443                 glyph = swf_GetBits(t, gbits);
444                 adv = swf_GetBits(t, abits);
445                 xpos += adv;
446
447                 // <deprecated>
448                 if (id == fid) {
449                     if (jobs & FEDTJ_PRINT) {
450                         int code = f->glyph2ascii[glyph];
451                         printf("%c", code);
452                     }
453                     if (jobs & FEDTJ_MODIFY)
454                         f->glyph[glyph].advance = adv * 20;     //?
455                 } else {
456                     if (jobs & FEDTJ_PRINT) {
457                         printf("?");
458                     }
459                 }
460                 // </deprecated>
461
462                 buf[i] = glyph;
463             }
464             if ((id == fid) && (jobs & FEDTJ_PRINT))
465                 printf("\n");
466             if (jobs & FEDTJ_CALLBACK)
467                 callback(self, buf, advance, num, fid, fontsize, x, y, &color);
468             x += xpos;
469         }
470     }
471
472     swf_RestoreTagPos(t);
473     return id;
474 }
475
476 int swf_ParseDefineText(TAG * tag,
477                     void (*callback) (void *self, int *chars, int *ypos, int nr, int fontid, int fontsize, int xstart, int ystart, RGBA * color), void *self)
478 {
479     return swf_FontExtract_DefineTextCallback(-1, 0, tag, FEDTJ_CALLBACK, callback, self);
480 }
481
482 int swf_FontExtract_DefineText(int id, SWFFONT * f, TAG * t, int jobs)
483 {
484     return swf_FontExtract_DefineTextCallback(id, f, t, jobs, 0, 0);
485 }
486
487 int swf_FontExtract(SWF * swf, int id, SWFFONT * *font)
488 {
489     TAG *t;
490     SWFFONT *f;
491
492     if ((!swf) || (!font))
493         return -1;
494
495     f = (SWFFONT *) rfx_calloc(sizeof(SWFFONT));
496
497     t = swf->firstTag;
498
499     while (t) {
500         int nid = 0;
501         switch (swf_GetTagID(t)) {
502         case ST_DEFINEFONT:
503             nid = swf_FontExtract_DefineFont(id, f, t);
504             break;
505
506         case ST_DEFINEFONT2:
507             nid = swf_FontExtract_DefineFont2(id, f, t);
508             break;
509
510         case ST_DEFINEFONTINFO:
511         case ST_DEFINEFONTINFO2:
512             nid = swf_FontExtract_DefineFontInfo(id, f, t);
513             break;
514
515         case ST_DEFINETEXT:
516         case ST_DEFINETEXT2:
517             nid = swf_FontExtract_DefineText(id, f, t, f->layout ? 0 : FEDTJ_MODIFY);
518             break;
519
520         case ST_GLYPHNAMES:
521             nid = swf_FontExtract_GlyphNames(id, f, t);
522             break;
523         }
524         if (nid > 0)
525             id = nid;
526         t = swf_NextTag(t);
527     }
528     if (f->id != id) {
529         rfx_free(f);
530         f = 0;
531     }
532     font[0] = f;
533     return 0;
534 }
535
536 int swf_FontSetID(SWFFONT * f, U16 id)
537 {
538     if (!f)
539         return -1;
540     f->id = id;
541     return 0;
542 }
543
544 void swf_LayoutFree(SWFLAYOUT * l)
545 {
546     if (l) {
547         if (l->kerning)
548             rfx_free(l->kerning);
549         l->kerning = NULL;
550         if (l->bounds)
551             rfx_free(l->bounds);
552         l->bounds = NULL;
553     }
554     rfx_free(l);
555 }
556
557
558 static void font_freeglyphnames(SWFFONT*f)
559 {
560     if (f->glyphnames) {
561         int t;
562         for (t = 0; t < f->numchars; t++) {
563             if (f->glyphnames[t])
564                 rfx_free(f->glyphnames[t]);
565         }
566         rfx_free(f->glyphnames);
567         f->glyphnames = 0;
568     }
569
570 }
571 static void font_freeusage(SWFFONT*f)
572 {
573     if (f->use) {
574         if(f->use->chars) {
575             rfx_free(f->use->chars);f->use->chars = 0;
576         }
577         rfx_free(f->use); f->use = 0;
578     }
579 }
580 static void font_freelayout(SWFFONT*f)
581 {
582     if (f->layout) {
583         swf_LayoutFree(f->layout);
584         f->layout = 0;
585     }
586 }
587 static void font_freename(SWFFONT*f)
588 {
589     if (f->name) {
590         rfx_free(f->name);
591         f->name = 0;
592     }
593 }
594
595 int swf_FontReduce(SWFFONT * f)
596 {
597     int i, j;
598     int max_unicode = 0;
599     if ((!f) || (!f->use) || f->use->is_reduced)
600         return -1;
601
602     j = 0;
603
604     for (i = 0; i < f->numchars; i++) {
605         if (f->glyph[i].shape && f->use->chars[i]) {
606             f->glyph2ascii[j] = f->glyph2ascii[i];
607             f->glyph[j] = f->glyph[i];
608             f->use->chars[i] = j;
609             j++;
610         } else {
611             f->glyph2ascii[i] = 0;
612             if(f->glyph[i].shape) {
613                 swf_ShapeFree(f->glyph[i].shape);
614                 f->glyph[i].shape = 0;
615                 f->glyph[i].advance = 0;
616             }
617             f->use->chars[i] = -1;
618             j++; //TODO: remove
619         }
620     }
621     for (i = 0; i < f->maxascii; i++) {
622         if(f->use->chars[f->ascii2glyph[i]]<0) {
623             f->ascii2glyph[i] = -1;
624         } else {
625             f->ascii2glyph[i] = f->use->chars[f->ascii2glyph[i]];
626             max_unicode = i;
627         }
628     }
629     f->maxascii = max_unicode;
630     f->use->is_reduced = 1;
631     f->numchars = j;
632     font_freelayout(f);
633     font_freeglyphnames(f);
634     font_freename(f);
635     return j;
636 }
637
638 void swf_FontSort(SWFFONT * font)
639 {
640     int i, j, k;
641     int *newplace;
642     int *newpos;
643     if (!font)
644         return;
645     
646     newplace = rfx_alloc(sizeof(int) * font->numchars);
647
648     for (i = 0; i < font->numchars; i++) {
649         newplace[i] = i;
650     }
651     for (i = 0; i < font->numchars; i++)
652         for (j = 0; j < i; j++) {
653             if (font->glyph2ascii[i] < font->glyph2ascii[j]) {
654                 int n1, n2;
655                 char *c1, *c2;
656                 SWFGLYPH g1, g2;
657                 SRECT r1, r2;
658                 n1 = newplace[i];
659                 n2 = newplace[j];
660                 newplace[j] = n1;
661                 newplace[i] = n2;
662                 n1 = font->glyph2ascii[i];
663                 n2 = font->glyph2ascii[j];
664                 font->glyph2ascii[j] = n1;
665                 font->glyph2ascii[i] = n2;
666                 g1 = font->glyph[i];
667                 g2 = font->glyph[j];
668                 font->glyph[j] = g1;
669                 font->glyph[i] = g2;
670                 if (font->glyphnames) {
671                     c1 = font->glyphnames[i];
672                     c2 = font->glyphnames[j];
673                     font->glyphnames[j] = c1;
674                     font->glyphnames[i] = c2;
675                 }
676                 if (font->layout) {
677                     r1 = font->layout->bounds[i];
678                     r2 = font->layout->bounds[j];
679                     font->layout->bounds[j] = r1;
680                     font->layout->bounds[i] = r2;
681                 }
682             }
683         }
684     newpos = rfx_alloc(sizeof(int) * font->numchars);
685     for (i = 0; i < font->numchars; i++) {
686         newpos[newplace[i]] = i;
687     }
688     for (i = 0; i < font->maxascii; i++) {
689         if (font->ascii2glyph[i] >= 0)
690             font->ascii2glyph[i] = newpos[font->ascii2glyph[i]];
691     }
692
693     rfx_free(newpos);
694     rfx_free(newplace);
695 }
696
697 void swf_FontPrepareForEditText(SWFFONT * font)
698 {
699     if (!font->layout)
700         swf_FontCreateLayout(font);
701     swf_FontSort(font);
702 }
703
704 int swf_FontInitUsage(SWFFONT * f)
705 {
706     if (!f)
707         return -1;
708     if(f->use) {
709         fprintf(stderr, "Usage initialized twice");
710         return -1;
711     }
712     f->use = rfx_alloc(sizeof(FONTUSAGE));
713     f->use->is_reduced = 0;
714     f->use->chars = rfx_calloc(sizeof(f->use->chars[0]) * f->numchars);
715     return 0;
716 }
717
718 void swf_FontClearUsage(SWFFONT * f)
719 {
720     if (!f || !f->use)
721         return;
722     rfx_free(f->use->chars); f->use->chars = 0;
723     rfx_free(f->use); f->use = 0;
724 }
725
726 int swf_FontUse(SWFFONT * f, U8 * s)
727 {
728     if (!f->use) 
729         swf_FontInitUsage(f);
730     if( (!s))
731         return -1;
732     while (*s) {
733         if(*s < f->maxascii && f->ascii2glyph[*s]>=0)
734             f->use->chars[f->ascii2glyph[*s]] = 1;
735         s++;
736     }
737     return 0;
738 }
739
740 int swf_FontUseGlyph(SWFFONT * f, int glyph)
741 {
742     if (!f->use) 
743         swf_FontInitUsage(f);
744     if(glyph < 0 || glyph > f->numchars)
745         return -1;
746     f->use->chars[glyph] = 1;
747     return 0;
748 }
749
750 int swf_FontSetDefine(TAG * t, SWFFONT * f)
751 {
752     U16 *ofs = (U16 *) rfx_alloc(f->numchars * 2);
753     int p, i, j;
754
755     if ((!t) || (!f))
756         return -1;
757     swf_ResetWriteBits(t);
758     swf_SetU16(t, f->id);
759
760     p = 0;
761     j = 0;
762     for (i = 0; i < f->numchars; i++)
763         if (f->glyph[i].shape) {
764             ofs[j++] = p;
765             p += swf_SetSimpleShape(NULL, f->glyph[i].shape);
766         }
767
768     for (i = 0; i < j; i++)
769         swf_SetU16(t, ofs[i] + j * 2);
770     if (!j) {
771         fprintf(stderr, "rfxswf: warning: Font is empty\n");
772         swf_SetU16(t, 0);
773     }
774
775     for (i = 0; i < f->numchars; i++)
776         if (f->glyph[i].shape)
777             swf_SetSimpleShape(t, f->glyph[i].shape);
778
779     swf_ResetWriteBits(t);
780     rfx_free(ofs);
781     return 0;
782 }
783
784 static inline int fontSize(SWFFONT * font)
785 {
786     int t;
787     int size = 0;
788     for (t = 0; t < font->numchars; t++) {
789         int l = 0;
790         if(font->glyph[t].shape) 
791             l = (font->glyph[t].shape->bitlen + 7) / 8;
792         else
793             l = 8;
794         size += l + 1;
795     }
796     return size + (font->numchars + 1) * 2;
797 }
798
799 int swf_FontSetDefine2(TAG * tag, SWFFONT * f)
800 {
801     U8 flags = 0;
802     int t;
803     int pos;
804     int pos2;
805     swf_SetU16(tag, f->id);
806
807     if (f->layout) flags |= 128;                // haslayout
808     if (f->numchars > 256)
809         flags |= 4;             // widecodes
810     if (f->style & FONT_STYLE_BOLD)
811         flags |= 1;             // bold
812     if (f->style & FONT_STYLE_ITALIC)
813         flags |= 2;             // italic
814     if (f->maxascii >= 256)
815         flags |= 4;             //wide codecs
816     if (fontSize(f) > 65535)
817         flags |= 8;             //wide offsets
818     flags |= 8 | 4;             //FIXME: the above check doesn't work
819
820     if (f->encoding & FONT_ENCODING_ANSI)
821         flags |= 16;            // ansi
822     if (f->encoding & FONT_ENCODING_UNICODE)
823         flags |= 32;            // unicode
824     if (f->encoding & FONT_ENCODING_SHIFTJIS)
825         flags |= 64;            // shiftjis
826
827     swf_SetU8(tag, flags);
828     swf_SetU8(tag, 0);          //reserved flags
829     if (f->name) {
830         /* font name */
831         swf_SetU8(tag, strlen(f->name));
832         swf_SetBlock(tag, f->name, strlen(f->name));
833     } else {
834         /* font name (="") */
835         swf_SetU8(tag, 0);
836     }
837     /* number of glyphs */
838     swf_SetU16(tag, f->numchars);
839     /* font offset table */
840     pos = tag->len;
841     for (t = 0; t <= f->numchars; t++) {
842         if (flags & 8)
843             swf_SetU32(tag, /* fontoffset */ 0);        /*placeholder */
844         else
845             swf_SetU16(tag, /* fontoffset */ 0);        /*placeholder */
846     }
847
848     for (t = 0; t <= f->numchars; t++) {
849         if (flags & 8) {
850             tag->data[pos + t * 4] = (tag->len - pos);
851             tag->data[pos + t * 4 + 1] = (tag->len - pos) >> 8;
852             tag->data[pos + t * 4 + 2] = (tag->len - pos) >> 16;
853             tag->data[pos + t * 4 + 3] = (tag->len - pos) >> 24;
854         } else {
855             if (tag->len - pos > 65535) {
856                 fprintf(stderr, "Internal error: Font too big and WideOffsets flag not set\n");
857                 exit(1);
858             }
859             tag->data[pos + t * 2] = (tag->len - pos);
860             tag->data[pos + t * 2 + 1] = (tag->len - pos) >> 8;
861         }
862         if (t < f->numchars) {
863             if(f->glyph[t].shape) {
864                 swf_SetSimpleShape(tag, f->glyph[t].shape);
865             } else {
866                 swf_SetU8(tag, 0); //non-edge(1) + edge flags(5)
867             }
868         }
869     }
870
871
872     /* font code table */
873     if (flags & 4) {            /* wide codes */
874         for (t = 0; t < f->numchars; t++) {
875             swf_SetU16(tag, f->glyph2ascii[t]);
876         }
877     } else {
878         for (t = 0; t < f->numchars; t++)
879             swf_SetU8(tag, f->glyph2ascii[t]);
880     }
881     if (f->layout) {
882         swf_SetU16(tag, f->layout->ascent);
883         swf_SetU16(tag, f->layout->descent);
884         swf_SetU16(tag, f->layout->leading);
885         for (t = 0; t < f->numchars; t++)
886             swf_SetU16(tag, f->glyph[t].advance);
887         for (t = 0; t < f->numchars; t++) {
888             swf_ResetWriteBits(tag);
889             swf_SetRect(tag, &f->layout->bounds[t]);
890         }
891         swf_SetU16(tag, f->layout->kerningcount);
892         for (t = 0; t < f->layout->kerningcount; t++) {
893             if (flags & 4) {    /* wide codes */
894                 swf_SetU16(tag, f->layout->kerning[t].char1);
895                 swf_SetU16(tag, f->layout->kerning[t].char2);
896             } else {
897                 swf_SetU8(tag, f->layout->kerning[t].char1);
898                 swf_SetU8(tag, f->layout->kerning[t].char2);
899             }
900             swf_SetU16(tag, f->layout->kerning[t].adjustment);
901         }
902     }
903     return 0;
904 }
905
906 void swf_FontAddLayout(SWFFONT * f, int ascent, int descent, int leading)
907 {
908     f->layout = (SWFLAYOUT *) rfx_alloc(sizeof(SWFLAYOUT));
909     f->layout->ascent = ascent;
910     f->layout->descent = descent;
911     f->layout->leading = leading;
912     f->layout->kerningcount = 0;
913     f->layout->kerning = 0;
914     f->layout->bounds = (SRECT *) rfx_calloc(sizeof(SRECT) * f->numchars);
915 }
916
917 int swf_FontSetInfo(TAG * t, SWFFONT * f)
918 {
919     int l, i;
920     U8 wide = 0;
921     U8 flags = 0;
922     if ((!t) || (!f))
923         return -1;
924     swf_ResetWriteBits(t);
925     swf_SetU16(t, f->id);
926     l = f->name ? strlen(f->name) : 0;
927     if (l > 255)
928         l = 255;
929     swf_SetU8(t, l);
930     if (l)
931         swf_SetBlock(t, f->name, l);
932     if (f->numchars >= 256)
933         wide = 1;
934
935     if (f->style & FONT_STYLE_BOLD)
936         flags |= 2;
937     if (f->style & FONT_STYLE_ITALIC)
938         flags |= 4;
939     if (f->style & FONT_ENCODING_ANSI)
940         flags |= 8;
941     if (f->style & FONT_ENCODING_SHIFTJIS)
942         flags |= 16;
943     if (f->style & FONT_ENCODING_UNICODE)
944         flags |= 32;
945
946     swf_SetU8(t, (flags & 0xfe) | wide);
947
948     for (i = 0; i < f->numchars; i++) {
949         if (f->glyph[i].shape) {
950             int g2a = f->glyph2ascii[i];
951             wide ? swf_SetU16(t, g2a) : swf_SetU8(t, g2a);
952         }
953     }
954
955     return 0;
956 }
957
958 int swf_TextPrintDefineText(TAG * t, SWFFONT * f)
959 {
960     int id = swf_GetTagID(t);
961     if ((id == ST_DEFINETEXT) || (id == ST_DEFINETEXT2))
962         swf_FontExtract_DefineText(f->id, f, t, FEDTJ_PRINT);
963     else
964         return -1;
965     return 0;
966 }
967
968 void swf_FontFree(SWFFONT * f)
969 {
970     int i;
971     if (!f)
972         return;
973
974     if (f->glyph) {
975         for (i = 0; i < f->numchars; i++)
976             if (f->glyph[i].shape) {
977                 swf_ShapeFree(f->glyph[i].shape);
978                 f->glyph[i].shape = NULL;
979             }
980         rfx_free(f->glyph);
981         f->glyph = NULL;
982     }
983     if (f->ascii2glyph) {
984         rfx_free(f->ascii2glyph);
985         f->ascii2glyph = NULL;
986     }
987     if (f->glyph2ascii) {
988         rfx_free(f->glyph2ascii);
989         f->glyph2ascii = NULL;
990     }
991     font_freename(f);
992     font_freelayout(f);
993     font_freeglyphnames(f);
994     font_freeusage(f);
995
996     rfx_free(f);
997 }
998
999 int swf_TextSetInfoRecord(TAG * t, SWFFONT * font, U16 size, RGBA * color, int dx, int dy)
1000 {
1001     U8 flags;
1002     if (!t)
1003         return -1;
1004
1005     flags = TF_TEXTCONTROL | (font ? TF_HASFONT : 0) | (color ? TF_HASCOLOR : 0) | (dx ? TF_HASXOFFSET : 0)
1006         | (dy ? TF_HASYOFFSET : 0);
1007
1008     swf_SetU8(t, flags);
1009     if (font)
1010         swf_SetU16(t, font->id);
1011     if (color) {
1012         if (swf_GetTagID(t) == ST_DEFINETEXT2)
1013             swf_SetRGBA(t, color);
1014         else
1015             swf_SetRGB(t, color);
1016     }
1017     if (dx) {
1018         if(dx>32767 || dx<-32768)
1019             fprintf(stderr, "Warning: Horizontal char position overflow: %d\n", dx);
1020         swf_SetS16(t, dx);
1021     }
1022     if (dy) {
1023         if(dy>32767 || dy<-32768)
1024             fprintf(stderr, "Warning: Vertical char position overflow: %d\n", dy);
1025         swf_SetS16(t, dy);
1026     }
1027     if (font)
1028         swf_SetU16(t, size);
1029
1030     return 0;
1031 }
1032
1033 static int swf_TextCountBits2(SWFFONT * font, U8 * s, int scale, U8 * gbits, U8 * abits, char *encoding)
1034 {
1035     U16 g, a;
1036     char utf8 = 0;
1037     if ((!s) || (!font) || ((!gbits) && (!abits)) || (!font->ascii2glyph))
1038         return -1;
1039     g = a = 0;
1040
1041     if (!strcmp(encoding, "UTF8"))
1042         utf8 = 1;
1043     else if (!strcmp(encoding, "iso-8859-1"))
1044         utf8 = 0;
1045     else
1046         fprintf(stderr, "Unknown encoding: %s", encoding);
1047
1048     while (*s) {
1049         int glyph = -1, c;
1050
1051         if (!utf8)
1052             c = *s++;
1053         else
1054             c = readUTF8char(&s);
1055
1056         if (c < font->maxascii)
1057             glyph = font->ascii2glyph[c];
1058         if (glyph >= 0) {
1059             g = swf_CountUBits(glyph, g);
1060             a = swf_CountBits(((((U32) font->glyph[glyph].advance) * scale) / 20) / 100, a);
1061         }
1062     }
1063
1064     if (gbits)
1065         gbits[0] = (U8) g;
1066     if (abits)
1067         abits[0] = (U8) a;
1068     return 0;
1069 }
1070
1071 static int swf_TextSetCharRecord2(TAG * t, SWFFONT * font, U8 * s, int scale, U8 gbits, U8 abits, char *encoding)
1072 {
1073     int l = 0, pos;
1074     char utf8 = 0;
1075
1076     if ((!t) || (!font) || (!s) || (!font->ascii2glyph))
1077         return -1;
1078
1079     if (!strcmp(encoding, "UTF8"))
1080         utf8 = 1;
1081     else if (!strcmp(encoding, "iso-8859-1"))
1082         utf8 = 0;
1083     else
1084         fprintf(stderr, "Unknown encoding: %s", encoding);
1085
1086     pos = t->len;
1087     swf_SetU8(t, l);            //placeholder
1088
1089     while (*s) {
1090         int g = -1, c;
1091
1092         if (!utf8)
1093             c = *s++;
1094         else
1095             c = readUTF8char(&s);
1096
1097         if (c < font->maxascii)
1098             g = font->ascii2glyph[c];
1099         if (g >= 0) {
1100             swf_SetBits(t, g, gbits);
1101             swf_SetBits(t, ((((U32) font->glyph[g].advance) * scale) / 20) / 100, abits);
1102             l++;
1103             if (l == 0x7f)
1104                 break;
1105         }
1106     }
1107
1108     PUT8(&t->data[pos], l);
1109
1110     swf_ResetWriteBits(t);
1111     return 0;
1112 }
1113
1114 int swf_TextCountBits(SWFFONT * font, U8 * s, int scale, U8 * gbits, U8 * abits)
1115 {
1116     return swf_TextCountBits2(font, s, scale, gbits, abits, "iso-8859-1");
1117 }
1118
1119 int swf_TextSetCharRecord(TAG * t, SWFFONT * font, U8 * s, int scale, U8 gbits, U8 abits)
1120 {
1121     return swf_TextSetCharRecord2(t, font, s, scale, gbits, abits, "iso-8859-1");
1122 }
1123
1124 int swf_TextCountBitsUTF8(SWFFONT * font, U8 * s, int scale, U8 * gbits, U8 * abits)
1125 {
1126     return swf_TextCountBits2(font, s, scale, gbits, abits, "UTF8");
1127 }
1128
1129 int swf_TextSetCharRecordUTF8(TAG * t, SWFFONT * font, U8 * s, int scale, U8 gbits, U8 abits)
1130 {
1131     return swf_TextSetCharRecord2(t, font, s, scale, gbits, abits, "UTF8");
1132 }
1133
1134 U32 swf_TextGetWidth(SWFFONT * font, U8 * s, int scale)
1135 {
1136     U32 res = 0;
1137
1138     if (font && s) {
1139         while (s[0]) {
1140             int g = -1;
1141             if (*s < font->maxascii)
1142                 g = font->ascii2glyph[*s];
1143             if (g >= 0)
1144                 res += font->glyph[g].advance / 20;
1145             s++;
1146         }
1147         if (scale)
1148             res = (res * scale) / 100;
1149     }
1150     return res;
1151 }
1152
1153 SRECT swf_TextCalculateBBoxUTF8(SWFFONT * font, U8 * s, int scale)
1154 {
1155     int pos = 0;
1156     SRECT r;
1157     swf_GetRect(0, &r);
1158     while (*s) {
1159         int c = readUTF8char(&s);
1160         if (c < font->maxascii) {
1161             int g = font->ascii2glyph[c];
1162             if (g >= 0) {
1163                 SRECT rn = font->layout->bounds[g];
1164                 rn.xmin = (rn.xmin * scale) / 20 / 100 + pos;
1165                 rn.xmax = (rn.xmax * scale) / 20 / 100 + pos;
1166                 rn.ymin = (rn.ymin * scale) / 20 / 100;
1167                 rn.ymax = (rn.ymax * scale) / 20 / 100;
1168                 swf_ExpandRect2(&r, &rn);
1169                 pos += (font->glyph[g].advance * scale) / 20 / 100;
1170             }
1171         }
1172         c++;
1173     }
1174     return r;
1175 }
1176
1177
1178 SWFFONT *swf_ReadFont(char *filename)
1179 {
1180     int f;
1181     SWF swf;
1182     if (!filename)
1183         return 0;
1184     f = open(filename, O_RDONLY|O_BINARY);
1185
1186     if (f < 0 || swf_ReadSWF(f, &swf) < 0) {
1187         fprintf(stderr, "%s is not a valid SWF font file or contains errors.\n", filename);
1188         close(f);
1189         return 0;
1190     } else {
1191         SWFFONT *font;
1192         close(f);
1193         if (swf_FontExtract(&swf, WRITEFONTID, &font) < 0)
1194             return 0;
1195         swf_FreeTags(&swf);
1196         return font;
1197     }
1198 }
1199
1200 void swf_WriteFont(SWFFONT * font, char *filename)
1201 {
1202     SWF swf;
1203     TAG *t;
1204     SRECT r;
1205     RGBA rgb;
1206     int f;
1207     int useDefineFont2 = 0;
1208     int storeGlyphNames = 1;
1209
1210     if (font->layout)
1211         useDefineFont2 = 1;     /* the only thing new in definefont2 
1212                                    is layout information. */
1213
1214     font->id = WRITEFONTID;     //"FN"
1215
1216     memset(&swf, 0x00, sizeof(SWF));
1217
1218     swf.fileVersion = 4;
1219     swf.frameRate = 0x4000;
1220
1221     /* if we use DefineFont1 to store the characters,
1222        we have to build a textfield to store the
1223        advance values. While at it, we can also
1224        make the whole .swf viewable */
1225
1226     /* we now always create viewable swfs, even if we
1227        did use definefont2 -mk */
1228     t = swf_InsertTag(NULL, ST_SETBACKGROUNDCOLOR);
1229     swf.firstTag = t;
1230     rgb.r = 0xef;
1231     rgb.g = 0xef;
1232     rgb.b = 0xff;
1233     swf_SetRGB(t, &rgb);
1234     if (!useDefineFont2) {
1235         t = swf_InsertTag(t, ST_DEFINEFONT);
1236         swf_FontSetDefine(t, font);
1237         t = swf_InsertTag(t, ST_DEFINEFONTINFO);
1238         swf_FontSetInfo(t, font);
1239     } else {
1240         t = swf_InsertTag(t, ST_DEFINEFONT2);
1241         swf_FontSetDefine2(t, font);
1242     }
1243
1244     if (storeGlyphNames && font->glyphnames) {
1245         int c;
1246         t = swf_InsertTag(t, ST_GLYPHNAMES);
1247         swf_SetU16(t, WRITEFONTID);
1248         swf_SetU16(t, font->numchars);
1249         for (c = 0; c < font->numchars; c++) {
1250             if (font->glyphnames[c])
1251                 swf_SetString(t, font->glyphnames[c]);
1252             else
1253                 swf_SetString(t, "");
1254         }
1255     }
1256
1257     if (1)                      //neccessary only for df1, but pretty to look at anyhow, so do it always
1258     {
1259         int textscale = 400;
1260         int s;
1261         int xmax = 0;
1262         int ymax = 0;
1263         int ypos = 1;
1264         U8 gbits, abits;
1265         int x, y, c;
1266         int range = font->maxascii;
1267
1268         c = 0;
1269         if (useDefineFont2 && range > 256) {
1270             range = 256;
1271         }
1272
1273         for (s = 0; s < range; s++) {
1274             int g = font->ascii2glyph[s];
1275             if (g >= 0) {
1276                 if ((font->glyph[g].advance * textscale / 20) / 64 > xmax) {
1277                     xmax = (font->glyph[g].advance * textscale / 20) / 64;
1278                 }
1279                 c++;
1280             }
1281             if ((s & 15) == 0) {
1282                 if (c) {
1283                     ypos++;
1284                 }
1285                 c = 0;
1286             }
1287         }
1288         ymax = ypos * textscale * 2;
1289
1290         swf.movieSize.xmax = xmax * 20;
1291         swf.movieSize.ymax = ymax;
1292
1293         t = swf_InsertTag(t, ST_DEFINETEXT);
1294
1295         swf_SetU16(t, font->id + 1);    // ID
1296
1297         r.xmin = 0;
1298         r.ymin = 0;
1299         r.xmax = swf.movieSize.xmax;
1300         r.ymax = swf.movieSize.ymax;
1301
1302         swf_SetRect(t, &r);
1303
1304         swf_SetMatrix(t, NULL);
1305
1306         abits = swf_CountBits(xmax * 16, 0);
1307         gbits = 8;
1308
1309         swf_SetU8(t, gbits);
1310         swf_SetU8(t, abits);
1311
1312         rgb.r = 0x00;
1313         rgb.g = 0x00;
1314         rgb.b = 0x00;
1315         ypos = 1;
1316         for (y = 0; y < ((range + 15) / 16); y++) {
1317             int c = 0, lastx = -1;
1318             for (x = 0; x < 16; x++) {
1319                 int g = (y * 16 + x < range) ? font->ascii2glyph[y * 16 + x] : -1;
1320                 if (g >= 0 && font->glyph[g].shape) {
1321                     c++;
1322                     if (lastx < 0)
1323                         lastx = x * xmax;
1324                 }
1325             }
1326             if (c) {
1327                 swf_TextSetInfoRecord(t, font, textscale, &rgb, lastx + 1, textscale * ypos * 2);
1328                 for (x = 0; x < 16; x++) {
1329                     int g = (y * 16 + x < range) ? font->ascii2glyph[y * 16 + x] : -1;
1330                     if (g >= 0 && font->glyph[g].shape) {
1331                         if (lastx != x * xmax) {
1332                             swf_TextSetInfoRecord(t, 0, 0, 0, x * xmax + 1, 0);
1333                         }
1334                         swf_SetU8(t, 1);
1335                         swf_SetBits(t, g, gbits);
1336                         swf_SetBits(t, font->glyph[g].advance / 20, abits);
1337                         lastx = x * xmax + (font->glyph[g].advance / 20);
1338                         swf_ResetWriteBits(t);
1339                     }
1340                 }
1341                 ypos++;
1342             }
1343         }
1344         swf_SetU8(t, 0);
1345
1346
1347         t = swf_InsertTag(t, ST_PLACEOBJECT2);
1348
1349         swf_ObjectPlace(t, font->id + 1, 1, NULL, NULL, NULL);
1350
1351         t = swf_InsertTag(t, ST_SHOWFRAME);
1352
1353     }
1354
1355     t = swf_InsertTag(t, ST_END);
1356
1357     f = open(filename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0644);
1358     if FAILED
1359         (swf_WriteSWF(f, &swf)) fprintf(stderr, "WriteSWF() failed in writeFont().\n");
1360     close(f);
1361
1362     swf_FreeTags(&swf);
1363 }
1364
1365
1366 void swf_SetEditText(TAG * tag, U16 flags, SRECT r, char *text, RGBA * color, int maxlength, U16 font, U16 height, EditTextLayout * layout, char *variable)
1367 {
1368     swf_SetRect(tag, &r);
1369     swf_ResetWriteBits(tag);
1370
1371     flags &= ~(ET_HASTEXT | ET_HASTEXTCOLOR | ET_HASMAXLENGTH | ET_HASFONT | ET_HASLAYOUT);
1372     if (text)
1373         flags |= ET_HASTEXT;
1374     if (color)
1375         flags |= ET_HASTEXTCOLOR;
1376     if (maxlength)
1377         flags |= ET_HASMAXLENGTH;
1378     if (font)
1379         flags |= ET_HASFONT;
1380     if (layout)
1381         flags |= ET_HASLAYOUT;
1382
1383     swf_SetBits(tag, flags, 16);
1384
1385     if (flags & ET_HASFONT) {
1386         swf_SetU16(tag, font);  //font
1387         swf_SetU16(tag, height);        //fontheight
1388     }
1389     if (flags & ET_HASTEXTCOLOR) {
1390         swf_SetRGBA(tag, color);
1391     }
1392     if (flags & ET_HASMAXLENGTH) {
1393         swf_SetU16(tag, maxlength);     //maxlength
1394     }
1395     if (flags & ET_HASLAYOUT) {
1396         swf_SetU8(tag, layout->align);  //align
1397         swf_SetU16(tag, layout->leftmargin);    //left margin
1398         swf_SetU16(tag, layout->rightmargin);   //right margin
1399         swf_SetU16(tag, layout->indent);        //indent
1400         swf_SetU16(tag, layout->leading);       //leading
1401     }
1402     swf_SetString(tag, variable);
1403     if (flags & ET_HASTEXT)
1404         swf_SetString(tag, text);
1405 }
1406
1407 SRECT swf_SetDefineText(TAG * tag, SWFFONT * font, RGBA * rgb, char *text, int scale)
1408 {
1409     SRECT r;
1410     U8 gbits, abits;
1411     U8 *c = (U8 *) text;
1412     int pos = 0;
1413     if (font->layout) {
1414         r = swf_TextCalculateBBoxUTF8(font, text, scale * 20);
1415     } else {
1416         fprintf(stderr, "No layout information- can't compute text bbox accurately");
1417         /* Hm, without layout information, we can't compute a bounding
1418            box. We could call swf_FontCreateLayout to create a layout,
1419            but the caller probably doesn't want us to mess up his font
1420            structure.
1421          */
1422         r.xmin = r.ymin = 0;
1423         r.xmax = r.ymax = 1024 * 20;
1424     }
1425
1426     swf_SetRect(tag, &r);
1427
1428     /* The text matrix is pretty boring, as it doesn't apply to
1429        individual characters, but rather whole text objects (or
1430        at least whole char records- haven't tested).
1431        So it can't do anything which we can't already do with
1432        the placeobject tag we use for placing the text on the scene.
1433      */
1434     swf_SetMatrix(tag, 0);
1435
1436     swf_TextCountBitsUTF8(font, text, scale * 20, &gbits, &abits);
1437     swf_SetU8(tag, gbits);
1438     swf_SetU8(tag, abits);
1439
1440     /* now set the text params- notice that a font size of
1441        1024 means that the glyphs will be displayed exactly
1442        as they would be in/with a defineshape. (Try to find
1443        *that* in the flash specs)
1444      */
1445     swf_TextSetInfoRecord(tag, font, (scale * 1024) / 100, rgb, 0, 0);  //scale
1446
1447     /* set the actual text- notice that we just pass our scale
1448        parameter over, as TextSetCharRecord calculates with 
1449        percent, too */
1450     swf_TextSetCharRecordUTF8(tag, font, text, scale * 20, gbits, abits);
1451
1452     swf_SetU8(tag, 0);
1453     return r;
1454 }
1455
1456 void swf_FontCreateLayout(SWFFONT * f)
1457 {
1458     S16 leading = 0;
1459     int t;
1460     if (f->layout)
1461         return;
1462     if (!f->numchars)
1463         return;
1464
1465     f->layout = (SWFLAYOUT *) rfx_calloc(sizeof(SWFLAYOUT));
1466     f->layout->bounds = (SRECT *) rfx_alloc(f->numchars * sizeof(SRECT));
1467     f->layout->ascent = -32767;
1468     f->layout->descent = -32767;
1469
1470     for (t = 0; t < f->numchars; t++) {
1471         SHAPE2 *shape2;
1472         SRECT bbox;
1473         int width;
1474         shape2 = swf_ShapeToShape2(f->glyph[t].shape);
1475         if (!shape2) {
1476             fprintf(stderr, "Shape parse error\n");
1477             exit(1);
1478         }
1479         bbox = swf_GetShapeBoundingBox(shape2);
1480         swf_Shape2Free(shape2);
1481         f->layout->bounds[t] = bbox;
1482
1483         width = (bbox.xmax);
1484
1485         /* The following is a heuristic- it may be that extractfont_DefineText
1486            has already found out some widths for individual characters (from the way
1487            they are used)- we now have to guess whether that width might be possible,
1488            which is the case if it isn't either much too big or much too small */
1489         if (width > f->glyph[t].advance * 3 / 2 || width < f->glyph[t].advance / 2)
1490             f->glyph[t].advance = width;
1491
1492         if (-bbox.ymin > f->layout->ascent)
1493             f->layout->ascent = bbox.ymin;
1494         if (bbox.ymax > f->layout->descent)
1495             f->layout->descent = bbox.ymax;
1496     }
1497 }
1498
1499 void swf_DrawText(drawer_t * draw, SWFFONT * font, int size, char *text)
1500 {
1501     U8 *s = (U8 *) text;
1502     int advance = 0;
1503     while (*s) {
1504         SHAPE *shape;
1505         SHAPE2 *shape2;
1506         SHAPELINE *l;
1507         U32 c = readUTF8char(&s);
1508         int g = font->ascii2glyph[c];
1509         shape = font->glyph[g].shape;
1510         if (((int) g) < 0) {
1511             fprintf(stderr, "No char %d in font %s\n", c, font->name ? (char *) font->name : "?");
1512             continue;
1513         }
1514         shape2 = swf_ShapeToShape2(shape);
1515         l = shape2->lines;
1516         while (l) {
1517             if (l->type == moveTo) {
1518                 FPOINT to;
1519                 to.x = l->x * size / 100.0 / 20.0 + advance;
1520                 to.y = l->y * size / 100.0 / 20.0;
1521                 draw->moveTo(draw, &to);
1522             } else if (l->type == lineTo) {
1523                 FPOINT to;
1524                 to.x = l->x * size / 100.0 / 20.0 + advance;
1525                 to.y = l->y * size / 100.0 / 20.0;
1526                 draw->lineTo(draw, &to);
1527             } else if (l->type == splineTo) {
1528                 FPOINT mid, to;
1529                 mid.x = l->sx * size / 100.0 / 20.0 + advance;
1530                 mid.y = l->sy * size / 100.0 / 20.0;
1531                 to.x = l->x * size / 100.0 / 20.0 + advance;
1532                 to.y = l->y * size / 100.0 / 20.0;
1533                 draw->splineTo(draw, &mid, &to);
1534             }
1535             l = l->next;
1536         }
1537         swf_Shape2Free(shape2);
1538         advance += font->glyph[g].advance * size / 100.0 / 20.0;
1539     }
1540 }