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