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