3 Headers for rfxswf.c and modules
5 Part of the swftools package.
7 Copyright (c) 2000, 2001 Rainer Böhme <rfxswf@reflex-studio.de>
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.
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.
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 */
24 #ifndef __RFX_SWF_INCLUDED__
25 #define __RFX_SWF_INCLUDED__
38 #include "../config.h"
44 #ifdef RFXSWF_DISABLESOUND
56 /* little/big endian stuff */
58 #define PUT8(ptr,x) {((U8*)(ptr))[0]=x;}
59 #define PUT16(ptr,x) {((U8*)(ptr))[0]=(U8)(x);((U8*)(ptr))[1]=(U8)((x)>>8);}
60 #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);}
61 #define GET16(ptr) (((U16)(((U8*)(ptr))[0]))+(((U16)(((U8*)(ptr))[1]))<<8))
62 #define GET32(ptr) (((U16)(((U8*)(ptr))[0]))+(((U16)(((U8*)(ptr))[1]))<<8)+(((U16)(((U8*)(ptr))[2]))<<16)+(((U16)(((U8*)(ptr))[3]))<<24))
64 #ifdef WORDS_BIGENDIAN
65 #define SWAP16(s) ((((s)>>8)&0x00ff)|(((s)<<8)&0xff00))
66 #define SWAP32(s) (SWAP16(((s)>>16)&0x0000ffff)|((SWAP16(s)<<16)&0xffff0000))
67 #define REVERSESWAP16(x) (x)
68 #define REVERSESWAP32(x) (x)
72 #define REVERSESWAP16(s) ((((s)>>8)&0x00ff)|(((s)<<8)&0xff00))
73 #define REVERSESWAP32(s) (REVERSESWAP16(((s)>>16)&0x0000ffff)|((REVERSESWAP16(s)<<16)&0xffff0000))
78 typedef unsigned long U32;
79 typedef signed long S32;
80 typedef unsigned short U16;
81 typedef signed short S16;
82 typedef unsigned char U8;
83 typedef signed char S8;
84 typedef signed long SFIXED;
85 typedef signed long SCOORD;
87 #define SCOORD_MAX 0x7fffffff
88 #define SCOORD_MIN -0x80000000
92 typedef struct _SPOINT
109 typedef struct _SRECT
116 typedef struct _MATRIX
121 typedef struct _CXFORM
122 { S16 a0, a1; /* mult, add */
128 #define GRADIENT_LINEAR 0x10
129 #define GRADIENT_RADIAL 0x12
130 typedef struct _GRADIENT
137 typedef struct _TAG // NEVER access a Tag-Struct directly !
140 U32 memsize; // to minimize realloc() calls
142 U32 len; // for Set-Access
143 U32 pos; // for Get-Access
148 U8 readBit; // for Bit-Manipulating Functions [read]
149 U8 writeBit; // [write]
153 #define swf_ResetReadBits(tag) if (tag->readBit) { tag->pos++; tag->readBit = 0; }
154 #define swf_ResetWriteBits(tag) if (tag->writeBit) { tag->writeBit = 0; }
156 typedef struct _SOUNDINFO
159 U8 nomultiple; //continue playing if already started
175 U8 compressed; // SWF or SWC?
176 U32 fileSize; // valid after load and save
179 U16 frameCount; // valid after load and save
185 int swf_ReadSWF2(struct reader_t*reader, SWF * swf); // Reads SWF via callback
186 int swf_ReadSWF(int handle,SWF * swf); // Reads SWF to memory (malloc'ed), returns length or <0 if fails
187 int swf_WriteSWF2(struct writer_t*writer, SWF * swf); // Writes SWF via callback, returns length or <0 if fails
188 int swf_WriteSWF(int handle,SWF * swf); // Writes SWF to file, returns length or <0 if fails
189 int swf_WriteSWC(int handle, SWF * swf); // for convenience, equal to swf->compressed=1;swf_WriteSWF(..)
190 int swf_WriteCGI(SWF * swf); // Outputs SWF with valid CGI header to stdout
191 void swf_FreeTags(SWF * swf); // Frees all malloc'ed memory for swf
192 SWF* swf_CopySWF(SWF*swf);
195 int swf_WriteHeader(int handle,SWF * swf); // Writes Header of swf to file
196 int swf_WriteHeader2(struct writer_t*writer,SWF * swf); // Writes Header of swf to file
197 int swf_WriteTag(int handle,TAG * tag); // Writes TAG to file
198 int swf_WriteTag2(struct writer_t*writer, TAG * t); //Write TAG via callback
200 int swf_ReadHeader(struct reader_t*reader, SWF * swf); // Reads SWF Header via callback
202 // folding/unfolding:
204 void swf_FoldAll(SWF*swf);
205 void swf_UnFoldAll(SWF*swf);
206 void swf_FoldSprite(TAG*tag);
207 void swf_UnFoldSprite(TAG*tag);
208 int swf_IsFolded(TAG*tag);
212 void swf_OptimizeTagOrder(SWF*swf);
216 TAG * swf_InsertTag(TAG * after,U16 id); // updates frames, if necessary
217 TAG * swf_InsertTagBefore(SWF*swf, TAG * before,U16 id); // like InsertTag, but insert tag before argument
218 int swf_DeleteTag(TAG * t);
220 void swf_ClearTag(TAG * t); //frees tag data
221 void swf_ResetTag(TAG*tag, U16 id); //set's tag position and length to 0, without freeing it
222 TAG* swf_CopyTag(TAG*tag, TAG*to_copy); //stores a copy of another tag into this taglist
224 void swf_SetTagPos(TAG * t,U32 pos); // resets Bitcount
225 U32 swf_GetTagPos(TAG * t);
227 TAG * swf_NextTag(TAG * t);
228 TAG * swf_PrevTag(TAG * t);
230 U16 swf_GetTagID(TAG * t); // ... TagGetID
231 U32 swf_GetTagLen(TAG * t); // ... TagGetTagLen
232 U8* swf_GetTagLenPtr(TAG * t);
234 U32 swf_GetBits(TAG * t,int nbits);
235 S32 swf_GetSBits(TAG * t,int nbits);
236 int swf_SetBits(TAG * t,U32 v,int nbits);
238 int swf_GetBlock(TAG * t,U8 * b,int l); // resets Bitcount
239 int swf_SetBlock(TAG * t,U8 * b,int l);
241 U8 swf_GetU8(TAG * t); // resets Bitcount
242 U16 swf_GetU16(TAG * t);
243 #define swf_GetS16(tag) ((S16)swf_GetU16(tag))
244 U32 swf_GetU32(TAG * t);
245 void swf_GetRGB(TAG * t, RGBA * col);
246 void swf_GetRGBA(TAG * t, RGBA * col);
247 void swf_GetGradient(TAG * t, GRADIENT * gradient, char alpha);
248 char* swf_GetString(TAG*t);
249 int swf_SetU8(TAG * t,U8 v); // resets Bitcount
250 int swf_SetU16(TAG * t,U16 v);
251 void swf_SetS16(TAG * t,int v);
252 int swf_SetU32(TAG * t,U32 v);
253 #define swf_SetString(t,s) swf_SetBlock(t,s,strlen(s)+1)
255 //int swf_GetPoint(TAG * t,SPOINT * p); // resets Bitcount
256 int swf_GetRect(TAG * t,SRECT * r);
257 int swf_GetMatrix(TAG * t,MATRIX * m);
258 int swf_GetCXForm(TAG * t,CXFORM * cx,U8 alpha);
260 //int swf_SetPoint(TAG * t,SPOINT * p); // resets Bitcount
261 int swf_SetRect(TAG * t,SRECT * r);
262 int swf_SetMatrix(TAG * t,MATRIX * m);
263 int swf_SetCXForm(TAG * t,CXFORM * cx,U8 alpha);
264 int swf_SetRGB(TAG * t,RGBA * col);
265 int swf_SetRGBA(TAG * t,RGBA * col);
266 void swf_SetPassword(TAG * t, const char * password);
268 int swf_VerifyPassword(TAG * t, const char * password);
272 void swf_ExpandRect(SRECT*src, SPOINT add);
273 void swf_ExpandRect2(SRECT*src, SRECT*add);
274 void swf_ExpandRect3(SRECT*src, SPOINT center, int radius);
275 SPOINT swf_TurnPoint(SPOINT p, MATRIX* m);
276 SRECT swf_TurnRect(SRECT r, MATRIX* m);
279 #define FAILED(b) ((b)<0)
282 // Tag IDs (adopted from J. C. Kessels' Form2Flash)
285 #define ST_SHOWFRAME 1
286 #define ST_DEFINESHAPE 2
287 #define ST_FREECHARACTER 3
288 #define ST_PLACEOBJECT 4
289 #define ST_REMOVEOBJECT 5
290 #define ST_DEFINEBITS 6
291 #define ST_DEFINEBITSJPEG 6
292 #define ST_DEFINEBUTTON 7
293 #define ST_JPEGTABLES 8
294 #define ST_SETBACKGROUNDCOLOR 9
295 #define ST_DEFINEFONT 10
296 #define ST_DEFINETEXT 11
297 #define ST_DOACTION 12
298 #define ST_DEFINEFONTINFO 13
299 #define ST_DEFINESOUND 14 /* Event sound tags. */
300 #define ST_STARTSOUND 15
301 #define ST_DEFINEBUTTONSOUND 17
302 #define ST_SOUNDSTREAMHEAD 18
303 #define ST_SOUNDSTREAMBLOCK 19
304 #define ST_DEFINEBITSLOSSLESS 20 /* A bitmap using lossless zlib compression. */
305 #define ST_DEFINEBITSJPEG2 21 /* A bitmap using an internal JPEG compression table. */
306 #define ST_DEFINESHAPE2 22
307 #define ST_DEFINEBUTTONCXFORM 23
308 #define ST_PROTECT 24 /* This file should not be importable for editing. */
309 #define ST_PLACEOBJECT2 26 /* The new style place w/ alpha color transform and name. */
310 #define ST_REMOVEOBJECT2 28 /* A more compact remove object that omits the character tag (just depth). */
311 #define ST_FREEALL 31 /* ? */
312 #define ST_DEFINESHAPE3 32 /* A shape V3 includes alpha values. */
313 #define ST_DEFINETEXT2 33 /* A text V2 includes alpha values. */
314 #define ST_DEFINEBUTTON2 34 /* A button V2 includes color transform, alpha and multiple actions */
315 #define ST_DEFINEBITSJPEG3 35 /* A JPEG bitmap with alpha info. */
316 #define ST_DEFINEBITSLOSSLESS2 36 /* A lossless bitmap with alpha info. */
317 #define ST_DEFINEEDITTEXT 37
318 #define ST_DEFINEMOVIE 38
319 #define ST_DEFINESPRITE 39 /* Define a sequence of tags that describe the behavior of a sprite. */
320 #define ST_NAMECHARACTER 40 /* Name a character definition, character id and a string, (used for buttons, bitmaps, sprites and sounds). */
321 #define ST_SERIALNUMBER 41
322 #define ST_GENERATORTEXT 42 /* contains an id */
323 #define ST_FRAMELABEL 43 /* A string label for the current frame. */
324 #define ST_SOUNDSTREAMHEAD2 45 /* For lossless streaming sound, should not have needed this... */
325 #define ST_DEFINEMORPHSHAPE 46 /* A morph shape definition */
326 #define ST_DEFINEFONT2 48
327 #define ST_TEMPLATECOMMAND 49
328 #define ST_GENERATOR3 51
329 #define ST_EXTERNALFONT 52
330 #define ST_EXPORTASSETS 56
331 #define ST_IMPORTASSETS 57
332 #define ST_ENABLEDEBUGGER 58
333 #define ST_DOINITACTION 59
334 #define ST_DEFINEVIDEOSTREAM 60
335 #define ST_VIDEOFRAME 61
336 #define ST_DEFINEFONTINFO2 62
337 #define ST_MX4 63 /*(?) */
338 #define ST_SCRIPTLIMITS 65 /* version 7- u16 maxrecursedepth, u16 scripttimeoutseconds */
339 #define ST_SETTABINDEX 66 /* version 7- u16 depth(!), u16 tab order value */
341 /* custom tags- only valid for swftools */
342 #define ST_REFLEX 777 /* to identify generator software */
343 #define ST_GLYPHNAMES 778
349 typedef struct _LINESTYLE
354 #define FILL_SOLID 0x00
355 #define FILL_LINEAR 0x10 // Gradient
356 #define FILL_RADIAL 0x12
357 #define FILL_TILED 0x40 // Bitmap
358 #define FILL_CLIPPED 0x41
360 typedef struct _FILLSTYLE
368 typedef struct _SHAPE // NEVER access a Shape-Struct directly !
384 // used by Get/SetSimpleShape and glyph handling
386 U32 bitlen; // length of data in bits
389 /* SHAPE can be converted into SHAPE2: */
392 typedef struct _SHAPE2
394 LINESTYLE * linestyles;
396 FILLSTYLE* fillstyles;
398 struct _SHAPELINE * lines;
399 SRECT* bbox; // may be NULL
402 typedef struct _SHAPELINE
404 enum {moveTo, lineTo, splineTo} type;
406 SCOORD sx,sy; //only if type==splineTo
410 struct _SHAPELINE * next;
415 int swf_ShapeNew(SHAPE ** s);
416 void swf_ShapeFree(SHAPE * s);
418 int swf_GetSimpleShape(TAG * t,SHAPE ** s); // without Linestyle/Fillstyle Record
419 int swf_SetSimpleShape(TAG * t,SHAPE * s); // without Linestyle/Fillstyle Record
421 int swf_ShapeAddLineStyle(SHAPE * s,U16 width,RGBA * color);
422 int swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color);
423 int swf_ShapeAddBitmapFillStyle(SHAPE * s,MATRIX * m,U16 id_bitmap,int clip);
424 int swf_ShapeAddGradientFillStyle(SHAPE * s,MATRIX * m,GRADIENT* gradient,int radial);
425 int swf_ShapeAddFillStyle2(SHAPE * s,FILLSTYLE*fs);
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
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 #define UNDEFINED_COORD 0x7fffffff
435 int swf_ShapeSetAll(TAG * t,SHAPE * s,S32 x,S32 y,int line,int fill0,int fill1);
437 int swf_ShapeSetLine(TAG * t,SHAPE * s,S32 x,S32 y);
438 int swf_ShapeSetCurve(TAG * t,SHAPE * s,S32 x,S32 y,S32 ax,S32 ay);
439 int swf_ShapeSetCircle(TAG * t,SHAPE * s,S32 x,S32 y,S32 rx,S32 ry);
440 int swf_ShapeSetEnd(TAG * t);
442 void swf_ShapeSetBitmapRect(TAG * t, U16 gfxid, int width, int height);
444 //SHAPELINE* swf_ParseShapeData(U8*data, int bits, int fillbits, int linebits);
445 SHAPE2* swf_ShapeToShape2(SHAPE*shape);
446 void swf_Shape2ToShape(SHAPE2*shape2, SHAPE*shape);
447 SRECT swf_GetShapeBoundingBox(SHAPE2*shape);
448 void swf_SetShape2(TAG*tag, SHAPE2*shape);
449 SHAPE2* swf_Shape2Clone(SHAPE2 * s);
450 void swf_Shape2Free(SHAPE2 * s);
451 void swf_DumpShape(SHAPE2*shape2);
453 void swf_ParseDefineShape(TAG*tag, SHAPE2*shape);
454 void swf_SetShape2(TAG*tag, SHAPE2*shape2);
456 void swf_RecodeShapeData(U8*data, int bitlen, int in_bits_fill, int in_bits_line,
457 U8**destdata, U32*destbitlen, int out_bits_fill, int out_bits_line);
461 void swf_Shape10DrawerInit(drawer_t*draw, TAG*tag);
462 void swf_Shape01DrawerInit(drawer_t*draw, TAG*tag);
463 void swf_Shape11DrawerInit(drawer_t*draw, TAG*tag);
464 SHAPE* swf_ShapeDrawerToShape(drawer_t*draw);
465 SRECT swf_ShapeDrawerGetBBox(drawer_t*draw);
467 void swf_DrawString(drawer_t*draw, const char*source);
471 typedef struct _KERNING
478 typedef struct _SWFLAYOUT
484 SWFKERNING * kerning;
492 typedef struct _FONTUSAGE
497 #define FONT_STYLE_BOLD 1
498 #define FONT_STYLE_ITALIC 2
499 #define FONT_ENCODING_UNICODE 1
500 #define FONT_ENCODING_ANSI 2
501 #define FONT_ENCODING_SHIFTJIS 4
503 typedef struct _SWFFONT
504 { int id; // -1 = not set
505 U8 version; // 0 = not set, 1 = definefont, 2 = definefont2
509 U16 maxascii; // highest mapped ascii value
525 #define ET_HASTEXT 32768
526 #define ET_WORDWRAP 16384
527 #define ET_MULTILINE 8192
528 #define ET_PASSWORD 4096
529 #define ET_READONLY 2048
530 #define ET_HASTEXTCOLOR 1024
531 #define ET_HASMAXLENGTH 512
532 #define ET_HASFONT 256
534 #define ET_AUTOSIZE 64 /* MX */
535 #define ET_HASLAYOUT 32
536 #define ET_NOSELECT 16
539 #define ET_HTML 2 /* MX? */
540 #define ET_USEOUTLINES 1
542 #define ET_ALIGN_LEFT 0
543 #define ET_ALIGN_RIGHT 1
544 #define ET_ALIGN_CENTER 2
545 #define ET_ALIGN_JUSTIFY 3
547 typedef struct _EditTextLayout
549 U8 align; // 0=left, 1=right, 2=center, 3=justify
556 int swf_FontEnumerate(SWF * swf,void (*FontCallback) (void*,U16,U8*), void*self);
557 // -> void fontcallback(U16 id,U8 * name); returns number of defined fonts
559 int swf_FontExtract(SWF * swf,int id,SWFFONT ** f);
560 // Fetches all available information from DefineFont, DefineFontInfo, DefineText, ...
561 // id = FontID, id=0 -> Extract first Font
563 int swf_FontIsItalic(SWFFONT * f);
564 int swf_FontIsBold(SWFFONT * f);
566 int swf_FontSetID(SWFFONT * f,U16 id);
567 int swf_FontReduce(SWFFONT * f);
569 int swf_FontInitUsage(SWFFONT * f);
570 int swf_FontUseGlyph(SWFFONT * f, int glyph);
571 int swf_FontUse(SWFFONT* f,U8 * s);
573 int swf_FontSetDefine(TAG * t,SWFFONT * f);
574 int swf_FontSetDefine2(TAG * t,SWFFONT * f);
575 int swf_FontSetInfo(TAG * t,SWFFONT * f);
577 void swf_FontCreateLayout(SWFFONT*f);
578 void swf_FontAddLayout(SWFFONT * f, int ascent, int descent, int leading);
580 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);
582 void swf_WriteFont(SWFFONT* font, char* filename);
583 SWFFONT* swf_ReadFont(char* filename);
585 void swf_FontFree(SWFFONT * f);
587 U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale);
588 int swf_TextCountBits(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits);
590 #define SET_TO_ZERO 0x80000000
591 int swf_TextSetInfoRecord(TAG * t,SWFFONT * font,U16 size,RGBA * color,int dx,int dy);
592 int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits);
594 int swf_TextPrintDefineText(TAG * t,SWFFONT * f);
595 // Prints text defined in tag t with font f to stdout
597 void swf_FontPrepareForEditText(SWFFONT * f);
599 /* notice: if you set the fontid, make sure you call swf_FontPrepareForEditText() for the font first */
600 void swf_SetEditText(TAG*tag, U16 flags, SRECT r, char*text, RGBA*color,
601 int maxlength, U16 font, U16 height, EditTextLayout*layout, char*variable);
603 SRECT swf_SetDefineText(TAG*tag, SWFFONT*font, RGBA*rgb, char*text, int scale);
605 void swf_DrawText(drawer_t*draw, SWFFONT*font, int size, char*text);
609 SWFFONT* swf_LoadTrueTypeFont(char*filename);
610 SWFFONT* swf_LoadT1Font(char*filename);
611 SWFFONT* swf_LoadFont(char*filename);
613 void swf_SetLoadFontParameters(int scale, int skip_unused, int full_unicode);
617 void swf_DumpHeader(FILE * f,SWF * swf);
618 void swf_DumpMatrix(FILE * f,MATRIX * m);
619 void swf_DumpTag(FILE * f,TAG * t);
620 void swf_DumpSWF(FILE * f,SWF*swf);
621 char* swf_TagGetName(TAG*tag);
622 void swf_DumpFont(SWFFONT * font);
635 /* missing: IDLE_OUTDOWN
639 #define BC_OVERDOWN_IDLE 0x0100
640 #define BC_IDLE_OVERDOWN 0x0080
641 #define BC_OUTDOWN_IDLE 0x0040
642 #define BC_OUTDOWN_OVERDOWN 0x0020
643 #define BC_OVERDOWN_OUTDOWN 0x0010
644 #define BC_OVERDOWN_OVERUP 0x0008
645 #define BC_OVERUP_OVERDOWN 0x0004
646 #define BC_OVERUP_IDLE 0x0002
647 #define BC_IDLE_OVERUP 0x0001
649 #define BC_KEY(c) (c<<9)
651 #define BC_CURSORLEFT 0x0200
652 #define BC_CURSORRIGHT 0x0400
653 #define BC_POS1 0x0600
654 #define BC_END 0x0800
655 #define BC_INSERT 0x0a00
656 #define BC_DELETE 0x0c00
657 #define BC_CLEAR 0x0e00
658 #define BC_BACKSPACE 0x1000
659 #define BC_ENTER 0x1a00
660 #define BC_CURSORUP 0x1c00
661 #define BC_CURSORDOWN 0x1e00
662 #define BC_PAGEUP 0x2000
663 #define BC_PAGEDOWN 0x2200
664 #define BC_TAB 0x2400
665 #define BC_ESCAPE 0x3600
666 #define BC_SPACE 0x4000
668 /* these are probably only valid with linux:
680 /* everything above 0x4000 is standard ascii:
681 0x4000 ' ' 0x4200 '!' 0x4600 '#' 0x4800 '$' 0x4a00 '%' 0x4c00 '&' ...
682 0x6000 '0' ... 0x7200 '9'
684 0x8200 'A' ... 0xb400 'Z'
691 #define BF_TRACKMENU 0x01
693 int swf_ButtonSetRecord(TAG * t,U8 state,U16 id,U16 layer,MATRIX * m,CXFORM * cx);
694 int swf_ButtonSetCondition(TAG * t,U16 condition); // for DefineButton2
695 int swf_ButtonSetFlags(TAG * t,U8 flags); // necessary for DefineButton2
696 int swf_ButtonPostProcess(TAG * t,int anz_action); // Set all offsets in DefineButton2-Tags (how many conditions to process)
700 int swf_ImageHasAlpha(RGBA*img, int width, int height);
701 int swf_ImageGetNumberOfPaletteEntries(RGBA*img, int width, int height, RGBA*palette);
703 typedef int JPEGBITS;
704 JPEGBITS * swf_SetJPEGBitsStart(TAG * t,int width,int height,int quality); // deprecated
705 int swf_SetJPEGBitsLines(JPEGBITS * jpegbits,U8 ** data,int n); // deprecated
706 int swf_SetJPEGBitsLine(JPEGBITS * jpegbits,U8 * data); // deprecated
707 int swf_SetJPEGBitsFinish(JPEGBITS * jpegbits); // deprecated
709 void swf_GetJPEGSize(char * fname, int*width, int*height);
711 int swf_SetJPEGBits(TAG * t,char * fname,int quality);
712 void swf_SetJPEGBits2(TAG * t,U16 width,U16 height,RGBA * bitmap,int quality);
713 int swf_SetJPEGBits3(TAG * tag,U16 width,U16 height,RGBA* bitmap, int quality);
714 RGBA* swf_JPEG2TagToImage(TAG*tag, int*width, int*height);
715 void swf_RemoveJPEGTables(SWF*swf);
717 void swf_SaveJPEG(char*filename, RGBA*pixels, int width, int height, int quality);
719 #define BYTES_PER_SCANLINE(width) ((width+3)&0xfffffffc)
721 #define BMF_8BIT 3 // Bitmap formats
725 int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags);
726 int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors);
727 int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap);
728 void swf_SetLosslessImage(TAG*tag, RGBA*data, int width, int height); //WARNING: will change tag->id
730 RGBA* swf_DefineLosslessBitsTagToImage(TAG*tag, int*width, int*height);
732 RGBA* swf_ExtractImage(TAG*tag, int*dwidth, int*dheight);
733 RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheight);
734 TAG* swf_AddImage(TAG*tag, int bitid, RGBA*mem, int width, int height, int quality);
737 void swf_SetSoundStreamHead(TAG*tag, int avgnumsamples);
738 void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int seek, char first); /* expects 2304 samples */
739 void swf_SetSoundDefine(TAG*tag, S16*samples, int num);
740 void swf_SetSoundDefineMP3(TAG*tag, U8* data, unsigned length,
744 void swf_SetSoundInfo(TAG*tag, SOUNDINFO*info);
748 void swf_Optimize(SWF*swf);
749 U8 swf_isDefiningTag(TAG * t);
750 U8 swf_isPseudoDefiningTag(TAG * t);
751 U8 swf_isAllowedSpriteTag(TAG * t);
752 U8 swf_isImageTag(TAG*tag);
753 U8 swf_isShapeTag(TAG*tag);
754 U8 swf_isTextTag(TAG*tag);
755 U8 swf_isFontTag(TAG*tag);
756 U8 swf_isPlaceTag(TAG*tag);
758 U16 swf_GetDefineID(TAG * t);
759 SRECT swf_GetDefineBBox(TAG * t);
760 void swf_SetDefineBBox(TAG * t, SRECT r);
762 void swf_SetDefineID(TAG * t, U16 newid);
763 U16 swf_GetPlaceID(TAG * t); //PLACEOBJECT, PLACEOBJECT2 (sometimes), REMOVEOBJECT
764 int swf_GetDepth(TAG * t); //PLACEOBJECT,PLACEOBJECT2,REMOVEOBJECT,REMOVEOBJECT2,SETTABINDEX
765 char* swf_GetName(TAG * t); //PLACEOBJECT2, FRAMELABEL
766 MATRIX * swf_MatrixJoin(MATRIX * d,MATRIX * s1,MATRIX * s2);
767 MATRIX * swf_MatrixMapTriangle(MATRIX * m,int dx,int dy,
768 int x0,int y0,int x1,int y1,int x2,int y2);
769 int swf_GetNumUsedIDs(TAG * t);
770 void swf_GetUsedIDs(TAG * t, int * positions);
771 void swf_Relocate(SWF*swf, char*bitmap); // bitmap is 65536 bytes, bitmap[a]==0 means id a is free
772 void swf_RelocateDepth(SWF*swf, char*bitmap); // bitmap is 65536 bytes, bitmap[d]==0 means depth d is free
774 TAG* swf_Concatenate (TAG*list1,TAG*list2); // warning: both list1 and list2 are invalid after this call.
776 RGBA swf_GetSWFBackgroundColor(SWF*swf);
780 void swf_uncgi(); // same behaviour as Steven Grimm's uncgi-library
784 typedef struct _ActionTAG
789 struct _ActionTAG * next;
790 struct _ActionTAG * prev;
792 struct _ActionTAG * parent;
793 U8 tmp[4]; // store small operands here.
796 typedef struct _ActionMarker
801 ActionTAG* swf_ActionGet(TAG*tag);
802 void swf_ActionFree(ActionTAG*tag);
803 void swf_ActionSet(TAG*tag, ActionTAG*actions);
804 void swf_DumpActions(ActionTAG*atag, char*prefix);
805 void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*));
806 void swf_ActionEnumerateTargets(ActionTAG*atag, char*(*callback)(char*));
807 void swf_ActionEnumerateStrings(ActionTAG*atag, char*(*callback)(char*));
809 // using action/actioncompiler.h:
810 ActionTAG* swf_ActionCompile(const char* source, int version);
812 ActionTAG* action_End(ActionTAG*atag);
813 ActionTAG* action_NextFrame(ActionTAG*atag);
814 ActionTAG* action_PreviousFrame(ActionTAG*atag);
815 ActionTAG* action_Play(ActionTAG*atag);
816 ActionTAG* action_Stop(ActionTAG*atag);
817 ActionTAG* action_ToggleQuality(ActionTAG*atag);
818 ActionTAG* action_StopSounds(ActionTAG*atag);
819 ActionTAG* action_Add(ActionTAG*atag);
820 ActionTAG* action_Subtract(ActionTAG*atag);
821 ActionTAG* action_Multiply(ActionTAG*atag);
822 ActionTAG* action_Divide(ActionTAG*atag);
823 ActionTAG* action_Equals(ActionTAG*atag);
824 ActionTAG* action_Less(ActionTAG*atag);
825 ActionTAG* action_And(ActionTAG*atag);
826 ActionTAG* action_Or(ActionTAG*atag);
827 ActionTAG* action_Not(ActionTAG*atag);
828 ActionTAG* action_StringEquals(ActionTAG*atag);
829 ActionTAG* action_StringLength(ActionTAG*atag);
830 ActionTAG* action_StringExtract(ActionTAG*atag);
831 ActionTAG* action_Pop(ActionTAG*atag);
832 ActionTAG* action_ToInteger(ActionTAG*atag);
833 ActionTAG* action_GetVariable(ActionTAG*atag);
834 ActionTAG* action_SetVariable(ActionTAG*atag);
835 ActionTAG* action_SetTarget2(ActionTAG*atag);
836 ActionTAG* action_StringAdd(ActionTAG*atag);
837 ActionTAG* action_GetProperty(ActionTAG*atag);
838 ActionTAG* action_SetProperty(ActionTAG*atag);
839 ActionTAG* action_CloneSprite(ActionTAG*atag);
840 ActionTAG* action_RemoveSprite(ActionTAG*atag);
841 ActionTAG* action_Trace(ActionTAG*atag);
842 ActionTAG* action_StartDrag(ActionTAG*atag);
843 ActionTAG* action_EndDrag(ActionTAG*atag);
844 ActionTAG* action_StringLess(ActionTAG*atag);
845 ActionTAG* action_RandomNumber(ActionTAG*atag);
846 ActionTAG* action_MBStringLength(ActionTAG*atag);
847 ActionTAG* action_CharToAscii(ActionTAG*atag);
848 ActionTAG* action_AsciiToChar(ActionTAG*atag);
849 ActionTAG* action_GetTime(ActionTAG*atag);
850 ActionTAG* action_MBStringExtract(ActionTAG*atag);
851 ActionTAG* action_MBCharToAscii(ActionTAG*atag);
852 ActionTAG* action_MBAsciiToChar(ActionTAG*atag);
853 ActionTAG* action_Delete(ActionTAG*atag);
854 ActionTAG* action_Delete2(ActionTAG*atag);
855 ActionTAG* action_DefineLocal(ActionTAG*atag);
856 ActionTAG* action_CallFunction(ActionTAG*atag);
857 ActionTAG* action_Return(ActionTAG*atag);
858 ActionTAG* action_Modulo(ActionTAG*atag);
859 ActionTAG* action_NewObject(ActionTAG*atag);
860 ActionTAG* action_DefineLocal2(ActionTAG*atag);
861 ActionTAG* action_InitArray(ActionTAG*atag);
862 ActionTAG* action_Makehash(ActionTAG*atag);
863 ActionTAG* action_TypeOf(ActionTAG*atag);
864 ActionTAG* action_TargetPath(ActionTAG*atag);
865 ActionTAG* action_Enumerate(ActionTAG*atag);
866 ActionTAG* action_Add2(ActionTAG*atag);
867 ActionTAG* action_Less2(ActionTAG*atag);
868 ActionTAG* action_Equals2(ActionTAG*atag);
869 ActionTAG* action_ToNumber(ActionTAG*atag);
870 ActionTAG* action_ToString(ActionTAG*atag);
871 ActionTAG* action_PushDuplicate(ActionTAG*atag);
872 ActionTAG* action_StackSwap(ActionTAG*atag);
873 ActionTAG* action_GetMember(ActionTAG*atag);
874 ActionTAG* action_SetMember(ActionTAG*atag);
875 ActionTAG* action_Increment(ActionTAG*atag);
876 ActionTAG* action_Decrement(ActionTAG*atag);
877 ActionTAG* action_CallMethod(ActionTAG*atag);
878 ActionTAG* action_NewMethod(ActionTAG*atag);
879 ActionTAG* action_BitAnd(ActionTAG*atag);
880 ActionTAG* action_BitOr(ActionTAG*atag);
881 ActionTAG* action_BitXor(ActionTAG*atag);
882 ActionTAG* action_BitLShift(ActionTAG*atag);
883 ActionTAG* action_BitRShift(ActionTAG*atag);
884 ActionTAG* action_BitURShift(ActionTAG*atag);
885 ActionTAG* action_GotoFrame(ActionTAG*atag, U16 frame);
886 ActionTAG* action_GetUrl(ActionTAG*atag, char* url, char* label);
887 ActionTAG* action_StoreRegister(ActionTAG*atag, U8 reg);
888 ActionTAG* action_Constantpool(ActionTAG*atag, char* constantpool);
889 ActionTAG* action_WaitForFrame(ActionTAG*atag, U16 frame, U8 skip);
890 ActionTAG* action_SetTarget(ActionTAG*atag, char* target);
891 ActionTAG* action_GotoLabel(ActionTAG*atag, char* label);
892 ActionTAG* action_WaitForFrame2(ActionTAG*atag, U8 skip);
893 ActionTAG* action_With(ActionTAG*atag, char*object);
894 ActionTAG* action_PushString(ActionTAG*atag, char*str);
895 ActionTAG* action_PushFloat(ActionTAG*atag, float f);
896 ActionTAG* action_PushNULL(ActionTAG*atag);
897 ActionTAG* action_PushRegister(ActionTAG*atag, U8 reg);
898 ActionTAG* action_PushBoolean(ActionTAG*atag, char c);
899 ActionTAG* action_PushDouble(ActionTAG*atag, double d);
900 ActionTAG* action_PushInt(ActionTAG*atag, int i);
901 ActionTAG* action_PushLookup(ActionTAG*atag, U8 index);
902 ActionTAG* action_Jump(ActionTAG*atag, U16 branch);
903 ActionTAG* action_GetUrl2(ActionTAG*atag, U8 method);
904 ActionTAG* action_DefineFunction(ActionTAG*atag, U8*data, int len);
905 ActionTAG* action_If(ActionTAG*atag, U16 branch);
906 ActionTAG* action_Call(ActionTAG*atag);
907 ActionTAG* action_GotoFrame2(ActionTAG*atag, U8 method);
908 ActionMarker action_setMarker(ActionTAG*atag);
909 void action_fixjump(ActionMarker m1, ActionMarker m2);
913 // The following 3 routines only use placeobject2:
915 int swf_ObjectPlace(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name);
916 int swf_ObjectPlaceClip(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name, U16 clipaction);
917 int swf_ObjectMove(TAG * t,U16 depth,MATRIX * m,CXFORM * cx);
919 typedef struct _SWFPLACEOBJECT {
922 char move; //true: move/replace character, false: set character
931 void swf_SetPlaceObject(TAG * t,SWFPLACEOBJECT* obj);
932 void swf_GetPlaceObject(TAG * t,SWFPLACEOBJECT* obj);
933 void swf_PlaceObjectFree(SWFPLACEOBJECT* obj);
937 typedef struct _VIDEOSTREAM
957 int do_motion; //enable motion compensation (slow!)
961 void swf_SetVideoStreamDefine(TAG*tag, VIDEOSTREAM*stream, U16 frames, U16 width, U16 height);
962 void swf_SetVideoStreamIFrame(TAG*tag, VIDEOSTREAM*s, RGBA*pic, int quant/* 1-31, 1=best quality, 31=best compression*/);
963 void swf_SetVideoStreamBlackFrame(TAG*tag, VIDEOSTREAM*s);
964 void swf_SetVideoStreamPFrame(TAG*tag, VIDEOSTREAM*s, RGBA*pic, int quant/* 1-31, 1=best quality, 31=best compression*/);
965 void swf_SetVideoStreamMover(TAG*tag, VIDEOSTREAM*s, signed char* movex, signed char* movey, void** image, int quant);
966 void swf_VideoStreamClear(VIDEOSTREAM*stream);
970 typedef struct RENDERBUF
978 void swf_Render_Init(RENDERBUF*buf, int posx, int posy, int width, int height, int antialize, int multiply);
979 void swf_Render_SetBackground(RENDERBUF*buf, RGBA*img, int width, int height);
980 void swf_Render_SetBackgroundColor(RENDERBUF*buf, RGBA color);
981 RGBA* swf_Render(RENDERBUF*dest);
982 void swf_RenderShape(RENDERBUF*dest, SHAPE2*shape, MATRIX*m, CXFORM*c, U16 depth,U16 clipdepth);
983 void swf_RenderSWF(RENDERBUF*buf, SWF*swf);
984 void swf_Render_AddImage(RENDERBUF*buf, U16 id, RGBA*img, int width, int height);
985 void swf_Render_ClearCanvas(RENDERBUF*dest);
986 void swf_Render_Delete(RENDERBUF*dest);