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