added used_glyphs field in font usage
[swftools.git] / lib / rfxswf.h
1 /* rfxswf.h
2
3    Headers for rfxswf.c and modules
4
5    Part of the swftools package.
6
7    Copyright (c) 2000, 2001 Rainer Böhme <rfxswf@reflex-studio.de>
8  
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
22  
23
24 #ifndef __RFX_SWF_INCLUDED__
25 #define __RFX_SWF_INCLUDED__
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <math.h>
34 #include <string.h>
35 #include <unistd.h>
36 #include <fcntl.h>
37 #include <ctype.h>
38 #include "../config.h"
39 #include "./bitio.h"
40 #include "./drawer.h"
41 #include "./mem.h"
42
43 #define DEBUG_RFXSWF
44 #ifdef RFXSWF_DISABLESOUND
45 #define NO_MP3
46 #endif
47
48 #ifndef TRUE
49 #define TRUE (1)
50 #endif
51 #ifndef FALSE
52 #define FALSE (0)
53 #endif
54
55
56 /* little/big endian stuff */
57
58 #define PUT8(ptr,x) {((U8*)(ptr))[0]=x;}
59 #define PUT16(ptr,x) {((U8*)(ptr))[0]=(U8)(x);((U8*)(ptr))[1]=(U8)((x)>>8);}
60 #define PUT32(ptr,x) {((U8*)(ptr))[0]=(U8)(x);((U8*)(ptr))[1]=(U8)((x)>>8);((U8*)(ptr))[2]=(U8)((x)>>16);((U8*)(ptr))[3]=(U8)((x)>>24);}
61 #define GET16(ptr) (((U16)(((U8*)(ptr))[0]))+(((U16)(((U8*)(ptr))[1]))<<8))
62 #define GET32(ptr) (((U16)(((U8*)(ptr))[0]))+(((U16)(((U8*)(ptr))[1]))<<8)+(((U16)(((U8*)(ptr))[2]))<<16)+(((U16)(((U8*)(ptr))[3]))<<24))
63
64 #ifdef WORDS_BIGENDIAN
65 #define SWAP16(s) ((((s)>>8)&0x00ff)|(((s)<<8)&0xff00))
66 #define SWAP32(s) (SWAP16(((s)>>16)&0x0000ffff)|((SWAP16(s)<<16)&0xffff0000))
67 #define REVERSESWAP16(x) (x)
68 #define REVERSESWAP32(x) (x)
69 #else
70 #define SWAP16(x) (x)
71 #define SWAP32(x) (x)
72 #define REVERSESWAP16(s) ((((s)>>8)&0x00ff)|(((s)<<8)&0xff00))
73 #define REVERSESWAP32(s) (REVERSESWAP16(((s)>>16)&0x0000ffff)|((REVERSESWAP16(s)<<16)&0xffff0000))
74 #endif
75
76 // SWF Types
77
78 typedef         unsigned long   U32;
79 typedef         signed long     S32;
80 typedef         unsigned short  U16;
81 typedef         signed short    S16;
82 typedef         unsigned char   U8;
83 typedef         signed char     S8;
84 typedef         signed long     SFIXED;
85 typedef         signed long     SCOORD;
86
87 #define SCOORD_MAX 0x7fffffff
88 #define SCOORD_MIN -0x80000000
89
90 // Basic Structures
91
92 typedef struct _SPOINT
93 { SCOORD        x;
94   SCOORD        y;
95 } SPOINT;
96
97 typedef struct _RGBA
98 { U8    a;
99   U8    r;
100   U8    g;
101   U8    b;
102 } RGBA;
103
104 typedef struct _YUV
105 {
106   U8    y,u,v;
107 } YUV;
108
109 typedef struct _SRECT
110 { SCOORD        xmin;
111   SCOORD        ymin;
112   SCOORD        xmax;
113   SCOORD        ymax;
114 } SRECT;
115
116 typedef struct _MATRIX
117 { SFIXED        sx,r1, tx;
118   SFIXED        r0,sy, ty;
119 } MATRIX;
120
121 typedef struct _CXFORM
122 { S16           a0, a1; /* mult, add */
123   S16           r0, r1;
124   S16           g0, g1;
125   S16           b0, b1;
126 } CXFORM;
127
128 #define GRADIENT_LINEAR 0x10
129 #define GRADIENT_RADIAL 0x12
130 typedef struct _GRADIENT
131 {
132     int num;
133     U8 ratios[8];
134     RGBA rgba[8];
135 } GRADIENT;
136
137 typedef struct _TAG             // NEVER access a Tag-Struct directly !
138 { U16           id;
139   U8 *          data;
140   U32           memsize;        // to minimize realloc() calls
141
142   U32         len;            // for Set-Access
143   U32         pos;            // for Get-Access
144
145   struct _TAG * next;
146   struct _TAG * prev;
147
148   U8            readBit;        // for Bit-Manipulating Functions [read]
149   U8            writeBit;       // [write]
150   
151 } TAG;
152
153 #define swf_ResetReadBits(tag)   if (tag->readBit)  { tag->pos++; tag->readBit = 0; }
154 #define swf_ResetWriteBits(tag)  if (tag->writeBit) { tag->writeBit = 0; }
155
156 typedef struct _SOUNDINFO 
157 {
158     U8 stop;
159     U8 nomultiple; //continue playing if already started
160
161     U32 inpoint;
162     U32 outpoint;
163
164     U16 loops;
165     U8 envelopes;
166
167     //envelope:
168     U32* pos;
169     U32* left;
170     U32* right;
171 } SOUNDINFO;
172
173 typedef struct _SWF
174 { U8            fileVersion;
175   U8            compressed;     // SWF or SWC?
176   U32           fileSize;       // valid after load and save
177   SRECT         movieSize;
178   U16           frameRate;
179   U16           frameCount;     // valid after load and save
180   TAG *         firstTag;
181 } SWF;
182
183 // Basic Functions
184
185 int  swf_ReadSWF2(struct reader_t*reader, SWF * swf);   // Reads SWF via callback
186 int  swf_ReadSWF(int handle,SWF * swf);     // Reads SWF to memory (malloc'ed), returns length or <0 if fails
187 int  swf_WriteSWF2(struct writer_t*writer, SWF * swf);     // Writes SWF via callback, returns length or <0 if fails
188 int  swf_WriteSWF(int handle,SWF * swf);    // Writes SWF to file, returns length or <0 if fails
189 int  swf_WriteSWC(int handle, SWF * swf);   // for convenience, equal to swf->compressed=1;swf_WriteSWF(..)
190 int  swf_WriteCGI(SWF * swf);               // Outputs SWF with valid CGI header to stdout
191 void swf_FreeTags(SWF * swf);               // Frees all malloc'ed memory for swf
192 SWF* swf_CopySWF(SWF*swf);
193
194 // for streaming:
195 int  swf_WriteHeader(int handle,SWF * swf);    // Writes Header of swf to file
196 int  swf_WriteHeader2(struct writer_t*writer,SWF * swf);    // Writes Header of swf to file
197 int  swf_WriteTag(int handle,TAG * tag);    // Writes TAG to file
198 int  swf_WriteTag2(struct writer_t*writer, TAG * t); //Write TAG via callback
199
200 int  swf_ReadHeader(struct reader_t*reader, SWF * swf);   // Reads SWF Header via callback
201
202 // folding/unfolding:
203
204 void swf_FoldAll(SWF*swf);
205 void swf_UnFoldAll(SWF*swf);
206 void swf_FoldSprite(TAG*tag);
207 void swf_UnFoldSprite(TAG*tag);
208 int swf_IsFolded(TAG*tag);
209
210 // tag reordering:
211
212 void swf_OptimizeTagOrder(SWF*swf);
213
214 // basic routines:
215     
216 TAG * swf_InsertTag(TAG * after,U16 id);    // updates frames, if necessary
217 TAG * swf_InsertTagBefore(SWF*swf, TAG * before,U16 id);     // like InsertTag, but insert tag before argument
218 int   swf_DeleteTag(TAG * t);
219
220 void  swf_ClearTag(TAG * t);                //frees tag data
221 void  swf_ResetTag(TAG*tag, U16 id);        //set's tag position and length to 0, without freeing it
222 TAG*  swf_CopyTag(TAG*tag, TAG*to_copy);     //stores a copy of another tag into this taglist
223     
224 void  swf_SetTagPos(TAG * t,U32 pos);       // resets Bitcount
225 U32   swf_GetTagPos(TAG * t);
226
227 TAG * swf_NextTag(TAG * t);
228 TAG * swf_PrevTag(TAG * t);
229
230 U16   swf_GetTagID(TAG * t);                // ... TagGetID
231 U32   swf_GetTagLen(TAG * t);             // ... TagGetTagLen
232 U8*   swf_GetTagLenPtr(TAG * t);
233
234 U32   swf_GetBits(TAG * t,int nbits);
235 S32   swf_GetSBits(TAG * t,int nbits);
236 int   swf_SetBits(TAG * t,U32 v,int nbits);
237
238 int   swf_GetBlock(TAG * t,U8 * b,int l);   // resets Bitcount
239 int   swf_SetBlock(TAG * t,U8 * b,int l);
240
241 U8    swf_GetU8(TAG * t);                   // resets Bitcount
242 U16   swf_GetU16(TAG * t);
243 #define swf_GetS16(tag)     ((S16)swf_GetU16(tag))
244 U32   swf_GetU32(TAG * t);
245 void  swf_GetRGB(TAG * t, RGBA * col);
246 void  swf_GetRGBA(TAG * t, RGBA * col);
247 void  swf_GetGradient(TAG * t, GRADIENT * gradient, char alpha);
248 char* swf_GetString(TAG*t);
249 int   swf_SetU8(TAG * t,U8 v);              // resets Bitcount
250 int   swf_SetU16(TAG * t,U16 v);
251 void  swf_SetS16(TAG * t,int v);
252 int   swf_SetU32(TAG * t,U32 v);
253 #define swf_SetString(t,s)  swf_SetBlock(t,s,strlen(s)+1)
254
255 //int   swf_GetPoint(TAG * t,SPOINT * p);     // resets Bitcount
256 int   swf_GetRect(TAG * t,SRECT * r);
257 int   swf_GetMatrix(TAG * t,MATRIX * m);
258 int   swf_GetCXForm(TAG * t,CXFORM * cx,U8 alpha);
259
260 //int   swf_SetPoint(TAG * t,SPOINT * p);     // resets Bitcount
261 int   swf_SetRect(TAG * t,SRECT * r);
262 int   swf_SetMatrix(TAG * t,MATRIX * m);
263 int   swf_SetCXForm(TAG * t,CXFORM * cx,U8 alpha);
264 int   swf_SetRGB(TAG * t,RGBA * col);
265 int   swf_SetRGBA(TAG * t,RGBA * col);
266 void  swf_SetPassword(TAG * t, const char * password);
267
268 int   swf_VerifyPassword(TAG * t, const char * password);
269
270 // helper functions:
271
272 void swf_ExpandRect(SRECT*src, SPOINT add);
273 void swf_ExpandRect2(SRECT*src, SRECT*add);
274 void swf_ExpandRect3(SRECT*src, SPOINT center, int radius);
275 SPOINT swf_TurnPoint(SPOINT p, MATRIX* m);
276 SRECT swf_TurnRect(SRECT r, MATRIX* m);
277
278 #ifndef FAILED
279 #define FAILED(b)       ((b)<0)
280 #endif
281
282 // Tag IDs (adopted from J. C. Kessels' Form2Flash)
283
284 #define ST_END                  0
285 #define ST_SHOWFRAME            1
286 #define ST_DEFINESHAPE          2
287 #define ST_FREECHARACTER        3
288 #define ST_PLACEOBJECT          4
289 #define ST_REMOVEOBJECT         5
290 #define ST_DEFINEBITS           6
291 #define ST_DEFINEBITSJPEG       6 
292 #define ST_DEFINEBUTTON         7
293 #define ST_JPEGTABLES           8
294 #define ST_SETBACKGROUNDCOLOR   9
295 #define ST_DEFINEFONT           10
296 #define ST_DEFINETEXT           11
297 #define ST_DOACTION             12
298 #define ST_DEFINEFONTINFO       13
299 #define ST_DEFINESOUND          14 /* Event sound tags. */
300 #define ST_STARTSOUND           15
301 #define ST_DEFINEBUTTONSOUND    17
302 #define ST_SOUNDSTREAMHEAD      18
303 #define ST_SOUNDSTREAMBLOCK     19
304 #define ST_DEFINEBITSLOSSLESS   20 /* A bitmap using lossless zlib compression. */
305 #define ST_DEFINEBITSJPEG2      21 /* A bitmap using an internal JPEG compression table. */
306 #define ST_DEFINESHAPE2         22
307 #define ST_DEFINEBUTTONCXFORM   23
308 #define ST_PROTECT              24 /* This file should not be importable for editing. */
309 #define ST_PLACEOBJECT2         26 /* The new style place w/ alpha color transform and name. */
310 #define ST_REMOVEOBJECT2        28 /* A more compact remove object that omits the character tag (just depth). */
311 #define ST_FREEALL              31 /* ? */
312 #define ST_DEFINESHAPE3         32 /* A shape V3 includes alpha values. */
313 #define ST_DEFINETEXT2          33 /* A text V2 includes alpha values. */
314 #define ST_DEFINEBUTTON2        34 /* A button V2 includes color transform, alpha and multiple actions */
315 #define ST_DEFINEBITSJPEG3      35 /* A JPEG bitmap with alpha info. */
316 #define ST_DEFINEBITSLOSSLESS2  36 /* A lossless bitmap with alpha info. */
317 #define ST_DEFINEEDITTEXT       37
318 #define ST_DEFINEMOVIE          38
319 #define ST_DEFINESPRITE         39 /* Define a sequence of tags that describe the behavior of a sprite. */
320 #define ST_NAMECHARACTER        40 /* Name a character definition, character id and a string, (used for buttons, bitmaps, sprites and sounds). */
321 #define ST_SERIALNUMBER         41
322 #define ST_GENERATORTEXT        42 /* contains an id */
323 #define ST_FRAMELABEL           43 /* A string label for the current frame. */
324 #define ST_SOUNDSTREAMHEAD2     45 /* For lossless streaming sound, should not have needed this... */
325 #define ST_DEFINEMORPHSHAPE     46 /* A morph shape definition */
326 #define ST_DEFINEFONT2          48
327 #define ST_TEMPLATECOMMAND      49
328 #define ST_GENERATOR3           51
329 #define ST_EXTERNALFONT         52
330 #define ST_EXPORTASSETS         56
331 #define ST_IMPORTASSETS         57
332 #define ST_ENABLEDEBUGGER       58
333 #define ST_DOINITACTION         59
334 #define ST_DEFINEVIDEOSTREAM    60
335 #define ST_VIDEOFRAME           61
336 #define ST_DEFINEFONTINFO2      62
337 #define ST_MX4                  63 /*(?) */
338 #define ST_SCRIPTLIMITS         65 /* version 7- u16 maxrecursedepth, u16 scripttimeoutseconds */
339 #define ST_SETTABINDEX          66 /* version 7- u16 depth(!), u16 tab order value */
340
341 /* custom tags- only valid for swftools */
342 #define ST_REFLEX              777 /* to identify generator software */
343 #define ST_GLYPHNAMES          778
344
345 // Advanced Funtions
346
347 // swfshape.c
348
349 typedef struct _LINESTYLE
350 { U16           width;
351   RGBA          color;
352 } LINESTYLE;
353
354 #define FILL_SOLID      0x00
355 #define FILL_LINEAR     0x10  // Gradient
356 #define FILL_RADIAL     0x12
357 #define FILL_TILED      0x40  // Bitmap
358 #define FILL_CLIPPED    0x41
359
360 typedef struct _FILLSTYLE
361 { U8        type;
362   RGBA      color;
363   MATRIX    m; 
364   U16       id_bitmap;
365   GRADIENT  gradient;
366 } FILLSTYLE;
367      
368 typedef struct _SHAPE           // NEVER access a Shape-Struct directly !
369 {                 
370   struct
371   { LINESTYLE * data;
372     U16         n;
373   } linestyle;
374                   
375   struct                    
376   { FILLSTYLE * data;
377     U16         n;
378   } fillstyle;
379  
380   struct
381   { U16         fill;
382     U16         line;
383   } bits;
384                                 // used by Get/SetSimpleShape and glyph handling
385   U8 *          data;
386   U32           bitlen;         // length of data in bits
387 } SHAPE;
388
389 /* SHAPE can be converted into SHAPE2: */
390
391 struct _SHAPELINE;
392 typedef struct _SHAPE2
393 {
394     LINESTYLE * linestyles;
395     int numlinestyles;
396     FILLSTYLE* fillstyles;
397     int numfillstyles;
398     struct _SHAPELINE * lines;
399     SRECT* bbox; // may be NULL
400 } SHAPE2;
401
402 typedef struct _SHAPELINE
403 {
404     enum {moveTo, lineTo, splineTo} type;
405     SCOORD x,y;
406     SCOORD sx,sy; //only if type==splineTo
407     int fillstyle0;
408     int fillstyle1;
409     int linestyle;
410     struct _SHAPELINE * next;
411 } SHAPELINE;
412
413 // Shapes
414
415 int   swf_ShapeNew(SHAPE ** s);
416 void  swf_ShapeFree(SHAPE * s);
417
418 int   swf_GetSimpleShape(TAG * t,SHAPE ** s); // without Linestyle/Fillstyle Record
419 int   swf_SetSimpleShape(TAG * t,SHAPE * s);   // without Linestyle/Fillstyle Record
420
421 int   swf_ShapeAddLineStyle(SHAPE * s,U16 width,RGBA * color);
422 int   swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color);
423 int   swf_ShapeAddBitmapFillStyle(SHAPE * s,MATRIX * m,U16 id_bitmap,int clip);
424 int   swf_ShapeAddGradientFillStyle(SHAPE * s,MATRIX * m,GRADIENT* gradient,int radial);
425 int   swf_ShapeAddFillStyle2(SHAPE * s,FILLSTYLE*fs);
426
427 int   swf_SetShapeStyles(TAG * t,SHAPE * s);
428 int   swf_ShapeCountBits(SHAPE * s,U8 * fbits,U8 * lbits);
429 int   swf_SetShapeBits(TAG * t,SHAPE * s);
430 int   swf_SetShapeHeader(TAG * t,SHAPE * s); // one call for upper three functions
431
432 int   swf_ShapeSetMove(TAG * t,SHAPE * s,S32 x,S32 y);
433 int   swf_ShapeSetStyle(TAG * t,SHAPE * s,int line,int fill0,int fill1);
434 #define UNDEFINED_COORD 0x7fffffff
435 int   swf_ShapeSetAll(TAG * t,SHAPE * s,S32 x,S32 y,int line,int fill0,int fill1);
436
437 int   swf_ShapeSetLine(TAG * t,SHAPE * s,S32 x,S32 y);
438 int   swf_ShapeSetCurve(TAG * t,SHAPE * s,S32 x,S32 y,S32 ax,S32 ay);
439 int   swf_ShapeSetCircle(TAG * t,SHAPE * s,S32 x,S32 y,S32 rx,S32 ry);
440 int   swf_ShapeSetEnd(TAG * t);
441
442 void  swf_ShapeSetBitmapRect(TAG * t, U16 gfxid, int width, int height);
443
444 //SHAPELINE* swf_ParseShapeData(U8*data, int bits, int fillbits, int linebits);
445 SHAPE2*    swf_ShapeToShape2(SHAPE*shape);
446 void       swf_Shape2ToShape(SHAPE2*shape2, SHAPE*shape);
447 SRECT      swf_GetShapeBoundingBox(SHAPE2*shape);
448 void        swf_SetShape2(TAG*tag, SHAPE2*shape);
449 SHAPE2*    swf_Shape2Clone(SHAPE2 * s);
450 void       swf_Shape2Free(SHAPE2 * s);
451 void    swf_DumpShape(SHAPE2*shape2);
452
453 void swf_ParseDefineShape(TAG*tag, SHAPE2*shape);
454 void swf_SetShape2(TAG*tag, SHAPE2*shape2);
455
456 void swf_RecodeShapeData(U8*data, int bitlen, int in_bits_fill, int in_bits_line, 
457                          U8**destdata, U32*destbitlen, int out_bits_fill, int out_bits_line);
458
459 // swfdraw.c
460
461 void swf_Shape10DrawerInit(drawer_t*draw, TAG*tag);
462 void swf_Shape01DrawerInit(drawer_t*draw, TAG*tag);
463 void swf_Shape11DrawerInit(drawer_t*draw, TAG*tag);
464 SHAPE* swf_ShapeDrawerToShape(drawer_t*draw);
465 SRECT swf_ShapeDrawerGetBBox(drawer_t*draw);
466
467 void swf_DrawString(drawer_t*draw, const char*source);
468
469 // swftext.c
470
471 typedef struct _KERNING
472 {
473   U16         char1;
474   U16         char2;
475   U16         adjustment;
476 } SWFKERNING;
477
478 typedef struct _SWFLAYOUT
479 { S16          ascent;
480   S16          descent;
481   S16          leading;
482   SRECT      * bounds;
483   U16          kerningcount;
484   SWFKERNING * kerning;
485 } SWFLAYOUT;
486
487 typedef struct
488 { S16         advance;
489   SHAPE *     shape;
490 } SWFGLYPH;
491
492 typedef struct _FONTUSAGE
493 { int* chars;
494   char is_reduced;
495   int used_glyphs;
496 } FONTUSAGE;
497
498 #define FONT_STYLE_BOLD 1
499 #define FONT_STYLE_ITALIC 2
500 #define FONT_ENCODING_UNICODE 1
501 #define FONT_ENCODING_ANSI 2 
502 #define FONT_ENCODING_SHIFTJIS 4
503
504 typedef struct _SWFFONT
505 { int           id; // -1 = not set
506   U8            version; // 0 = not set, 1 = definefont, 2 = definefont2
507   U8 *          name;
508   SWFLAYOUT *   layout;
509   U16           numchars;
510   U16           maxascii; // highest mapped ascii value
511   
512   U8            style;
513   U8            encoding;
514
515   U16   *       glyph2ascii;
516   int   *       ascii2glyph;
517   SWFGLYPH *    glyph;
518   U8            language;
519   char **       glyphnames;
520
521   FONTUSAGE *   use;
522
523 } SWFFONT;
524
525
526 #define ET_HASTEXT 32768
527 #define ET_WORDWRAP 16384
528 #define ET_MULTILINE 8192
529 #define ET_PASSWORD 4096
530 #define ET_READONLY 2048
531 #define ET_HASTEXTCOLOR 1024
532 #define ET_HASMAXLENGTH 512
533 #define ET_HASFONT 256
534 #define ET_X3 128
535 #define ET_AUTOSIZE 64 /* MX */
536 #define ET_HASLAYOUT 32
537 #define ET_NOSELECT 16
538 #define ET_BORDER 8
539 #define ET_X1 4
540 #define ET_HTML 2 /* MX? */
541 #define ET_USEOUTLINES 1
542
543 #define ET_ALIGN_LEFT 0
544 #define ET_ALIGN_RIGHT  1
545 #define ET_ALIGN_CENTER 2
546 #define ET_ALIGN_JUSTIFY 3
547
548 typedef struct _EditTextLayout
549 {
550     U8 align; // 0=left, 1=right, 2=center, 3=justify
551     U16 leftmargin;
552     U16 rightmargin;
553     U16 indent;
554     U16 leading;
555 } EditTextLayout;
556
557 int swf_FontEnumerate(SWF * swf,void (*FontCallback) (void*,U16,U8*), void*self);
558 // -> void fontcallback(U16 id,U8 * name); returns number of defined fonts
559
560 int swf_FontExtract(SWF * swf,int id,SWFFONT ** f);
561 // Fetches all available information from DefineFont, DefineFontInfo, DefineText, ...
562 // id = FontID, id=0 -> Extract first Font
563
564 int swf_FontIsItalic(SWFFONT * f);
565 int swf_FontIsBold(SWFFONT * f);
566
567 int swf_FontSetID(SWFFONT * f,U16 id);
568 int swf_FontReduce(SWFFONT * f);
569
570 int swf_FontInitUsage(SWFFONT * f);
571 int swf_FontUseGlyph(SWFFONT * f, int glyph);
572 int swf_FontUse(SWFFONT* f,U8 * s);
573
574 int swf_FontSetDefine(TAG * t,SWFFONT * f);
575 int swf_FontSetDefine2(TAG * t,SWFFONT * f);
576 int swf_FontSetInfo(TAG * t,SWFFONT * f);
577
578 void swf_FontCreateLayout(SWFFONT*f);
579 void swf_FontAddLayout(SWFFONT * f, int ascent, int descent, int leading);
580
581 int swf_ParseDefineText(TAG * t, void(*callback)(void*self, int*chars, int*xpos, int nr, int fontid, int fontsize, int xstart, int ystart, RGBA* color), void*self);
582
583 void swf_WriteFont(SWFFONT* font, char* filename);
584 SWFFONT* swf_ReadFont(char* filename);
585
586 void swf_FontFree(SWFFONT * f);
587
588 U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale);
589 int swf_TextCountBits(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits);
590
591 #define SET_TO_ZERO 0x80000000
592 int swf_TextSetInfoRecord(TAG * t,SWFFONT * font,U16 size,RGBA * color,int dx,int dy);
593 int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits);
594
595 int swf_TextPrintDefineText(TAG * t,SWFFONT * f);
596 // Prints text defined in tag t with font f to stdout
597
598 void swf_FontPrepareForEditText(SWFFONT * f);
599
600 /* notice: if you set the fontid, make sure you call swf_FontPrepareForEditText() for the font first */
601 void swf_SetEditText(TAG*tag, U16 flags, SRECT r, char*text, RGBA*color, 
602         int maxlength, U16 font, U16 height, EditTextLayout*layout, char*variable);
603
604 SRECT swf_SetDefineText(TAG*tag, SWFFONT*font, RGBA*rgb, char*text, int scale);
605
606 void swf_DrawText(drawer_t*draw, SWFFONT*font, int size, char*text);
607
608 // swffont.c
609
610 SWFFONT* swf_LoadTrueTypeFont(char*filename);
611 SWFFONT* swf_LoadT1Font(char*filename);
612 SWFFONT* swf_LoadFont(char*filename);
613
614 void swf_SetLoadFontParameters(int scale, int skip_unused, int full_unicode);
615
616 // swfdump.c
617
618 void swf_DumpHeader(FILE * f,SWF * swf);
619 void swf_DumpMatrix(FILE * f,MATRIX * m);
620 void swf_DumpTag(FILE * f,TAG * t); 
621 void swf_DumpSWF(FILE * f,SWF*swf);
622 char* swf_TagGetName(TAG*tag);
623 void swf_DumpFont(SWFFONT * font);
624
625 // swfbutton.c
626
627 // Button States
628
629 #define BS_HIT          0x08
630 #define BS_DOWN         0x04
631 #define BS_OVER         0x02
632 #define BS_UP           0x01
633
634 // Button Conditions
635
636 /* missing: IDLE_OUTDOWN 
637             OUTDOWN_OVERUP
638             OVERUP_OUTDOWN
639 */
640 #define BC_OVERDOWN_IDLE        0x0100
641 #define BC_IDLE_OVERDOWN        0x0080
642 #define BC_OUTDOWN_IDLE         0x0040
643 #define BC_OUTDOWN_OVERDOWN     0x0020
644 #define BC_OVERDOWN_OUTDOWN     0x0010
645 #define BC_OVERDOWN_OVERUP      0x0008
646 #define BC_OVERUP_OVERDOWN      0x0004
647 #define BC_OVERUP_IDLE          0x0002
648 #define BC_IDLE_OVERUP          0x0001
649
650 #define BC_KEY(c) (c<<9)
651
652 #define BC_CURSORLEFT           0x0200
653 #define BC_CURSORRIGHT          0x0400
654 #define BC_POS1                 0x0600
655 #define BC_END                  0x0800
656 #define BC_INSERT               0x0a00
657 #define BC_DELETE               0x0c00
658 #define BC_CLEAR                0x0e00
659 #define BC_BACKSPACE            0x1000
660 #define BC_ENTER                0x1a00
661 #define BC_CURSORUP             0x1c00
662 #define BC_CURSORDOWN           0x1e00
663 #define BC_PAGEUP               0x2000
664 #define BC_PAGEDOWN             0x2200
665 #define BC_TAB                  0x2400
666 #define BC_ESCAPE               0x3600
667 #define BC_SPACE                0x4000
668
669 /* these are probably only valid with linux:
670    Ctrl-A        0x0200
671    Ctrl-X        0x3000
672    Ctrl-Y        0x3200
673    Ctrl-Z        0x3400
674    Escape/Ctrl-[ 0x3600
675    Ctrl-\        0x3800
676    Ctrl-]        0x3a00
677    Ctrl-^        0x3c00
678    Ctrl-/        0x3e00
679    */
680
681 /* everything above 0x4000 is standard ascii:
682    0x4000 ' ' 0x4200 '!' 0x4600 '#' 0x4800 '$' 0x4a00 '%' 0x4c00 '&' ...
683    0x6000 '0' ... 0x7200 '9' 
684    0x8000 '@' 
685    0x8200 'A' ...  0xb400 'Z' 
686    ...
687    0xfc00 '~'
688  */
689
690 // Button Flag
691
692 #define BF_TRACKMENU            0x01
693
694 int swf_ButtonSetRecord(TAG * t,U8 state,U16 id,U16 layer,MATRIX * m,CXFORM * cx);
695 int swf_ButtonSetCondition(TAG * t,U16 condition); // for DefineButton2
696 int swf_ButtonSetFlags(TAG * t,U8 flags);  // necessary for DefineButton2
697 int swf_ButtonPostProcess(TAG * t,int anz_action); // Set all offsets in DefineButton2-Tags (how many conditions to process)
698
699 // swfbits.c
700
701 int swf_ImageHasAlpha(RGBA*img, int width, int height);
702 int swf_ImageGetNumberOfPaletteEntries(RGBA*img, int width, int height, RGBA*palette);
703
704 typedef int JPEGBITS;
705 JPEGBITS * swf_SetJPEGBitsStart(TAG * t,int width,int height,int quality); // deprecated
706 int swf_SetJPEGBitsLines(JPEGBITS * jpegbits,U8 ** data,int n); // deprecated
707 int swf_SetJPEGBitsLine(JPEGBITS * jpegbits,U8 * data); // deprecated
708 int swf_SetJPEGBitsFinish(JPEGBITS * jpegbits); // deprecated
709
710 void swf_GetJPEGSize(char * fname, int*width, int*height);
711
712 int swf_SetJPEGBits(TAG * t,char * fname,int quality);
713 void swf_SetJPEGBits2(TAG * t,U16 width,U16 height,RGBA * bitmap,int quality);
714 int swf_SetJPEGBits3(TAG * tag,U16 width,U16 height,RGBA* bitmap, int quality);
715 RGBA* swf_JPEG2TagToImage(TAG*tag, int*width, int*height);
716 void swf_RemoveJPEGTables(SWF*swf);
717
718 void swf_SaveJPEG(char*filename, RGBA*pixels, int width, int height, int quality);
719
720 #define BYTES_PER_SCANLINE(width) ((width+3)&0xfffffffc)
721
722 #define BMF_8BIT        3               // Bitmap formats
723 #define BMF_16BIT       4
724 #define BMF_32BIT       5
725
726 int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags);
727 int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors);
728 int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap);
729 void swf_SetLosslessImage(TAG*tag, RGBA*data, int width, int height); //WARNING: will change tag->id
730
731 RGBA* swf_DefineLosslessBitsTagToImage(TAG*tag, int*width, int*height);
732
733 RGBA* swf_ExtractImage(TAG*tag, int*dwidth, int*dheight);
734 RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheight);
735 TAG* swf_AddImage(TAG*tag, int bitid, RGBA*mem, int width, int height, int quality);
736
737 // swfsound.c
738 void swf_SetSoundStreamHead(TAG*tag, int avgnumsamples);
739 void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int seek, char first); /* expects 2304 samples */
740 void swf_SetSoundDefine(TAG*tag, S16*samples, int num);
741 void swf_SetSoundDefineMP3(TAG*tag, U8* data, unsigned length,
742                            unsigned SampRate,
743                            unsigned Channels,
744                            unsigned NumFrames);
745 void swf_SetSoundInfo(TAG*tag, SOUNDINFO*info);
746
747 // swftools.c
748
749 void swf_Optimize(SWF*swf);
750 U8 swf_isDefiningTag(TAG * t);
751 U8 swf_isPseudoDefiningTag(TAG * t);
752 U8 swf_isAllowedSpriteTag(TAG * t);
753 U8 swf_isImageTag(TAG*tag);
754 U8 swf_isShapeTag(TAG*tag);
755 U8 swf_isTextTag(TAG*tag);
756 U8 swf_isFontTag(TAG*tag);
757 U8 swf_isPlaceTag(TAG*tag);
758
759 U16 swf_GetDefineID(TAG * t);
760 SRECT swf_GetDefineBBox(TAG * t);
761 void swf_SetDefineBBox(TAG * t, SRECT r);
762
763 void swf_SetDefineID(TAG * t, U16 newid);
764 U16 swf_GetPlaceID(TAG * t); //PLACEOBJECT, PLACEOBJECT2 (sometimes), REMOVEOBJECT
765 int swf_GetDepth(TAG * t); //PLACEOBJECT,PLACEOBJECT2,REMOVEOBJECT,REMOVEOBJECT2,SETTABINDEX
766 char* swf_GetName(TAG * t); //PLACEOBJECT2, FRAMELABEL
767 MATRIX * swf_MatrixJoin(MATRIX * d,MATRIX * s1,MATRIX * s2);
768 MATRIX * swf_MatrixMapTriangle(MATRIX * m,int dx,int dy,
769                     int x0,int y0,int x1,int y1,int x2,int y2);
770 int swf_GetNumUsedIDs(TAG * t);
771 void swf_GetUsedIDs(TAG * t, int * positions);
772 void swf_Relocate(SWF*swf, char*bitmap); // bitmap is 65536 bytes, bitmap[a]==0 means id a is free
773 void swf_RelocateDepth(SWF*swf, char*bitmap); // bitmap is 65536 bytes, bitmap[d]==0 means depth d is free
774
775 TAG* swf_Concatenate (TAG*list1,TAG*list2); // warning: both list1 and list2 are invalid after this call.
776
777 RGBA swf_GetSWFBackgroundColor(SWF*swf);
778
779 // swfcgi.c
780
781 void swf_uncgi();  // same behaviour as Steven Grimm's uncgi-library
782
783 // swfaction.c
784
785 typedef struct _ActionTAG 
786 { U8            op;
787   U16           len;
788   U8 *          data;
789
790   struct _ActionTAG * next;
791   struct _ActionTAG * prev;
792
793   struct _ActionTAG * parent;
794   U8 tmp[8]; // store small operands here.
795 } ActionTAG;
796
797 typedef struct _ActionMarker
798 {
799   ActionTAG* atag;
800 } ActionMarker;
801
802 ActionTAG* swf_ActionGet(TAG*tag);
803 void swf_ActionFree(ActionTAG*tag);
804 void swf_ActionSet(TAG*tag, ActionTAG*actions);
805 void swf_DumpActions(ActionTAG*atag, char*prefix);
806 void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*));
807 void swf_ActionEnumerateTargets(ActionTAG*atag, char*(*callback)(char*));
808 void swf_ActionEnumerateStrings(ActionTAG*atag, char*(*callback)(char*));
809
810 // using action/actioncompiler.h:
811 ActionTAG* swf_ActionCompile(const char* source, int version);
812
813 ActionTAG* action_End(ActionTAG*atag);
814 ActionTAG* action_NextFrame(ActionTAG*atag);
815 ActionTAG* action_PreviousFrame(ActionTAG*atag);
816 ActionTAG* action_Play(ActionTAG*atag);
817 ActionTAG* action_Stop(ActionTAG*atag);
818 ActionTAG* action_ToggleQuality(ActionTAG*atag);
819 ActionTAG* action_StopSounds(ActionTAG*atag);
820 ActionTAG* action_Add(ActionTAG*atag);
821 ActionTAG* action_Subtract(ActionTAG*atag);
822 ActionTAG* action_Multiply(ActionTAG*atag);
823 ActionTAG* action_Divide(ActionTAG*atag);
824 ActionTAG* action_Equals(ActionTAG*atag);
825 ActionTAG* action_Less(ActionTAG*atag);
826 ActionTAG* action_And(ActionTAG*atag);
827 ActionTAG* action_Or(ActionTAG*atag);
828 ActionTAG* action_Not(ActionTAG*atag);
829 ActionTAG* action_StringEquals(ActionTAG*atag);
830 ActionTAG* action_StringLength(ActionTAG*atag);
831 ActionTAG* action_StringExtract(ActionTAG*atag);
832 ActionTAG* action_Pop(ActionTAG*atag);
833 ActionTAG* action_ToInteger(ActionTAG*atag);
834 ActionTAG* action_GetVariable(ActionTAG*atag);
835 ActionTAG* action_SetVariable(ActionTAG*atag);
836 ActionTAG* action_SetTarget2(ActionTAG*atag);
837 ActionTAG* action_StringAdd(ActionTAG*atag);
838 ActionTAG* action_GetProperty(ActionTAG*atag);
839 ActionTAG* action_SetProperty(ActionTAG*atag);
840 ActionTAG* action_CloneSprite(ActionTAG*atag);
841 ActionTAG* action_RemoveSprite(ActionTAG*atag);
842 ActionTAG* action_Trace(ActionTAG*atag);
843 ActionTAG* action_StartDrag(ActionTAG*atag);
844 ActionTAG* action_EndDrag(ActionTAG*atag);
845 ActionTAG* action_StringLess(ActionTAG*atag);
846 ActionTAG* action_RandomNumber(ActionTAG*atag);
847 ActionTAG* action_MBStringLength(ActionTAG*atag);
848 ActionTAG* action_CharToAscii(ActionTAG*atag);
849 ActionTAG* action_AsciiToChar(ActionTAG*atag);
850 ActionTAG* action_GetTime(ActionTAG*atag);
851 ActionTAG* action_MBStringExtract(ActionTAG*atag);
852 ActionTAG* action_MBCharToAscii(ActionTAG*atag);
853 ActionTAG* action_MBAsciiToChar(ActionTAG*atag);
854 ActionTAG* action_Delete(ActionTAG*atag);
855 ActionTAG* action_Delete2(ActionTAG*atag);
856 ActionTAG* action_DefineLocal(ActionTAG*atag);
857 ActionTAG* action_CallFunction(ActionTAG*atag);
858 ActionTAG* action_Return(ActionTAG*atag);
859 ActionTAG* action_Modulo(ActionTAG*atag);
860 ActionTAG* action_NewObject(ActionTAG*atag);
861 ActionTAG* action_DefineLocal2(ActionTAG*atag);
862 ActionTAG* action_InitArray(ActionTAG*atag);
863 ActionTAG* action_Makehash(ActionTAG*atag);
864 ActionTAG* action_TypeOf(ActionTAG*atag);
865 ActionTAG* action_TargetPath(ActionTAG*atag);
866 ActionTAG* action_Enumerate(ActionTAG*atag);
867 ActionTAG* action_Add2(ActionTAG*atag);
868 ActionTAG* action_Less2(ActionTAG*atag);
869 ActionTAG* action_Equals2(ActionTAG*atag);
870 ActionTAG* action_ToNumber(ActionTAG*atag);
871 ActionTAG* action_ToString(ActionTAG*atag);
872 ActionTAG* action_PushDuplicate(ActionTAG*atag);
873 ActionTAG* action_StackSwap(ActionTAG*atag);
874 ActionTAG* action_GetMember(ActionTAG*atag);
875 ActionTAG* action_SetMember(ActionTAG*atag);
876 ActionTAG* action_Increment(ActionTAG*atag);
877 ActionTAG* action_Decrement(ActionTAG*atag);
878 ActionTAG* action_CallMethod(ActionTAG*atag);
879 ActionTAG* action_NewMethod(ActionTAG*atag);
880 ActionTAG* action_BitAnd(ActionTAG*atag);
881 ActionTAG* action_BitOr(ActionTAG*atag);
882 ActionTAG* action_BitXor(ActionTAG*atag);
883 ActionTAG* action_BitLShift(ActionTAG*atag);
884 ActionTAG* action_BitRShift(ActionTAG*atag);
885 ActionTAG* action_BitURShift(ActionTAG*atag);
886 ActionTAG* action_GotoFrame(ActionTAG*atag, U16 frame);
887 ActionTAG* action_GetUrl(ActionTAG*atag, char* url, char* label);
888 ActionTAG* action_StoreRegister(ActionTAG*atag, U8 reg);
889 ActionTAG* action_Constantpool(ActionTAG*atag, char* constantpool);
890 ActionTAG* action_WaitForFrame(ActionTAG*atag, U16 frame, U8 skip);
891 ActionTAG* action_SetTarget(ActionTAG*atag, char* target);
892 ActionTAG* action_GotoLabel(ActionTAG*atag, char* label);
893 ActionTAG* action_WaitForFrame2(ActionTAG*atag, U8 skip);
894 ActionTAG* action_With(ActionTAG*atag, char*object);
895 ActionTAG* action_PushString(ActionTAG*atag, char*str);
896 ActionTAG* action_PushFloat(ActionTAG*atag, float f);
897 ActionTAG* action_PushNULL(ActionTAG*atag);
898 ActionTAG* action_PushRegister(ActionTAG*atag, U8 reg);
899 ActionTAG* action_PushBoolean(ActionTAG*atag, char c);
900 ActionTAG* action_PushDouble(ActionTAG*atag, double d);
901 ActionTAG* action_PushInt(ActionTAG*atag, int i);
902 ActionTAG* action_PushLookup(ActionTAG*atag, U8 index);
903 ActionTAG* action_Jump(ActionTAG*atag, U16 branch);
904 ActionTAG* action_GetUrl2(ActionTAG*atag, U8 method);
905 ActionTAG* action_DefineFunction(ActionTAG*atag, U8*data, int len);
906 ActionTAG* action_If(ActionTAG*atag, U16 branch);
907 ActionTAG* action_Call(ActionTAG*atag);
908 ActionTAG* action_GotoFrame2(ActionTAG*atag, U8 method);
909 ActionMarker action_setMarker(ActionTAG*atag);
910 void action_fixjump(ActionMarker m1, ActionMarker m2);
911
912 // swfobject.c
913
914 // The following 3 routines only use placeobject2:
915
916 int swf_ObjectPlace(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name);
917 int swf_ObjectPlaceClip(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name, U16 clipaction);
918 int swf_ObjectMove(TAG * t,U16 depth,MATRIX * m,CXFORM * cx);
919
920 typedef struct _SWFPLACEOBJECT {
921     U16 depth;
922     U16 id; // may be 0
923     char move; //true: move/replace character, false: set character
924     MATRIX matrix;
925     CXFORM cxform;
926     U16 ratio;
927     U8*name;
928     U16 clipdepth;
929     ActionTAG* actions;
930 } SWFPLACEOBJECT;
931
932 void swf_SetPlaceObject(TAG * t,SWFPLACEOBJECT* obj);
933 void swf_GetPlaceObject(TAG * t,SWFPLACEOBJECT* obj);
934 void swf_PlaceObjectFree(SWFPLACEOBJECT* obj);
935
936 // swfvideo.c
937
938 typedef struct _VIDEOSTREAM
939 {
940     int width;
941     int height;
942     int linex;
943
944     int owidth;
945     int oheight;
946     int olinex;
947
948     int frame;
949     YUV*oldpic;
950     YUV*current;
951     int bbx;
952     int bby;
953     int*mvdx;
954     int*mvdy;
955     int quant;
956
957     /* modifyable: */
958     int do_motion; //enable motion compensation (slow!)
959
960 } VIDEOSTREAM;
961
962 void swf_SetVideoStreamDefine(TAG*tag, VIDEOSTREAM*stream, U16 frames, U16 width, U16 height);
963 void swf_SetVideoStreamIFrame(TAG*tag, VIDEOSTREAM*s, RGBA*pic, int quant/* 1-31, 1=best quality, 31=best compression*/);
964 void swf_SetVideoStreamBlackFrame(TAG*tag, VIDEOSTREAM*s);
965 void swf_SetVideoStreamPFrame(TAG*tag, VIDEOSTREAM*s, RGBA*pic, int quant/* 1-31, 1=best quality, 31=best compression*/);
966 void swf_SetVideoStreamMover(TAG*tag, VIDEOSTREAM*s, signed char* movex, signed char* movey, void** image, int quant);
967 void swf_VideoStreamClear(VIDEOSTREAM*stream);
968
969 // swfrender.c
970
971 typedef struct RENDERBUF 
972 {
973     int width;
974     int height;
975     int posx,posy;
976     void*internal;
977 } RENDERBUF;
978
979 void swf_Render_Init(RENDERBUF*buf, int posx, int posy, int width, int height, int antialize, int multiply);
980 void swf_Render_SetBackground(RENDERBUF*buf, RGBA*img, int width, int height);
981 void swf_Render_SetBackgroundColor(RENDERBUF*buf, RGBA color);
982 RGBA* swf_Render(RENDERBUF*dest);
983 void swf_RenderShape(RENDERBUF*dest, SHAPE2*shape, MATRIX*m, CXFORM*c, U16 depth,U16 clipdepth);
984 void swf_RenderSWF(RENDERBUF*buf, SWF*swf);
985 void swf_Render_AddImage(RENDERBUF*buf, U16 id, RGBA*img, int width, int height);
986 void swf_Render_ClearCanvas(RENDERBUF*dest);
987 void swf_Render_Delete(RENDERBUF*dest);
988
989 #ifdef __cplusplus
990 }
991 #endif
992
993 #endif
994