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