home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <dir.h>
- #include <dos.h>
- #include <alloc.h>
-
- int tracklen[7]={0,9,15,9,18,36,8};
- char head[2048],newhead[2048];
-
- main()
- {
- struct ffblk fk;
- FILE *f1,*f2;
- char dtype,tmp[256],*buff,id,maxid,count,c,oc;
- int i,j,done,ll,tl,bad;
-
- buff=malloc(10240);
- for(i=1;i<7;i++) tracklen[i] *=512;
- done=findfirst("*.ddi",&fk,0);
- while(done==0)
- { f1=fopen(fk.ff_name,"rb");
- fread(head,2048,1,f1);
- dtype=head[10];
- if(head[0]!='I'||head[1]!='M'||dtype>6||dtype<1)
- { printf("%s is not a real .DDI file !\n",fk.ff_name);
- fclose(f1);
- done=findnext(&fk);
- continue;
- }
- tl=tracklen[dtype];
- id=1;
- ll=0x65;
- maxid=1;
- bad=0;
- count=0;
- while(head[ll]>0)
- { if(head[ll]>maxid) maxid=head[ll];
- if(head[ll]!=id) bad=1;
- id++;
- ll+=6;
- count++;
- }
- if(maxid!=count)
- { printf("%s is not a good .DDI file !\n",fk.ff_name);
- fclose(f1);
- done=findnext(&fk);
- continue;
- }
- if(bad==0)
- { fclose(f1);
- done=findnext(&fk);
- continue; /* Normal .DDI file */
- }
- memcpy(newhead,head,2048);
- ll=0x65;
- for(c=1;c<=maxid;c++,ll+=6) newhead[ll]=c;
- f2=fopen("ddi.fix","wb");
- fwrite(newhead,2048,1,f2);
- fread(buff,tl-2048,1,f1);
- fwrite(buff,tl-2048,1,f2);
- for(c=1;c<=maxid;c++)
- { oc=1;
- ll=0x65;
- while(head[ll]!=c)
- { oc++;
- ll+=6;
- }
- fseek(f1,(long)oc*tl,SEEK_SET);
- fread(buff,tl,1,f1);
- fwrite(buff,tl,1,f2);
- }
- fclose(f1);
- fclose(f2);
- unlink(fk.ff_name);
- rename("ddi.fix",fk.ff_name);
- done=findnext(&fk);
- }
- }