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