home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG6_3.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  2.5 KB  |  96 lines

  1. /*Program 6_3 - Delay Specified Number of Seconds
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Many programs must delay for short periods of time.  Often this
  5.   is done by executing an "empty" FOR loop.  The Time-of-Day BIOS
  6.   routine provides a more accurate means of delaying.
  7. */
  8.  
  9. #include <stdio.h>
  10. #include <dos.h>
  11.  
  12. /*prototype definitions*/
  13. void main (void);
  14. unsigned getval (char *);
  15. void wait (unsigned);
  16. unsigned getime (void);
  17.  
  18. /*global data definitions*/
  19. union REGS reg;
  20. union  {
  21.         int stime [2];
  22.         long int dtime;
  23.        } both;
  24.  
  25. /*Main - ask the user for length of time to delay (0 terminates)*/
  26. void main (void)
  27. {
  28.      unsigned delay;
  29.  
  30.      printf ("This program simply delays the user specified number\n"
  31.              "of seconds.  Entering a zero terminates the program.\n"
  32.              "\n"
  33.              "Seconds are counted down to provide output so that\n"
  34.              "the user can break out prematurely, if desired\n"
  35.              "\n");
  36.      for (;;) {
  37.  
  38.          /*get the specified delay and wait () that long*/
  39.          if ((delay = getval ("Enter delay time [seconds]")) == 0)
  40.               break;
  41.  
  42.          /*now call our wait procedure to perform the delay*/
  43.          printf ("Start delay:\n");
  44.          wait (delay);
  45.          printf ("Finished\n");
  46.      }
  47. }
  48.  
  49. /*Getval - output a prompt and get an integer response*/
  50. unsigned getval (prompt)
  51.      char *prompt;
  52. {
  53.      unsigned retval;
  54.  
  55.      printf ("%s - ", prompt);
  56.      scanf ("%d", &retval);
  57.      return retval;
  58. }
  59.  
  60.  
  61.  
  62. /*Wait - wait the specified length of time*/
  63. void wait (delay)
  64.      unsigned delay;
  65. {
  66.  
  67.      unsigned previous, current;
  68.  
  69.      /*every time the time changes - decrement count*/
  70.      previous = getime ();
  71.      for (;;) {
  72.           if (previous != (current = getime ())) {
  73.                previous = current;
  74.                if (!--delay)
  75.                     return;
  76.  
  77.                /*remove this print statement in actual use*/
  78.                printf ("count - %d\n", delay);
  79.           }
  80.      }
  81. }
  82.  
  83. /*Getime - return the current time in seconds since midnight*/
  84. unsigned getime (void)
  85. {
  86.           /*use the BIOS Time-of-Day to read the current time*/
  87.           reg.h.ah = 0;
  88.           int86 (0x1a, ®, ®);
  89.           both.stime [0] = reg.x.dx;
  90.           both.stime [1] = reg.x.cx;
  91.  
  92.           /*now convert the clock ticks into seconds (fudge factor
  93.             is the difference between 18.2 and 18*/
  94.           return (unsigned)(both.dtime / 18) -
  95.                  (unsigned)(both.dtime / 1638);
  96. }