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