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