1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
|
/* SCCS Id: @(#)msdos.c 3.4 2000/07/30 */
/* Copyright (c) NetHack PC Development Team 1990, 1991, 1992, 1993, 1994 */
/* NetHack may be freely redistributed. See license for details. */
/*
* MSDOS system functions.
* Many thanks to Don Kneller who originated the DOS port and
* contributed much to the cause.
*/
#define NEED_VARARGS
#include "hack.h"
#ifdef MSDOS
#include "pcvideo.h"
#include <dos.h>
#include <ctype.h>
/*
* MS-DOS functions
*/
#define DIRECT_INPUT 0x07 /* Unfiltered Character Input Without Echo */
#define FATINFO 0x1B /* Get Default Drive Data */
/* MS-DOS 2.0+: */
#define GETDTA 0x2F /* Get DTA Address */
#define FREESPACE 0x36 /* Get Drive Allocation Info */
#define GETSWITCHAR 0x3700 /* Get Switch Character */
#define FINDFIRST 0x4E /* Find First File */
#define FINDNEXT 0x4F /* Find Next File */
#define SETFILETIME 0x5701 /* Set File Date & Time */
/*
* BIOS interrupts
*/
#ifdef PC9800
#define KEYBRD_BIOS 0x18
#else
#define KEYBRD_BIOS 0x16
#endif
/*
* Keyboard BIOS functions
*/
#define READCHAR 0x00 /* Read Character from Keyboard */
#define GETKEYFLAGS 0x02 /* Get Keyboard Flags */
/*#define KEY_DEBUG */ /* print values of unexpected key codes - devel*/
void FDECL(get_cursor,(int *, int *));
#ifdef OVL0
/* direct bios calls are used only when iflags.BIOS is set */
static char NDECL(DOSgetch);
static char NDECL(BIOSgetch);
#ifndef __GO32__
static char * NDECL(getdta);
#endif
static unsigned int FDECL(dos_ioctl, (int,int,unsigned));
#ifdef USE_TILES
extern boolean FDECL(pckeys,(unsigned char, unsigned char)); /* pckeys.c */
#endif
int
tgetch()
{
char ch;
/* BIOSgetch can use the numeric key pad on IBM compatibles. */
# ifdef SIMULATE_CURSOR
if (iflags.grmode && cursor_flag) DrawCursor();
# endif
if (iflags.BIOS)
ch = BIOSgetch();
else
ch = DOSgetch();
# ifdef SIMULATE_CURSOR
if (iflags.grmode && cursor_flag) HideCursor();
# endif
return ((ch == '\r') ? '\n' : ch);
}
/*
* Keyboard translation tables.
*/
#ifdef PC9800
#define KEYPADLO 0x38
#define KEYPADHI 0x50
#else
#define KEYPADLO 0x47
#define KEYPADHI 0x53
#endif
#define PADKEYS (KEYPADHI - KEYPADLO + 1)
#define iskeypad(x) (KEYPADLO <= (x) && (x) <= KEYPADHI)
/*
* Keypad keys are translated to the normal values below.
* When iflags.BIOS is active, shifted keypad keys are translated to the
* shift values below.
*/
static const struct pad {
char normal, shift, cntrl;
} keypad[PADKEYS] = {
#ifdef PC9800
{'>', '>', '>'}, /* Ins */
{'<', '<', '<'}, /* Del */
{'k', 'K', C('k')}, /* Up */
{'h', 'H', C('h')}, /* Left */
{'l', 'L', C('l')}, /* Right */
{'j', 'J', C('j')}, /* Down */
{ 0 , 0 , 0 }, /* HomeClr */
{'?', '?', '?' }, /* Help */
{'m', C('p'), C('p')}, /* - */
{'/', '/', '/'}, /* / */
{'y', 'Y', C('y')}, /* 7 */
{'k', 'K', C('k')}, /* 8 */
{'u', 'U', C('u')}, /* 9 */
{'*', '*', '*'}, /* * */
{'h', 'H', C('h')}, /* 4 */
{'g', 'g', 'g'}, /* 5 */
{'l', 'L', C('l')}, /* 6 */
{'p', 'P', C('p')}, /* + */
{'b', 'B', C('b')}, /* 1 */
{'j', 'J', C('j')}, /* 2 */
{'n', 'N', C('n')}, /* 3 */
{'=', '=', '='}, /* = */
{'i', 'I', C('i')}, /* 0 */
{',', ':', ':'}, /* , */
{'.', '.', '.'} /* . */
#else
{'y', 'Y', C('y')}, /* 7 */
{'k', 'K', C('k')}, /* 8 */
{'u', 'U', C('u')}, /* 9 */
{'m', C('p'), C('p')}, /* - */
{'h', 'H', C('h')}, /* 4 */
{'g', 'g', 'g'}, /* 5 */
{'l', 'L', C('l')}, /* 6 */
{'p', 'P', C('p')}, /* + */
{'b', 'B', C('b')}, /* 1 */
{'j', 'J', C('j')}, /* 2 */
{'n', 'N', C('n')}, /* 3 */
{'i', 'I', C('i')}, /* Ins */
{'.', ':', ':'} /* Del */
#endif
}, numpad[PADKEYS] = {
#ifdef PC9800
{'>', '>', '>'}, /* Ins */
{'<', '<', '<'}, /* Del */
{'8', M('8'), '8'}, /* Up */
{'4', M('4'), '4'}, /* Left */
{'6', M('6'), '6'}, /* Right */
{'2', M('2'), '2'}, /* Down */
{ 0 , 0 , 0 }, /* HomeClr */
{'?', '?', '?'}, /* Help */
{'m', C('p'), C('p')}, /* - */
{'/', '/', '/'}, /* / */
{'7', M('7'), '7'}, /* 7 */
{'8', M('8'), '8'}, /* 8 */
{'9', M('9'), '9'}, /* 9 */
{'*', '*', '*'}, /* * */
{'4', M('4'), '4'}, /* 4 */
{'g', 'G', 'g'}, /* 5 */
{'6', M('6'), '6'}, /* 6 */
{'p', 'P', C('p')}, /* + */
{'1', M('1'), '1'}, /* 1 */
{'2', M('2'), '2'}, /* 2 */
{'3', M('3'), '3'}, /* 3 */
{'=', '=', '='}, /* = */
{'i', 'I', C('i')}, /* 0 */
{',', ':', ':'}, /* , */
{'.', '.', '.'} /* . */
#else
{'7', M('7'), '7'}, /* 7 */
{'8', M('8'), '8'}, /* 8 */
{'9', M('9'), '9'}, /* 9 */
{'m', C('p'), C('p')}, /* - */
{'4', M('4'), '4'}, /* 4 */
{'5', M('5'), '5'}, /* 5 */
{'6', M('6'), '6'}, /* 6 */
{'p', 'P', C('p')}, /* + */
{'1', M('1'), '1'}, /* 1 */
{'2', M('2'), '2'}, /* 2 */
{'3', M('3'), '3'}, /* 3 */
{'0', M('0'), '0'}, /* Ins */
{'.', ':', ':'} /* Del */
#endif
};
/*
* Unlike Ctrl-letter, the Alt-letter keystrokes have no specific ASCII
* meaning unless assigned one by a keyboard conversion table, so the
* keyboard BIOS normally does not return a character code when Alt-letter
* is pressed. So, to interpret unassigned Alt-letters, we must use a
* scan code table to translate the scan code into a letter, then set the
* "meta" bit for it. -3.
*/
#ifdef PC9800
#define SCANLO 0x5
#else
#define SCANLO 0x10
#endif /* PC9800 */
static const char scanmap[] = { /* ... */
#ifdef PC9800
0, 0, 0, 0, 0, 0, '-','^','\\','\b',
'\t','q','w','e','r','t','y','u','i','o','p','@','[', '\n',
'a','s','d','f','g','h','j','k','l',';',':', ']',
'z','x','c','v','b','N','m',',','.','/' /* ... */
#else
'q','w','e','r','t','y','u','i','o','p','[',']', '\n',
0, 'a','s','d','f','g','h','j','k','l',';','\'', '`',
0, '\\', 'z','x','c','v','b','n','m',',','.','?' /* ... */
#endif /* PC9800 */
};
#define inmap(x) (SCANLO <= (x) && (x) < SCANLO + SIZE(scanmap))
#ifdef NEW_ALT
#define NUMERIC_SCANLO 0x78
static const char numeric_scanmap[] = { /* ... */
'1','2','3','4','5','6','7','8','9','0','-','='
};
# define in_numericmap(x) (NUMERIC_SCANLO <= (x) && \
(x) < NUMERIC_SCANLO + SIZE(numeric_scanmap))
# endif
/*
* BIOSgetch gets keys directly with a BIOS call.
*/
#ifdef PC9800
#define SHIFT 0x1
#define KANA 0x4
#define GRPH 0x8
#define CTRL 0x10
#else
#define SHIFT (0x1 | 0x2)
#define CTRL 0x4
#define ALT 0x8
#endif /* PC9800 */
static char
BIOSgetch()
{
unsigned char scan, shift, ch=0;
const struct pad *kpad;
union REGS regs;
do {
/* Get scan code.
*/
regs.h.ah = READCHAR;
int86(KEYBRD_BIOS, ®s, ®s);
ch = regs.h.al;
scan = regs.h.ah;
/* Get shift status.
*/
regs.h.ah = GETKEYFLAGS;
int86(KEYBRD_BIOS, ®s, ®s);
shift = regs.h.al;
/* Translate keypad keys */
if (iskeypad(scan)) {
kpad = iflags.num_pad ? numpad : keypad;
if (shift & SHIFT)
ch = kpad[scan - KEYPADLO].shift;
else if (shift & CTRL)
ch = kpad[scan - KEYPADLO].cntrl;
else
ch = kpad[scan - KEYPADLO].normal;
}
#ifdef USE_TILES
/* Check for special interface manipulation keys */
if (pckeys(scan, shift)) {
ch = 0xFF;
continue;
}
#endif
/* Translate unassigned Alt-letters */
#ifdef PC9800
if (shift & KANA)
return 0;
if ((shift & GRPH) && (ch >= 0x80)) {
#else
if ((shift & ALT) && !ch) {
#endif
#if 0
pline("Scan code: %d 0x%03X", scan, scan);
#endif
if (inmap(scan))
ch = scanmap[scan - SCANLO];
#ifdef NEW_ALT
else if (in_numericmap(scan))
ch = numeric_scanmap[scan - NUMERIC_SCANLO];
#endif
return (isprint(ch) ? M(ch) : ch);
}
} while (ch == 0xFF);
return ch;
}
static char
DOSgetch()
{
union REGS regs;
char ch;
struct pad (*kpad)[PADKEYS];
regs.h.ah = DIRECT_INPUT;
intdos(®s, ®s);
ch = regs.h.al;
#ifdef PC9800
if (ch < 0) /* KANA letters and GRPH-shifted letters(?) */
ch = 0; /* munch it */
#else
/*
* The extended codes for Alt-shifted letters, and unshifted keypad
* and function keys, correspond to the scan codes. So we can still
* translate the unshifted cursor keys and Alt-letters. -3.
*/
if (ch == 0) { /* an extended key */
regs.h.ah = DIRECT_INPUT;
intdos(®s, ®s); /* get the extended key code */
ch = regs.h.al;
if (iskeypad(ch)) { /* unshifted keypad keys */
kpad = (void *)(iflags.num_pad ? numpad : keypad);
ch = (*kpad)[ch - KEYPADLO].normal;
} else if (inmap(ch)) { /* Alt-letters */
ch = scanmap[ch - SCANLO];
if (isprint(ch)) ch = M(ch);
} else ch = 0; /* munch it */
}
#endif
return (ch);
}
char
switchar()
{
union REGS regs;
regs.x.ax = GETSWITCHAR;
intdos(®s, ®s);
return regs.h.dl;
}
long
freediskspace(path)
char *path;
{
union REGS regs;
regs.h.ah = FREESPACE;
if (path[0] && path[1] == ':')
regs.h.dl = (toupper(path[0]) - 'A') + 1;
else
regs.h.dl = 0;
intdos(®s, ®s);
if (regs.x.ax == 0xFFFF)
return -1L; /* bad drive number */
else
return ((long) regs.x.bx * regs.x.cx * regs.x.ax);
}
#ifndef __GO32__
/*
* Functions to get filenames using wildcards
*/
int
findfirst_file(path)
char *path;
{
union REGS regs;
struct SREGS sregs;
regs.h.ah = FINDFIRST;
regs.x.cx = 0; /* attribute: normal files */
regs.x.dx = FP_OFF(path);
sregs.ds = FP_SEG(path);
intdosx(®s, ®s, &sregs);
return !regs.x.cflag;
}
int
findnext_file() {
union REGS regs;
regs.h.ah = FINDNEXT;
intdos(®s, ®s);
return !regs.x.cflag;
}
char *
foundfile_buffer()
{
return (getdta() + 30);
}
/* Get disk transfer area */
static char *
getdta()
{
union REGS regs;
struct SREGS sregs;
char *ret;
regs.h.ah = GETDTA;
intdosx(®s, ®s, &sregs);
# ifdef MK_FP
ret = (char *)MK_FP(sregs.es, regs.x.bx);
# else
FP_OFF(ret) = regs.x.bx;
FP_SEG(ret) = sregs.es;
# endif
return ret;
}
long
filesize_nh(file)
char *file;
{
char *dta;
if (findfirst_file(file)) {
dta = getdta();
return (* (long *) (dta + 26));
} else
return -1L;
}
#endif /* __GO32__ */
/*
* Chdrive() changes the default drive.
*/
void
chdrive(str)
char *str;
{
# define SELECTDISK 0x0E
char *ptr;
union REGS inregs;
char drive;
if ((ptr = index(str, ':')) != (char *)0) {
drive = toupper(*(ptr - 1));
inregs.h.ah = SELECTDISK;
inregs.h.dl = drive - 'A';
intdos(&inregs, &inregs);
}
return;
}
/* Use the IOCTL DOS function call to change stdin and stdout to raw
* mode. For stdin, this prevents MSDOS from trapping ^P, thus
* freeing us of ^P toggling 'echo to printer'.
* Thanks to Mark Zbikowski (markz@microsoft.UUCP).
*/
#define DEVICE 0x80
#define RAW 0x20
#define IOCTL 0x44
#define STDIN fileno(stdin)
#define STDOUT fileno(stdout)
#define GETBITS 0
#define SETBITS 1
static unsigned int old_stdin, old_stdout;
void
disable_ctrlP()
{
if (!iflags.rawio) return;
old_stdin = dos_ioctl(STDIN, GETBITS, 0);
old_stdout = dos_ioctl(STDOUT, GETBITS, 0);
if (old_stdin & DEVICE)
dos_ioctl(STDIN, SETBITS, old_stdin | RAW);
if (old_stdout & DEVICE)
dos_ioctl(STDOUT, SETBITS, old_stdout | RAW);
return;
}
void
enable_ctrlP()
{
if (!iflags.rawio) return;
if (old_stdin)
(void) dos_ioctl(STDIN, SETBITS, old_stdin);
if (old_stdout)
(void) dos_ioctl(STDOUT, SETBITS, old_stdout);
return;
}
static unsigned int
dos_ioctl(handle, mode, setvalue)
int handle, mode;
unsigned setvalue;
{
union REGS regs;
regs.h.ah = IOCTL;
regs.h.al = mode;
regs.x.bx = handle;
regs.h.dl = setvalue;
regs.h.dh = 0; /* Zero out dh */
intdos(®s, ®s);
return (regs.x.dx);
}
# endif /* OVLB */
#endif /* MSDOS */
|