1998-10-17 13:55:07 +02:00
|
|
|
/*
|
|
|
|
* DOS interrupt 16h handler
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "module.h"
|
1998-12-03 17:29:56 +01:00
|
|
|
#include "console.h"
|
1999-02-24 14:05:13 +01:00
|
|
|
#include "wincon.h"
|
|
|
|
#include "debug.h"
|
1999-03-25 17:41:35 +01:00
|
|
|
#include "winuser.h"
|
1999-05-22 13:27:40 +02:00
|
|
|
#include "miscemu.h"
|
1998-10-17 13:55:07 +02:00
|
|
|
|
1999-04-19 16:56:29 +02:00
|
|
|
DEFAULT_DEBUG_CHANNEL(int16)
|
|
|
|
|
1998-10-17 13:55:07 +02:00
|
|
|
/**********************************************************************
|
|
|
|
* INT_Int16Handler
|
|
|
|
*
|
|
|
|
* Handler for int 16h (keyboard)
|
|
|
|
*
|
|
|
|
* NOTE:
|
|
|
|
*
|
|
|
|
* KEYB.COM (DOS >3.2) adds functions to this interrupt, they are
|
|
|
|
* not currently listed here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WINAPI INT_Int16Handler( CONTEXT *context )
|
|
|
|
{
|
|
|
|
switch AH_reg(context) {
|
|
|
|
|
|
|
|
case 0x00: /* Get Keystroke */
|
1998-12-03 17:29:56 +01:00
|
|
|
/* Returns: AH = Scan code
|
|
|
|
AL = ASCII character */
|
|
|
|
TRACE(int16, "Get Keystroke\n");
|
|
|
|
CONSOLE_GetKeystroke(&AH_reg(context), &AL_reg(context));
|
1998-10-17 13:55:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x01: /* Check for Keystroke */
|
1998-12-03 17:29:56 +01:00
|
|
|
/* Returns: ZF set if no keystroke */
|
|
|
|
/* AH = Scan code */
|
|
|
|
/* AL = ASCII character */
|
|
|
|
TRACE(int16, "Check for Keystroke\n");
|
|
|
|
if (!CONSOLE_CheckForKeystroke(&AH_reg(context), &AL_reg(context)))
|
|
|
|
{
|
|
|
|
SET_ZFLAG(context);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RESET_ZFLAG(context);
|
|
|
|
}
|
1998-10-17 13:55:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x02: /* Get Shift Flags */
|
1999-03-25 17:41:35 +01:00
|
|
|
AL_reg(context) = 0;
|
|
|
|
|
|
|
|
if (GetAsyncKeyState(VK_RSHIFT))
|
|
|
|
AL_reg(context) |= 0x01;
|
|
|
|
if (GetAsyncKeyState(VK_LSHIFT))
|
|
|
|
AL_reg(context) |= 0x02;
|
|
|
|
if (GetAsyncKeyState(VK_LCONTROL) || GetAsyncKeyState(VK_RCONTROL))
|
|
|
|
AL_reg(context) |= 0x04;
|
|
|
|
if (GetAsyncKeyState(VK_LMENU) || GetAsyncKeyState(VK_RMENU))
|
|
|
|
AL_reg(context) |= 0x08;
|
|
|
|
if (GetAsyncKeyState(VK_SCROLL))
|
|
|
|
AL_reg(context) |= 0x10;
|
|
|
|
if (GetAsyncKeyState(VK_NUMLOCK))
|
|
|
|
AL_reg(context) |= 0x20;
|
|
|
|
if (GetAsyncKeyState(VK_CAPITAL))
|
|
|
|
AL_reg(context) |= 0x40;
|
|
|
|
if (GetAsyncKeyState(VK_INSERT))
|
|
|
|
AL_reg(context) |= 0x80;
|
|
|
|
TRACE(int16, "Get Shift Flags: returning 0x%02x\n", AL_reg(context));
|
1998-10-17 13:55:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x03: /* Set Typematic Rate and Delay */
|
|
|
|
FIXME(int16, "Set Typematic Rate and Delay - Not Supported\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x09: /* Get Keyboard Functionality */
|
|
|
|
FIXME(int16, "Get Keyboard Functionality - Not Supported\n");
|
|
|
|
/* As a temporary measure, say that "nothing" is supported... */
|
|
|
|
AL_reg(context) = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0a: /* Get Keyboard ID */
|
|
|
|
FIXME(int16, "Get Keyboard ID - Not Supported\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x10: /* Get Enhanced Keystroke */
|
1999-03-17 16:29:06 +01:00
|
|
|
TRACE(int16, "Get Enhanced Keystroke - Partially supported\n");
|
|
|
|
/* Returns: AH = Scan code
|
|
|
|
AL = ASCII character */
|
|
|
|
CONSOLE_GetKeystroke(&AH_reg(context), &AL_reg(context));
|
1998-10-17 13:55:07 +02:00
|
|
|
break;
|
1999-03-17 16:29:06 +01:00
|
|
|
|
1998-10-17 13:55:07 +02:00
|
|
|
|
|
|
|
case 0x11: /* Check for Enhanced Keystroke */
|
1999-03-17 16:29:06 +01:00
|
|
|
/* Returns: ZF set if no keystroke */
|
|
|
|
/* AH = Scan code */
|
|
|
|
/* AL = ASCII character */
|
|
|
|
TRACE(int16, "Check for Enhanced Keystroke - Partially supported\n");
|
|
|
|
if (!CONSOLE_CheckForKeystroke(&AH_reg(context), &AL_reg(context)))
|
|
|
|
{
|
|
|
|
SET_ZFLAG(context);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RESET_ZFLAG(context);
|
|
|
|
}
|
1998-10-17 13:55:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x12: /* Get Extended Shift States */
|
|
|
|
FIXME(int16, "Get Extended Shift States - Not Supported\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME(int16, "Unknown INT 16 function - 0x%x\n", AH_reg(context));
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-22 13:27:40 +02:00
|
|
|
int WINAPI INT_Int16AddChar(BYTE ascii,BYTE scan)
|
|
|
|
{
|
|
|
|
BIOSDATA *data = DOSMEM_BiosData();
|
|
|
|
WORD CurOfs = data->FirstKbdCharPtr;
|
|
|
|
WORD NextOfs = CurOfs + 2;
|
|
|
|
|
|
|
|
if (NextOfs >= data->KbdBufferEnd) NextOfs = data->KbdBufferStart;
|
|
|
|
/* check if buffer is full */
|
|
|
|
if (NextOfs == data->NextKbdCharPtr) return 0;
|
|
|
|
|
|
|
|
/* okay, insert character in ring buffer */
|
|
|
|
((BYTE*)data)[CurOfs] = ascii;
|
|
|
|
((BYTE*)data)[CurOfs+1] = scan;
|
|
|
|
|
|
|
|
data->FirstKbdCharPtr = NextOfs;
|
|
|
|
return 1;
|
|
|
|
}
|