home *** CD-ROM | disk | FTP | other *** search
- /*Program 6_4 - Read the Keyboard Status
- by Stephen R. Davis, 1987
-
- Read the status of the keyboard in a continual loop. If the
- status changes or a character appears, display this on the screen.
- (Print both the character and its scan code.)
- */
-
- #include <stdio.h>
- #include <dos.h>
- #include <process.h>
- #define TRUE 1
- #define FALSE 0
-
- /*define the keyboard BIOS subfunctions*/
- #define readchar 0x00
- #define typeahead 0x01
- #define readstatus 0x02
-
- /*prototype definitions*/
- void decode (unsigned);
- unsigned charpresent (void);
- unsigned getstatus (void);
- int main (void);
-
- /*data definition*/
- union REGS reg;
- char lineclear;
-
- /*Main - constantly display keyboard status*/
- main()
- {
- unsigned oldstatus, newstatus, charandscan;
- char currchar, scancode;
-
- printf ("\nDepress shift, control, etc. keys in any\n"
- "and all combinations. Program prints when\n"
- "keyboard status changes or character appears.\n"
- "Program prints both ASCII and scan code. To\n"
- "terminate enter capital X\n");
-
- oldstatus = 0;
- lineclear = FALSE;
- for (;;) {
- if (charandscan = charpresent ()) {
- lineclear = FALSE;
- currchar = (char) (charandscan & 0x00ff);
- scancode = (char) ((charandscan & 0xff00) >> 8);
- printf ("%c %d,", currchar, scancode);
- if (currchar == 'X')
- exit (0);
- }
- if ((newstatus = getstatus ()) != oldstatus)
- decode (newstatus);
- oldstatus = newstatus;
- }
- }
-
- /*Charpresent - check for the presence of a character. If none present
- return a 0, otherwise return the character and scan code
- entered.*/
- unsigned charpresent (void)
- {
- /*first check for the presence of a character*/
- reg.h.ah = typeahead;
- int86 (0x16, ®, ®);
-
- /*if the zero flag returned is clear...*/
- if (reg.x.flags & 0x0040)
- return 0;
-
- /*...then read the character and scan code*/
- reg.h.ah = readchar;
- int86 (0x16, ®, ®);
- return reg.x.ax;
- }
-
- /*Getstatus - read the keyboard status*/
- unsigned getstatus (void)
- {
- reg.h.ah = readstatus;
- int86 (0x16, ®, ®);
- return (unsigned)reg.h.al;
- }
-
- /*Decode - decode the keyboard status bits*/
- unsigned bits [] = {0x80, 0x40, 0x20, 0x10,
- 0x08, 0x04, 0x02, 0x01};
- char *meaning[] = {"Insert on ",
- "Caps lock ",
- "Num lock ",
- "Scroll lock ",
- "Alt ",
- "Control ",
- "Left-shift ",
- "Right-shift "};
- void decode (bitpattern)
- unsigned bitpattern;
- {
- unsigned index;
-
- if (!lineclear)
- printf ("\n");
- for (index = 0; index < 8; index++)
- if (bitpattern & bits [index])
- printf (meaning [index]);
- printf ("\n");
- lineclear = TRUE;
- }