fixed stupid typo defining false to be one (1), which caused zlib
[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 file is distributed under the GPL, see file COPYING for details 
10
11 */
12
13 #ifndef __RFX_SWF_INCLUDED__
14 #define __RFX_SWF_INCLUDED__
15
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <unistd.h>
20 #include <fcntl.h>
21 #include "../config.h"
22
23 #define DEBUG_RFXSWF
24
25 #ifndef TRUE
26 #define TRUE (1)
27 #endif
28 #ifndef FALSE
29 #define FALSE (0)
30 #endif
31
32 // SWF Types
33
34 typedef         unsigned long   U32;
35 typedef         signed long     S32;
36 typedef         unsigned short  U16;
37 typedef         signed short    S16;
38 typedef         unsigned char   U8;
39 typedef         signed char     S8;
40 typedef         signed long     SFIXED;
41 typedef         signed long     SCOORD;
42
43 // Basic Structures
44
45 typedef struct _SPOINT
46 { SCOORD        x;
47   SCOORD        y;
48 } SPOINT, * LPSPOINT;
49
50 typedef struct _RGBA
51 { U8    a;
52   U8    r;
53   U8    g;
54   U8    b;
55 } RGBA, * LPRGBA;
56
57 typedef struct _SRECT
58 { SCOORD        xmin;
59   SCOORD        ymin;
60   SCOORD        xmax;
61   SCOORD        ymax;
62 } SRECT, * LPSRECT;
63
64 typedef struct _MATRIX
65 { SFIXED        sx;     // factor x
66   SFIXED        sy;
67   SFIXED        r0;     // rotation
68   SFIXED        r1;
69   SCOORD        tx;     // delta x
70   SCOORD        ty;
71 } MATRIX, * LPMATRIX;
72
73 typedef struct _CXFORM
74 { S16           a0, a1;
75   S16           r0, r1;
76   S16           g0, g1;
77   S16           b0, b1;
78 } CXFORM, * LPCXFORM;
79
80 typedef struct _TAG             // NEVER access a Tag-Struct directly !
81 { U16           id;
82   U8 *          data;
83   U32           memsize;        // to minimize realloc() calls
84
85   U32         len;            // for Set-Access
86   U32         pos;            // for Get-Access
87
88   int           frame;          // not really up-to-date
89
90   struct _TAG * next;
91   struct _TAG * prev;
92
93   U8            readBit;        // for Bit-Manipulating Functions [read]
94   U8            writeBit;       // [write]
95   
96 } TAG, * LPTAG;
97
98 typedef struct _ActionTAG 
99 { U8            op;
100   U16           len;
101   U8 *          data;
102
103   struct _ActionTAG * next;
104   struct _ActionTAG * prev;
105
106   TAG* parent; // may be null
107   U8 tmp[4]; // store small operands here.
108 } ActionTAG;
109
110 typedef struct _ActionMarker
111 {
112   ActionTAG* atag;
113 } ActionMarker;
114
115 typedef struct _SWF
116 { U8            fileVersion;
117   U32           fileSize;       // valid after load and save
118   SRECT         movieSize;
119   U16           frameRate;
120   U16           frameCount;     // valid after load and save
121   TAG *         firstTag;
122 } SWF, * LPSWF;
123
124 // Basic Functions
125
126 int  swf_ReadSWF(int handle,SWF * swf);     // Reads SWF to memory (malloc'ed), returns length or <0 if fails
127 int  swf_WriteSWF(int handle,SWF * swf);    // Writes SWF to file, returns length or <0 if fails
128 int  swf_WriteCGI(SWF * swf);               // Outputs SWF with valid CGI header to stdout
129 void swf_FreeTags(SWF * swf);               // Frees all malloc'ed memory for swf
130     
131 TAG * swf_InsertTag(TAG * after,U16 id);    // updates frames, if necessary
132 int   swf_DeleteTag(TAG * t);
133
134 void  swf_SetTagPos(TAG * t,U32 pos);       // resets Bitcount
135 U32   swf_GetTagPos(TAG * t);
136
137 TAG * swf_NextTag(TAG * t);
138 TAG * swf_PrevTag(TAG * t);
139
140 int   swf_GetFrameNo(TAG * t);              // should be renamed to TagGetFrame
141 U16   swf_GetTagID(TAG * t);                // ... TagGetID
142 U32   swf_GetTagLen(TAG * t);             // ... TagGetTagLen
143 U8*   swf_GetTagLenPtr(TAG * t);
144
145 U32   swf_GetBits(TAG * t,int nbits);
146 S32   swf_GetSBits(TAG * t,int nbits);
147 int   swf_SetBits(TAG * t,U32 v,int nbits);
148
149 int   swf_GetBlock(TAG * t,U8 * b,int l);   // resets Bitcount
150 int   swf_SetBlock(TAG * t,U8 * b,int l);
151
152 U8    swf_GetU8(TAG * t);                   // resets Bitcount
153 U16   swf_GetU16(TAG * t);
154 U32   swf_GetU32(TAG * t);
155
156 int   swf_SetU8(TAG * t,U8 v);              // resets Bitcount
157 int   swf_SetU16(TAG * t,U16 v);
158 int   swf_SetU32(TAG * t,U32 v);
159
160 int   swf_GetPoint(TAG * t,SPOINT * p);     // resets Bitcount
161 int   swf_GetRect(TAG * t,SRECT * r);
162 int   swf_GetMatrix(TAG * t,MATRIX * m);
163 int   swf_GetCXForm(TAG * t,CXFORM * cx,U8 alpha);
164
165 int   swf_SetPoint(TAG * t,SPOINT * p);     // resets Bitcount
166 int   swf_SetRect(TAG * t,SRECT * r);
167 int   swf_SetMatrix(TAG * t,MATRIX * m);
168 int   swf_SetCXForm(TAG * t,CXFORM * cx,U8 alpha);
169 int   swf_SetRGB(TAG * t,RGBA * col);
170 int   swf_SetRGBA(TAG * t,RGBA * col);
171
172 // Function Macros
173
174 #define swf_GetS8(tag)      ((S8)swf_GetU8(tag))
175 #define swf_GetS16(tag)     ((S16)swf_GetU16(tag))
176 #define swf_GetS32(tag)     ((S32)swf_GetU32(tag))
177 #define swf_GetCoord(tag)   ((SCOORD)swf_GetU32(tag))
178 #define swf_GetFixed(tag)   ((SFIXED)swf_GetU32(tag))
179
180 #define swf_SetS8(tag,v)    swf_SetU8(tag,(U8)v)
181 #define swf_SetS16(tag,v)   swf_SetU16(tag,(U16)v)
182 #define swf_SetS32(tag,v)   swf_SetU32(tag,(U32)v)
183 #define swf_SetCoord(tag,v) swf_SetU32(tag,(U32)v)
184 #define swf_SetFixed(tag,v) swf_SetU32(tag,(U32)v)
185 #define swf_SetString(t,s)  swf_SetBlock(t,s,strlen(s)+1)
186
187 #define FAILED(b)       ((b)<0)
188 #define SUCCEDED(b)     ((b)>=0)
189
190 // Tag IDs (adopted from J. C. Kessels' Form2Flash)
191
192 #define ST_END                  0
193 #define ST_SHOWFRAME            1
194 #define ST_DEFINESHAPE          2
195 #define ST_FREECHARACTER        3
196 #define ST_PLACEOBJECT          4
197 #define ST_REMOVEOBJECT         5
198 #define ST_DEFINEBITS           6
199 #define ST_DEFINEBUTTON         7
200 #define ST_JPEGTABLES           8
201 #define ST_SETBACKGROUNDCOLOR   9
202 #define ST_DEFINEFONT           10
203 #define ST_DEFINETEXT           11
204 #define ST_DOACTION             12
205 #define ST_DEFINEFONTINFO       13
206 #define ST_DEFINESOUND          14 /* Event sound tags. */
207 #define ST_STARTSOUND           15
208 #define ST_DEFINEBUTTONSOUND    17
209 #define ST_SOUNDSTREAMHEAD      18
210 #define ST_SOUNDSTREAMBLOCK     19
211 #define ST_DEFINEBITSLOSSLESS   20 /* A bitmap using lossless zlib compression. */
212 #define ST_DEFINEBITSJPEG2      21 /* A bitmap using an internal JPEG compression table. */
213 #define ST_DEFINESHAPE2         22
214 #define ST_DEFINEBUTTONCXFORM   23
215 #define ST_PROTECT              24 /* This file should not be importable for editing. */
216 #define ST_PLACEOBJECT2         26 /* The new style place w/ alpha color transform and name. */
217 #define ST_REMOVEOBJECT2        28 /* A more compact remove object that omits the character tag (just depth). */
218 #define ST_DEFINESHAPE3         32 /* A shape V3 includes alpha values. */
219 #define ST_DEFINETEXT2          33 /* A text V2 includes alpha values. */
220 #define ST_DEFINEBUTTON2        34 /* A button V2 includes color transform, alpha and multiple actions */
221 #define ST_DEFINEBITSJPEG3      35 /* A JPEG bitmap with alpha info. */
222 #define ST_DEFINEBITSLOSSLESS2  36 /* A lossless bitmap with alpha info. */
223 #define ST_DEFINEEDITTEXT       37
224 #define ST_DEFINEMOVIE          38
225 #define ST_DEFINESPRITE         39 /* Define a sequence of tags that describe the behavior of a sprite. */
226 #define ST_NAMECHARACTER        40 /* Name a character definition, character id and a string, (used for buttons, bitmaps, sprites and sounds). */
227 #define ST_SERIALNUMBER         41
228 #define ST_GENERATORTEXT        42 /* contains an id */
229 #define ST_FRAMELABEL           43 /* A string label for the current frame. */
230 #define ST_SOUNDSTREAMHEAD2     45 /* For lossless streaming sound, should not have needed this... */
231 #define ST_DEFINEMORPHSHAPE     46 /* A morph shape definition */
232 #define ST_DEFINEFONT2          48
233 #define ST_TEMPLATECOMMAND      49
234 #define ST_GENERATOR3           51
235 #define ST_EXTERNALFONT         52
236 #define ST_EXPORTASSETS         56
237 #define ST_IMPORTASSETS         57
238 #define ST_ENABLEDEBUGGER       58
239
240 #define ST_REFLEX              777 /* to identify generator software */
241
242 // Advanced Funtions
243
244 // swfshape.c
245
246 typedef struct _LINESTYLE
247 { U16           width;
248   RGBA          color;
249 } LINESTYLE, * LPLINESTYLE;
250
251 typedef struct _FILLSTYLE
252 { U8     type;
253   RGBA   color;
254   MATRIX         m; 
255   U16    id_bitmap;
256 } FILLSTYLE, * LPFILLSTYLE;
257      
258 typedef struct _SHAPE           // NEVER access a Shape-Struct directly !
259 {                 
260   struct
261   { LINESTYLE * data;
262     U16         n;
263   } linestyle;
264                   
265   struct                    
266   { FILLSTYLE * data;
267     U16         n;
268   } fillstyle;
269  
270   struct
271   { U16         fill;
272     U16         line;
273   } bits;
274                                 // used by Get/SetSimpleShape and glyph handling
275   U8 *          data;
276   U32           bitlen;         // length of data in bits
277 } SHAPE, * LPSHAPE;
278
279 // Shapes
280
281 int   swf_ShapeNew(SHAPE ** s);
282 void  swf_ShapeFree(SHAPE * s);
283
284 int   swf_GetSimpleShape(TAG * t,SHAPE ** s); // without Linestyle/Fillstyle Record
285 int   swf_SetSimpleShape(TAG * t,SHAPE * s);   // without Linestyle/Fillstyle Record
286
287 int   swf_ShapeAddLineStyle(SHAPE * s,U16 width,RGBA * color);
288 int   swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color);
289 int   swf_ShapeAddBitmapFillStyle(SHAPE * s,MATRIX * m,U16 id_bitmap,int clip);
290
291 int   swf_SetShapeStyles(TAG * t,SHAPE * s);
292 int   swf_ShapeCountBits(SHAPE * s,U8 * fbits,U8 * lbits);
293 int   swf_SetShapeBits(TAG * t,SHAPE * s);
294 int   swf_SetShapeHeader(TAG * t,SHAPE * s); // one call for upper three functions
295
296 int   swf_ShapeSetMove(TAG * t,SHAPE * s,S32 x,S32 y);
297 int   swf_ShapeSetStyle(TAG * t,SHAPE * s,U16 line,U16 fill0,U16 fill1);
298 int   swf_ShapeSetAll(TAG * t,SHAPE * s,S32 x,S32 y,U16 line,U16 fill0,U16 fill1);
299
300 int   swf_ShapeSetLine(TAG * t,SHAPE * s,S32 x,S32 y);
301 int   swf_ShapeSetCurve(TAG * t,SHAPE * s,S32 x,S32 y,S32 ax,S32 ay);
302 int   swf_ShapeSetCircle(TAG * t,SHAPE * s,S32 x,S32 y,S32 rx,S32 ry);
303 int   swf_ShapeSetEnd(TAG * t);
304
305
306 // swffont.c
307
308 // does not support wide characters !
309
310 #define MAX_CHAR_PER_FONT 512
311
312 typedef struct _KERNING
313 {
314   U16         char1;
315   U16         char2;
316   U16         adjustment;
317 } SWFKERNING;
318
319 typedef struct _SWFLAYOUT
320 { S16          ascent;
321   S16          descent;
322   S16          leading;
323   SRECT      * bounds;
324   U16          kerningcount;
325   SWFKERNING * kerning;
326 } SWFLAYOUT, * LPSWFLAYOUT;
327
328 typedef struct
329 { S16         advance;
330   SHAPE *     shape;
331 } SWFGLYPH;
332
333 typedef struct _SWFFONT
334 { int           id; // -1 = not set
335   U8            version; // 0 = not set, 1 = definefont, 2 = definefont2
336   U8 *          name;
337   SWFLAYOUT *   layout;
338   U16           numchars;
339   U16           maxascii; // highest mapped ascii value
340   U8            flags; // bold/italic/unicode/ansi ...
341   U16   *       glyph2ascii;
342   int   *       ascii2glyph;
343   SWFGLYPH *    glyph;
344 } SWFFONT, * LPSWFFONT;
345
346 typedef struct _FONTUSAGE
347 { U8 code[MAX_CHAR_PER_FONT];
348 } FONTUSAGE, * LPFONTUSAGE;
349
350 int swf_FontEnumerate(SWF * swf,void (*FontCallback) (U16,U8*));
351 // -> void fontcallback(U16 id,U8 * name); returns number of defined fonts
352
353 int swf_FontExtract(SWF * swf,int id,SWFFONT ** f);
354 // Fetches all available information from DefineFont, DefineFontInfo, DefineText, ...
355 // id = FontID, id=0 -> Extract first Font
356
357 int swf_FontIsItalic(SWFFONT * f);
358 int swf_FontIsBold(SWFFONT * f);
359
360 int swf_FontSetID(SWFFONT * f,U16 id);
361 int swf_FontReduce(SWFFONT * f,FONTUSAGE * use);
362
363 int swf_FontInitUsage(FONTUSAGE * use);
364 int swf_FontUse(FONTUSAGE * use,U8 * s);
365
366 int swf_FontSetDefine(TAG * t,SWFFONT * f);
367 int swf_FontSetInfo(TAG * t,SWFFONT * f);
368
369 int swf_FontExtract_DefineTextCallback(int id,SWFFONT * f,TAG * t,int jobs, 
370         void(*callback)(int*chars, int nr, int id));
371
372 // the following two functions are obsolete and will be removed soon
373 int swf_FontExport(int handle,SWFFONT * f);
374 int swf_FontImport(int handle,SWFFONT * * f);
375
376 void swf_WriteFont(SWFFONT* font, char* filename);
377 SWFFONT* swf_ReadFont(char* filename);
378
379 void swf_FontFree(SWFFONT * f);
380
381 U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale);
382 int swf_TextCountBits(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits);
383
384 int swf_TextSetInfoRecord(TAG * t,SWFFONT * font,U16 size,RGBA * color,S16 dx,S16 dy);
385 int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits);
386
387 int swf_TextPrintDefineText(TAG * t,SWFFONT * f);
388 // Prints text defined in tag t with font f to stdout
389
390 // swfdump.c
391
392 void swf_DumpHeader(FILE * f,SWF * swf);
393 void swf_DumpMatrix(FILE * f,MATRIX * m);
394 void swf_DumpTag(FILE * f,TAG * t); 
395 char* swf_TagGetName(TAG*tag);
396 void swf_DumpFont(SWFFONT * font);
397
398 // swfobject.c
399
400 // Always use ST_PLACEOBJECT2 !!!
401
402 int swf_ObjectPlace(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name);
403 int swf_ObjectPlaceClip(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name, U16 clipaction);
404 int swf_ObjectMove(TAG * t,U16 depth,MATRIX * m,CXFORM * cx);
405
406 // swfbutton.c
407
408 // Button States
409
410 #define BS_HIT          0x08
411 #define BS_DOWN         0x04
412 #define BS_OVER         0x02
413 #define BS_UP           0x01
414
415 // Button Conditions
416
417 #define BC_OVERDOWN_IDLE        0x0100
418 #define BC_IDLE_OVERDOWN        0x0080
419 #define BC_OUTDOWN_IDLE         0x0040
420 #define BC_OUTDOWN_OVERDOWN     0x0020
421 #define BC_OVERDOWN_OUTDOWN     0x0010
422 #define BC_OVERDOWN_OVERUP      0x0008
423 #define BC_OVERUP_OVERDOWN      0x0004
424 #define BC_OVERUP_IDLE          0x0002
425 #define BC_IDLE_OVERUP          0x0001
426
427 #define BC_KEY(c) (c<<9)
428
429 #define BC_CURSORLEFT           0x0200
430 #define BC_CURSORRIGHT          0x0400
431 #define BC_POS1                 0x0600
432 #define BC_END                  0x0800
433 #define BC_INSERT               0x0a00
434 #define BC_DELETE               0x0c00
435 #define BC_CLEAR                0x0e00
436 #define BC_BACKSPACE            0x1000
437 #define BC_ENTER                0x1a00
438 #define BC_CURSORUP             0x1c00
439 #define BC_CURSORDOWN           0x1e00
440 #define BC_PAGEUP               0x2000
441 #define BC_PAGEDOWN             0x2200
442 #define BC_TAB                  0x2400
443 #define BC_ESCAPE               0x3600
444 #define BC_SPACE                0x4000
445
446 /* these are probably only valid with linux:
447    Ctrl-A        0x0200
448    Ctrl-X        0x3000
449    Ctrl-Y        0x3200
450    Ctrl-Z        0x3400
451    Escape/Ctrl-[ 0x3600
452    Ctrl-\        0x3800
453    Ctrl-]        0x3a00
454    Ctrl-^        0x3c00
455    Ctrl-/        0x3e00
456    */
457
458 /* everything above 0x4000 is standard ascii:
459    0x4000 ' ' 0x4200 '!' 0x4600 '#' 0x4800 '$' 0x4a00 '%' 0x4c00 '&' ...
460    0x6000 '0' ... 0x7200 '9' 
461    0x8000 '@' 
462    0x8200 'A' ...  0xb400 'Z' 
463    ...
464    0xfc00 '~'
465  */
466
467 // Button Flag
468
469 #define BF_TRACKMENU            0x01
470
471 int swf_ButtonSetRecord(TAG * t,U8 state,U16 id,U16 layer,MATRIX * m,CXFORM * cx);
472 int swf_ButtonSetCondition(TAG * t,U16 condition); // for DefineButton2
473 int swf_ButtonSetFlags(TAG * t,U8 flags);  // necessary for DefineButton2
474 int swf_ButtonPostProcess(TAG * t,int anz_action); // Set all offsets in DefineButton2-Tags (how many conditions to process)
475
476 // swfbits.c
477
478 typedef int JPEGBITS,* LPJPEGBITS; // cover libjpeg structures
479
480 JPEGBITS * swf_SetJPEGBitsStart(TAG * t,int width,int height,int quality);
481 int swf_SetJPEGBitsLines(JPEGBITS * jpegbits,U8 ** data,int n);
482 int swf_SetJPEGBitsLine(JPEGBITS * jpegbits,U8 * data);
483 int swf_SetJPEGBitsFinish(JPEGBITS * jpegbits);
484
485 int swf_SetJPEGBits(TAG * t,char * fname,int quality); // paste jpg file into swf stream
486
487 #define BYTES_PER_SCANLINE(width) ((width+3)&0xfffffffc)
488
489 #define BMF_8BIT        3               // Bitmap formats
490 #define BMF_16BIT       4
491 #define BMF_32BIT       5
492
493 #define BM16_BLUE       0xf800          // Bitmasks for 16 Bit Color
494 #define BM16_RED        0x00f0
495 #define BM16_GREEN      0x000f
496
497 #define BM32_BLUE       0xff000000      // Bitmasks for 32 Bit Color
498 #define BM32_GREEN      0x00ff0000
499 #define BM32_RED        0x0000ff00
500
501 int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags);
502 int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors);
503 int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap);
504
505 // swftools.c
506
507 U8 swf_isDefiningTag(TAG * t);
508 U8 swf_isPseudoDefiningTag(TAG * t);
509 U8 swf_isAllowedSpriteTag(TAG * t);
510 U16 swf_GetDefineID(TAG * t);
511 U16 swf_GetPlaceID(TAG * t); //PLACEOBJECT, PLACEOBJECT2 (sometimes), REMOVEOBJECT
512 U16 swf_GetDepth(TAG * t); //PLACEOBJECT,PLACEOBJECT2,REMOVEOBJECT,REMOVEOBJECT2
513 char* swf_GetName(TAG * t); //PLACEOBJECT2, FRAMELABEL
514 MATRIX * swf_MatrixJoin(MATRIX * d,MATRIX * s1,MATRIX * s2);
515 MATRIX * swf_MatrixMapTriangle(MATRIX * m,int dx,int dy,
516                     int x0,int y0,int x1,int y1,int x2,int y2);
517
518
519 // swfcgi.c
520
521 void swf_uncgi();  // same behaviour as Steven Grimm's uncgi-library
522
523 // swfaction.c
524
525 ActionTAG* swf_ActionGet(TAG*tag);
526 void swf_ActionFree(ActionTAG*tag);
527 void swf_ActionSet(TAG*tag, ActionTAG*actions);
528 void swf_DumpActions(ActionTAG*atag, char*prefix);
529 void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*));
530 void swf_ActionEnumerateTargets(ActionTAG*atag, char*(*callback)(char*));
531 void swf_ActionEnumerateStrings(ActionTAG*atag, char*(*callback)(char*));
532
533 ActionTAG* swf_ActionStart();
534 void action_End();
535 void action_NextFrame();
536 void action_PreviousFrame();
537 void action_Play();
538 void action_Stop();
539 void action_ToggleQuality();
540 void action_StopSounds();
541 void action_Add();
542 void action_Subtract();
543 void action_Multiply();
544 void action_Divide();
545 void action_Equals();
546 void action_Less();
547 void action_And();
548 void action_Or();
549 void action_Not();
550 void action_StringEquals();
551 void action_StringLength();
552 void action_StringExtract();
553 void action_Pop();
554 void action_ToInteger();
555 void action_GetVariable();
556 void action_SetVariable();
557 void action_SetTarget2();
558 void action_StringAdd();
559 void action_GetProperty();
560 void action_SetProperty();
561 void action_CloneSprite();
562 void action_RemoveSprite();
563 void action_Trace();
564 void action_StartDrag();
565 void action_EndDrag();
566 void action_StringLess();
567 void action_RandomNumber();
568 void action_MBStringLength();
569 void action_CharToAscii();
570 void action_AsciiToChar();
571 void action_GetTime();
572 void action_MBStringExtract();
573 void action_MBCharToAscii();
574 void action_MBAsciiToChar();
575 void action_Delete();
576 void action_Delete2();
577 void action_DefineLocal();
578 void action_CallFunction();
579 void action_Return();
580 void action_Modulo();
581 void action_NewObject();
582 void action_DefineLocal2();
583 void action_InitArray();
584 void action_Makehash();
585 void action_TypeOf();
586 void action_TargetPath();
587 void action_Enumerate();
588 void action_Add2();
589 void action_Less2();
590 void action_Equals2();
591 void action_ToNumber();
592 void action_ToString();
593 void action_PushDuplicate();
594 void action_StackSwap();
595 void action_GetMember();
596 void action_SetMember();
597 void action_Increment();
598 void action_Decrement();
599 void action_CallMethod();
600 void action_NewMethod();
601 void action_BitAnd();
602 void action_BitOr();
603 void action_BitXor();
604 void action_BitLShift();
605 void action_BitRShift();
606 void action_BitURShift();
607 void action_GotoFrame(U16 frame);
608 void action_GetUrl(char* url, char* label);
609 void action_StoreRegister(U8 reg);
610 void action_Constantpool(char* constantpool);
611 void action_WaitForFrame(U16 frame, U8 skip);
612 void action_SetTarget(char* target);
613 void action_GotoLabel(char* label);
614 void action_WaitForFrame2(U8 skip);
615 void action_With(char*object);
616 void action_PushString(char*str);
617 void action_PushFloat(float f);
618 void action_PushNULL();
619 void action_PushRegister(U8 reg);
620 void action_PushBoolean(char c);
621 void action_PushDouble(double d);
622 void action_PushInt(int i);
623 void action_PushLookup(U8 index);
624 void action_Jump(U16 branch);
625 void action_GetUrl2(U8 method);
626 void action_DefineFunction(U8*data, int len);
627 void action_If(U16 branch);
628 void action_Call();
629 void action_GotoFrame2(U8 method);
630 void swf_ActionEnd();
631 ActionMarker action_setMarker();
632 void action_fixjump(ActionMarker m1, ActionMarker m2);
633
634 #endif