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"
29 C: constant pool header (byte)
30 c: constant pool entry (string)
31 s: skip (byte) (number of actions)
32 m: method (byte) swf_GetUrl2:(0=none, 1=get, 2=post)/GotoFrame2:(1=play)
33 b: branch (word) (number of bytes)
34 p (push): type(byte), type=0:string, type=1:double
35 {: define function (name (string), num (word), params (num strings), codesize (word)
40 {3,"GotoFrame", 0x81, "f"},
41 {4,"GotoFrame2", 0x9f, "m"}, // -1 (/Movieclip:3)
42 {3,"GetUrl", 0x83, "ul"},
43 {4,"GetUrl2", 0x9a, "m"}, //-2
44 {3,"NextFrame", 0x04, ""},
45 {3,"PreviousFrame", 0x05, ""},
48 {3,"ToggleQuality", 0x08, ""},
49 {3,"StopSounds", 0x09, ""},
50 {3,"WaitForFrame", 0x8a, "fs"},
51 {4,"WaitForFrame2", 0x8d, "s"}, // -1
52 {3,"SetTarget", 0x8b, "t"},
53 {4,"SetTarget2", 0x20, ""}, //-1
54 {3,"GotoLabel", 0x8c, "l"},
55 {4,"Add", 0x0a, ""}, // -2, +1
56 {4,"Multiply", 0x0c, ""}, // -2, +1
57 {4,"Divide", 0x0d, ""}, // -2, +1
58 {4,"Subtract", 0x0b, ""}, // -2, +1
59 {4,"Less", 0x0f, ""}, // -2, +1
60 {4,"Equals", 0x0e, ""}, // -2, +1
61 {4,"And", 0x10, ""}, // -2, +1
62 {4,"Or", 0x11, ""}, // -2, +1
63 {4,"Not", 0x12, ""}, // -1, +1
64 {4,"StringAdd", 0x21, ""}, // -2,+1
65 {4,"StringLength", 0x14, ""}, // -1, +1
66 {4,"MBStringLength", 0x31, ""}, // -1, +1
67 {4,"StringEquals", 0x13, ""}, // -2, +1
68 {4,"StringLess", 0x29, ""}, //-2, +1
69 {4,"StringExtract", 0x15, ""}, // -3, +1
70 {4,"MBStringExtract", 0x35, ""}, //-3 +1
71 {4,"Push", 0x96, "p"}, // +1
72 {4,"Pop", 0x17, ""}, // -1
73 {4,"ToInteger", 0x18, ""}, // -1, +1
74 {4,"CharToAscii", 0x32, ""}, // -1, +1
75 {4,"AsciiToChar", 0x33, ""}, // -1, +1
76 {4,"MBCharToAscii", 0x36, ""}, // -1, +1
77 {4,"MBAsciiToChar", 0x37, ""}, // -1, +1
78 {4,"Jump", 0x99, "b"},
79 {4,"If", 0x9d, "b"}, // -1
80 {4,"Call", 0x9e, ""}, //-1 (frame label/number) (high bit is wrong.)
81 {4,"GetVariable", 0x1c,""}, // -1, +1
82 {4,"SetVariable", 0x1d,""}, // -2
83 {4,"GetProperty", 0x22,""}, //-2, +1
84 {4,"SetProperty", 0x23, ""}, // -3
85 {4,"RemoveSprite", 0x25, ""}, //-1
86 {4,"StartDrag", 0x27, ""}, // -2, -1, (-4)
87 {4,"EndDrag", 0x28, ""},
88 {4,"CloneSprite", 0x24, ""}, // -3
89 {4,"Trace", 0x26, ""}, //-1
90 {4,"GetTime", 0x34, ""}, //+1
91 {4,"RandomNumber", 0x30, ""}, //-1,+1
92 {5,"Modulo", 0x3f,""},
93 {5,"BitAnd", 0x60,""},
94 {5,"BitLShift", 0x63,""},
96 {5,"BitRShift", 0x64,""},
97 {5,"BitURShift", 0x65,""},
98 {5,"BitXor", 0x62,""},//66?
99 {5,"Decrement", 0x51,""},
100 {5,"Increment", 0x50,""},
101 {5,"PushDuplicate", 0x4c,""},
102 {5,"StackSwap", 0x4d,""}, //?
103 {5,"StoreRegister", 0x87,"r"},
104 {5,"CallFunction", 0x3d,""},
105 {5,"DefineFunction", 0x9b, "{"},
106 {5,"Return", 0x3e,""},
107 {5,"GetMember", 0x4e,""},
108 {5,"SetMember", 0x4f,""},
109 {5,"CallMethod", 0x52,""},
110 {5,"Constantpool", 0x88, "Cc"},
111 {5,"DefineLocal", 0x3c,""},
112 {5,"DefineLocal2", 0x41,""},
113 {5,"Makehash", 0x43, ""}, //??
114 {5,"Delete", 0x3a,""}, //?
115 {5,"Delete2", 0x3b,""},
116 {5,"Enumerate", 0x46,""},
117 {5,"Equals2", 0x49,""},
118 {5,"InitArray", 0x42,""}, // InitObject?
119 {5,"NewMethod", 0x53,""}, //?
120 {5,"NewObject", 0x40,""},
121 {5,"TargetPath", 0x45,""}, //?
122 {5,"With", 0x94, "o"},
123 {5,"ToNumber", 0x4a,""}, //?
124 {5,"ToString", 0x4b,""}, //?
125 {5,"TypeOf", 0x44,""},
129 static int definedactions = sizeof(actions)/sizeof(struct Action);
131 ActionTAG* swf_ActionGet(TAG*tag)
136 ActionTAG*action = &tmp;
140 action->next = (ActionTAG*)malloc(sizeof(ActionTAG));
141 action->next->prev = action;
142 action->next->next = 0;
143 action = action->next;
149 length = swf_GetU16(tag);
152 data = malloc(length);
153 swf_GetBlock(tag, data, length);
158 action->len = length;
160 action->parent = tag;
165 void swf_ActionFree(ActionTAG*action)
170 if(action->data && action->data != action->tmp)
178 void swf_ActionSet(TAG*tag, ActionTAG*action)
182 swf_SetU8(tag, action->op);
184 swf_SetU16(tag, action->len);
186 swf_SetBlock(tag, action->data, action->len);
188 action = action->next;
192 int OpAdvance(char c, char*data)
199 return strlen(data)+1;
201 return strlen(data)+1;
203 return strlen(data)+1;
205 return strlen(data)+1;
217 return 1+strlen(data)+1; //string
218 } else if (type == 1) {
220 } else if (type == 2) {
222 } else if (type == 4) {
223 return 1+1; //register
224 } else if (type == 5) {
226 } else if (type == 6) {
228 } else if (type == 7) {
230 } else if (type == 8) {
239 /* TODO: this should be in swfdump.c */
240 void swf_DumpActions(ActionTAG*atag, char*prefix)
250 for(t=0;t<definedactions;t++)
251 if(actions[t].op == atag->op)
254 if(t==definedactions) {
255 printf("%s (%5d bytes) action: %02x\n", prefix, atag->len, atag->op);
259 printf("%s (%5d bytes) action: %s", prefix, atag->len, actions[t].name);
260 cp = actions[t].flags;
262 if(atag->len) //TODO: check for consistency: should we have a length?
268 printf(" %d", *(U16*)data); //FIXME: le/be
271 printf(" URL:\"%s\"", data);
274 printf(" Target:\"%s\"", data);
277 printf(" Label:\"%s\"", data);
280 printf(" String:\"%s\"", data);
284 printf("(%d entries)", poollen);
287 printf(" +%d", *data);
290 //m: method (byte) url:(0=none, 1=get, 2=datat)/gf2:(1=play)
291 printf(" %d", *data);
294 printf(" %d", *(U16*)data);
300 printf(" String:\"%s\"", value);
301 } else if (type == 1) {
302 printf(" Float:%f", *(float*)value);
303 } else if (type == 2) {
305 } else if (type == 4) {
306 printf(" register:%d", *value);
307 } else if (type == 5) {
308 printf(" bool:%s", *value?"true":"false");
309 } else if (type == 6) {
310 printf(" float:%f", *(double*)value);
311 } else if (type == 7) {
312 printf(" int:%d", *(int*)value);
313 } else if (type == 8) {
314 printf(" Lookup:%d", *value);
316 printf(" UNKNOWN[%02x]",type);
320 data += OpAdvance(*cp, data);
321 if((*cp!='c' || !poollen) &&
322 (*cp!='p' || !(data<&atag->data[atag->len])))
328 if(data < atag->data + atag->len)
330 int nl = ((atag->data+atag->len)-data);
332 printf(" (remainder of %d bytes:\"", nl);
335 printf("\\%d",data[t]);
337 printf("%c", data[t]);
346 static const char TYPE_URL = 1;
347 static const char TYPE_TARGET = 2;
348 static const char TYPE_STRING = 4;
350 int swf_ActionEnumerate(ActionTAG*atag, char*(*callback)(char*), int type)
359 for(t=0;t<definedactions;t++)
360 if(actions[t].op == atag->op)
363 if(t==definedactions) {
369 cp = actions[t].flags;
375 U8 * replacement = 0;
381 replacelen = strlen(data);
383 replacement = callback(data); // may be null
389 replacelen = strlen(data);
391 replacement = callback(data); // may be null
397 replacelen = strlen(data);
399 replacement = callback(data); // may be null
409 char*value = &data[1];
410 if(datatype == 0) { //string
413 replacelen = strlen(value);
415 replacement = callback(value); // may be null
417 } else if (datatype == 8) { //lookup
421 data += OpAdvance(*cp, data);
422 if(*cp!='c' || !poollen)
429 int newlen = strlen(replacement);
430 char * newdata = malloc(atag->len - replacelen + newlen);
431 int rpos = replacepos - atag->data;
432 memcpy(newdata, atag->data, rpos);
433 memcpy(&newdata[rpos], replacement, newlen);
434 memcpy(&newdata[rpos+newlen], &replacepos[replacelen],
435 &data[atag->len] - &replacepos[replacelen]);
437 atag->data = newdata;
438 data = &atag->data[rpos+newlen+1];
448 void swf_ActionEnumerateTargets(ActionTAG*atag, char*(*callback)(char*))
450 swf_ActionEnumerate(atag, callback, TYPE_TARGET);
452 void swf_ActionEnumerateStrings(ActionTAG*atag, char*(*callback)(char*))
454 swf_ActionEnumerate(atag, callback, TYPE_STRING);
456 void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*))
458 swf_ActionEnumerate(atag, callback, TYPE_URL);
461 static ActionTAG * currentatag;
463 ActionTAG* swf_ActionStart()
465 currentatag = (ActionTAG*)malloc(sizeof(ActionTAG));
466 currentatag->prev = 0;
467 currentatag->parent = 0;
468 currentatag->data = 0;
469 currentatag->len = 0;
475 currentatag->prev->next = 0;
479 void swf_AddActionTAG(U8 op, U8*data, U16 len)
481 currentatag->next = (ActionTAG*)malloc(sizeof(ActionTAG));
482 currentatag->next->prev = currentatag;
483 currentatag->parent = 0;
484 currentatag->data = data;
485 currentatag->len = len;
486 currentatag->op = op;
487 currentatag = currentatag->next;
490 ActionMarker action_setMarker()
493 m.atag = currentatag;
497 int inline ActionTagSize(ActionTAG*atag)
499 return (atag->op&0x80)?3+(atag->len):1+0;
503 #define ACTION_END 0x00
504 #define ACTION_NEXTFRAME 0x04
505 #define ACTION_PREVIOUSFRAME 0x05
506 #define ACTION_PLAY 0x06
507 #define ACTION_STOP 0x07
508 #define ACTION_TOGGLEQUALITY 0x08
509 #define ACTION_STOPSOUNDS 0x09
510 #define ACTION_ADD 0x0a
511 #define ACTION_SUBTRACT 0x0b
512 #define ACTION_MULTIPLY 0x0c
513 #define ACTION_DIVIDE 0x0d
514 #define ACTION_EQUALS 0x0e
515 #define ACTION_LESS 0x0f
516 #define ACTION_AND 0x10
517 #define ACTION_OR 0x11
518 #define ACTION_NOT 0x12
519 #define ACTION_STRINGEQUALS 0x13
520 #define ACTION_STRINGLENGTH 0x14
521 #define ACTION_STRINGEXTRACT 0x15
522 #define ACTION_POP 0x17
523 #define ACTION_TOINTEGER 0x18
524 #define ACTION_GETVARIABLE 0x1c
525 #define ACTION_SETVARIABLE 0x1d
526 #define ACTION_SETTARGET2 0x20
527 #define ACTION_STRINGADD 0x21
528 #define ACTION_GETPROPERTY 0x22
529 #define ACTION_SETPROPERTY 0x23
530 #define ACTION_CLONESPRITE 0x24
531 #define ACTION_REMOVESPRITE 0x25
532 #define ACTION_TRACE 0x26
533 #define ACTION_STARTDRAG 0x27
534 #define ACTION_ENDDRAG 0x28
535 #define ACTION_STRINGLESS 0x29
536 #define ACTION_RANDOMNUMBER 0x30
537 #define ACTION_MBSTRINGLENGTH 0x31
538 #define ACTION_CHARTOASCII 0x32
539 #define ACTION_ASCIITOCHAR 0x33
540 #define ACTION_GETTIME 0x34
541 #define ACTION_MBSTRINGEXTRACT 0x35
542 #define ACTION_MBCHARTOASCII 0x36
543 #define ACTION_MBASCIITOCHAR 0x37
544 #define ACTION_DELETE 0x3a
545 #define ACTION_DELETE2 0x3b
546 #define ACTION_DEFINELOCAL 0x3c
547 #define ACTION_CALLFUNCTION 0x3d
548 #define ACTION_RETURN 0x3e
549 #define ACTION_MODULO 0x3f
550 #define ACTION_NEWOBJECT 0x40
551 #define ACTION_DEFINELOCAL2 0x41
552 #define ACTION_INITARRAY 0x42
553 #define ACTION_MAKEHASH 0x43
554 #define ACTION_TYPEOF 0x44
555 #define ACTION_TARGETPATH 0x45
556 #define ACTION_ENUMERATE 0x46
557 #define ACTION_ADD2 0x47
558 #define ACTION_LESS2 0x48
559 #define ACTION_EQUALS2 0x49
560 #define ACTION_TONUMBER 0x4a
561 #define ACTION_TOSTRING 0x4b
562 #define ACTION_PUSHDUPLICATE 0x4c
563 #define ACTION_STACKSWAP 0x4d
564 #define ACTION_GETMEMBER 0x4e
565 #define ACTION_SETMEMBER 0x4f
566 #define ACTION_INCREMENT 0x50
567 #define ACTION_DECREMENT 0x51
568 #define ACTION_CALLMETHOD 0x52
569 #define ACTION_NEWMETHOD 0x53
570 #define ACTION_BITAND 0x60
571 #define ACTION_BITOR 0x61
572 #define ACTION_BITXOR 0x62
573 #define ACTION_BITLSHIFT 0x63
574 #define ACTION_BITRSHIFT 0x64
575 #define ACTION_BITURSHIFT 0x65
576 #define ACTION_GOTOFRAME 0x81
577 #define ACTION_GETURL 0x83
578 #define ACTION_STOREREGISTER 0x87
579 #define ACTION_CONSTANTPOOL 0x88
580 #define ACTION_WAITFORFRAME 0x8a
581 #define ACTION_SETTARGET 0x8b
582 #define ACTION_GOTOLABEL 0x8c
583 #define ACTION_WAITFORFRAME2 0x8d
584 #define ACTION_WITH 0x94
585 #define ACTION_PUSH 0x96
586 #define ACTION_JUMP 0x99
587 #define ACTION_GETURL2 0x9a
588 #define ACTION_DEFINEFUNCTION 0x9b
589 #define ACTION_IF 0x9d
590 #define ACTION_CALL 0x9e
591 #define ACTION_GOTOFRAME2 0x9f
593 void action_fixjump(ActionMarker m1, ActionMarker m2)
595 ActionTAG* a1 = m1.atag;
596 ActionTAG* a2 = m2.atag;
602 a = a->next; //first one is free
605 len += ActionTagSize(a);
614 len -= ActionTagSize(a);
619 fprintf(stderr, "action_fixjump: couldn't find second tag\n");
622 len -= ActionTagSize(a);
626 if (a1->op == ACTION_IF || a1->op == ACTION_JUMP)
628 *(U16*)(a1->data) = len;
630 else if(a1->op == ACTION_WAITFORFRAME)
632 ((U8*)(a1->data))[2] = oplen;
634 else if(a1->op == ACTION_WAITFORFRAME2)
636 ((U8*)(a1->data))[0] = oplen;
642 void action_NextFrame() {swf_AddActionTAG(ACTION_NEXTFRAME, 0, 0);}
643 void action_PreviousFrame() {swf_AddActionTAG(ACTION_PREVIOUSFRAME, 0, 0);}
644 void action_Play() {swf_AddActionTAG(ACTION_PLAY, 0, 0);}
645 void action_Stop() {swf_AddActionTAG(ACTION_STOP, 0, 0);}
646 void action_ToggleQuality() {swf_AddActionTAG(ACTION_TOGGLEQUALITY, 0, 0);}
647 void action_StopSounds() {swf_AddActionTAG(ACTION_STOPSOUNDS, 0, 0);}
648 void action_Add() {swf_AddActionTAG(ACTION_ADD, 0, 0);}
649 void action_Subtract() {swf_AddActionTAG(ACTION_SUBTRACT, 0, 0);}
650 void action_Multiply() {swf_AddActionTAG(ACTION_MULTIPLY, 0, 0);}
651 void action_Divide() {swf_AddActionTAG(ACTION_DIVIDE, 0, 0);}
652 void action_Equals() {swf_AddActionTAG(ACTION_EQUALS, 0, 0);}
653 void action_Less() {swf_AddActionTAG(ACTION_LESS, 0, 0);}
654 void action_And() {swf_AddActionTAG(ACTION_AND, 0, 0);}
655 void action_Or() {swf_AddActionTAG(ACTION_OR, 0, 0);}
656 void action_Not() {swf_AddActionTAG(ACTION_NOT, 0, 0);}
657 void action_StringEquals() {swf_AddActionTAG(ACTION_STRINGEQUALS, 0, 0);}
658 void action_StringLength() {swf_AddActionTAG(ACTION_STRINGLENGTH, 0, 0);}
659 void action_StringExtract() {swf_AddActionTAG(ACTION_STRINGEXTRACT, 0, 0);}
660 void action_Pop() {swf_AddActionTAG(ACTION_POP, 0, 0);}
661 void action_ToInteger() {swf_AddActionTAG(ACTION_TOINTEGER, 0, 0);}
662 void action_GetVariable() {swf_AddActionTAG(ACTION_GETVARIABLE, 0, 0);}
663 void action_SetVariable() {swf_AddActionTAG(ACTION_SETVARIABLE, 0, 0);}
664 void action_SetTarget2() {swf_AddActionTAG(ACTION_SETTARGET2, 0, 0);}
665 void action_StringAdd() {swf_AddActionTAG(ACTION_STRINGADD, 0, 0);}
666 void action_GetProperty() {swf_AddActionTAG(ACTION_GETPROPERTY, 0, 0);}
667 void action_SetProperty() {swf_AddActionTAG(ACTION_SETPROPERTY, 0, 0);}
668 void action_CloneSprite() {swf_AddActionTAG(ACTION_CLONESPRITE, 0, 0);}
669 void action_RemoveSprite() {swf_AddActionTAG(ACTION_REMOVESPRITE, 0, 0);}
670 void action_Trace() {swf_AddActionTAG(ACTION_TRACE, 0, 0);}
671 void action_StartDrag() {swf_AddActionTAG(ACTION_STARTDRAG, 0, 0);}
672 void action_EndDrag() {swf_AddActionTAG(ACTION_ENDDRAG, 0, 0);}
673 void action_StringLess() {swf_AddActionTAG(ACTION_STRINGLESS, 0, 0);}
674 void action_RandomNumber() {swf_AddActionTAG(ACTION_RANDOMNUMBER, 0, 0);}
675 void action_MBStringLength() {swf_AddActionTAG(ACTION_MBSTRINGLENGTH, 0, 0);}
676 void action_CharToAscii() {swf_AddActionTAG(ACTION_CHARTOASCII, 0, 0);}
677 void action_AsciiToChar() {swf_AddActionTAG(ACTION_ASCIITOCHAR, 0, 0);}
678 void action_GetTime() {swf_AddActionTAG(ACTION_GETTIME, 0, 0);}
679 void action_MBStringExtract() {swf_AddActionTAG(ACTION_MBSTRINGEXTRACT, 0, 0);}
680 void action_MBCharToAscii() {swf_AddActionTAG(ACTION_MBCHARTOASCII, 0, 0);}
681 void action_MBAsciiToChar() {swf_AddActionTAG(ACTION_MBASCIITOCHAR, 0, 0);}
682 void action_Delete() {swf_AddActionTAG(ACTION_DELETE, 0, 0);}
683 void action_Delete2() {swf_AddActionTAG(ACTION_DELETE2, 0, 0);}
684 void action_DefineLocal() {swf_AddActionTAG(ACTION_DEFINELOCAL, 0, 0);}
685 void action_CallFunction() {swf_AddActionTAG(ACTION_CALLFUNCTION, 0, 0);}
686 void action_Return() {swf_AddActionTAG(ACTION_RETURN, 0, 0);}
687 void action_Modulo() {swf_AddActionTAG(ACTION_MODULO, 0, 0);}
688 void action_NewObject() {swf_AddActionTAG(ACTION_NEWOBJECT, 0, 0);}
689 void action_DefineLocal2() {swf_AddActionTAG(ACTION_DEFINELOCAL2, 0, 0);}
690 void action_InitArray() {swf_AddActionTAG(ACTION_INITARRAY, 0, 0);}
691 void action_Makehash() {swf_AddActionTAG(ACTION_MAKEHASH, 0, 0);}
692 void action_TypeOf() {swf_AddActionTAG(ACTION_TYPEOF, 0, 0);}
693 void action_TargetPath() {swf_AddActionTAG(ACTION_TARGETPATH, 0, 0);}
694 void action_Enumerate() {swf_AddActionTAG(ACTION_ENUMERATE, 0, 0);}
695 void action_Add2() {swf_AddActionTAG(ACTION_ADD2, 0, 0);}
696 void action_Less2() {swf_AddActionTAG(ACTION_LESS2, 0, 0);}
697 void action_Equals2() {swf_AddActionTAG(ACTION_EQUALS2, 0, 0);}
698 void action_ToNumber() {swf_AddActionTAG(ACTION_TONUMBER, 0, 0);}
699 void action_ToString() {swf_AddActionTAG(ACTION_TOSTRING, 0, 0);}
700 void action_PushDuplicate() {swf_AddActionTAG(ACTION_PUSHDUPLICATE, 0, 0);}
701 void action_StackSwap() {swf_AddActionTAG(ACTION_STACKSWAP, 0, 0);}
702 void action_GetMember() {swf_AddActionTAG(ACTION_GETMEMBER, 0, 0);}
703 void action_SetMember() {swf_AddActionTAG(ACTION_SETMEMBER, 0, 0);}
704 void action_Increment() {swf_AddActionTAG(ACTION_INCREMENT, 0, 0);}
705 void action_Decrement() {swf_AddActionTAG(ACTION_DECREMENT, 0, 0);}
706 void action_CallMethod() {swf_AddActionTAG(ACTION_CALLMETHOD, 0, 0);}
707 void action_NewMethod() {swf_AddActionTAG(ACTION_NEWMETHOD, 0, 0);}
708 void action_BitAnd() {swf_AddActionTAG(ACTION_BITAND, 0, 0);}
709 void action_BitOr() {swf_AddActionTAG(ACTION_BITOR, 0, 0);}
710 void action_BitXor() {swf_AddActionTAG(ACTION_BITXOR, 0, 0);}
711 void action_BitLShift() {swf_AddActionTAG(ACTION_BITLSHIFT, 0, 0);}
712 void action_BitRShift() {swf_AddActionTAG(ACTION_BITRSHIFT, 0, 0);}
713 void action_BitURShift() {swf_AddActionTAG(ACTION_BITURSHIFT, 0, 0);}
714 void action_Call() {swf_AddActionTAG(ACTION_CALL, 0, 0);}
715 void action_End() {swf_AddActionTAG(ACTION_END, 0, 0);}
716 void action_GotoFrame(U16 frame)
718 *(U16*)currentatag->tmp = frame;
719 swf_AddActionTAG(ACTION_GOTOFRAME, (U8*)currentatag->tmp, 2);
721 void action_Jump(U16 branch)
723 *(U16*)currentatag->tmp = branch;
724 swf_AddActionTAG(ACTION_JUMP, (U8*)currentatag->tmp, 2);
726 void action_If(U16 branch)
728 *(U16*)currentatag->tmp = branch;
729 swf_AddActionTAG(ACTION_IF, (U8*)currentatag->tmp, 2);
731 void action_StoreRegister(U8 reg)
733 *(U8*)currentatag->tmp = reg;
734 swf_AddActionTAG(ACTION_STOREREGISTER, (U8*)currentatag->tmp, 1);
736 void action_GotoFrame2(U8 method)
738 *(U8*)currentatag->tmp = method;
739 swf_AddActionTAG(ACTION_GOTOFRAME2, (U8*)currentatag->tmp, 1);
741 void action_GetUrl2(U8 method)
743 *(U8*)currentatag->tmp = method;
744 swf_AddActionTAG(ACTION_GETURL2, (U8*)currentatag->tmp, 1);
746 void action_WaitForFrame2(U8 skip)
748 *(U8*)currentatag->tmp = skip;
749 swf_AddActionTAG(ACTION_WAITFORFRAME2, (U8*)currentatag->tmp, 1);
751 void action_WaitForFrame(U16 frame, U8 skip)
753 *(U16*)currentatag->tmp = frame;
754 *(U8*)¤tatag->tmp[2] = skip;
755 swf_AddActionTAG(ACTION_WAITFORFRAME, (U8*)currentatag->tmp, 3);
757 void action_SetTarget(char* target)
759 char*ptr = strdup(target);
760 swf_AddActionTAG(ACTION_SETTARGET, (U8*)ptr, strlen(ptr)+1);
762 void action_PushNULL()
764 *(U8*)currentatag->tmp = 2; //NULL
765 swf_AddActionTAG(ACTION_PUSH, (U8*)currentatag->tmp, 1);
767 void action_PushBoolean(char c)
769 *(U8*)currentatag->tmp = 5; //bool
770 *(U8*)¤tatag->tmp[1] = c;
771 swf_AddActionTAG(ACTION_PUSH, (U8*)currentatag->tmp, 2);
773 void action_PushRegister(U8 reg)
775 *(U8*)currentatag->tmp = 4; //register
776 *(U8*)¤tatag->tmp[1] = reg;
777 swf_AddActionTAG(ACTION_PUSH, (U8*)currentatag->tmp, 2);
779 void action_PushLookup(U8 index)
781 *(U8*)currentatag->tmp = 8; //lookup
782 *(U8*)¤tatag->tmp[1] = index;
783 swf_AddActionTAG(ACTION_PUSH, (U8*)currentatag->tmp, 2);
785 void action_PushString(char*str)
788 char*ptr = (char*)malloc(l+2);
789 ptr[0] = 0; // string
790 strcpy(&ptr[1], str);
791 swf_AddActionTAG(ACTION_PUSH, (U8*)ptr, l+2);
793 void action_PushFloat(float f)
795 char*ptr = (char*)malloc(5);
797 *(float*)&ptr[1] = f;
798 swf_AddActionTAG(ACTION_PUSH, (U8*)ptr, 5);
800 void action_PushDouble(double d)
802 char*ptr = (char*)malloc(9);
804 *(double*)&ptr[1] = d;
805 swf_AddActionTAG(ACTION_PUSH, (U8*)ptr, 9);
807 void action_PushInt(int i)
809 *(U8*)currentatag->tmp = 7; //int
810 *(U32*)¤tatag->tmp[1] = i;
811 swf_AddActionTAG(ACTION_PUSH, (U8*)currentatag->tmp, 5);
813 void action_GotoLabel(char* label)
815 char*ptr = strdup(label);
816 swf_AddActionTAG(ACTION_GOTOLABEL, (U8*)ptr, strlen(ptr));
818 void action_GetUrl(char* url, char* label)
821 int l2= strlen(label);
822 char*ptr = malloc(l1+l2+2);
824 strcpy(&ptr[l1+1], label);
825 swf_AddActionTAG(ACTION_GETURL, ptr, l1+l2+2);
828 void action_DefineFunction(U8*data, int len) {}
829 void action_Constantpool(char* constantpool) {}
830 void action_With(char*object) {}