Look up driver info in the registry as well as in system.ini.
[wine] / dlls / winedos / int16.c
1 /*
2  * DOS interrupt 16h handler
3  *
4  * Copyright 1998 Joseph Pranevich
5  * Copyright 1999 Ove Kåven
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include "config.h"
23
24 #include <stdlib.h>
25 #include <string.h>
26 #ifdef HAVE_UNISTD_H
27 # include <unistd.h>
28 #endif
29
30 #include "dosexe.h"
31 #include "wincon.h"
32 #include "wine/debug.h"
33 #include "windef.h"
34 #include "wingdi.h"
35 #include "winuser.h"
36 #include "miscemu.h"
37
38 WINE_DEFAULT_DEBUG_CHANNEL(int);
39
40 /**********************************************************************
41  *          DOSVM_Int16Handler (WINEDOS16.122)
42  *
43  * Handler for int 16h (keyboard)
44  *
45  * NOTE:
46  *
47  *    KEYB.COM (DOS >3.2) adds functions to this interrupt, they are
48  *    not currently listed here.
49  */
50
51 void WINAPI DOSVM_Int16Handler( CONTEXT86 *context )
52 {
53    BIOSDATA *data = NULL;
54    BYTE ascii, scan;
55
56    switch AH_reg(context) {
57
58    case 0x00: /* Get Keystroke */
59       /* Returns: AH = Scan code
60                   AL = ASCII character */
61       TRACE("Get Keystroke\n");
62       DOSVM_Int16ReadChar(&ascii, &scan, context);
63       SET_AL( context, ascii );
64       SET_AH( context, scan );
65       break;
66
67    case 0x01: /* Check for Keystroke */
68       /* Returns: ZF set if no keystroke */
69       /*          AH = Scan code */
70       /*          AL = ASCII character */
71       TRACE("Check for Keystroke\n");
72       if (!DOSVM_Int16ReadChar(&ascii, &scan, NULL))
73       {
74           SET_ZFLAG(context);
75       }
76       else
77       {
78           SET_AL( context, ascii );
79           SET_AH( context, scan );
80           RESET_ZFLAG(context);
81       }
82       /* don't miss the opportunity to break some tight timing loop in DOS
83        * programs causing 100% CPU usage (by doing a Sleep here) */
84       Sleep(5);
85       break;
86
87    case 0x02: /* Get Shift Flags */
88
89       /* read value from BIOS data segment's keyboard status flags field */
90       data = DOSVM_BiosData();
91       SET_AL( context, data->KbdFlags1 );
92
93       TRACE("Get Shift Flags: returning 0x%02x\n", AL_reg(context));
94       break;
95
96    case 0x03: /* Set Typematic Rate and Delay */
97       FIXME("Set Typematic Rate and Delay - Not Supported\n");
98       break;
99       
100    case 0x05:/*simulate  Keystroke*/ 
101       FIXME("Simulating a keystroke is not supported yet\n");
102       break;
103
104    case 0x09: /* Get Keyboard Functionality */
105       FIXME("Get Keyboard Functionality - Not Supported\n");
106       /* As a temporary measure, say that "nothing" is supported... */
107       SET_AL( context, 0 );
108       break;
109
110    case 0x0a: /* Get Keyboard ID */
111       FIXME("Get Keyboard ID - Not Supported\n");
112       break;
113
114    case 0x10: /* Get Enhanced Keystroke */
115       TRACE("Get Enhanced Keystroke - Partially supported\n");
116       /* Returns: AH = Scan code
117                   AL = ASCII character */
118       DOSVM_Int16ReadChar(&ascii, &scan, context);
119       SET_AL( context, ascii );
120       SET_AH( context, scan );
121       break;
122
123
124    case 0x11: /* Check for Enhanced Keystroke */
125       /* Returns: ZF set if no keystroke */
126       /*          AH = Scan code */
127       /*          AL = ASCII character */
128       TRACE("Check for Enhanced Keystroke - Partially supported\n");
129       if (!DOSVM_Int16ReadChar(&ascii, &scan, NULL))
130       {
131           SET_ZFLAG(context);
132       }
133       else
134       {
135           SET_AL( context, ascii );
136           SET_AH( context, scan );
137           RESET_ZFLAG(context);
138       }
139       break;
140
141    case 0x12: /* Get Extended Shift States */
142       FIXME("Get Extended Shift States - Not Supported\n");
143       break;
144
145    default:
146       FIXME("Unknown INT 16 function - 0x%x\n", AH_reg(context));
147       break;
148
149    }
150 }
151
152 /**********************************************************************
153  *          DOSVM_Int16ReadChar
154  *
155  * Either peek into keyboard buffer or wait for next keystroke.
156  *
157  * If waitctx is NULL, return TRUE if buffer had keystrokes and
158  * FALSE if buffer is empty. Returned keystroke will be left into buffer.
159  * 
160  * If waitctx is non-NULL, wait until keystrokes are available.
161  * Return value will always be TRUE and returned keystroke will be
162  * removed from buffer.
163  */
164 int WINAPI DOSVM_Int16ReadChar(BYTE *ascii, BYTE *scan, CONTEXT86 *waitctx)
165 {
166     BIOSDATA *data = DOSVM_BiosData();
167     WORD CurOfs = data->NextKbdCharPtr;
168
169     /* check if there's data in buffer */
170     if (waitctx)
171     {
172         /* wait until input is available... */
173         while (CurOfs == data->FirstKbdCharPtr)
174             DOSVM_Wait( waitctx );
175     }
176     else
177     {
178         if (CurOfs == data->FirstKbdCharPtr)
179             return FALSE;
180     }
181
182     /* read from keyboard queue */
183     TRACE( "(%p,%p,%p) -> %02x %02x\n", ascii, scan, waitctx,
184            ((BYTE*)data)[CurOfs], ((BYTE*)data)[CurOfs+1] );
185
186     if (ascii) *ascii = ((BYTE*)data)[CurOfs];
187     if (scan) *scan = ((BYTE*)data)[CurOfs+1];
188
189     if (waitctx) 
190     {
191         CurOfs += 2;
192         if (CurOfs >= data->KbdBufferEnd) CurOfs = data->KbdBufferStart;
193         data->NextKbdCharPtr = CurOfs;
194     }
195
196     return TRUE;
197 }
198
199 int WINAPI DOSVM_Int16AddChar(BYTE ascii,BYTE scan)
200 {
201   BIOSDATA *data = DOSVM_BiosData();
202   WORD CurOfs = data->FirstKbdCharPtr;
203   WORD NextOfs = CurOfs + 2;
204
205   TRACE("(%02x,%02x)\n",ascii,scan);
206   if (NextOfs >= data->KbdBufferEnd) NextOfs = data->KbdBufferStart;
207   /* check if buffer is full */
208   if (NextOfs == data->NextKbdCharPtr) return 0;
209
210   /* okay, insert character in ring buffer */
211   ((BYTE*)data)[CurOfs] = ascii;
212   ((BYTE*)data)[CurOfs+1] = scan;
213
214   data->FirstKbdCharPtr = NextOfs;
215   return 1;
216 }