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