X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswfaction.c;h=70ddf3eabf288b51937c47945f4d06447622b153;hb=50c2416b8128539768581f5e0099eab1d90771e6;hp=3906f6c482edbdc5f5641891f0e864f03ab1d10a;hpb=58e7d89f8115525c32a0e3f3f4e5501c6a17186d;p=swftools.git diff --git a/lib/modules/swfaction.c b/lib/modules/swfaction.c index 3906f6c..70ddf3e 100644 --- a/lib/modules/swfaction.c +++ b/lib/modules/swfaction.c @@ -38,7 +38,7 @@ f: frame (word) u: url (string) t: target (string) l: label (string) -C: constant pool header (byte) +C: constant pool header (word) c: constant pool entry (string) s: skip (byte) (number of actions) m: method (byte) swf_GetUrl2:(0=none, 1=get, 2=post)/GotoFrame2:(1=play) @@ -154,8 +154,7 @@ ActionTAG* swf_ActionGet(TAG*tag) U8*data; while(op) { - action->next = (ActionTAG*)malloc(sizeof(ActionTAG)); - memset(action->next, 0, sizeof(ActionTAG)); + action->next = (ActionTAG*)rfx_calloc(sizeof(ActionTAG)); action->next->prev = action; action->next->next = 0; action->next->parent = tmp.next; @@ -168,7 +167,7 @@ ActionTAG* swf_ActionGet(TAG*tag) length = swf_GetU16(tag); if(length) { - data = malloc(length); + data = rfx_alloc(length); swf_GetBlock(tag, data, length); } else { data = 0; @@ -195,12 +194,15 @@ void swf_ActionFree(ActionTAG*action) while(action) { ActionTAG*tmp; - if(action->data && action->data != action->tmp) - free(action->data); + if(action->data && action->data != action->tmp) { + rfx_free(action->data); + action->data = 0; + } + action->len = 0; tmp = action; action=action->next; - free(tmp); + rfx_free(tmp); } } @@ -251,6 +253,8 @@ int OpAdvance(char c, U8*data) return 1+4; //float } else if (type == 2) { return 1+0; //NULL + } else if (type == 3) { + return 1+0; //Undefined } else if (type == 4) { return 1+1; //register } else if (type == 5) { @@ -261,6 +265,8 @@ int OpAdvance(char c, U8*data) return 1+4; //int } else if (type == 8) { return 1+1; //lookup + } else if (type == 9) { + return 1+2; //lookup 16 } else return 1; break; } @@ -312,7 +318,7 @@ void swf_DumpActions(ActionTAG*atag, char*prefix) while(atag) { char*indent = &spaces[sizeof(spaces)-1-countpos*4]; - U8 poollen = 0; + U16 poollen = 0; for(t=0;top) break; @@ -350,7 +356,7 @@ void swf_DumpActions(ActionTAG*atag, char*prefix) #endif } break; case 'C': { - poollen = *data; + poollen = data[0]+256*data[1]; entry = 0; printf("(%d entries)", poollen); } break; @@ -371,7 +377,7 @@ void swf_DumpActions(ActionTAG*atag, char*prefix) num = (data[s++]); //num num += (data[s++])*256; for(t=0;top) break; @@ -563,7 +578,7 @@ int swf_ActionEnumerate(ActionTAG*atag, char*(*callback)(char*), int type) } } break; case 'C': { - poollen = (*data); + poollen = (data[0]+256*data[1]); } break; case 'o': { } break; @@ -590,13 +605,13 @@ int swf_ActionEnumerate(ActionTAG*atag, char*(*callback)(char*), int type) if(replacement) { int newlen = strlen(replacement); - char * newdata = malloc(atag->len - replacelen + newlen); + char * newdata = rfx_alloc(atag->len - replacelen + newlen); int rpos = replacepos - atag->data; memcpy(newdata, atag->data, rpos); memcpy(&newdata[rpos], replacement, newlen); memcpy(&newdata[rpos+newlen], &replacepos[replacelen], &data[atag->len] - &replacepos[replacelen]); - free(atag->data); + rfx_free(atag->data); atag->data = newdata; data = &atag->data[rpos+newlen+1]; } @@ -624,7 +639,7 @@ void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*)) /*static ActionTAG* swf_ActionStart() { ActionTAG*atag; - atag = (ActionTAG*)malloc(sizeof(ActionTAG)); + atag = (ActionTAG*)rfx_alloc(sizeof(ActionTAG)); atag->prev = 0; atag->next = 0; atag->parent = 0; @@ -642,7 +657,7 @@ void swf_ActionEnd(ActionTAG* atag) } last->prev->next = 0; - free(last); + rfx_free(last); }*/ static ActionTAG*lastATAG(ActionTAG*atag) @@ -658,7 +673,7 @@ static ActionTAG*lastATAG(ActionTAG*atag) ActionTAG* swf_AddActionTAG(ActionTAG*atag, U8 op, U8*data, U16 len) { ActionTAG*tmp; - tmp = (ActionTAG*)malloc(sizeof(ActionTAG)); + tmp = (ActionTAG*)rfx_alloc(sizeof(ActionTAG)); tmp->next = 0; if(atag) { tmp->prev = atag; @@ -668,10 +683,11 @@ ActionTAG* swf_AddActionTAG(ActionTAG*atag, U8 op, U8*data, U16 len) tmp->prev = 0; tmp->parent = tmp; } - if(data || !len) + if(data || !len) { tmp->data = data; - else + } else { tmp->data = tmp->tmp; + } tmp->len = len; tmp->op = op; @@ -964,6 +980,12 @@ ActionTAG* action_PushNULL(ActionTAG*atag) *(U8*)atag->tmp = 2; //NULL return atag; } +ActionTAG* action_PushUndefined(ActionTAG*atag) +{ + atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 1); + *(U8*)atag->tmp = 3; //Undefined + return atag; +} ActionTAG* action_PushBoolean(ActionTAG*atag, char c) { atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 2); @@ -985,17 +1007,25 @@ ActionTAG* action_PushLookup(ActionTAG*atag, U8 index) *(U8*)&atag->tmp[1] = index; return atag; } -ActionTAG* action_PushString(ActionTAG*atag, char*str) +ActionTAG* action_PushLookup16(ActionTAG*atag, U16 index) +{ + atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 3); + *(U8*)atag->tmp = 9; //lookup + *(U8*)&atag->tmp[1] = index; + *(U8*)&atag->tmp[2] = index>>8; + return atag; +} +ActionTAG* action_PushString(ActionTAG*atag, const char*str) { int l = strlen(str); - char*ptr = (char*)malloc(l+2); + char*ptr = (char*)rfx_alloc(l+2); ptr[0] = 0; // string strcpy(&ptr[1], str); return swf_AddActionTAG(atag, ACTION_PUSH, (U8*)ptr, l+2); } ActionTAG* action_PushFloat(ActionTAG*atag, float f) { - char*ptr = (char*)malloc(5); + char*ptr = (char*)rfx_alloc(5); U32 fd = *(U32*)&f; ptr[0] = 1; //float ptr[1] = fd; @@ -1006,7 +1036,7 @@ ActionTAG* action_PushFloat(ActionTAG*atag, float f) } ActionTAG* action_PushDouble(ActionTAG*atag, double d) { - char*ptr = (char*)malloc(9); + char*ptr = (char*)rfx_alloc(9); U8*dd = (U8*)&d; ptr[0] = 6; //double #ifdef WORDS_BIGENDIAN @@ -1025,7 +1055,7 @@ ActionTAG* action_PushDouble(ActionTAG*atag, double d) ActionTAG* action_PushInt(ActionTAG*atag, int i) { atag = swf_AddActionTAG(atag, ACTION_PUSH, 0, 5); - *(U8*)atag->tmp = 7; //int + atag->tmp[0] = 7; //int atag->tmp[1] = i; atag->tmp[2] = i>>8; atag->tmp[3] = i>>16; @@ -1037,11 +1067,11 @@ ActionTAG* action_GotoLabel(ActionTAG*atag, char* label) char*ptr = strdup(label); return swf_AddActionTAG(atag, ACTION_GOTOLABEL, (U8*)ptr, strlen(ptr)); } -ActionTAG* action_GetUrl(ActionTAG*atag, char* url, char* label) +ActionTAG* action_GetUrl(ActionTAG*atag, const char* url, char* label) { int l1= strlen(url); int l2= strlen(label); - char*ptr = malloc(l1+l2+2); + char*ptr = rfx_alloc(l1+l2+2); strcpy(ptr, url); strcpy(&ptr[l1+1], label); return swf_AddActionTAG(atag, ACTION_GETURL, ptr, l1+l2+2); @@ -1069,7 +1099,7 @@ ActionTAG* swf_ActionCompile(const char* source, int version) swf_SetBlock(tag, buffer, len); swf_SetU8(tag, 0); - free(buffer); + rfx_free(buffer); a = swf_ActionGet(tag); swf_DeleteTag(tag);