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