-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconsole.c
295 lines (264 loc) · 5.69 KB
/
console.c
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
/* ----------- console.c ---------- */
#include "dflat.h"
/* ----- table of alt keys for finding shortcut keys ----- */
static int altconvert[] = {
ALT_A,ALT_B,ALT_C,ALT_D,ALT_E,ALT_F,ALT_G,ALT_H,
ALT_I,ALT_J,ALT_K,ALT_L,ALT_M,ALT_N,ALT_O,ALT_P,
ALT_Q,ALT_R,ALT_S,ALT_T,ALT_U,ALT_V,ALT_W,ALT_X,
ALT_Y,ALT_Z,ALT_0,ALT_1,ALT_2,ALT_3,ALT_4,ALT_5,
ALT_6,ALT_7,ALT_8,ALT_9
};
unsigned video_mode;
unsigned video_page;
static int near cursorpos[MAXSAVES];
static int near cursorshape[MAXSAVES];
static int cs;
static union REGS regs;
/* ------------- clear the screen -------------- */
void clearscreen(void)
{
int ht = SCREENHEIGHT;
int wd = SCREENWIDTH;
cursor(0, 0);
regs.h.al = ' ';
regs.h.ah = 9;
regs.x.bx = 7;
regs.x.cx = ht * wd;
int86(VIDEO, ®s, ®s);
}
void SwapCursorStack(void)
{
if (cs > 1) {
swap(cursorpos[cs-2], cursorpos[cs-1]);
swap(cursorshape[cs-2], cursorshape[cs-1]);
}
}
#ifdef __SMALLER_C__
#else
#ifndef MSC
#ifndef WATCOM
#define ZEROFLAG 0x40
/* ---- Test for keystroke ---- */
BOOL keyhit(void)
{
_AH = 1;
geninterrupt(KEYBRD);
return (_FLAGS & ZEROFLAG) == 0;
}
#endif
#endif
#endif
/* ---- Read a keystroke ---- */
int getkey(void)
{
int c;
while (keyhit() == FALSE)
;
if (((c = bioskey(0)) & 0xff) == 0)
c = (c >> 8) | 0x1080;
else
c &= 0xff;
return c & 0x10ff;
}
/* ---------- read the keyboard shift status --------- */
int getshift(void)
{
regs.h.ah = 2;
int86(KEYBRD, ®s, ®s);
return regs.h.al;
}
static volatile int far *clk = MK_FP(0x40,0x6c);
/* ------- macro to wait one clock tick -------- */
#define wait() \
{ \
int now = *clk; \
while (now == *clk) \
; \
}
/* -------- sound a buzz tone ---------- */
void beep(void)
{
wait();
outp(0x43, 0xb6); /* program the frequency */
outp(0x42, (int) (COUNT % 256));
outp(0x42, (int) (COUNT / 256));
outp(0x61, inp(0x61) | 3); /* start the sound */
wait();
outp(0x61, inp(0x61) & ~3); /* stop the sound */
}
/* -------- get the video mode and page from BIOS -------- */
void videomode(void)
{
regs.h.ah = 15;
int86(VIDEO, ®s, ®s);
video_mode = regs.h.al;
video_page = regs.x.bx;
video_page &= 0xff00;
video_mode &= 0x7f;
}
/* ------ position the cursor ------ */
void cursor(int x, int y)
{
videomode();
regs.x.dx = ((y << 8) & 0xff00) + x;
regs.h.ah = SETCURSOR;
regs.x.bx = video_page;
int86(VIDEO, ®s, ®s);
}
/* ------ get cursor shape and position ------ */
static void near getcursor(void)
{
videomode();
regs.h.ah = READCURSOR;
regs.x.bx = video_page;
int86(VIDEO, ®s, ®s);
}
/* ------- get the current cursor position ------- */
void curr_cursor(int *x, int *y)
{
getcursor();
*x = regs.h.dl;
*y = regs.h.dh;
}
/* ------ save the current cursor configuration ------ */
void savecursor(void)
{
if (cs < MAXSAVES) {
getcursor();
cursorshape[cs] = regs.x.cx;
cursorpos[cs] = regs.x.dx;
cs++;
}
}
/* ---- restore the saved cursor configuration ---- */
void restorecursor(void)
{
if (cs) {
--cs;
videomode();
regs.x.dx = cursorpos[cs];
regs.h.ah = SETCURSOR;
regs.x.bx = video_page;
int86(VIDEO, ®s, ®s);
set_cursor_type(cursorshape[cs]);
}
}
/* ------ make a normal cursor ------ */
void normalcursor(void)
{
set_cursor_type(0x0607);
}
/* ------ hide the cursor ------ */
void hidecursor(void)
{
getcursor();
regs.h.ch |= HIDECURSOR;
regs.h.ah = SETCURSORTYPE;
int86(VIDEO, ®s, ®s);
}
/* ------ unhide the cursor ------ */
void unhidecursor(void)
{
getcursor();
regs.h.ch &= ~HIDECURSOR;
regs.h.ah = SETCURSORTYPE;
int86(VIDEO, ®s, ®s);
}
/* ---- use BIOS to set the cursor type ---- */
void set_cursor_type(unsigned t)
{
videomode();
regs.h.ah = SETCURSORTYPE;
regs.x.bx = video_page;
regs.x.cx = t;
int86(VIDEO, ®s, ®s);
}
/* ---- test for EGA -------- */
BOOL isEGA(void)
{
if (isVGA())
return FALSE;
regs.h.ah = 0x12;
regs.h.bl = 0x10;
int86(VIDEO, ®s, ®s);
return regs.h.bl != 0x10;
}
/* ---- test for VGA -------- */
BOOL isVGA(void)
{
regs.x.ax = 0x1a00;
int86(VIDEO, ®s, ®s);
return regs.h.al == 0x1a && regs.h.bl > 6;
}
static void Scan350(void)
{
regs.x.ax = 0x1201;
regs.h.bl = 0x30;
int86(VIDEO, ®s, ®s);
regs.h.ah = 0x0f;
int86(VIDEO, ®s, ®s);
regs.h.ah = 0x00;
int86(VIDEO, ®s, ®s);
}
static void Scan400(void)
{
regs.x.ax = 0x1202;
regs.h.bl = 0x30;
int86(VIDEO, ®s, ®s);
regs.h.ah = 0x0f;
int86(VIDEO, ®s, ®s);
regs.h.ah = 0x00;
int86(VIDEO, ®s, ®s);
}
/* ---------- set 25 line mode ------- */
void Set25(void)
{
if (isVGA()) {
Scan400();
regs.x.ax = 0x1114;
}
else
regs.x.ax = 0x1111;
regs.h.bl = 0;
int86(VIDEO, ®s, ®s);
}
/* ---------- set 43 line mode ------- */
void Set43(void)
{
if (isVGA())
Scan350();
regs.x.ax = 0x1112;
regs.h.bl = 0;
int86(VIDEO, ®s, ®s);
}
/* ---------- set 50 line mode ------- */
void Set50(void)
{
if (isVGA())
Scan400();
regs.x.ax = 0x1112;
regs.h.bl = 0;
int86(VIDEO, ®s, ®s);
}
/* ------ convert an Alt+ key to its letter equivalent ----- */
int AltConvert(int c)
{
int i, a = 0;
for (i = 0; i < 36; i++)
if (c == altconvert[i])
break;
if (i < 26)
a = 'a' + i;
else if (i < 36)
a = '0' + i - 26;
return a;
}
#if MSC | WATCOM
int getdisk(void)
{
unsigned int cd;
_dos_getdrive(&cd);
cd -= 1;
return cd;
}
#endif