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

  1. /*Program 6_4 - Read the Keyboard Status
  2.     by Stephen R. Davis, 1987
  3.  
  4.   Read the status of the keyboard in a continual loop.  If the
  5.   status changes or a character appears, display this on the screen.
  6.   (Print both the character and its scan code.)
  7. */
  8.  
  9. #include <stdio.h>
  10. #include <dos.h>
  11. #include <process.h>
  12. #define TRUE 1
  13. #define FALSE 0
  14.  
  15. /*define the keyboard BIOS subfunctions*/
  16. #define readchar 0x00
  17. #define typeahead 0x01
  18. #define readstatus 0x02
  19.  
  20. /*prototype definitions*/
  21. void decode (unsigned);
  22. unsigned charpresent (void);
  23. unsigned getstatus (void);
  24. int main (void);
  25.  
  26. /*data definition*/
  27. union REGS reg;
  28. char lineclear;
  29.  
  30. /*Main - constantly display keyboard status*/
  31. main()
  32. {
  33.      unsigned oldstatus, newstatus, charandscan;
  34.      char currchar, scancode;
  35.  
  36.      printf ("\nDepress shift, control, etc. keys in any\n"
  37.              "and all combinations.  Program prints when\n"
  38.              "keyboard status changes or character appears.\n"
  39.              "Program prints both ASCII and scan code.  To\n"
  40.              "terminate enter capital X\n");
  41.  
  42.      oldstatus = 0;
  43.      lineclear = FALSE;
  44.      for (;;) {
  45.           if (charandscan = charpresent ()) {
  46.                lineclear = FALSE;
  47.                currchar = (char) (charandscan & 0x00ff);
  48.                scancode = (char) ((charandscan & 0xff00) >> 8);
  49.                printf ("%c %d,", currchar, scancode);
  50.                if (currchar == 'X')
  51.                     exit (0);
  52.           }
  53.           if ((newstatus = getstatus ()) != oldstatus)
  54.                decode (newstatus);
  55.           oldstatus = newstatus;
  56.      }
  57. }
  58.  
  59. /*Charpresent - check for the presence of a character.  If none present
  60.                 return a 0, otherwise return the character and scan code
  61.                 entered.*/
  62. unsigned charpresent (void)
  63. {
  64.      /*first check for the presence of a character*/
  65.      reg.h.ah = typeahead;
  66.      int86 (0x16, ®, ®);
  67.  
  68.      /*if the zero flag returned is clear...*/
  69.      if (reg.x.flags & 0x0040)
  70.           return 0;
  71.  
  72.      /*...then read the character and scan code*/
  73.      reg.h.ah = readchar;
  74.      int86 (0x16, ®, ®);
  75.      return reg.x.ax;
  76. }
  77.  
  78. /*Getstatus - read the keyboard status*/
  79. unsigned getstatus (void)
  80. {
  81.      reg.h.ah = readstatus;
  82.      int86 (0x16, ®, ®);
  83.      return (unsigned)reg.h.al;
  84. }
  85.  
  86. /*Decode - decode the keyboard status bits*/
  87. unsigned bits [] = {0x80, 0x40, 0x20, 0x10,
  88.                     0x08, 0x04, 0x02, 0x01};
  89. char *meaning[] = {"Insert on  ",
  90.                    "Caps lock  ",
  91.                    "Num lock  ",
  92.                    "Scroll lock  ",
  93.                    "Alt  ",
  94.                    "Control  ",
  95.                    "Left-shift  ",
  96.                    "Right-shift  "};
  97. void decode (bitpattern)
  98.      unsigned bitpattern;
  99. {
  100.      unsigned index;
  101.  
  102.      if (!lineclear)
  103.           printf ("\n");
  104.      for (index = 0; index < 8; index++)
  105.           if (bitpattern & bits [index])
  106.                printf (meaning [index]);
  107.      printf ("\n");
  108.      lineclear = TRUE;
  109. }