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