3 Actionscript generation and parsing routines
5 Extension module for the rfxswf library.
6 Part of the swftools package.
8 Copyright (c) 2001 Matthias Kramm <kramm@quiss.org>
10 This file is distributed under the GPL, see file COPYING for details
14 #include "../rfxswf.h"
16 #define MAX_LOOKUP 1024 // make cross references in dumps
31 C: constant pool header (byte)
32 c: constant pool entry (string)
33 s: skip (byte) (number of actions)
34 m: method (byte) swf_GetUrl2:(0=none, 1=get, 2=post)/GotoFrame2:(1=play)
35 b: branch (word) (number of bytes)
36 p (push): type(byte), type=0:string, type=1:double
37 {: define function (name (string), num (word), params (num strings), codesize (word)
38 o: codesize (word) object (string)
42 {3,"GotoFrame", 0x81, "f"},
43 {4,"GotoFrame2", 0x9f, "m"}, // -1 (/Movieclip:3)
44 {3,"GetUrl", 0x83, "ul"},
45 {4,"GetUrl2", 0x9a, "m"}, //-2
46 {3,"NextFrame", 0x04, ""},
47 {3,"PreviousFrame", 0x05, ""},
50 {3,"ToggleQuality", 0x08, ""},
51 {3,"StopSounds", 0x09, ""},
52 {3,"WaitForFrame", 0x8a, "fs"},
53 {4,"WaitForFrame2", 0x8d, "s"}, // -1
54 {3,"SetTarget", 0x8b, "t"},
55 {4,"SetTarget2", 0x20, ""}, //-1
56 {3,"GotoLabel", 0x8c, "l"},
57 {4,"Add", 0x0a, ""}, // -2, +1
58 {4,"Multiply", 0x0c, ""}, // -2, +1
59 {4,"Divide", 0x0d, ""}, // -2, +1
60 {4,"Subtract", 0x0b, ""}, // -2, +1
61 {4,"Less", 0x0f, ""}, // -2, +1
62 {4,"Equals", 0x0e, ""}, // -2, +1
63 {4,"And", 0x10, ""}, // -2, +1
64 {4,"Or", 0x11, ""}, // -2, +1
65 {4,"Not", 0x12, ""}, // -1, +1
66 {4,"StringAdd", 0x21, ""}, // -2,+1
67 {4,"StringLength", 0x14, ""}, // -1, +1
68 {4,"MBStringLength", 0x31, ""}, // -1, +1
69 {4,"StringEquals", 0x13, ""}, // -2, +1
70 {4,"StringLess", 0x29, ""}, //-2, +1
71 {4,"StringExtract", 0x15, ""}, // -3, +1
72 {4,"MBStringExtract", 0x35, ""}, //-3 +1
73 {4,"Push", 0x96, "p"}, // +1
74 {4,"Pop", 0x17, ""}, // -1
75 {4,"ToInteger", 0x18, ""}, // -1, +1
76 {4,"CharToAscii", 0x32, ""}, // -1, +1
77 {4,"AsciiToChar", 0x33, ""}, // -1, +1
78 {4,"MBCharToAscii", 0x36, ""}, // -1, +1
79 {4,"MBAsciiToChar", 0x37, ""}, // -1, +1
80 {4,"Jump", 0x99, "b"},
81 {4,"If", 0x9d, "b"}, // -1
82 {4,"Call", 0x9e, ""}, //-1 (frame label/number) (high bit is wrong.)
83 {4,"GetVariable", 0x1c,""}, // -1, +1
84 {4,"SetVariable", 0x1d,""}, // -2
85 {4,"GetProperty", 0x22,""}, //-2, +1
86 {4,"SetProperty", 0x23, ""}, // -3
87 {4,"RemoveSprite", 0x25, ""}, //-1
88 {4,"StartDrag", 0x27, ""}, // -2, -1, (-4)
89 {4,"EndDrag", 0x28, ""},
90 {4,"CloneSprite", 0x24, ""}, // -3
91 {4,"Trace", 0x26, ""}, //-1
92 {4,"GetTime", 0x34, ""}, //+1
93 {4,"RandomNumber", 0x30, ""}, //-1,+1
94 {5,"Modulo", 0x3f,""},
95 {5,"BitAnd", 0x60,""},
96 {5,"BitLShift", 0x63,""},
98 {5,"BitRShift", 0x64,""},
99 {5,"BitURShift", 0x65,""},
100 {5,"BitXor", 0x62,""},//66?
101 {5,"Decrement", 0x51,""},
102 {5,"Increment", 0x50,""},
103 {5,"PushDuplicate", 0x4c,""},
104 {5,"StackSwap", 0x4d,""}, //?
105 {5,"StoreRegister", 0x87,"r"},
106 {5,"CallFunction", 0x3d,""},
107 {5,"DefineFunction", 0x9b, "{"},
108 {5,"Return", 0x3e,""},
109 {5,"GetMember", 0x4e,""},
110 {5,"SetMember", 0x4f,""},
111 {5,"CallMethod", 0x52,""},
112 {5,"Constantpool", 0x88, "Cc"},
113 {5,"DefineLocal", 0x3c,""},
114 {5,"DefineLocal2", 0x41,""},
115 {5,"Makehash", 0x43, ""}, //??
116 {5,"Delete", 0x3a,""}, //?
117 {5,"Delete2", 0x3b,""},
118 {5,"Enumerate", 0x46,""},
119 {5,"Equals2", 0x49,""},
120 {5,"InitArray", 0x42,""}, // InitObject?
121 {5,"NewMethod", 0x53,""}, //?
122 {5,"NewObject", 0x40,""},
123 {5,"TargetPath", 0x45,""}, //?
124 {5,"With", 0x94, "o"},
125 {5,"ToNumber", 0x4a,""}, //?
126 {5,"ToString", 0x4b,""}, //?
127 {5,"TypeOf", 0x44,""},
129 {5,"Less2", 0x48,""},
130 {6,"Greater", 0x67,""},
131 {6,"StringGreater", 0x68,""},
132 {6,"Enumerate2", 0x55,""},
133 {6,"InstanceOf", 0x54,""},
134 {6,"StrictEquals", 0x66,""}
136 static int definedactions = sizeof(actions)/sizeof(struct Action);
138 ActionTAG* swf_ActionGet(TAG*tag)
143 ActionTAG*action = &tmp;
147 action->next = (ActionTAG*)malloc(sizeof(ActionTAG));
148 action->next->prev = action;
149 action->next->next = 0;
150 action = action->next;
156 length = swf_GetU16(tag);
159 data = malloc(length);
160 swf_GetBlock(tag, data, length);
165 action->len = length;
171 void swf_ActionFree(ActionTAG*action)
176 if(action->data && action->data != action->tmp)
185 void swf_ActionSet(TAG*tag, ActionTAG*action)
187 action=action->parent;
190 swf_SetU8(tag, action->op);
192 swf_SetU16(tag, action->len);
194 swf_SetBlock(tag, action->data, action->len);
196 action = action->next;
200 int OpAdvance(char c, U8*data)
207 return strlen(data)+1;
209 return strlen(data)+1;
211 return strlen(data)+1;
213 return strlen(data)+1;
227 return 1+strlen(data)+1; //string
228 } else if (type == 1) {
230 } else if (type == 2) {
232 } else if (type == 4) {
233 return 1+1; //register
234 } else if (type == 5) {
236 } else if (type == 6) {
238 } else if (type == 7) {
240 } else if (type == 8) {
253 while(*data++); //name
254 num = (*data++)*256; //num
257 while(*data++); //param
258 codesize = (*data++)*256; //num
259 codesize += (*data++);
265 #define ATAG_FULLLENGTH(atag) ((atag)->len + 1 + ((atag)->op&0x80?2:0))
266 #define MAX_LEVELS 16
267 /* TODO: * this should be in swfdump.c */
268 void swf_DumpActions(ActionTAG*atag, char*prefix)
274 char spaces[MAX_LEVELS*4+1];
278 } counter[MAX_LEVELS];
281 char * lookup[MAX_LOOKUP];
282 memset(lookup,0x00,sizeof(lookup));
284 memset(spaces, 32, sizeof(spaces));
285 spaces[sizeof(spaces)-1] = 0;
292 char*indent = &spaces[sizeof(spaces)-1-countpos*4];
294 for(t=0;t<definedactions;t++)
295 if(actions[t].op == atag->op)
298 if(t==definedactions) {
299 printf("%s (%5d bytes) action:%s unknown[%02x]", prefix, atag->len, indent, atag->op);
301 printf("%s (%5d bytes) action:%s %s", prefix, atag->len, indent, actions[t].name);
304 if(atag->len && t!=definedactions) //TODO: check for consistency: should we have a length?
306 cp = actions[t].flags;
312 printf(" %d", data[0]+256*data[1]);
315 printf(" URL:\"%s\"", data);
318 printf(" Target:\"%s\"", data);
321 printf(" Label:\"%s\"", data);
324 printf(" String:\"%s\"", data);
326 if (entry<MAX_LOOKUP)
327 lookup[entry++] = strdup(data);
333 printf("(%d entries)", poollen);
336 printf(" +%d", *data);
339 //m: method (byte) url:(0=none, 1=get, 2=datat)/gf2:(1=play)
340 printf(" %d", *data);
347 printf(" %s(", data);
348 while(data[s++]); //name
349 num = (data[s++]); //num
350 num += (data[s++])*256;
355 while(data[s++]); //param
358 codesize = (data[s++]); //num
359 codesize += (data[s++])*256;
360 printf(" codesize:%d ",codesize);
361 printf("\n%s %s{", prefix, indent);
363 printf("Error: nested too deep\n");
366 counter[countpos].text = "}";
367 counter[countpos].count = codesize + ATAG_FULLLENGTH(atag);
372 U16 codesize = data[0]+256*data[1];
373 printf(" codesize:%d ", codesize);
375 /* the following tries to find the "string"
376 the flash documentation speaks of- I've
377 never actually seen one yet. -mk */
378 for(t=2;t<atag->len;t++)
379 printf("[%02x]", atag->data[t]);
381 printf("\n%s %s{", prefix, indent);
383 printf("Error: nested too deep\n");
386 counter[countpos].text = "}";
387 counter[countpos].count = codesize + ATAG_FULLLENGTH(atag);
391 printf(" %d", data[0]+256*(signed char)data[1]);
394 printf(" %d", data[0]);
398 unsigned char*value = data+1;
400 printf(" String:\"%s\"", value);
401 } else if (type == 1) {
402 U32 f = value[0]+(value[1]<<8)+
403 (value[2]<<16)+(value[3]<<24);
404 printf(" Float:%f", *(float*)&f);
405 } else if (type == 2) {
407 } else if (type == 4) {
408 printf(" register:%d", *value);
409 } else if (type == 5) {
410 printf(" bool:%s", *value?"true":"false");
411 } else if (type == 6) {
414 memcpy(&a[4],value,4);
415 memcpy(a,&value[4],4);
416 #ifdef WORDS_BIGENDIAN
423 printf(" double:%f", *(double*)a);
424 } else if (type == 7) {
425 printf(" int:%d", value[0]+(value[1]<<8)+
426 (value[2]<<16)+(value[3]<<24));
427 } else if (type == 8) {
428 printf(" Lookup:%d", *value);
431 printf(" (\"%s\")",lookup[*value]);
434 printf(" UNKNOWN[%02x]",type);
438 data += OpAdvance(*cp, data);
439 if((*cp!='c' || !poollen) &&
440 (*cp!='p' || !(data<&atag->data[atag->len])))
447 if(data < atag->data + atag->len)
449 int nl = ((atag->data+atag->len)-data);
451 printf(" (remainder of %d bytes:\"", nl);
454 printf("\\%d",data[t]);
456 printf("%c", data[t]);
462 for(t=0;t<countpos;t++) {
463 counter[t].count -= ATAG_FULLLENGTH(atag);
464 if(counter[t].count < 0) {
465 printf("===== Error: Oplength errors =====\n");
471 while(countpos && !counter[countpos-1].count)
474 prefix, indent, counter[countpos-1].text);
483 for (t=0;t<MAX_LOOKUP;t++) if (lookup[t]) free(lookup[t]);
487 static const char TYPE_URL = 1;
488 static const char TYPE_TARGET = 2;
489 static const char TYPE_STRING = 4;
491 int swf_ActionEnumerate(ActionTAG*atag, char*(*callback)(char*), int type)
500 for(t=0;t<definedactions;t++)
501 if(actions[t].op == atag->op)
504 if(t==definedactions) {
510 cp = actions[t].flags;
516 U8 * replacement = 0;
522 replacelen = strlen(data);
524 replacement = callback(data); // may be null
530 replacelen = strlen(data);
532 replacement = callback(data); // may be null
538 replacelen = strlen(data);
540 replacement = callback(data); // may be null
550 char*value = &data[1];
551 if(datatype == 0) { //string
554 replacelen = strlen(value);
556 replacement = callback(value); // may be null
558 } else if (datatype == 8) { //lookup
562 data += OpAdvance(*cp, data);
563 if(*cp!='c' || !poollen)
570 int newlen = strlen(replacement);
571 char * newdata = malloc(atag->len - replacelen + newlen);
572 int rpos = replacepos - atag->data;
573 memcpy(newdata, atag->data, rpos);
574 memcpy(&newdata[rpos], replacement, newlen);
575 memcpy(&newdata[rpos+newlen], &replacepos[replacelen],
576 &data[atag->len] - &replacepos[replacelen]);
578 atag->data = newdata;
579 data = &atag->data[rpos+newlen+1];
589 void swf_ActionEnumerateTargets(ActionTAG*atag, char*(*callback)(char*))
591 swf_ActionEnumerate(atag, callback, TYPE_TARGET);
593 void swf_ActionEnumerateStrings(ActionTAG*atag, char*(*callback)(char*))
595 swf_ActionEnumerate(atag, callback, TYPE_STRING);
597 void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*))
599 swf_ActionEnumerate(atag, callback, TYPE_URL);
602 /*static ActionTAG* swf_ActionStart()
605 atag = (ActionTAG*)malloc(sizeof(ActionTAG));
614 void swf_ActionEnd(ActionTAG* atag)
622 last->prev->next = 0;
626 static ActionTAG*lastATAG(ActionTAG*atag)
636 ActionTAG* swf_AddActionTAG(ActionTAG*atag, U8 op, U8*data, U16 len)
639 tmp = (ActionTAG*)malloc(sizeof(ActionTAG));
644 tmp->parent = atag->parent;
652 tmp->data = tmp->tmp;
659 ActionMarker action_setMarker(ActionTAG*atag)
666 int inline ActionTagSize(ActionTAG*atag)
668 return (atag->op&0x80)?3+(atag->len):1+0;
672 #define ACTION_END 0x00
673 #define ACTION_NEXTFRAME 0x04
674 #define ACTION_PREVIOUSFRAME 0x05
675 #define ACTION_PLAY 0x06
676 #define ACTION_STOP 0x07
677 #define ACTION_TOGGLEQUALITY 0x08
678 #define ACTION_STOPSOUNDS 0x09
679 #define ACTION_ADD 0x0a
680 #define ACTION_SUBTRACT 0x0b
681 #define ACTION_MULTIPLY 0x0c
682 #define ACTION_DIVIDE 0x0d
683 #define ACTION_EQUALS 0x0e
684 #define ACTION_LESS 0x0f
685 #define ACTION_AND 0x10
686 #define ACTION_OR 0x11
687 #define ACTION_NOT 0x12
688 #define ACTION_STRINGEQUALS 0x13
689 #define ACTION_STRINGLENGTH 0x14
690 #define ACTION_STRINGEXTRACT 0x15
691 #define ACTION_POP 0x17
692 #define ACTION_TOINTEGER 0x18
693 #define ACTION_GETVARIABLE 0x1c
694 #define ACTION_SETVARIABLE 0x1d
695 #define ACTION_SETTARGET2 0x20
696 #define ACTION_STRINGADD 0x21
697 #define ACTION_GETPROPERTY 0x22
698 #define ACTION_SETPROPERTY 0x23
699 #define ACTION_CLONESPRITE 0x24
700 #define ACTION_REMOVESPRITE 0x25
701 #define ACTION_TRACE 0x26
702 #define ACTION_STARTDRAG 0x27
703 #define ACTION_ENDDRAG 0x28
704 #define ACTION_STRINGLESS 0x29
705 #define ACTION_RANDOMNUMBER 0x30
706 #define ACTION_MBSTRINGLENGTH 0x31
707 #define ACTION_CHARTOASCII 0x32
708 #define ACTION_ASCIITOCHAR 0x33
709 #define ACTION_GETTIME 0x34
710 #define ACTION_MBSTRINGEXTRACT 0x35
711 #define ACTION_MBCHARTOASCII 0x36
712 #define ACTION_MBASCIITOCHAR 0x37
713 #define ACTION_DELETE 0x3a
714 #define ACTION_DELETE2 0x3b
715 #define ACTION_DEFINELOCAL 0x3c
716 #define ACTION_CALLFUNCTION 0x3d
717 #define ACTION_RETURN 0x3e
718 #define ACTION_MODULO 0x3f
719 #define ACTION_NEWOBJECT 0x40
720 #define ACTION_DEFINELOCAL2 0x41
721 #define ACTION_INITARRAY 0x42
722 #define ACTION_MAKEHASH 0x43
723 #define ACTION_TYPEOF 0x44
724 #define ACTION_TARGETPATH 0x45
725 #define ACTION_ENUMERATE 0x46
726 #define ACTION_ADD2 0x47
727 #define ACTION_LESS2 0x48
728 #define ACTION_EQUALS2 0x49
729 #define ACTION_TONUMBER 0x4a
730 #define ACTION_TOSTRING 0x4b
731 #define ACTION_PUSHDUPLICATE 0x4c
732 #define ACTION_STACKSWAP 0x4d
733 #define ACTION_GETMEMBER 0x4e
734 #define ACTION_SETMEMBER 0x4f
735 #define ACTION_INCREMENT 0x50
736 #define ACTION_DECREMENT 0x51
737 #define ACTION_CALLMETHOD 0x52
738 #define ACTION_NEWMETHOD 0x53
739 #define ACTION_BITAND 0x60
740 #define ACTION_BITOR 0x61
741 #define ACTION_BITXOR 0x62
742 #define ACTION_BITLSHIFT 0x63
743 #define ACTION_BITRSHIFT 0x64
744 #define ACTION_BITURSHIFT 0x65
745 #define ACTION_GOTOFRAME 0x81
746 #define ACTION_GETURL 0x83
747 #define ACTION_STOREREGISTER 0x87
748 #define ACTION_CONSTANTPOOL 0x88
749 #define ACTION_WAITFORFRAME 0x8a
750 #define ACTION_SETTARGET 0x8b
751 #define ACTION_GOTOLABEL 0x8c
752 #define ACTION_WAITFORFRAME2 0x8d
753 #define ACTION_WITH 0x94
754 #define ACTION_PUSH 0x96
755 #define ACTION_JUMP 0x99
756 #define ACTION_GETURL2 0x9a
757 #define ACTION_DEFINEFUNCTION 0x9b
758 #define ACTION_IF 0x9d
759 #define ACTION_CALL 0x9e
760 #define ACTION_GOTOFRAME2 0x9f
762 void action_fixjump(ActionMarker m1, ActionMarker m2)
764 ActionTAG* a1 = m1.atag;
765 ActionTAG* a2 = m2.atag;
771 a = a->next; //first one is free
774 len += ActionTagSize(a);
783 len -= ActionTagSize(a);
788 fprintf(stderr, "action_fixjump: couldn't find second tag\n");
791 len -= ActionTagSize(a);
795 if (a1->op == ACTION_IF || a1->op == ACTION_JUMP)
797 *(U16*)(a1->data) = SWAP16(len);
799 else if(a1->op == ACTION_WAITFORFRAME)
801 ((U8*)(a1->data))[2] = oplen;
803 else if(a1->op == ACTION_WAITFORFRAME2)
805 ((U8*)(a1->data))[0] = oplen;
810 ActionTAG* action_NextFrame(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_NEXTFRAME, 0, 0);}
811 ActionTAG* action_PreviousFrame(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_PREVIOUSFRAME, 0, 0);}
812 ActionTAG* action_Play(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_PLAY, 0, 0);}
813 ActionTAG* action_Stop(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STOP, 0, 0);}
814 ActionTAG* action_ToggleQuality(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_TOGGLEQUALITY, 0, 0);}
815 ActionTAG* action_StopSounds(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STOPSOUNDS, 0, 0);}
816 ActionTAG* action_Add(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_ADD, 0, 0);}
817 ActionTAG* action_Subtract(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_SUBTRACT, 0, 0);}
818 ActionTAG* action_Multiply(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_MULTIPLY, 0, 0);}
819 ActionTAG* action_Divide(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_DIVIDE, 0, 0);}
820 ActionTAG* action_Equals(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_EQUALS, 0, 0);}
821 ActionTAG* action_Less(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_LESS, 0, 0);}
822 ActionTAG* action_And(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_AND, 0, 0);}
823 ActionTAG* action_Or(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_OR, 0, 0);}
824 ActionTAG* action_Not(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_NOT, 0, 0);}
825 ActionTAG* action_StringEquals(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STRINGEQUALS, 0, 0);}
826 ActionTAG* action_StringLength(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STRINGLENGTH, 0, 0);}
827 ActionTAG* action_StringExtract(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STRINGEXTRACT, 0, 0);}
828 ActionTAG* action_Pop(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_POP, 0, 0);}
829 ActionTAG* action_ToInteger(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_TOINTEGER, 0, 0);}
830 ActionTAG* action_GetVariable(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_GETVARIABLE, 0, 0);}
831 ActionTAG* action_SetVariable(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_SETVARIABLE, 0, 0);}
832 ActionTAG* action_SetTarget2(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_SETTARGET2, 0, 0);}
833 ActionTAG* action_StringAdd(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STRINGADD, 0, 0);}
834 ActionTAG* action_GetProperty(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_GETPROPERTY, 0, 0);}
835 ActionTAG* action_SetProperty(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_SETPROPERTY, 0, 0);}
836 ActionTAG* action_CloneSprite(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_CLONESPRITE, 0, 0);}
837 ActionTAG* action_RemoveSprite(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_REMOVESPRITE, 0, 0);}
838 ActionTAG* action_Trace(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_TRACE, 0, 0);}
839 ActionTAG* action_StartDrag(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STARTDRAG, 0, 0);}
840 ActionTAG* action_EndDrag(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_ENDDRAG, 0, 0);}
841 ActionTAG* action_StringLess(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STRINGLESS, 0, 0);}
842 ActionTAG* action_RandomNumber(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_RANDOMNUMBER, 0, 0);}
843 ActionTAG* action_MBStringLength(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_MBSTRINGLENGTH, 0, 0);}
844 ActionTAG* action_CharToAscii(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_CHARTOASCII, 0, 0);}
845 ActionTAG* action_AsciiToChar(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_ASCIITOCHAR, 0, 0);}
846 ActionTAG* action_GetTime(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_GETTIME, 0, 0);}
847 ActionTAG* action_MBStringExtract(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_MBSTRINGEXTRACT, 0, 0);}
848 ActionTAG* action_MBCharToAscii(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_MBCHARTOASCII, 0, 0);}
849 ActionTAG* action_MBAsciiToChar(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_MBASCIITOCHAR, 0, 0);}
850 ActionTAG* action_Delete(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_DELETE, 0, 0);}
851 ActionTAG* action_Delete2(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_DELETE2, 0, 0);}
852 ActionTAG* action_DefineLocal(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_DEFINELOCAL, 0, 0);}
853 ActionTAG* action_CallFunction(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_CALLFUNCTION, 0, 0);}
854 ActionTAG* action_Return(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_RETURN, 0, 0);}
855 ActionTAG* action_Modulo(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_MODULO, 0, 0);}
856 ActionTAG* action_NewObject(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_NEWOBJECT, 0, 0);}
857 ActionTAG* action_DefineLocal2(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_DEFINELOCAL2, 0, 0);}
858 ActionTAG* action_InitArray(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_INITARRAY, 0, 0);}
859 ActionTAG* action_Makehash(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_MAKEHASH, 0, 0);}
860 ActionTAG* action_TypeOf(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_TYPEOF, 0, 0);}
861 ActionTAG* action_TargetPath(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_TARGETPATH, 0, 0);}
862 ActionTAG* action_Enumerate(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_ENUMERATE, 0, 0);}
863 ActionTAG* action_Add2(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_ADD2, 0, 0);}
864 ActionTAG* action_Less2(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_LESS2, 0, 0);}
865 ActionTAG* action_Equals2(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_EQUALS2, 0, 0);}
866 ActionTAG* action_ToNumber(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_TONUMBER, 0, 0);}
867 ActionTAG* action_ToString(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_TOSTRING, 0, 0);}
868 ActionTAG* action_PushDuplicate(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_PUSHDUPLICATE, 0, 0);}
869 ActionTAG* action_StackSwap(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_STACKSWAP, 0, 0);}
870 ActionTAG* action_GetMember(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_GETMEMBER, 0, 0);}
871 ActionTAG* action_SetMember(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_SETMEMBER, 0, 0);}
872 ActionTAG* action_Increment(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_INCREMENT, 0, 0);}
873 ActionTAG* action_Decrement(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_DECREMENT, 0, 0);}
874 ActionTAG* action_CallMethod(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_CALLMETHOD, 0, 0);}
875 ActionTAG* action_NewMethod(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_NEWMETHOD, 0, 0);}
876 ActionTAG* action_BitAnd(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_BITAND, 0, 0);}
877 ActionTAG* action_BitOr(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_BITOR, 0, 0);}
878 ActionTAG* action_BitXor(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_BITXOR, 0, 0);}
879 ActionTAG* action_BitLShift(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_BITLSHIFT, 0, 0);}
880 ActionTAG* action_BitRShift(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_BITRSHIFT, 0, 0);}
881 ActionTAG* action_BitURShift(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_BITURSHIFT, 0, 0);}
882 ActionTAG* action_Call(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_CALL, 0, 0);}
883 ActionTAG* action_End(ActionTAG*atag) {return swf_AddActionTAG(atag, ACTION_END, 0, 0);}
884 ActionTAG* action_GotoFrame(ActionTAG*atag, U16 frame)
886 atag = swf_AddActionTAG(atag, ACTION_GOTOFRAME, 0, 2);
887 *(U16*)atag->tmp = SWAP16(frame);
891 ActionTAG* action_Jump(ActionTAG*atag, U16 branch)
893 atag = swf_AddActionTAG(atag, ACTION_JUMP, 0, 2);
894 *(U16*)atag->tmp = SWAP16(branch);
897 ActionTAG* action_If(ActionTAG*atag, U16 branch)
899 atag = swf_AddActionTAG(atag, ACTION_IF, 0, 2);
900 *(U16*)atag->tmp = SWAP16(branch);
903 ActionTAG* action_StoreRegister(ActionTAG*atag, U8 reg)
905 atag = swf_AddActionTAG(atag, ACTION_STOREREGISTER, 0, 1);
906 *(U8*)atag->tmp = reg;
909 ActionTAG* action_GotoFrame2(ActionTAG*atag, U8 method)
911 atag = swf_AddActionTAG(atag, ACTION_GOTOFRAME2, 0, 1);
912 *(U8*)atag->tmp = method;
915 ActionTAG* action_GetUrl2(ActionTAG*atag, U8 method)
917 atag = swf_AddActionTAG(atag, ACTION_GETURL2, 0, 1);
918 *(U8*)atag->tmp = method;
921 ActionTAG* action_WaitForFrame2(ActionTAG*atag, U8 skip)
923 atag = swf_AddActionTAG(atag, ACTION_WAITFORFRAME2, 0, 1);
924 *(U8*)atag->tmp = skip;
927 ActionTAG* action_WaitForFrame(ActionTAG*atag, U16 frame, U8 skip)
929 atag = swf_AddActionTAG(atag, ACTION_WAITFORFRAME, 0, 3);
930 *(U16*)atag->tmp = SWAP16(frame);
931 *(U8*)&atag->tmp[2] = skip;
934 ActionTAG* action_SetTarget(ActionTAG*atag, char* target)
936 char*ptr = strdup(target);
937 return swf_AddActionTAG(atag, ACTION_SETTARGET, (U8*)ptr, strlen(ptr)+1);
939 ActionTAG* action_PushNULL(ActionTAG*atag)
941 atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 1);
942 *(U8*)atag->tmp = 2; //NULL
945 ActionTAG* action_PushBoolean(ActionTAG*atag, char c)
947 atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 2);
948 *(U8*)atag->tmp = 5; //bool
949 *(U8*)&atag->tmp[1] = c;
952 ActionTAG* action_PushRegister(ActionTAG*atag, U8 reg)
954 atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 2);
955 *(U8*)atag->tmp = 4; //register
956 *(U8*)&atag->tmp[1] = reg;
959 ActionTAG* action_PushLookup(ActionTAG*atag, U8 index)
961 atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 2);
962 *(U8*)atag->tmp = 8; //lookup
963 *(U8*)&atag->tmp[1] = index;
966 ActionTAG* action_PushString(ActionTAG*atag, char*str)
969 char*ptr = (char*)malloc(l+2);
970 ptr[0] = 0; // string
971 strcpy(&ptr[1], str);
972 return swf_AddActionTAG(atag, ACTION_PUSH, (U8*)ptr, l+2);
974 ActionTAG* action_PushFloat(ActionTAG*atag, float f)
976 char*ptr = (char*)malloc(5);
983 return swf_AddActionTAG(atag, ACTION_PUSH, (U8*)ptr, 5);
985 ActionTAG* action_PushDouble(ActionTAG*atag, double d)
987 char*ptr = (char*)malloc(9);
990 #ifdef WORDS_BIGENDIAN
991 ptr[1] = dd[7];ptr[2] = dd[6];
992 ptr[3] = dd[5];ptr[4] = dd[4];
993 ptr[5] = dd[3];ptr[6] = dd[2];
994 ptr[7] = dd[1];ptr[8] = dd[0];
996 ptr[1] = dd[0];ptr[2] = dd[1];
997 ptr[3] = dd[2];ptr[4] = dd[3];
998 ptr[5] = dd[4];ptr[6] = dd[5];
999 ptr[7] = dd[6];ptr[8] = dd[7];
1001 return swf_AddActionTAG(atag, ACTION_PUSH, (U8*)ptr, 9);
1003 ActionTAG* action_PushInt(ActionTAG*atag, int i)
1005 atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 5);
1006 *(U8*)atag->tmp = 7; //int
1008 atag->tmp[2] = i>>8;
1009 atag->tmp[3] = i>>16;
1010 atag->tmp[4] = i>>24;
1013 ActionTAG* action_GotoLabel(ActionTAG*atag, char* label)
1015 char*ptr = strdup(label);
1016 return swf_AddActionTAG(atag, ACTION_GOTOLABEL, (U8*)ptr, strlen(ptr));
1018 ActionTAG* action_GetUrl(ActionTAG*atag, char* url, char* label)
1020 int l1= strlen(url);
1021 int l2= strlen(label);
1022 char*ptr = malloc(l1+l2+2);
1024 strcpy(&ptr[l1+1], label);
1025 return swf_AddActionTAG(atag, ACTION_GETURL, ptr, l1+l2+2);
1028 ActionTAG* action_DefineFunction(ActionTAG*atag, U8*data, int len) {return atag;}
1029 ActionTAG* action_Constantpool(ActionTAG*atag, char* constantpool) {return atag;}
1030 ActionTAG* action_With(ActionTAG*atag, char*object) {return atag;}