home *** CD-ROM | disk | FTP | other *** search
/ PC Plus 23 / SHORTIES / FCLS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-01-01  |  5.1 KB  |  181 lines

  1.  
  2. /* Fancy Clear Screen - V1.00 - 09APR88 - Colin Walls (c) 1988 */
  3.  
  4. char  *vers = "V1.00";
  5.  
  6. #include <dos.h>
  7.  
  8. struct BYTEREGS  regs;
  9.  
  10. char  cl_flags[500];
  11.  
  12. main(argc, argv)
  13. int   argc;
  14. char  *argv[];
  15. {
  16.    int   top, bottom, left, right;
  17.    int   slug, count;
  18.    char  type, *cp, *getenv();
  19.  
  20.    cp = getenv("FCLS");
  21.    type = (argc==1) ? ((cp) ? toupper(*cp) : '?') : toupper(argv[1][0]);
  22.  
  23.    switch (type)
  24.    {
  25.       case 'E':               /* explosion */
  26.          left=33;
  27.          right=46;
  28.          top=11;
  29.          bottom=13;
  30.          for (count=0; count<12; count++)
  31.          {
  32.             clear(left, top, right, bottom);
  33.             top--;
  34.             bottom++;
  35.             left -= 3;
  36.             right += 3;
  37.             for (slug=0; slug<300; slug++)
  38.                ;
  39.          }
  40.          break;
  41.       case 'I':               /* implosion */
  42.          left=6;
  43.          right=73;
  44.          top=0;
  45.          bottom=24;
  46.          for (count=0; count<12; count++)
  47.          {
  48.             clear(0, 0, left, 24);
  49.             clear(right, 0, 79, 24);
  50.             clear(0, 0, 79, top);
  51.             clear(0, bottom, 79, 24);
  52.             top++;
  53.             bottom--;
  54.             left += 3;
  55.             right -= 3;
  56.             for (slug=0; slug<300; slug++)
  57.                ;
  58.          }
  59.          break;
  60.       case 'V':               /* vertical */
  61.          for (left=39, right=40; left>=0; left--, right++)
  62.             clear(left, 0, right, 24);
  63.          break;
  64.       case 'H':               /* horizontal */
  65.          for (top=12, bottom=12; top>=0; top--, bottom++)
  66.          {
  67.             clear(0, top, 79, bottom);
  68.             for (slug=0; slug<1000; slug++)
  69.                ;
  70.          }
  71.          break;
  72.       case 'F':               /* fade */
  73.          count=500;
  74.          do
  75.          {
  76.             while((left=(rand()&0x1ff))>=500)
  77.                ;
  78.             if (!cl_flags[left])
  79.             {
  80.                cl_flags[left]=1;
  81.                count--;
  82.                top = (left/40)*2;
  83.                bottom = top+1;
  84.                left = (left % 40) * 2;
  85.                right = left+1;
  86.                clear(left, top, right, bottom);
  87.             }
  88.          }
  89.          while (count);
  90.          break;
  91.       case 'C':               /* collapse */
  92.          for (left=0, right=79; left<39; left++, right--)
  93.          {
  94.             clear(0, 0, left, 24);
  95.             clear(right, 0, 79, 24);
  96.          }
  97.          for (top=0, bottom=24; top<13; top++, bottom--)
  98.          {
  99.             for (slug=0; slug<3000; slug++)
  100.                ;
  101.             clear(39, 0, 40, top);
  102.             clear(39, bottom, 40, 24);
  103.          }
  104.          break;
  105.       case 'S':               /* scroll */
  106.          for (count=0; count<13; count++)
  107.          {
  108.             scroll(0, 0, 24, 11, 1);
  109.             scroll(25, 0, 54, 11, -1);
  110.             scroll(55, 0, 79, 11, 1);
  111.             scroll(0, 12, 24, 24, -1);
  112.             scroll(25, 12, 54, 24, 1);
  113.             scroll(55, 12, 79, 24, -1);
  114.          }
  115.          break;
  116.       case '?':               /* help */
  117.          printf("\n\t\tFancy Clear Screen - %s  Colin Walls (c) 1988\n\n", 
  118.                vers);
  119.          printf("\t\tA less boring alternative to the DOS CLS command.\n");
  120.          printf("\t\tThe following commands are valid:\n\n");
  121.          printf("\t\tFCLS E   -  Explode the screen.\n");
  122.          printf("\t\tFCLS I   -  Implode the screen.\n");
  123.          printf("\t\tFCLS V   -  Vertically sweep the screen.\n");
  124.          printf("\t\tFCLS H   -  Horizontally sweep the screen.\n");
  125.          printf("\t\tFCLS F   -  Fade (randomly) the screen.\n");
  126.          printf("\t\tFCLS C   -  Collapse the screen.\n");
  127.          printf("\t\tFCLS S   -  Scroll off the screen.\n");
  128.          printf("\t\tFCLS ?   -  Help!!\n");
  129.          exit(0);
  130.          break;
  131.       default:                /* error */
  132.          printf("** Invalid Parameter.\n");
  133.          printf("** Type FCLS ? for help.\n");
  134.          exit(1);
  135.          break;
  136.    }
  137.  
  138.    regs.ah = 2;               /* home the cursor */
  139.    regs.dh = 0;
  140.    regs.dl = 0;
  141.    regs.bh = 0;
  142.    int86(16, ®s, ®s);
  143. }
  144.  
  145. /* Function to clear an area of screen */
  146.  
  147. clear(left_col, top_row, right_col, bottom_row)
  148. int   left_col, top_row, right_col, bottom_row;
  149. {
  150.    scroll(left_col, top_row, right_col, bottom_row, 0);  /* 0 line scroll */
  151. #ifdef   DEBUG
  152.    printf("left=%d right=%d top=%d bottom=%d\n", 
  153.          left_col, right_col, top_row, bottom_row);
  154. #endif
  155. }
  156.  
  157. /* Function to scroll an area of screen up or down */
  158.  
  159. scroll(left_col, top_row, right_col, bottom_row, lines)
  160. int   left_col, top_row, right_col, bottom_row, lines;
  161. {
  162.    if (lines>=0)              /* use ROM BIOS window scroll */
  163.       regs.ah=6;              /* up */
  164.    else
  165.    {
  166.       regs.ah=7;              /* down */
  167.       lines = -lines;
  168.    }
  169.    regs.al = lines;
  170.    regs.ch = top_row;
  171.    regs.cl = left_col;
  172.    regs.dh = bottom_row;
  173.    regs.dl = right_col;
  174.    regs.bh = 7;
  175.    int86(16, ®s, ®s);
  176. #ifdef   DEBUG
  177.    printf("left=%d right=%d top=%d bottom=%d\n", 
  178.          left_col, right_col, top_row, bottom_row);
  179. #endif
  180. }
  181.