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 file is distributed under the GPL, see file COPYING for details
13 #ifndef __RFX_SWF_INCLUDED__
14 #define __RFX_SWF_INCLUDED__
22 #include "../config.h"
35 /* little/big endian stuff */
37 //#define SWAP16(s) ((U16) ((U8*)&s)[0] | ((U16) ((U8*)&s)[1] << 8))
38 //#define SWAP32(s) ((U32) ((U8*)&s)[0] | ((U32) ((U8*)&s)[1] << 8) | ((U32) ((U8*)&s)[2] << 16) | ((U32) ((U8*)&s)[3] << 24))
40 #define PUT16(ptr,x) {((U8*)(ptr))[0]=(U8)(x);((U8*)(ptr))[1]=(U8)((x)>>8);}
41 #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);}
42 #define GET16(ptr) (((U16)(((U8*)(ptr))[0]))+(((U16)(((U8*)(ptr))[1]))<<8))
43 #define GET32(ptr) (((U16)(((U8*)(ptr))[0]))+(((U16)(((U8*)(ptr))[1]))<<8)+(((U16)(((U8*)(ptr))[2]))<<16)+(((U16)(((U8*)(ptr))[3]))<<24))
45 #ifdef WORDS_BIGENDIAN
46 #define SWAP16(s) ((((s)>>8)&0x00ff)|(((s)<<8)&0xff00))
47 #define SWAP32(s) (SWAP16(((s)>>16)&0x0000ffff)|((SWAP16(s)<<16)&0xffff0000))
48 #define REVERSESWAP16(x) (x)
49 #define REVERSESWAP32(x) (x)
53 #define REVERSESWAP16(s) ((((s)>>8)&0x00ff)|(((s)<<8)&0xff00))
54 #define REVERSESWAP32(s) (REVERSESWAP16(((s)>>16)&0x0000ffff)|((REVERSESWAP16(s)<<16)&0xffff0000))
58 typedef unsigned long U32;
59 typedef signed long S32;
60 typedef unsigned short U16;
61 typedef signed short S16;
62 typedef unsigned char U8;
63 typedef signed char S8;
64 typedef signed long SFIXED;
65 typedef signed long SCOORD;
69 typedef struct _SPOINT
88 typedef struct _MATRIX
89 { SFIXED sx; // factor x
91 SFIXED r0; // rotation
97 typedef struct _CXFORM
102 } CXFORM, * LPCXFORM;
104 typedef struct _GRADIENT
111 typedef struct _TAG // NEVER access a Tag-Struct directly !
114 U32 memsize; // to minimize realloc() calls
116 U32 len; // for Set-Access
117 U32 pos; // for Get-Access
119 int frame; // not really up-to-date
124 U8 readBit; // for Bit-Manipulating Functions [read]
125 U8 writeBit; // [write]
129 typedef struct _SOUNDINFO
132 U8 multiple; //continue playing if already started
148 U8 compressed; // SWF or SWC?
149 U32 fileSize; // valid after load and save
152 U16 frameCount; // valid after load and save
158 int swf_ReadSWF2(struct reader_t*reader, SWF * swf); // Reads SWF via callback
159 int swf_ReadSWF(int handle,SWF * swf); // Reads SWF to memory (malloc'ed), returns length or <0 if fails
160 int swf_WriteSWF2(struct writer_t*writer, SWF * swf); // Writes SWF via callback, returns length or <0 if fails
161 int swf_WriteSWF(int handle,SWF * swf); // Writes SWF to file, returns length or <0 if fails
162 int swf_WriteSWC(int handle, SWF * swf); // for convenience, equal to swf->compressed=1;swf_WriteSWF(..)
163 int swf_WriteCGI(SWF * swf); // Outputs SWF with valid CGI header to stdout
164 void swf_FreeTags(SWF * swf); // Frees all malloc'ed memory for swf
167 int swf_WriteHeader(int handle,SWF * swf); // Writes Header of swf to file
168 int swf_WriteHeader2(struct writer_t*writer,SWF * swf); // Writes Header of swf to file
169 int swf_WriteTag(int handle,TAG * tag); // Writes TAG to file
170 int swf_WriteTag2(struct writer_t*writer, TAG * t); //Write TAG via callback
172 int swf_ReadHeader(struct reader_t*reader, SWF * swf); // Reads SWF Header via callback
174 // folding/unfolding:
176 void swf_FoldAll(SWF*swf);
177 void swf_UnFoldAll(SWF*swf);
178 void swf_FoldSprite(TAG*tag);
179 void swf_UnFoldSprite(TAG*tag);
183 TAG * swf_InsertTag(TAG * after,U16 id); // updates frames, if necessary
184 int swf_DeleteTag(TAG * t);
186 void swf_SetTagPos(TAG * t,U32 pos); // resets Bitcount
187 U32 swf_GetTagPos(TAG * t);
189 TAG * swf_NextTag(TAG * t);
190 TAG * swf_PrevTag(TAG * t);
192 int swf_GetFrameNo(TAG * t); // should be renamed to TagGetFrame
193 U16 swf_GetTagID(TAG * t); // ... TagGetID
194 U32 swf_GetTagLen(TAG * t); // ... TagGetTagLen
195 U8* swf_GetTagLenPtr(TAG * t);
197 U32 swf_GetBits(TAG * t,int nbits);
198 S32 swf_GetSBits(TAG * t,int nbits);
199 int swf_SetBits(TAG * t,U32 v,int nbits);
201 int swf_GetBlock(TAG * t,U8 * b,int l); // resets Bitcount
202 int swf_SetBlock(TAG * t,U8 * b,int l);
204 U8 swf_GetU8(TAG * t); // resets Bitcount
205 U16 swf_GetU16(TAG * t);
206 U32 swf_GetU32(TAG * t);
207 void swf_GetRGB(TAG * t, RGBA * col);
208 void swf_GetRGBA(TAG * t, RGBA * col);
209 void swf_GetGradient(TAG * t, GRADIENT * gradient, char alpha);
211 int swf_SetU8(TAG * t,U8 v); // resets Bitcount
212 int swf_SetU16(TAG * t,U16 v);
213 int swf_SetU32(TAG * t,U32 v);
215 int swf_GetPoint(TAG * t,SPOINT * p); // resets Bitcount
216 int swf_GetRect(TAG * t,SRECT * r);
217 int swf_GetMatrix(TAG * t,MATRIX * m);
218 int swf_GetCXForm(TAG * t,CXFORM * cx,U8 alpha);
220 int swf_SetPoint(TAG * t,SPOINT * p); // resets Bitcount
221 int swf_SetRect(TAG * t,SRECT * r);
222 int swf_SetMatrix(TAG * t,MATRIX * m);
223 int swf_SetCXForm(TAG * t,CXFORM * cx,U8 alpha);
224 int swf_SetRGB(TAG * t,RGBA * col);
225 int swf_SetRGBA(TAG * t,RGBA * col);
229 #define swf_GetS8(tag) ((S8)swf_GetU8(tag))
230 #define swf_GetS16(tag) ((S16)swf_GetU16(tag))
231 #define swf_GetS32(tag) ((S32)swf_GetU32(tag))
232 #define swf_GetCoord(tag) ((SCOORD)swf_GetU32(tag))
233 #define swf_GetFixed(tag) ((SFIXED)swf_GetU32(tag))
235 #define swf_SetS8(tag,v) swf_SetU8(tag,(U8)v)
236 #define swf_SetS16(tag,v) swf_SetU16(tag,(U16)v)
237 #define swf_SetS32(tag,v) swf_SetU32(tag,(U32)v)
238 #define swf_SetCoord(tag,v) swf_SetU32(tag,(U32)v)
239 #define swf_SetFixed(tag,v) swf_SetU32(tag,(U32)v)
240 #define swf_SetString(t,s) swf_SetBlock(t,s,strlen(s)+1)
242 #define FAILED(b) ((b)<0)
243 #define SUCCEDED(b) ((b)>=0)
245 // Tag IDs (adopted from J. C. Kessels' Form2Flash)
248 #define ST_SHOWFRAME 1
249 #define ST_DEFINESHAPE 2
250 #define ST_FREECHARACTER 3
251 #define ST_PLACEOBJECT 4
252 #define ST_REMOVEOBJECT 5
253 #define ST_DEFINEBITS 6
254 #define ST_DEFINEBITSJPEG 6
255 #define ST_DEFINEBUTTON 7
256 #define ST_JPEGTABLES 8
257 #define ST_SETBACKGROUNDCOLOR 9
258 #define ST_DEFINEFONT 10
259 #define ST_DEFINETEXT 11
260 #define ST_DOACTION 12
261 #define ST_DEFINEFONTINFO 13
262 #define ST_DEFINESOUND 14 /* Event sound tags. */
263 #define ST_STARTSOUND 15
264 #define ST_DEFINEBUTTONSOUND 17
265 #define ST_SOUNDSTREAMHEAD 18
266 #define ST_SOUNDSTREAMBLOCK 19
267 #define ST_DEFINEBITSLOSSLESS 20 /* A bitmap using lossless zlib compression. */
268 #define ST_DEFINEBITSJPEG2 21 /* A bitmap using an internal JPEG compression table. */
269 #define ST_DEFINESHAPE2 22
270 #define ST_DEFINEBUTTONCXFORM 23
271 #define ST_PROTECT 24 /* This file should not be importable for editing. */
272 #define ST_PLACEOBJECT2 26 /* The new style place w/ alpha color transform and name. */
273 #define ST_REMOVEOBJECT2 28 /* A more compact remove object that omits the character tag (just depth). */
274 #define ST_FREEALL 31 /* ? */
275 #define ST_DEFINESHAPE3 32 /* A shape V3 includes alpha values. */
276 #define ST_DEFINETEXT2 33 /* A text V2 includes alpha values. */
277 #define ST_DEFINEBUTTON2 34 /* A button V2 includes color transform, alpha and multiple actions */
278 #define ST_DEFINEBITSJPEG3 35 /* A JPEG bitmap with alpha info. */
279 #define ST_DEFINEBITSLOSSLESS2 36 /* A lossless bitmap with alpha info. */
280 #define ST_DEFINEEDITTEXT 37
281 #define ST_DEFINEMOVIE 38
282 #define ST_DEFINESPRITE 39 /* Define a sequence of tags that describe the behavior of a sprite. */
283 #define ST_NAMECHARACTER 40 /* Name a character definition, character id and a string, (used for buttons, bitmaps, sprites and sounds). */
284 #define ST_SERIALNUMBER 41
285 #define ST_GENERATORTEXT 42 /* contains an id */
286 #define ST_FRAMELABEL 43 /* A string label for the current frame. */
287 #define ST_SOUNDSTREAMHEAD2 45 /* For lossless streaming sound, should not have needed this... */
288 #define ST_DEFINEMORPHSHAPE 46 /* A morph shape definition */
289 #define ST_DEFINEFONT2 48
290 #define ST_TEMPLATECOMMAND 49
291 #define ST_GENERATOR3 51
292 #define ST_EXTERNALFONT 52
293 #define ST_EXPORTASSETS 56
294 #define ST_IMPORTASSETS 57
295 #define ST_ENABLEDEBUGGER 58
296 #define ST_DOINITACTION 59
297 #define ST_DEFINEVIDEOSTREAM 60
298 #define ST_VIDEOFRAME 61
299 #define ST_DEFINEFONTINFO2 62
300 #define ST_MX4 63 /*(?) */
302 #define ST_REFLEX 777 /* to identify generator software */
308 typedef struct _LINESTYLE
311 } LINESTYLE, * LPLINESTYLE;
313 typedef struct _FILLSTYLE
318 } FILLSTYLE, * LPFILLSTYLE;
320 typedef struct _SHAPE // NEVER access a Shape-Struct directly !
336 // used by Get/SetSimpleShape and glyph handling
338 U32 bitlen; // length of data in bits
341 /* SHAPE can be converted into SHAPE2: */
344 typedef struct _SHAPE2
346 LINESTYLE * linestyles;
348 FILLSTYLE* fillstyles;
350 struct _SHAPELINE * lines;
351 SRECT* bbox; // may be NULL
354 typedef struct _SHAPELINE
356 enum {moveTo, lineTo, splineTo} type;
358 SCOORD sx,sy; //only if type==splineTo
362 struct _SHAPELINE * next;
367 int swf_ShapeNew(SHAPE ** s);
368 void swf_ShapeFree(SHAPE * s);
370 int swf_GetSimpleShape(TAG * t,SHAPE ** s); // without Linestyle/Fillstyle Record
371 int swf_SetSimpleShape(TAG * t,SHAPE * s); // without Linestyle/Fillstyle Record
373 int swf_ShapeAddLineStyle(SHAPE * s,U16 width,RGBA * color);
374 int swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color);
375 int swf_ShapeAddBitmapFillStyle(SHAPE * s,MATRIX * m,U16 id_bitmap,int clip);
377 int swf_SetShapeStyles(TAG * t,SHAPE * s);
378 int swf_ShapeCountBits(SHAPE * s,U8 * fbits,U8 * lbits);
379 int swf_SetShapeBits(TAG * t,SHAPE * s);
380 int swf_SetShapeHeader(TAG * t,SHAPE * s); // one call for upper three functions
382 int swf_ShapeSetMove(TAG * t,SHAPE * s,S32 x,S32 y);
383 int swf_ShapeSetStyle(TAG * t,SHAPE * s,U16 line,U16 fill0,U16 fill1);
384 int swf_ShapeSetAll(TAG * t,SHAPE * s,S32 x,S32 y,U16 line,U16 fill0,U16 fill1);
386 int swf_ShapeSetLine(TAG * t,SHAPE * s,S32 x,S32 y);
387 int swf_ShapeSetCurve(TAG * t,SHAPE * s,S32 x,S32 y,S32 ax,S32 ay);
388 int swf_ShapeSetCircle(TAG * t,SHAPE * s,S32 x,S32 y,S32 rx,S32 ry);
389 int swf_ShapeSetEnd(TAG * t);
391 SHAPELINE* swf_ParseShapeData(U8*data, int bits, int fillbits, int linebits);
392 SHAPE2* swf_ShapeToShape2(SHAPE*shape);
393 SHAPE* swf_Shape2ToShape(SHAPE2*shape);
394 SRECT swf_GetShapeBoundingBox(SHAPELINE*shape);
395 int swf_SetShape2(TAG*tag, SHAPE2*shape);
396 void swf_Shape2Free(SHAPE2 * s);
400 // does not support wide characters !
402 #define MAX_CHAR_PER_FONT 512
404 typedef struct _KERNING
411 typedef struct _SWFLAYOUT
417 SWFKERNING * kerning;
418 } SWFLAYOUT, * LPSWFLAYOUT;
425 #define FONT_STYLE_BOLD 1
426 #define FONT_STYLE_ITALIC 2
427 #define FONT_ENCODING_UNICODE 1
428 #define FONT_ENCODING_ANSI 2
429 #define FONT_ENCODING_SHIFTJIS 4
431 typedef struct _SWFFONT
432 { int id; // -1 = not set
433 U8 version; // 0 = not set, 1 = definefont, 2 = definefont2
437 U16 maxascii; // highest mapped ascii value
446 } SWFFONT, * LPSWFFONT;
448 typedef struct _FONTUSAGE
449 { U8 code[MAX_CHAR_PER_FONT];
450 } FONTUSAGE, * LPFONTUSAGE;
452 #define ET_HASTEXT 32768
453 #define ET_WORDWRAP 16384
454 #define ET_MULTILINE 8192
455 #define ET_PASSWORD 4096
456 #define ET_READONLY 2048
457 #define ET_HASTEXTCOLOR 1024
458 #define ET_HASMAXLENGTH 512
459 #define ET_HASFONT 256
461 #define ET_AUTOSIZE 64 /* MX */
462 #define ET_HASLAYOUT 32
463 #define ET_NOSELECT 16
466 #define ET_HTML 2 /* MX? */
467 #define ET_USEOUTLINES 1
469 typedef struct _EditTextLayout
471 U8 align; // 0=left, 1=right, 2=center, 3=justify
478 int swf_FontEnumerate(SWF * swf,void (*FontCallback) (U16,U8*));
479 // -> void fontcallback(U16 id,U8 * name); returns number of defined fonts
481 int swf_FontExtract(SWF * swf,int id,SWFFONT ** f);
482 // Fetches all available information from DefineFont, DefineFontInfo, DefineText, ...
483 // id = FontID, id=0 -> Extract first Font
485 int swf_FontIsItalic(SWFFONT * f);
486 int swf_FontIsBold(SWFFONT * f);
488 int swf_FontSetID(SWFFONT * f,U16 id);
489 int swf_FontReduce(SWFFONT * f,FONTUSAGE * use);
491 int swf_FontInitUsage(FONTUSAGE * use);
492 int swf_FontUse(FONTUSAGE * use,U8 * s);
494 int swf_FontSetDefine(TAG * t,SWFFONT * f);
495 int swf_FontSetDefine2(TAG * t,SWFFONT * f);
496 int swf_FontSetInfo(TAG * t,SWFFONT * f);
498 void swf_FontAddLayout(SWFFONT * f, int ascent, int descent, int leading);
500 int swf_FontExtract_DefineTextCallback(int id,SWFFONT * f,TAG * t,int jobs,
501 void(*callback)(int*chars, int nr, int id));
503 void swf_WriteFont(SWFFONT* font, char* filename);
504 SWFFONT* swf_ReadFont(char* filename);
506 void swf_FontFree(SWFFONT * f);
508 U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale);
509 int swf_TextCountBits(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits);
511 int swf_TextSetInfoRecord(TAG * t,SWFFONT * font,U16 size,RGBA * color,S16 dx,S16 dy);
512 int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits);
514 int swf_TextPrintDefineText(TAG * t,SWFFONT * f);
515 // Prints text defined in tag t with font f to stdout
517 /* notice: if you set the fontid, make sure the corresponding font has layout information */
518 void swf_SetEditText(TAG*tag, U16 flags, SRECT r, char*text, RGBA*color,
519 int maxlength, U16 font, U16 height, EditTextLayout*layout, char*variable);
521 void swf_SetDefineText(TAG*tag, SWFFONT*font, RGBA*rgb, char*text, int scale);
525 void swf_DumpHeader(FILE * f,SWF * swf);
526 void swf_DumpMatrix(FILE * f,MATRIX * m);
527 void swf_DumpTag(FILE * f,TAG * t);
528 char* swf_TagGetName(TAG*tag);
529 void swf_DumpFont(SWFFONT * font);
542 #define BC_OVERDOWN_IDLE 0x0100
543 #define BC_IDLE_OVERDOWN 0x0080
544 #define BC_OUTDOWN_IDLE 0x0040
545 #define BC_OUTDOWN_OVERDOWN 0x0020
546 #define BC_OVERDOWN_OUTDOWN 0x0010
547 #define BC_OVERDOWN_OVERUP 0x0008
548 #define BC_OVERUP_OVERDOWN 0x0004
549 #define BC_OVERUP_IDLE 0x0002
550 #define BC_IDLE_OVERUP 0x0001
552 #define BC_KEY(c) (c<<9)
554 #define BC_CURSORLEFT 0x0200
555 #define BC_CURSORRIGHT 0x0400
556 #define BC_POS1 0x0600
557 #define BC_END 0x0800
558 #define BC_INSERT 0x0a00
559 #define BC_DELETE 0x0c00
560 #define BC_CLEAR 0x0e00
561 #define BC_BACKSPACE 0x1000
562 #define BC_ENTER 0x1a00
563 #define BC_CURSORUP 0x1c00
564 #define BC_CURSORDOWN 0x1e00
565 #define BC_PAGEUP 0x2000
566 #define BC_PAGEDOWN 0x2200
567 #define BC_TAB 0x2400
568 #define BC_ESCAPE 0x3600
569 #define BC_SPACE 0x4000
571 /* these are probably only valid with linux:
583 /* everything above 0x4000 is standard ascii:
584 0x4000 ' ' 0x4200 '!' 0x4600 '#' 0x4800 '$' 0x4a00 '%' 0x4c00 '&' ...
585 0x6000 '0' ... 0x7200 '9'
587 0x8200 'A' ... 0xb400 'Z'
594 #define BF_TRACKMENU 0x01
596 int swf_ButtonSetRecord(TAG * t,U8 state,U16 id,U16 layer,MATRIX * m,CXFORM * cx);
597 int swf_ButtonSetCondition(TAG * t,U16 condition); // for DefineButton2
598 int swf_ButtonSetFlags(TAG * t,U8 flags); // necessary for DefineButton2
599 int swf_ButtonPostProcess(TAG * t,int anz_action); // Set all offsets in DefineButton2-Tags (how many conditions to process)
603 typedef int JPEGBITS,* LPJPEGBITS; // cover libjpeg structures
605 JPEGBITS * swf_SetJPEGBitsStart(TAG * t,int width,int height,int quality);
606 int swf_SetJPEGBitsLines(JPEGBITS * jpegbits,U8 ** data,int n);
607 int swf_SetJPEGBitsLine(JPEGBITS * jpegbits,U8 * data);
608 int swf_SetJPEGBitsFinish(JPEGBITS * jpegbits);
610 int swf_SetJPEGBits(TAG * t,char * fname,int quality);
611 void swf_SetJPEGBits2(TAG * t,U16 width,U16 height,RGBA * bitmap,int quality);
613 #define BYTES_PER_SCANLINE(width) ((width+3)&0xfffffffc)
615 #define BMF_8BIT 3 // Bitmap formats
619 #define BM16_BLUE 0xf800 // Bitmasks for 16 Bit Color
620 #define BM16_RED 0x00f0
621 #define BM16_GREEN 0x000f
623 #define BM32_BLUE 0xff000000 // Bitmasks for 32 Bit Color
624 #define BM32_GREEN 0x00ff0000
625 #define BM32_RED 0x0000ff00
627 int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags);
628 int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors);
629 int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap);
631 #ifndef RFXSWF_DISABLESOUND
634 void swf_SetSoundStreamHead(TAG*tag, int avgnumsamples);
635 void swf_SetSoundStreamBlock(TAG*tag, S16*samples, char first); /* expects 2304 samples */
637 void swf_SetSoundDefine(TAG*tag, S16*samples, int num);
639 void swf_SetSoundInfo(TAG*tag, SOUNDINFO*info);
641 #endif // RFXSWF_DISABLESOUND
645 U8 swf_isDefiningTag(TAG * t);
646 U8 swf_isPseudoDefiningTag(TAG * t);
647 U8 swf_isAllowedSpriteTag(TAG * t);
648 U16 swf_GetDefineID(TAG * t);
649 void swf_SetDefineID(TAG * t, U16 newid);
650 U16 swf_GetPlaceID(TAG * t); //PLACEOBJECT, PLACEOBJECT2 (sometimes), REMOVEOBJECT
651 U16 swf_GetDepth(TAG * t); //PLACEOBJECT,PLACEOBJECT2,REMOVEOBJECT,REMOVEOBJECT2
652 char* swf_GetName(TAG * t); //PLACEOBJECT2, FRAMELABEL
653 MATRIX * swf_MatrixJoin(MATRIX * d,MATRIX * s1,MATRIX * s2);
654 MATRIX * swf_MatrixMapTriangle(MATRIX * m,int dx,int dy,
655 int x0,int y0,int x1,int y1,int x2,int y2);
656 int swf_GetNumUsedIDs(TAG * t);
657 void swf_GetUsedIDs(TAG * t, int * positions);
658 void swf_Relocate(SWF*swf, char*bitmap); // bitmap is 65536 bytes, bitmap[a]==0 means id a is free
662 void swf_uncgi(); // same behaviour as Steven Grimm's uncgi-library
666 typedef struct _ActionTAG
671 struct _ActionTAG * next;
672 struct _ActionTAG * prev;
674 struct _ActionTAG * parent;
675 U8 tmp[4]; // store small operands here.
678 typedef struct _ActionMarker
683 ActionTAG* swf_ActionGet(TAG*tag);
684 void swf_ActionFree(ActionTAG*tag);
685 void swf_ActionSet(TAG*tag, ActionTAG*actions);
686 void swf_DumpActions(ActionTAG*atag, char*prefix);
687 void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*));
688 void swf_ActionEnumerateTargets(ActionTAG*atag, char*(*callback)(char*));
689 void swf_ActionEnumerateStrings(ActionTAG*atag, char*(*callback)(char*));
691 ActionTAG* action_End(ActionTAG*atag);
692 ActionTAG* action_NextFrame(ActionTAG*atag);
693 ActionTAG* action_PreviousFrame(ActionTAG*atag);
694 ActionTAG* action_Play(ActionTAG*atag);
695 ActionTAG* action_Stop(ActionTAG*atag);
696 ActionTAG* action_ToggleQuality(ActionTAG*atag);
697 ActionTAG* action_StopSounds(ActionTAG*atag);
698 ActionTAG* action_Add(ActionTAG*atag);
699 ActionTAG* action_Subtract(ActionTAG*atag);
700 ActionTAG* action_Multiply(ActionTAG*atag);
701 ActionTAG* action_Divide(ActionTAG*atag);
702 ActionTAG* action_Equals(ActionTAG*atag);
703 ActionTAG* action_Less(ActionTAG*atag);
704 ActionTAG* action_And(ActionTAG*atag);
705 ActionTAG* action_Or(ActionTAG*atag);
706 ActionTAG* action_Not(ActionTAG*atag);
707 ActionTAG* action_StringEquals(ActionTAG*atag);
708 ActionTAG* action_StringLength(ActionTAG*atag);
709 ActionTAG* action_StringExtract(ActionTAG*atag);
710 ActionTAG* action_Pop(ActionTAG*atag);
711 ActionTAG* action_ToInteger(ActionTAG*atag);
712 ActionTAG* action_GetVariable(ActionTAG*atag);
713 ActionTAG* action_SetVariable(ActionTAG*atag);
714 ActionTAG* action_SetTarget2(ActionTAG*atag);
715 ActionTAG* action_StringAdd(ActionTAG*atag);
716 ActionTAG* action_GetProperty(ActionTAG*atag);
717 ActionTAG* action_SetProperty(ActionTAG*atag);
718 ActionTAG* action_CloneSprite(ActionTAG*atag);
719 ActionTAG* action_RemoveSprite(ActionTAG*atag);
720 ActionTAG* action_Trace(ActionTAG*atag);
721 ActionTAG* action_StartDrag(ActionTAG*atag);
722 ActionTAG* action_EndDrag(ActionTAG*atag);
723 ActionTAG* action_StringLess(ActionTAG*atag);
724 ActionTAG* action_RandomNumber(ActionTAG*atag);
725 ActionTAG* action_MBStringLength(ActionTAG*atag);
726 ActionTAG* action_CharToAscii(ActionTAG*atag);
727 ActionTAG* action_AsciiToChar(ActionTAG*atag);
728 ActionTAG* action_GetTime(ActionTAG*atag);
729 ActionTAG* action_MBStringExtract(ActionTAG*atag);
730 ActionTAG* action_MBCharToAscii(ActionTAG*atag);
731 ActionTAG* action_MBAsciiToChar(ActionTAG*atag);
732 ActionTAG* action_Delete(ActionTAG*atag);
733 ActionTAG* action_Delete2(ActionTAG*atag);
734 ActionTAG* action_DefineLocal(ActionTAG*atag);
735 ActionTAG* action_CallFunction(ActionTAG*atag);
736 ActionTAG* action_Return(ActionTAG*atag);
737 ActionTAG* action_Modulo(ActionTAG*atag);
738 ActionTAG* action_NewObject(ActionTAG*atag);
739 ActionTAG* action_DefineLocal2(ActionTAG*atag);
740 ActionTAG* action_InitArray(ActionTAG*atag);
741 ActionTAG* action_Makehash(ActionTAG*atag);
742 ActionTAG* action_TypeOf(ActionTAG*atag);
743 ActionTAG* action_TargetPath(ActionTAG*atag);
744 ActionTAG* action_Enumerate(ActionTAG*atag);
745 ActionTAG* action_Add2(ActionTAG*atag);
746 ActionTAG* action_Less2(ActionTAG*atag);
747 ActionTAG* action_Equals2(ActionTAG*atag);
748 ActionTAG* action_ToNumber(ActionTAG*atag);
749 ActionTAG* action_ToString(ActionTAG*atag);
750 ActionTAG* action_PushDuplicate(ActionTAG*atag);
751 ActionTAG* action_StackSwap(ActionTAG*atag);
752 ActionTAG* action_GetMember(ActionTAG*atag);
753 ActionTAG* action_SetMember(ActionTAG*atag);
754 ActionTAG* action_Increment(ActionTAG*atag);
755 ActionTAG* action_Decrement(ActionTAG*atag);
756 ActionTAG* action_CallMethod(ActionTAG*atag);
757 ActionTAG* action_NewMethod(ActionTAG*atag);
758 ActionTAG* action_BitAnd(ActionTAG*atag);
759 ActionTAG* action_BitOr(ActionTAG*atag);
760 ActionTAG* action_BitXor(ActionTAG*atag);
761 ActionTAG* action_BitLShift(ActionTAG*atag);
762 ActionTAG* action_BitRShift(ActionTAG*atag);
763 ActionTAG* action_BitURShift(ActionTAG*atag);
764 ActionTAG* action_GotoFrame(ActionTAG*atag, U16 frame);
765 ActionTAG* action_GetUrl(ActionTAG*atag, char* url, char* label);
766 ActionTAG* action_StoreRegister(ActionTAG*atag, U8 reg);
767 ActionTAG* action_Constantpool(ActionTAG*atag, char* constantpool);
768 ActionTAG* action_WaitForFrame(ActionTAG*atag, U16 frame, U8 skip);
769 ActionTAG* action_SetTarget(ActionTAG*atag, char* target);
770 ActionTAG* action_GotoLabel(ActionTAG*atag, char* label);
771 ActionTAG* action_WaitForFrame2(ActionTAG*atag, U8 skip);
772 ActionTAG* action_With(ActionTAG*atag, char*object);
773 ActionTAG* action_PushString(ActionTAG*atag, char*str);
774 ActionTAG* action_PushFloat(ActionTAG*atag, float f);
775 ActionTAG* action_PushNULL(ActionTAG*atag);
776 ActionTAG* action_PushRegister(ActionTAG*atag, U8 reg);
777 ActionTAG* action_PushBoolean(ActionTAG*atag, char c);
778 ActionTAG* action_PushDouble(ActionTAG*atag, double d);
779 ActionTAG* action_PushInt(ActionTAG*atag, int i);
780 ActionTAG* action_PushLookup(ActionTAG*atag, U8 index);
781 ActionTAG* action_Jump(ActionTAG*atag, U16 branch);
782 ActionTAG* action_GetUrl2(ActionTAG*atag, U8 method);
783 ActionTAG* action_DefineFunction(ActionTAG*atag, U8*data, int len);
784 ActionTAG* action_If(ActionTAG*atag, U16 branch);
785 ActionTAG* action_Call(ActionTAG*atag);
786 ActionTAG* action_GotoFrame2(ActionTAG*atag, U8 method);
787 ActionMarker action_setMarker(ActionTAG*atag);
788 void action_fixjump(ActionMarker m1, ActionMarker m2);
792 // The following 3 routines only use placeobject2:
794 int swf_ObjectPlace(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name);
795 int swf_ObjectPlaceClip(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name, U16 clipaction);
796 int swf_ObjectMove(TAG * t,U16 depth,MATRIX * m,CXFORM * cx);
798 typedef struct _SWFPLACEOBJECT {
801 bool move; //true: move/replace character, false: set character
810 void swf_SetPlaceObject(TAG * t,SWFPLACEOBJECT* obj);
811 void swf_GetPlaceObject(TAG * t,SWFPLACEOBJECT* obj);
812 void swf_PlaceObjectFree(SWFPLACEOBJECT* obj);