Added sprite folding
[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 file is distributed under the GPL, see file COPYING for details 
10
11 */
12
13 #ifndef __RFX_SWF_INCLUDED__
14 #define __RFX_SWF_INCLUDED__
15
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <unistd.h>
20 #include <fcntl.h>
21 #include "../config.h"
22 #include "bladeenc/codec.h"
23
24 #define DEBUG_RFXSWF
25
26 #ifndef TRUE
27 #define TRUE (1)
28 #endif
29 #ifndef FALSE
30 #define FALSE (0)
31 #endif
32
33
34 /* little/big endian stuff */
35
36 //#define SWAP16(s) ((U16) ((U8*)&s)[0] | ((U16) ((U8*)&s)[1] << 8))
37 //#define SWAP32(s) ((U32) ((U8*)&s)[0] | ((U32) ((U8*)&s)[1] << 8) | ((U32) ((U8*)&s)[2] << 16) | ((U32) ((U8*)&s)[3] << 24))
38
39 #define PUT16(ptr,x) ((U8*)(ptr))[0]=(U8)(x);((U8*)(ptr))[1]=(U8)(x>>8);
40 #define PUT32(ptr,x) ((U8*)(ptr))[0]=(U8)(x);((U8*)(ptr))[1]=(U8)(x>>8);((U8*)(ptr))[2]=(U8)(x>>16);((U8*)(ptr))[3]=(U8)(x>>24);
41 #define GET16(ptr) (((U16)(((U8*)(ptr))[0]))+(((U16)(((U8*)(ptr))[1]))<<8))
42 #define GET32(ptr) (((U16)(((U8*)(ptr))[0]))+(((U16)(((U8*)(ptr))[1]))<<8)+(((U16)(((U8*)(ptr))[2]))<<16)+(((U16)(((U8*)(ptr))[3]))<<24))
43
44 #ifdef WORDS_BIGENDIAN
45 #define SWAP16(s) ((((s)>>8)&0x00ff)|(((s)<<8)&0xff00))
46 #define SWAP32(s) (SWAP16(((s)>>16)&0x0000ffff)|((SWAP16(s)<<16)&0xffff0000))
47 #define REVERSESWAP16(x) (x)
48 #define REVERSESWAP32(x) (x)
49 #else
50 #define SWAP16(x) (x)
51 #define SWAP32(x) (x)
52 #define REVERSESWAP16(s) ((((s)>>8)&0x00ff)|(((s)<<8)&0xff00))
53 #define REVERSESWAP32(s) (REVERSESWAP16(((s)>>16)&0x0000ffff)|((REVERSESWAP16(s)<<16)&0xffff0000))
54 #endif
55 // SWF Types
56
57 typedef         unsigned long   U32;
58 typedef         signed long     S32;
59 typedef         unsigned short  U16;
60 typedef         signed short    S16;
61 typedef         unsigned char   U8;
62 typedef         signed char     S8;
63 typedef         signed long     SFIXED;
64 typedef         signed long     SCOORD;
65
66 // Basic Structures
67
68 typedef struct _SPOINT
69 { SCOORD        x;
70   SCOORD        y;
71 } SPOINT, * LPSPOINT;
72
73 typedef struct _RGBA
74 { U8    a;
75   U8    r;
76   U8    g;
77   U8    b;
78 } RGBA, * LPRGBA;
79
80 typedef struct _SRECT
81 { SCOORD        xmin;
82   SCOORD        ymin;
83   SCOORD        xmax;
84   SCOORD        ymax;
85 } SRECT, * LPSRECT;
86
87 typedef struct _MATRIX
88 { SFIXED        sx;     // factor x
89   SFIXED        sy;
90   SFIXED        r0;     // rotation
91   SFIXED        r1;
92   SCOORD        tx;     // delta x
93   SCOORD        ty;
94 } MATRIX, * LPMATRIX;
95
96 typedef struct _CXFORM
97 { S16           a0, a1;
98   S16           r0, r1;
99   S16           g0, g1;
100   S16           b0, b1;
101 } CXFORM, * LPCXFORM;
102
103 typedef struct _TAG             // NEVER access a Tag-Struct directly !
104 { U16           id;
105   U8 *          data;
106   U32           memsize;        // to minimize realloc() calls
107
108   U32         len;            // for Set-Access
109   U32         pos;            // for Get-Access
110
111   int           frame;          // not really up-to-date
112
113   struct _TAG * next;
114   struct _TAG * prev;
115
116   U8            readBit;        // for Bit-Manipulating Functions [read]
117   U8            writeBit;       // [write]
118   
119 } TAG, * LPTAG;
120
121 typedef struct _ActionTAG 
122 { U8            op;
123   U16           len;
124   U8 *          data;
125
126   struct _ActionTAG * next;
127   struct _ActionTAG * prev;
128
129   TAG* parent; // may be null
130   U8 tmp[4]; // store small operands here.
131 } ActionTAG;
132
133 typedef struct _ActionMarker
134 {
135   ActionTAG* atag;
136 } ActionMarker;
137
138 typedef struct _SWF
139 { U8            fileVersion;
140   U32           fileSize;       // valid after load and save
141   SRECT         movieSize;
142   U16           frameRate;
143   U16           frameCount;     // valid after load and save
144   TAG *         firstTag;
145 } SWF, * LPSWF;
146
147 // Basic Functions
148
149 int  swf_ReadSWF(int handle,SWF * swf);     // Reads SWF to memory (malloc'ed), returns length or <0 if fails
150 int  swf_WriteSWF(int handle,SWF * swf);    // Writes SWF to file, returns length or <0 if fails
151 int  swf_WriteCGI(SWF * swf);               // Outputs SWF with valid CGI header to stdout
152 void swf_FreeTags(SWF * swf);               // Frees all malloc'ed memory for swf
153
154 // for streaming:
155 int  swf_WriteHeader(int handle,SWF * swf);    // Writes Header of swf to file
156 int  swf_WriteTag(int handle,TAG * tag);    // Writes TAG to file
157
158 // folding/unfolding:
159
160 void swf_FoldAll(SWF*swf);
161 void swf_FoldSprite(TAG*tag);
162     
163 TAG * swf_InsertTag(TAG * after,U16 id);    // updates frames, if necessary
164 int   swf_DeleteTag(TAG * t);
165
166 void  swf_SetTagPos(TAG * t,U32 pos);       // resets Bitcount
167 U32   swf_GetTagPos(TAG * t);
168
169 TAG * swf_NextTag(TAG * t);
170 TAG * swf_PrevTag(TAG * t);
171
172 int   swf_GetFrameNo(TAG * t);              // should be renamed to TagGetFrame
173 U16   swf_GetTagID(TAG * t);                // ... TagGetID
174 U32   swf_GetTagLen(TAG * t);             // ... TagGetTagLen
175 U8*   swf_GetTagLenPtr(TAG * t);
176
177 U32   swf_GetBits(TAG * t,int nbits);
178 S32   swf_GetSBits(TAG * t,int nbits);
179 int   swf_SetBits(TAG * t,U32 v,int nbits);
180
181 int   swf_GetBlock(TAG * t,U8 * b,int l);   // resets Bitcount
182 int   swf_SetBlock(TAG * t,U8 * b,int l);
183
184 U8    swf_GetU8(TAG * t);                   // resets Bitcount
185 U16   swf_GetU16(TAG * t);
186 U32   swf_GetU32(TAG * t);
187
188 int   swf_SetU8(TAG * t,U8 v);              // resets Bitcount
189 int   swf_SetU16(TAG * t,U16 v);
190 int   swf_SetU32(TAG * t,U32 v);
191
192 int   swf_GetPoint(TAG * t,SPOINT * p);     // resets Bitcount
193 int   swf_GetRect(TAG * t,SRECT * r);
194 int   swf_GetMatrix(TAG * t,MATRIX * m);
195 int   swf_GetCXForm(TAG * t,CXFORM * cx,U8 alpha);
196
197 int   swf_SetPoint(TAG * t,SPOINT * p);     // resets Bitcount
198 int   swf_SetRect(TAG * t,SRECT * r);
199 int   swf_SetMatrix(TAG * t,MATRIX * m);
200 int   swf_SetCXForm(TAG * t,CXFORM * cx,U8 alpha);
201 int   swf_SetRGB(TAG * t,RGBA * col);
202 int   swf_SetRGBA(TAG * t,RGBA * col);
203
204 // Function Macros
205
206 #define swf_GetS8(tag)      ((S8)swf_GetU8(tag))
207 #define swf_GetS16(tag)     ((S16)swf_GetU16(tag))
208 #define swf_GetS32(tag)     ((S32)swf_GetU32(tag))
209 #define swf_GetCoord(tag)   ((SCOORD)swf_GetU32(tag))
210 #define swf_GetFixed(tag)   ((SFIXED)swf_GetU32(tag))
211
212 #define swf_SetS8(tag,v)    swf_SetU8(tag,(U8)v)
213 #define swf_SetS16(tag,v)   swf_SetU16(tag,(U16)v)
214 #define swf_SetS32(tag,v)   swf_SetU32(tag,(U32)v)
215 #define swf_SetCoord(tag,v) swf_SetU32(tag,(U32)v)
216 #define swf_SetFixed(tag,v) swf_SetU32(tag,(U32)v)
217 #define swf_SetString(t,s)  swf_SetBlock(t,s,strlen(s)+1)
218
219 #define FAILED(b)       ((b)<0)
220 #define SUCCEDED(b)     ((b)>=0)
221
222 // Tag IDs (adopted from J. C. Kessels' Form2Flash)
223
224 #define ST_END                  0
225 #define ST_SHOWFRAME            1
226 #define ST_DEFINESHAPE          2
227 #define ST_FREECHARACTER        3
228 #define ST_PLACEOBJECT          4
229 #define ST_REMOVEOBJECT         5
230 #define ST_DEFINEBITS           6
231 #define ST_DEFINEBITSJPEG       6 
232 #define ST_DEFINEBUTTON         7
233 #define ST_JPEGTABLES           8
234 #define ST_SETBACKGROUNDCOLOR   9
235 #define ST_DEFINEFONT           10
236 #define ST_DEFINETEXT           11
237 #define ST_DOACTION             12
238 #define ST_DEFINEFONTINFO       13
239 #define ST_DEFINESOUND          14 /* Event sound tags. */
240 #define ST_STARTSOUND           15
241 #define ST_DEFINEBUTTONSOUND    17
242 #define ST_SOUNDSTREAMHEAD      18
243 #define ST_SOUNDSTREAMBLOCK     19
244 #define ST_DEFINEBITSLOSSLESS   20 /* A bitmap using lossless zlib compression. */
245 #define ST_DEFINEBITSJPEG2      21 /* A bitmap using an internal JPEG compression table. */
246 #define ST_DEFINESHAPE2         22
247 #define ST_DEFINEBUTTONCXFORM   23
248 #define ST_PROTECT              24 /* This file should not be importable for editing. */
249 #define ST_PLACEOBJECT2         26 /* The new style place w/ alpha color transform and name. */
250 #define ST_REMOVEOBJECT2        28 /* A more compact remove object that omits the character tag (just depth). */
251 #define ST_DEFINESHAPE3         32 /* A shape V3 includes alpha values. */
252 #define ST_DEFINETEXT2          33 /* A text V2 includes alpha values. */
253 #define ST_DEFINEBUTTON2        34 /* A button V2 includes color transform, alpha and multiple actions */
254 #define ST_DEFINEBITSJPEG3      35 /* A JPEG bitmap with alpha info. */
255 #define ST_DEFINEBITSLOSSLESS2  36 /* A lossless bitmap with alpha info. */
256 #define ST_DEFINEEDITTEXT       37
257 #define ST_DEFINEMOVIE          38
258 #define ST_DEFINESPRITE         39 /* Define a sequence of tags that describe the behavior of a sprite. */
259 #define ST_NAMECHARACTER        40 /* Name a character definition, character id and a string, (used for buttons, bitmaps, sprites and sounds). */
260 #define ST_SERIALNUMBER         41
261 #define ST_GENERATORTEXT        42 /* contains an id */
262 #define ST_FRAMELABEL           43 /* A string label for the current frame. */
263 #define ST_SOUNDSTREAMHEAD2     45 /* For lossless streaming sound, should not have needed this... */
264 #define ST_DEFINEMORPHSHAPE     46 /* A morph shape definition */
265 #define ST_DEFINEFONT2          48
266 #define ST_TEMPLATECOMMAND      49
267 #define ST_GENERATOR3           51
268 #define ST_EXTERNALFONT         52
269 #define ST_EXPORTASSETS         56
270 #define ST_IMPORTASSETS         57
271 #define ST_ENABLEDEBUGGER       58
272
273 #define ST_REFLEX              777 /* to identify generator software */
274
275 // Advanced Funtions
276
277 // swfshape.c
278
279 typedef struct _LINESTYLE
280 { U16           width;
281   RGBA          color;
282 } LINESTYLE, * LPLINESTYLE;
283
284 typedef struct _FILLSTYLE
285 { U8     type;
286   RGBA   color;
287   MATRIX         m; 
288   U16    id_bitmap;
289 } FILLSTYLE, * LPFILLSTYLE;
290      
291 typedef struct _SHAPE           // NEVER access a Shape-Struct directly !
292 {                 
293   struct
294   { LINESTYLE * data;
295     U16         n;
296   } linestyle;
297                   
298   struct                    
299   { FILLSTYLE * data;
300     U16         n;
301   } fillstyle;
302  
303   struct
304   { U16         fill;
305     U16         line;
306   } bits;
307                                 // used by Get/SetSimpleShape and glyph handling
308   U8 *          data;
309   U32           bitlen;         // length of data in bits
310 } SHAPE, * LPSHAPE;
311
312 // Shapes
313
314 int   swf_ShapeNew(SHAPE ** s);
315 void  swf_ShapeFree(SHAPE * s);
316
317 int   swf_GetSimpleShape(TAG * t,SHAPE ** s); // without Linestyle/Fillstyle Record
318 int   swf_SetSimpleShape(TAG * t,SHAPE * s);   // without Linestyle/Fillstyle Record
319
320 int   swf_ShapeAddLineStyle(SHAPE * s,U16 width,RGBA * color);
321 int   swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color);
322 int   swf_ShapeAddBitmapFillStyle(SHAPE * s,MATRIX * m,U16 id_bitmap,int clip);
323
324 int   swf_SetShapeStyles(TAG * t,SHAPE * s);
325 int   swf_ShapeCountBits(SHAPE * s,U8 * fbits,U8 * lbits);
326 int   swf_SetShapeBits(TAG * t,SHAPE * s);
327 int   swf_SetShapeHeader(TAG * t,SHAPE * s); // one call for upper three functions
328
329 int   swf_ShapeSetMove(TAG * t,SHAPE * s,S32 x,S32 y);
330 int   swf_ShapeSetStyle(TAG * t,SHAPE * s,U16 line,U16 fill0,U16 fill1);
331 int   swf_ShapeSetAll(TAG * t,SHAPE * s,S32 x,S32 y,U16 line,U16 fill0,U16 fill1);
332
333 int   swf_ShapeSetLine(TAG * t,SHAPE * s,S32 x,S32 y);
334 int   swf_ShapeSetCurve(TAG * t,SHAPE * s,S32 x,S32 y,S32 ax,S32 ay);
335 int   swf_ShapeSetCircle(TAG * t,SHAPE * s,S32 x,S32 y,S32 rx,S32 ry);
336 int   swf_ShapeSetEnd(TAG * t);
337
338
339 // swffont.c
340
341 // does not support wide characters !
342
343 #define MAX_CHAR_PER_FONT 512
344
345 typedef struct _KERNING
346 {
347   U16         char1;
348   U16         char2;
349   U16         adjustment;
350 } SWFKERNING;
351
352 typedef struct _SWFLAYOUT
353 { S16          ascent;
354   S16          descent;
355   S16          leading;
356   SRECT      * bounds;
357   U16          kerningcount;
358   SWFKERNING * kerning;
359 } SWFLAYOUT, * LPSWFLAYOUT;
360
361 typedef struct
362 { S16         advance;
363   SHAPE *     shape;
364 } SWFGLYPH;
365
366 typedef struct _SWFFONT
367 { int           id; // -1 = not set
368   U8            version; // 0 = not set, 1 = definefont, 2 = definefont2
369   U8 *          name;
370   SWFLAYOUT *   layout;
371   U16           numchars;
372   U16           maxascii; // highest mapped ascii value
373   U8            flags; // bold/italic/unicode/ansi ...
374   U16   *       glyph2ascii;
375   int   *       ascii2glyph;
376   SWFGLYPH *    glyph;
377 } SWFFONT, * LPSWFFONT;
378
379 typedef struct _FONTUSAGE
380 { U8 code[MAX_CHAR_PER_FONT];
381 } FONTUSAGE, * LPFONTUSAGE;
382
383 #define ET_HASTEXT 32768
384 #define ET_WORDWRAP 16384
385 #define ET_MULTILINE 8192
386 #define ET_PASSWORD 4096
387 #define ET_READONLY 2048
388 #define ET_HASTEXTCOLOR 1024
389 #define ET_HASMAXLENGTH 512
390 #define ET_HASFONT 256
391 #define ET_X3 128
392 #define ET_X2 64
393 #define ET_HASLAYOUT 32
394 #define ET_NOSELECT 16
395 #define ET_BORDER 8
396 #define ET_X1 4
397 #define ET_X0 2
398 #define ET_USEOUTLINES 1
399
400 typedef struct _EditTextLayout
401 {
402     U8 align; // 0=left, 1=right, 2=center, 3=justify
403     U16 leftmargin;
404     U16 rightmargin;
405     U16 indent;
406     U16 leading;
407 } EditTextLayout;
408
409 int swf_FontEnumerate(SWF * swf,void (*FontCallback) (U16,U8*));
410 // -> void fontcallback(U16 id,U8 * name); returns number of defined fonts
411
412 int swf_FontExtract(SWF * swf,int id,SWFFONT ** f);
413 // Fetches all available information from DefineFont, DefineFontInfo, DefineText, ...
414 // id = FontID, id=0 -> Extract first Font
415
416 int swf_FontIsItalic(SWFFONT * f);
417 int swf_FontIsBold(SWFFONT * f);
418
419 int swf_FontSetID(SWFFONT * f,U16 id);
420 int swf_FontReduce(SWFFONT * f,FONTUSAGE * use);
421
422 int swf_FontInitUsage(FONTUSAGE * use);
423 int swf_FontUse(FONTUSAGE * use,U8 * s);
424
425 int swf_FontSetDefine(TAG * t,SWFFONT * f);
426 int swf_FontSetInfo(TAG * t,SWFFONT * f);
427
428 int swf_FontExtract_DefineTextCallback(int id,SWFFONT * f,TAG * t,int jobs, 
429         void(*callback)(int*chars, int nr, int id));
430
431 // the following two functions are obsolete and will be removed soon
432 int swf_FontExport(int handle,SWFFONT * f);
433 int swf_FontImport(int handle,SWFFONT * * f);
434
435 void swf_WriteFont(SWFFONT* font, char* filename);
436 SWFFONT* swf_ReadFont(char* filename);
437
438 void swf_FontFree(SWFFONT * f);
439
440 U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale);
441 int swf_TextCountBits(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits);
442
443 int swf_TextSetInfoRecord(TAG * t,SWFFONT * font,U16 size,RGBA * color,S16 dx,S16 dy);
444 int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits);
445
446 int swf_TextPrintDefineText(TAG * t,SWFFONT * f);
447 // Prints text defined in tag t with font f to stdout
448
449 void swf_SetEditText(TAG*tag, U16 flags, SRECT r, char*text, RGBA*color, 
450         int maxlength, U16 font, U16 height, EditTextLayout*layout, char*variable);
451
452 // swfdump.c
453
454 void swf_DumpHeader(FILE * f,SWF * swf);
455 void swf_DumpMatrix(FILE * f,MATRIX * m);
456 void swf_DumpTag(FILE * f,TAG * t); 
457 char* swf_TagGetName(TAG*tag);
458 void swf_DumpFont(SWFFONT * font);
459
460 // swfobject.c
461
462 // Always use ST_PLACEOBJECT2 !!!
463
464 int swf_ObjectPlace(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name);
465 int swf_ObjectPlaceClip(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name, U16 clipaction);
466 int swf_ObjectMove(TAG * t,U16 depth,MATRIX * m,CXFORM * cx);
467
468 // swfbutton.c
469
470 // Button States
471
472 #define BS_HIT          0x08
473 #define BS_DOWN         0x04
474 #define BS_OVER         0x02
475 #define BS_UP           0x01
476
477 // Button Conditions
478
479 #define BC_OVERDOWN_IDLE        0x0100
480 #define BC_IDLE_OVERDOWN        0x0080
481 #define BC_OUTDOWN_IDLE         0x0040
482 #define BC_OUTDOWN_OVERDOWN     0x0020
483 #define BC_OVERDOWN_OUTDOWN     0x0010
484 #define BC_OVERDOWN_OVERUP      0x0008
485 #define BC_OVERUP_OVERDOWN      0x0004
486 #define BC_OVERUP_IDLE          0x0002
487 #define BC_IDLE_OVERUP          0x0001
488
489 #define BC_KEY(c) (c<<9)
490
491 #define BC_CURSORLEFT           0x0200
492 #define BC_CURSORRIGHT          0x0400
493 #define BC_POS1                 0x0600
494 #define BC_END                  0x0800
495 #define BC_INSERT               0x0a00
496 #define BC_DELETE               0x0c00
497 #define BC_CLEAR                0x0e00
498 #define BC_BACKSPACE            0x1000
499 #define BC_ENTER                0x1a00
500 #define BC_CURSORUP             0x1c00
501 #define BC_CURSORDOWN           0x1e00
502 #define BC_PAGEUP               0x2000
503 #define BC_PAGEDOWN             0x2200
504 #define BC_TAB                  0x2400
505 #define BC_ESCAPE               0x3600
506 #define BC_SPACE                0x4000
507
508 /* these are probably only valid with linux:
509    Ctrl-A        0x0200
510    Ctrl-X        0x3000
511    Ctrl-Y        0x3200
512    Ctrl-Z        0x3400
513    Escape/Ctrl-[ 0x3600
514    Ctrl-\        0x3800
515    Ctrl-]        0x3a00
516    Ctrl-^        0x3c00
517    Ctrl-/        0x3e00
518    */
519
520 /* everything above 0x4000 is standard ascii:
521    0x4000 ' ' 0x4200 '!' 0x4600 '#' 0x4800 '$' 0x4a00 '%' 0x4c00 '&' ...
522    0x6000 '0' ... 0x7200 '9' 
523    0x8000 '@' 
524    0x8200 'A' ...  0xb400 'Z' 
525    ...
526    0xfc00 '~'
527  */
528
529 // Button Flag
530
531 #define BF_TRACKMENU            0x01
532
533 int swf_ButtonSetRecord(TAG * t,U8 state,U16 id,U16 layer,MATRIX * m,CXFORM * cx);
534 int swf_ButtonSetCondition(TAG * t,U16 condition); // for DefineButton2
535 int swf_ButtonSetFlags(TAG * t,U8 flags);  // necessary for DefineButton2
536 int swf_ButtonPostProcess(TAG * t,int anz_action); // Set all offsets in DefineButton2-Tags (how many conditions to process)
537
538 // swfbits.c
539
540 typedef int JPEGBITS,* LPJPEGBITS; // cover libjpeg structures
541
542 JPEGBITS * swf_SetJPEGBitsStart(TAG * t,int width,int height,int quality);
543 int swf_SetJPEGBitsLines(JPEGBITS * jpegbits,U8 ** data,int n);
544 int swf_SetJPEGBitsLine(JPEGBITS * jpegbits,U8 * data);
545 int swf_SetJPEGBitsFinish(JPEGBITS * jpegbits);
546
547 int swf_SetJPEGBits(TAG * t,char * fname,int quality); // paste jpg file into swf stream
548
549 #define BYTES_PER_SCANLINE(width) ((width+3)&0xfffffffc)
550
551 #define BMF_8BIT        3               // Bitmap formats
552 #define BMF_16BIT       4
553 #define BMF_32BIT       5
554
555 #define BM16_BLUE       0xf800          // Bitmasks for 16 Bit Color
556 #define BM16_RED        0x00f0
557 #define BM16_GREEN      0x000f
558
559 #define BM32_BLUE       0xff000000      // Bitmasks for 32 Bit Color
560 #define BM32_GREEN      0x00ff0000
561 #define BM32_RED        0x0000ff00
562
563 int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags);
564 int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors);
565 int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap);
566
567 // swfsound.c
568 void swf_SetSoundStreamHead(TAG*tag, U16 avgnumsamples);
569 void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int numsamples, char first);
570
571 // swftools.c
572
573 U8 swf_isDefiningTag(TAG * t);
574 U8 swf_isPseudoDefiningTag(TAG * t);
575 U8 swf_isAllowedSpriteTag(TAG * t);
576 U16 swf_GetDefineID(TAG * t);
577 U16 swf_GetPlaceID(TAG * t); //PLACEOBJECT, PLACEOBJECT2 (sometimes), REMOVEOBJECT
578 U16 swf_GetDepth(TAG * t); //PLACEOBJECT,PLACEOBJECT2,REMOVEOBJECT,REMOVEOBJECT2
579 char* swf_GetName(TAG * t); //PLACEOBJECT2, FRAMELABEL
580 MATRIX * swf_MatrixJoin(MATRIX * d,MATRIX * s1,MATRIX * s2);
581 MATRIX * swf_MatrixMapTriangle(MATRIX * m,int dx,int dy,
582                     int x0,int y0,int x1,int y1,int x2,int y2);
583
584
585 // swfcgi.c
586
587 void swf_uncgi();  // same behaviour as Steven Grimm's uncgi-library
588
589 // swfaction.c
590
591 ActionTAG* swf_ActionGet(TAG*tag);
592 void swf_ActionFree(ActionTAG*tag);
593 void swf_ActionSet(TAG*tag, ActionTAG*actions);
594 void swf_DumpActions(ActionTAG*atag, char*prefix);
595 void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*));
596 void swf_ActionEnumerateTargets(ActionTAG*atag, char*(*callback)(char*));
597 void swf_ActionEnumerateStrings(ActionTAG*atag, char*(*callback)(char*));
598
599 ActionTAG* swf_ActionStart();
600 void action_End();
601 void action_NextFrame();
602 void action_PreviousFrame();
603 void action_Play();
604 void action_Stop();
605 void action_ToggleQuality();
606 void action_StopSounds();
607 void action_Add();
608 void action_Subtract();
609 void action_Multiply();
610 void action_Divide();
611 void action_Equals();
612 void action_Less();
613 void action_And();
614 void action_Or();
615 void action_Not();
616 void action_StringEquals();
617 void action_StringLength();
618 void action_StringExtract();
619 void action_Pop();
620 void action_ToInteger();
621 void action_GetVariable();
622 void action_SetVariable();
623 void action_SetTarget2();
624 void action_StringAdd();
625 void action_GetProperty();
626 void action_SetProperty();
627 void action_CloneSprite();
628 void action_RemoveSprite();
629 void action_Trace();
630 void action_StartDrag();
631 void action_EndDrag();
632 void action_StringLess();
633 void action_RandomNumber();
634 void action_MBStringLength();
635 void action_CharToAscii();
636 void action_AsciiToChar();
637 void action_GetTime();
638 void action_MBStringExtract();
639 void action_MBCharToAscii();
640 void action_MBAsciiToChar();
641 void action_Delete();
642 void action_Delete2();
643 void action_DefineLocal();
644 void action_CallFunction();
645 void action_Return();
646 void action_Modulo();
647 void action_NewObject();
648 void action_DefineLocal2();
649 void action_InitArray();
650 void action_Makehash();
651 void action_TypeOf();
652 void action_TargetPath();
653 void action_Enumerate();
654 void action_Add2();
655 void action_Less2();
656 void action_Equals2();
657 void action_ToNumber();
658 void action_ToString();
659 void action_PushDuplicate();
660 void action_StackSwap();
661 void action_GetMember();
662 void action_SetMember();
663 void action_Increment();
664 void action_Decrement();
665 void action_CallMethod();
666 void action_NewMethod();
667 void action_BitAnd();
668 void action_BitOr();
669 void action_BitXor();
670 void action_BitLShift();
671 void action_BitRShift();
672 void action_BitURShift();
673 void action_GotoFrame(U16 frame);
674 void action_GetUrl(char* url, char* label);
675 void action_StoreRegister(U8 reg);
676 void action_Constantpool(char* constantpool);
677 void action_WaitForFrame(U16 frame, U8 skip);
678 void action_SetTarget(char* target);
679 void action_GotoLabel(char* label);
680 void action_WaitForFrame2(U8 skip);
681 void action_With(char*object);
682 void action_PushString(char*str);
683 void action_PushFloat(float f);
684 void action_PushNULL();
685 void action_PushRegister(U8 reg);
686 void action_PushBoolean(char c);
687 void action_PushDouble(double d);
688 void action_PushInt(int i);
689 void action_PushLookup(U8 index);
690 void action_Jump(U16 branch);
691 void action_GetUrl2(U8 method);
692 void action_DefineFunction(U8*data, int len);
693 void action_If(U16 branch);
694 void action_Call();
695 void action_GotoFrame2(U8 method);
696 void swf_ActionEnd();
697 ActionMarker action_setMarker();
698 void action_fixjump(ActionMarker m1, ActionMarker m2);
699
700 #endif