flash 10 support in -e, show fileattributes, support for .abc files
[swftools.git] / src / swfdump.c
index a51ea49..6c944b6 100644 (file)
@@ -265,6 +265,7 @@ void dumpButtonActions(TAG*tag, char*prefix)
     }
     actions = swf_ActionGet(tag);
     swf_DumpActions(actions, prefix);
+    swf_ActionFree(actions);
 }
 
 void dumpButton(TAG*tag, char*prefix)
@@ -785,11 +786,13 @@ char* fillstyle2str(FILLSTYLE*style)
            /* TODO: display information about that bitmap */
            sprintf(stylebuf, "BITMAPt%s %d", (style->type&2)?"n":"", style->id_bitmap);
            /* TODO: show matrix */
+           //swf_DumpMatrix(stdout, &style->m);
            break;
        case 0x41: case 0x43:
            /* TODO: display information about that bitmap */
            sprintf(stylebuf, "BITMAPc%s %d", (style->type&2)?"n":"", style->id_bitmap);
            /* TODO: show matrix */
+           //swf_DumpMatrix(stdout, &style->m);
            break;
        default:
            sprintf(stylebuf, "UNKNOWN[%02x]",style->type);
@@ -974,32 +977,38 @@ int main (int argc,char ** argv)
     if (f<0)
     { 
        char buffer[256];
-       sprintf(buffer, "Couldn't open %s", filename);
+       sprintf(buffer, "Couldn't open %.200s", filename);
         perror(buffer);
         exit(1);
     }
     char header[3];
     read(f, header, 3);
-    int compressed = (header[0]=='C');
+    char compressed = (header[0]=='C');
+    char isflash = header[0]=='F' && header[1] == 'W' && header[2] == 'S' ||
+                   header[0]=='C' && header[1] == 'W' && header[2] == 'S';
     close(f);
-    f = open(filename,O_RDONLY|O_BINARY);
 
-    if FAILED(swf_ReadSWF(f,&swf))
-    { 
-        fprintf(stderr, "%s is not a valid SWF file or contains errors.\n",filename);
-        close(f);
-        exit(1);
-    }
+    int fl=strlen(filename);
+    if(!isflash && fl>3 && !strcmp(&filename[fl-4], ".abc")) {
+        swf_ReadABCfile(filename, &swf);
+    } else {
+        f = open(filename,O_RDONLY|O_BINARY);
+        if FAILED(swf_ReadSWF(f,&swf))
+        { 
+            fprintf(stderr, "%s is not a valid SWF file or contains errors.\n",filename);
+            close(f);
+            exit(1);
+        }
 
 #ifdef HAVE_STAT
-    fstat(f, &statbuf);
-    if(statbuf.st_size != swf.fileSize && !compressed)
-        dumperror("Real Filesize (%d) doesn't match header Filesize (%d)",
-                statbuf.st_size, swf.fileSize);
-    filesize = statbuf.st_size;
+        fstat(f, &statbuf);
+        if(statbuf.st_size != swf.fileSize && !compressed)
+            dumperror("Real Filesize (%d) doesn't match header Filesize (%d)",
+                    statbuf.st_size, swf.fileSize);
+        filesize = statbuf.st_size;
 #endif
-
-    close(f);
+        close(f);
+    }
 
     //if(action && swf.fileVersion>=9) {
     //    fprintf(stderr, "Actionscript parsing (-a) not yet supported for SWF versions>=9\n");
@@ -1037,9 +1046,9 @@ int main (int argc,char ** argv)
     if(html)
     {
        char*fileversions[] = {"","1,0,0,0", "2,0,0,0","3,0,0,0","4,0,0,0",
-                              "5,0,0,0","6,0,23,0","7,0,0,0","8,0,0,0","9,0,0,0"};
-       if(swf.fileVersion>9) {
-           fprintf(stderr, "Fileversion>9\n");
+                              "5,0,0,0","6,0,23,0","7,0,0,0","8,0,0,0","9,0,0,0","10,0,0,0"};
+       if(swf.fileVersion>10) {
+           fprintf(stderr, "Fileversion>10\n");
            exit(1);
        }
 
@@ -1176,6 +1185,32 @@ int main (int argc,char ** argv)
         else if(tag->id == ST_FREECHARACTER) {
             printf(" frees object %04d", swf_GetPlaceID(tag));
         }
+        else if(tag->id == ST_FILEATTRIBUTES) {
+            swf_SetTagPos(tag, 0);
+            U32 flags = swf_GetU32(tag);
+            if(flags&1) printf(" usenetwork");
+            if(flags&8) printf(" as3");
+            if(flags&16) printf(" symbolclass");
+            if(flags&~(1|8|16))
+                printf(" flags=%02x", flags);
+        }
+        else if(tag->id == ST_DOABC) {
+            swf_SetTagPos(tag, 0);
+            U32 flags = swf_GetU32(tag);
+            char*s = swf_GetString(tag);
+            if(flags) {
+                printf(" flags=%08x", flags);
+            }
+            if(*s) {
+                printf(" \"%s\"", s);
+            }
+            if(flags&1) {
+                if(name)
+                    printf(",");
+                printf(" lazy load");
+            }
+            swf_SetTagPos(tag, 0);
+        }
        else if(tag->id == ST_STARTSOUND) {
            U8 flags;
            U16 id;
@@ -1235,18 +1270,15 @@ int main (int argc,char ** argv)
            if(issprite) {spriteframe++; spriteframelabel = 0;}
            if(!issprite) {mainframe++; framelabel = 0;}
        }
-
-       if(tag->id == ST_SETBACKGROUNDCOLOR) {
+        else if(tag->id == ST_SETBACKGROUNDCOLOR) {
            U8 r = swf_GetU8(tag);
            U8 g = swf_GetU8(tag);
            U8 b = swf_GetU8(tag);
-           printf(" (%02x/%02x/%02x)\n",r,g,b);
+           printf(" (%02x/%02x/%02x)",r,g,b);
        }
        else if(tag->id == ST_PROTECT) {
            if(tag->len>0) {
-               printf(" %s\n", swf_GetString(tag));
-           } else {
-               printf("\n");
+               printf(" %s", swf_GetString(tag));
            }
        }
        else if(tag->id == ST_CSMTEXTSETTINGS) {
@@ -1266,10 +1298,11 @@ int main (int argc,char ** argv)
                printf("unknown[%08x],", flags);
            float thickness = swf_GetFixed(tag);
            float sharpness = swf_GetFixed(tag);
-           printf("s=%.2f,t=%.2f)\n", thickness, sharpness);
+           printf("s=%.2f,t=%.2f)", thickness, sharpness);
            swf_GetU8(tag);
        }
-       else if(tag->id == ST_DEFINEBITSLOSSLESS ||
+
+       if(tag->id == ST_DEFINEBITSLOSSLESS ||
           tag->id == ST_DEFINEBITSLOSSLESS2) {
            handleDefineBits(tag);
            printf("\n");
@@ -1353,7 +1386,9 @@ int main (int argc,char ** argv)
             swf_DumpActions(actions, myprefix);
         }
         else if((tag->id == ST_DOABC || tag->id == ST_RAWABC) && action) {
-            swf_ReadABC(tag);
+            void*abccode = swf_ReadABC(tag);
+            swf_DumpABC(stdout, abccode, "");
+            swf_FreeABC(abccode);
         }
         else if(tag->id == ST_DOINITACTION && action) {
             ActionTAG*actions;