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