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