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