home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <conio.h>
- #include <dos.h>
- #include <stdlib.h>
- #include <ctype.h>
- #include <graphics.h>
-
- unsigned char cb[1000];
- FILE *fp,*fd; //,*fp1;
- //void *men1,*men2,*cx,*cy;
-
- void main()
- {int /*i,*/ii,/*jj,*/k,kk,x,y,/*cursor,*/x0,y0,x1/*,y1,x2,y2,nn,size*/;
- int gdriver = DETECT, gmode, errorcode;
- long tp,j;
- int xl,yl;
- float f;
- static char chi[]="indj",chd[]="datj";
- unsigned char /*cf[12],*/ca,cc,cz,cs;
- // void *men3;
- struct {long db; int da;} ind;
-
- /* printf("** open [dat?] [ind?] ");
- scanf("%c",&cs);
- chi[3]=chd[3]=cs;*/
- printf("\n\n\nPlease enter the code [1601-8794] :");
- scanf("%d",&ii);
- if (ii>8794) ii=1601;
- if (ii<1601) ii=1601;
- if (ii%100>94)
- if (ii/100<87) ii=(ii/100+1)*100;
- else ii=1601;
-
- errorcode = registerfarbgidriver(EGAVGA_driver_far);
- if (errorcode < 0)
- {
- printf("Graphics error: %s\n", grapherrormsg(errorcode));
- printf("Press any key to halt:");
- getch();
- exit(1);
- }
- errorcode = registerfarbgifont(triplex_font_far);
- if (errorcode < 0)
- {
- printf("Graphics error: %s\n", grapherrormsg(errorcode));
- printf("Press any key to halt:");
- getch();
- exit(1);
- }
-
- initgraph(&gdriver, &gmode, "");
- errorcode = graphresult();
- if (errorcode != grOk)
- {
- printf("Graphics error: %s\n", grapherrormsg(errorcode));
- printf("Press any key to halt:");
- getch();
- exit(1);
- }
- setbkcolor(1);
- fp=fopen(chi,"rb");
- fd=fopen(chd,"rb");
-
- for(kk=ii; kk<=8794; kk++)
- {cleardevice();
- setlinestyle(SOLID_LINE,0,THICK_WIDTH);
- rectangle(0,0,getmaxx(),getmaxy());
- setlinestyle(SOLID_LINE,0,NORM_WIDTH);
- rectangle(4,3,getmaxx()-4,getmaxy()-3);
- getaspectratio(&xl,&yl);
- f=((float) yl )/((float) xl);
- j=kk;
- tp=j*6;
- fseek(fp,tp,0);
- fread(&ind,6,1,fp);
- fseek(fd,ind.db,0);
- fread(cb,ind.da,1,fd);
- ca=cb[0];
- cc=cb[1];
- x=1.85*ca*f+50;
- y=1.85*cc;
- x0=x;
- y0=y;
- moveto(x,y);
- k=ind.da/2;
- for(x1=1; x1<k; x1++)
- { ca=cb[2*x1];
- cc=cb[2*x1+1];
- if(ca==0xff && cc==0xff)
- { x1++;
- ca=cb[2*x1];
- cc=cb[2*x1+1];
- x=1.85*ca*f+50;
- y=1.85*cc;
- if(cs>'e') lineto(x0,y0);
- x0=x;
- y0=y;
- moveto(x,y);
- continue;
- }
- x=1.85*ca*f+50;
- y=1.85*cc;
- lineto(x,y);
- }
- if(cs>'e') lineto(x0,y0);
- cz=getch();
- /* free(men1);
- free(men2);
- free(cx);
- free(cy);*/
- if(cz==0x1b) break;
- if (kk%100>93)
- if (kk/100<87) kk=(kk/100+1)*100;
- else kk=1601;
- if (ii>8794) ii=1601;
- if (ii<1601) ii=1601;
- }
- fcloseall();
- closegraph();
- }
-
-
-
-