TAG * swf_NextTag(TAG * t) { return t->next; }
TAG * swf_PrevTag(TAG * t) { return t->prev; }
-int swf_GetFrameNo(TAG * t) { return t->frame; }
U16 swf_GetTagID(TAG * t) { return t->id; }
U32 swf_GetTagLen(TAG * t) { return t->len; }
U8* swf_GetTagLenPtr(TAG * t) { return &(t->data[t->len]); }
// Tag List Manipulating Functions
-int swf_UpdateFrame(TAG * t,S8 delta)
-// returns number of frames
-{ int res = -1;
- while (t)
- { t->frame+=delta;
- res = t->frame;
- t = t->next;
- }
- return res;
-}
-
-TAG * swf_InsertTag(TAG * after,U16 id) // updates frames, if nescessary
+TAG * swf_InsertTag(TAG * after,U16 id)
{ TAG * t;
t = (TAG *)malloc(sizeof(TAG));
t->id = id;
if (after)
- { t->frame = after->frame;
+ {
t->prev = after;
t->next = after->next;
after->next = t;
if (t->next) t->next->prev = t;
-
- if (id==ST_SHOWFRAME) swf_UpdateFrame(t->next,+1);
}
}
return t;
}
-TAG * swf_InsertTagBefore(SWF* swf, TAG * before,U16 id) // updates frames, if nescessary
+TAG * swf_InsertTagBefore(SWF* swf, TAG * before,U16 id)
{ TAG * t;
t = (TAG *)malloc(sizeof(TAG));
t->id = id;
if (before)
- { t->frame = before->frame;
+ {
t->next = before;
t->prev = before->prev;
before->prev = t;
if (t->prev) t->prev->next = t;
-
- if (id==ST_SHOWFRAME) swf_UpdateFrame(t->next,+1);
}
}
if(swf && swf->firstTag == before) {
int swf_DeleteTag(TAG * t)
{ if (!t) return -1;
- if (t->id==ST_SHOWFRAME) swf_UpdateFrame(t->next,-1);
-
if (t->prev) t->prev->next = t->next;
if (t->next) t->next->prev = t->prev;
}
if (id==ST_DEFINESPRITE) len = 2*sizeof(U16);
- // Sprite handling fix: Flaten sprite tree
+ // Sprite handling fix: Flatten sprite tree
t = (TAG *)malloc(sizeof(TAG));
}
if (prev)
- { t->frame = prev->frame+((prev->id==ST_SHOWFRAME)?1:0);
+ {
t->prev = prev;
prev->next = t;
}
void swf_FoldAll(SWF*swf)
{
TAG*tag = swf->firstTag;
+ //swf_DumpSWF(stdout, swf);
while(tag) {
- if(tag->id == ST_DEFINESPRITE)
+ if(tag->id == ST_DEFINESPRITE) {
swf_FoldSprite(tag);
+ //swf_DumpSWF(stdout, swf);
+ }
tag = swf_NextTag(tag);
}
}
U32 len; // for Set-Access
U32 pos; // for Get-Access
- int frame; // not really up-to-date
-
struct _TAG * next;
struct _TAG * prev;
TAG * swf_NextTag(TAG * t);
TAG * swf_PrevTag(TAG * t);
-int swf_GetFrameNo(TAG * t); // should be renamed to TagGetFrame
U16 swf_GetTagID(TAG * t); // ... TagGetID
U32 swf_GetTagLen(TAG * t); // ... TagGetTagLen
U8* swf_GetTagLenPtr(TAG * t);
void swf_DumpHeader(FILE * f,SWF * swf);
void swf_DumpMatrix(FILE * f,MATRIX * m);
void swf_DumpTag(FILE * f,TAG * t);
+void swf_DumpSWF(FILE * f,SWF*swf);
char* swf_TagGetName(TAG*tag);
void swf_DumpFont(SWFFONT * font);