Mercurial > emacs
annotate src/msdos.c @ 13221:994440ef957f
(Finsert_file_contents): If replacing,
set selected_window->start_at_line_beg.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 14 Oct 1995 20:42:26 +0000 |
parents | b0de215331ba |
children | 712386e1abe0 |
rev | line source |
---|---|
7666
13a977e6777a
(dos_rawgetc): Doc fix. Make C-, S-, and M- modifiers
Richard M. Stallman <rms@gnu.org>
parents:
7523
diff
changeset
|
1 /* MS-DOS specific C utilities. |
13a977e6777a
(dos_rawgetc): Doc fix. Make C-, S-, and M- modifiers
Richard M. Stallman <rms@gnu.org>
parents:
7523
diff
changeset
|
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc. |
5503 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
10504 | 8 the Free Software Foundation; either version 2, or (at your option) |
5503 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
7666
13a977e6777a
(dos_rawgetc): Doc fix. Make C-, S-, and M- modifiers
Richard M. Stallman <rms@gnu.org>
parents:
7523
diff
changeset
|
20 /* Contributed by Morten Welinder */ |
13179 | 21 /* New display, keyboard, and mouse control by Kim F. Storm */ |
7666
13a977e6777a
(dos_rawgetc): Doc fix. Make C-, S-, and M- modifiers
Richard M. Stallman <rms@gnu.org>
parents:
7523
diff
changeset
|
22 |
5503 | 23 /* Note: some of the stuff here was taken from end of sysdep.c in demacs. */ |
24 | |
5980 | 25 #include <config.h> |
5503 | 26 |
27 #ifdef MSDOS | |
28 #include "lisp.h" | |
29 #include <stdio.h> | |
30 #include <stdlib.h> | |
31 #include <sys/param.h> | |
32 #include <sys/time.h> | |
33 #include <dos.h> | |
34 #include "dosfns.h" | |
35 #include "msdos.h" | |
36 #include "systime.h" | |
37 #include "termhooks.h" | |
9572 | 38 #include "dispextern.h" |
39 #include "termopts.h" | |
5503 | 40 #include "frame.h" |
9572 | 41 #include "window.h" |
5503 | 42 #include <go32.h> |
43 #include <pc.h> | |
44 #include <ctype.h> | |
45 /* #include <process.h> */ | |
46 /* Damn that local process.h! Instead we can define P_WAIT ourselves. */ | |
47 #define P_WAIT 1 | |
48 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
49 |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
50 static unsigned long |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
51 event_timestamp () |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
52 { |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
53 struct time t; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
54 unsigned long s; |
13179 | 55 |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
56 gettime (&t); |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
57 s = t.ti_min; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
58 s *= 60; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
59 s += t.ti_sec; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
60 s *= 1000; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
61 s += t.ti_hund * 10; |
13179 | 62 |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
63 return s; |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
64 } |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
65 |
13179 | 66 |
67 /* ------------------------ Mouse control --------------------------- | |
68 * | |
69 * Coordinates are in screen positions and zero based. | |
70 * Mouse buttons are numbered from left to right and also zero based. | |
71 */ | |
5503 | 72 |
13179 | 73 int have_mouse; /* 0: no, 1: enabled, -1: disabled */ |
74 static int mouse_visible; | |
5503 | 75 |
13179 | 76 static int mouse_last_x; |
77 static int mouse_last_y; | |
5503 | 78 |
13179 | 79 static int mouse_button_translate[NUM_MOUSE_BUTTONS]; |
80 static int mouse_button_count; | |
5503 | 81 |
13179 | 82 void |
83 mouse_on () | |
84 { | |
85 union REGS regs; | |
5503 | 86 |
13179 | 87 if (have_mouse > 0 && !mouse_visible) |
88 { | |
89 if (termscript) | |
90 fprintf (termscript, "<M_ON>"); | |
91 regs.x.ax = 0x0001; | |
92 int86 (0x33, ®s, ®s); | |
93 mouse_visible = 1; | |
5503 | 94 } |
95 } | |
96 | |
13179 | 97 void |
98 mouse_off () | |
5503 | 99 { |
13179 | 100 union REGS regs; |
5503 | 101 |
13179 | 102 if (have_mouse > 0 && mouse_visible) |
5503 | 103 { |
13179 | 104 if (termscript) |
105 fprintf (termscript, "<M_OFF>"); | |
106 regs.x.ax = 0x0002; | |
107 int86 (0x33, ®s, ®s); | |
108 mouse_visible = 0; | |
5503 | 109 } |
110 } | |
111 | |
112 void | |
13179 | 113 mouse_moveto (x, y) |
114 int x, y; | |
5503 | 115 { |
13179 | 116 union REGS regs; |
117 | |
118 if (termscript) | |
119 fprintf (termscript, "<M_XY=%dx%d>", x, y); | |
120 regs.x.ax = 0x0004; | |
121 mouse_last_x = regs.x.cx = x * 8; | |
122 mouse_last_y = regs.x.dx = y * 8; | |
123 int86 (0x33, ®s, ®s); | |
5503 | 124 } |
125 | |
13179 | 126 static int |
127 mouse_pressed (b, xp, yp) | |
128 int b, *xp, *yp; | |
129 { | |
130 union REGS regs; | |
131 | |
132 if (b >= mouse_button_count) | |
133 return 0; | |
134 regs.x.ax = 0x0005; | |
135 regs.x.bx = mouse_button_translate[b]; | |
136 int86 (0x33, ®s, ®s); | |
137 if (regs.x.bx) | |
138 *xp = regs.x.cx / 8, *yp = regs.x.dx / 8; | |
139 return (regs.x.bx != 0); | |
140 } | |
141 | |
142 static int | |
143 mouse_released (b, xp, yp) | |
144 int b, *xp, *yp; | |
145 { | |
146 union REGS regs; | |
147 | |
148 if (b >= mouse_button_count) | |
149 return 0; | |
150 regs.x.ax = 0x0006; | |
151 regs.x.bx = mouse_button_translate[b]; | |
152 int86 (0x33, ®s, ®s); | |
153 if (regs.x.bx) | |
154 *xp = regs.x.cx / 8, *yp = regs.x.dx / 8; | |
155 return (regs.x.bx != 0); | |
156 } | |
157 | |
158 static void | |
159 mouse_get_xy (int *x, int *y) | |
5503 | 160 { |
161 union REGS regs; | |
162 | |
13179 | 163 regs.x.ax = 0x0003; |
164 int86 (0x33, ®s, ®s); | |
165 *x = regs.x.cx / 8; | |
166 *y = regs.x.dx / 8; | |
167 } | |
168 | |
169 void | |
170 mouse_get_pos (f, insist, bar_window, part, x, y, time) | |
171 FRAME_PTR *f; | |
172 int insist; | |
173 Lisp_Object *bar_window, *x, *y; | |
174 enum scroll_bar_part *part; | |
175 unsigned long *time; | |
176 { | |
177 int ix, iy; | |
178 union REGS regs; | |
179 | |
180 regs.x.ax = 0x0003; | |
181 int86 (0x33, ®s, ®s); | |
182 *f = selected_frame; | |
183 *bar_window = Qnil; | |
184 mouse_get_xy (&ix, &iy); | |
185 selected_frame->mouse_moved = 0; | |
186 *x = make_number (ix); | |
187 *y = make_number (iy); | |
188 *time = event_timestamp (); | |
189 } | |
190 | |
191 static void | |
192 mouse_check_moved () | |
193 { | |
194 int x, y; | |
195 | |
196 mouse_get_xy (&x, &y); | |
197 selected_frame->mouse_moved |= (x != mouse_last_x || y != mouse_last_y); | |
198 mouse_last_x = x; | |
199 mouse_last_y = y; | |
5503 | 200 } |
201 | |
13179 | 202 void |
203 mouse_init () | |
5503 | 204 { |
13179 | 205 union REGS regs; |
206 | |
207 if (termscript) | |
208 fprintf (termscript, "<M_INIT>"); | |
209 | |
210 regs.x.ax = 0x0021; | |
211 int86 (0x33, ®s, ®s); | |
212 | |
213 regs.x.ax = 0x0007; | |
214 regs.x.cx = 0; | |
215 regs.x.dx = 8 * (ScreenCols () - 1); | |
216 int86 (0x33, ®s, ®s); | |
217 | |
218 regs.x.ax = 0x0008; | |
219 regs.x.cx = 0; | |
220 regs.x.dx = 8 * (ScreenRows () - 1); | |
221 int86 (0x33, ®s, ®s); | |
222 | |
223 mouse_moveto (0, 0); | |
224 mouse_visible = 0; | |
225 } | |
226 | |
227 /* ------------------------- Screen control ---------------------- | |
228 * | |
229 */ | |
5503 | 230 |
13179 | 231 static int internal_terminal = 0; |
232 | |
233 #ifndef HAVE_X_WINDOWS | |
234 extern unsigned char ScreenAttrib; | |
235 static int screen_face; | |
236 static int highlight; | |
237 | |
238 static int screen_size_X; | |
239 static int screen_size_Y; | |
240 static int screen_size; | |
241 | |
242 static int current_pos_X; | |
243 static int current_pos_Y; | |
244 static int new_pos_X; | |
245 static int new_pos_Y; | |
246 | |
247 static void *startup_screen_buffer; | |
248 static int startup_screen_size_X; | |
249 static int startup_screen_size_Y; | |
250 static int startup_pos_X; | |
251 static int startup_pos_Y; | |
252 | |
253 static int term_setup_done; | |
254 | |
255 /* Similar to the_only_frame. */ | |
256 struct x_display the_only_x_display; | |
257 | |
258 /* This is never dereferenced. */ | |
259 Display *x_current_display; | |
5503 | 260 |
261 | |
13179 | 262 #define SCREEN_SET_CURSOR() \ |
263 if (current_pos_X != new_pos_X || current_pos_Y != new_pos_Y) \ | |
264 ScreenSetCursor (current_pos_Y = new_pos_Y, current_pos_X = new_pos_X) | |
5503 | 265 |
13179 | 266 static |
267 dos_direct_output (y, x, buf, len) | |
268 int y; | |
269 int x; | |
270 char *buf; | |
271 int len; | |
5503 | 272 { |
13179 | 273 int t = (int) ScreenPrimary + 2 * (x + y * screen_size_X); |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
274 |
13179 | 275 while (--len >= 0) { |
276 dosmemput (buf++, 1, t); | |
277 t += 2; | |
278 } | |
5503 | 279 } |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
280 #endif |
5503 | 281 |
282 /* Flash the screen as a substitute for BEEPs. */ | |
283 | |
13179 | 284 #if (__DJGPP__ < 2) |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
285 static void |
7667
bae9c0fa1c2f
(do_visible_bell): Renamed from visible_bell to avoid
Richard M. Stallman <rms@gnu.org>
parents:
7666
diff
changeset
|
286 do_visible_bell (xorattr) |
5503 | 287 unsigned char xorattr; |
288 { | |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
289 asm volatile |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
290 (" movb $1,%%dl |
5503 | 291 visible_bell_0: |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
292 movl _ScreenPrimary,%%eax |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
293 call dosmemsetup |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
294 movl %%eax,%%ebx |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
295 movl %1,%%ecx |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
296 movb %0,%%al |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
297 incl %%ebx |
5503 | 298 visible_bell_1: |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
299 xorb %%al,%%gs:(%%ebx) |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
300 addl $2,%%ebx |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
301 decl %%ecx |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
302 jne visible_bell_1 |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
303 decb %%dl |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
304 jne visible_bell_3 |
5503 | 305 visible_bell_2: |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
306 movzwl %%ax,%%eax |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
307 movzwl %%ax,%%eax |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
308 movzwl %%ax,%%eax |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
309 movzwl %%ax,%%eax |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
310 decw %%cx |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
311 jne visible_bell_2 |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
312 jmp visible_bell_0 |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
313 visible_bell_3:" |
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
314 : /* no output */ |
13179 | 315 : "m" (xorattr), "g" (screen_size) |
8183
d35fd7fd0ef8
(install_ctrl_break_check): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7821
diff
changeset
|
316 : "%eax", "%ebx", /* "%gs",*/ "%ecx", "%edx"); |
5503 | 317 } |
318 | |
13179 | 319 static void |
320 ScreenVisualBell (void) | |
321 { | |
322 /* This creates an xor-mask that will swap the default fore- and | |
323 background colors. */ | |
324 do_visible_bell (((the_only_x_display.foreground_pixel | |
325 ^ the_only_x_display.background_pixel) | |
326 * 0x11) & 0x7f); | |
327 } | |
328 #endif | |
329 | |
330 #ifndef HAVE_X_WINDOWS | |
331 | |
332 /* | |
333 * If we write a character in the position where the mouse is, | |
334 * the mouse cursor may need to be refreshed. | |
335 */ | |
7744
da18793f532d
(output_string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7667
diff
changeset
|
336 |
da18793f532d
(output_string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7667
diff
changeset
|
337 static void |
13179 | 338 mouse_off_maybe () |
7744
da18793f532d
(output_string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7667
diff
changeset
|
339 { |
13179 | 340 int x, y; |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
341 |
13179 | 342 if (!mouse_visible) |
343 return; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
344 |
13179 | 345 mouse_get_xy (&x, &y); |
346 if (y != new_pos_Y || x < new_pos_X) | |
347 return; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
348 |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
349 mouse_off (); |
9572 | 350 } |
351 | |
352 static | |
353 IT_ring_bell () | |
354 { | |
355 if (visible_bell) | |
356 { | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
357 mouse_off (); |
13179 | 358 ScreenVisualBell (); |
9572 | 359 } |
360 else | |
361 write (1, "\007", 1); | |
362 } | |
363 | |
364 static void | |
365 IT_set_face (int face) | |
366 { | |
367 struct face *fp; | |
368 extern struct face *intern_face (/* FRAME_PTR, struct face * */); | |
369 | |
370 if (face == 1 || (face == 0 && highlight)) | |
371 fp = FRAME_MODE_LINE_FACE (foo); | |
372 else if (face <= 0 || face >= FRAME_N_COMPUTED_FACES (foo)) | |
373 fp = FRAME_DEFAULT_FACE (foo); | |
374 else | |
375 fp = intern_face (selected_frame, FRAME_COMPUTED_FACES (foo)[face]); | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
376 if (termscript) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
377 fprintf (termscript, "<FACE:%d:%d>", FACE_FOREGROUND (fp), FACE_BACKGROUND (fp)); |
13179 | 378 screen_face = face; |
379 ScreenAttrib = (FACE_BACKGROUND (fp) << 4) | FACE_FOREGROUND (fp); | |
9572 | 380 } |
381 | |
382 static | |
383 IT_write_glyphs (GLYPH *str, int len) | |
384 { | |
385 int newface; | |
13179 | 386 int ch, l = len; |
387 unsigned char *buf, *bp; | |
388 | |
389 if (len == 0) return; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
390 |
13179 | 391 buf = bp = alloca (len * 2); |
392 | |
393 while (--l >= 0) | |
9572 | 394 { |
395 newface = FAST_GLYPH_FACE (*str); | |
13179 | 396 if (newface != screen_face) |
397 IT_set_face (newface); | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
398 ch = FAST_GLYPH_CHAR (*str); |
13179 | 399 *bp++ = (unsigned char)ch; |
400 *bp++ = ScreenAttrib; | |
401 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
402 if (termscript) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
403 fputc (ch, termscript); |
13179 | 404 str++; |
9572 | 405 } |
13179 | 406 |
407 mouse_off_maybe (); | |
408 dosmemput (buf, 2 * len, | |
409 (int)ScreenPrimary + 2 * (new_pos_X + screen_size_X * new_pos_Y)); | |
410 new_pos_X += len; | |
9572 | 411 } |
412 | |
413 static | |
414 IT_clear_end_of_line (first_unused) | |
415 { | |
13179 | 416 char *spaces, *sp; |
417 int i, j; | |
418 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
419 IT_set_face (0); |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
420 if (termscript) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
421 fprintf (termscript, "<CLR:EOL>"); |
13179 | 422 i = (j = screen_size_X - new_pos_X) * 2; |
423 spaces = sp = alloca (i); | |
424 | |
425 while (--j >= 0) | |
426 { | |
427 *sp++ = ' '; | |
428 *sp++ = ScreenAttrib; | |
429 } | |
430 | |
431 mouse_off_maybe (); | |
432 dosmemput (spaces, i, | |
433 (int)ScreenPrimary + 2 * (new_pos_X + screen_size_X * new_pos_Y)); | |
434 } | |
435 | |
436 static | |
437 IT_clear_screen (void) | |
438 { | |
439 if (termscript) | |
440 fprintf (termscript, "<CLR:SCR>"); | |
441 IT_set_face (0); | |
442 mouse_off (); | |
443 ScreenClear (); | |
444 new_pos_X = new_pos_Y = 0; | |
445 } | |
446 | |
447 static | |
448 IT_clear_to_end (void) | |
449 { | |
450 if (termscript) | |
451 fprintf (termscript, "<CLR:EOS>"); | |
452 | |
453 while (new_pos_Y < screen_size_Y) { | |
454 new_pos_X = 0; | |
455 IT_clear_end_of_line (0); | |
456 new_pos_Y++; | |
457 } | |
9572 | 458 } |
459 | |
460 static | |
461 IT_cursor_to (int y, int x) | |
462 { | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
463 if (termscript) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
464 fprintf (termscript, "\n<XY=%dx%d>", x, y); |
13179 | 465 new_pos_X = x; |
466 new_pos_Y = y; | |
9572 | 467 } |
468 | |
13179 | 469 static |
9572 | 470 IT_reassert_line_highlight (new, vpos) |
471 int new, vpos; | |
472 { | |
473 highlight = new; | |
474 IT_set_face (0); /* To possibly clear the highlighting. */ | |
475 } | |
476 | |
477 static | |
478 IT_change_line_highlight (new_highlight, vpos, first_unused_hpos) | |
479 { | |
480 highlight = new_highlight; | |
481 IT_set_face (0); /* To possibly clear the highlighting. */ | |
482 IT_cursor_to (vpos, 0); | |
483 IT_clear_end_of_line (first_unused_hpos); | |
484 } | |
485 | |
486 static | |
487 IT_update_begin () | |
488 { | |
489 highlight = 0; | |
490 IT_set_face (0); /* To possibly clear the highlighting. */ | |
13179 | 491 screen_face = -1; |
492 } | |
493 | |
494 static | |
495 IT_update_end () | |
496 { | |
9572 | 497 } |
498 | |
499 /* This was more or less copied from xterm.c */ | |
500 static void | |
501 IT_set_menu_bar_lines (window, n) | |
502 Lisp_Object window; | |
503 int n; | |
504 { | |
505 struct window *w = XWINDOW (window); | |
506 | |
507 XSETFASTINT (w->top, XFASTINT (w->top) + n); | |
508 XSETFASTINT (w->height, XFASTINT (w->height) - n); | |
509 | |
510 /* Handle just the top child in a vertical split. */ | |
511 if (!NILP (w->vchild)) | |
512 IT_set_menu_bar_lines (w->vchild, n); | |
513 | |
514 /* Adjust all children in a horizontal split. */ | |
515 for (window = w->hchild; !NILP (window); window = w->next) | |
516 { | |
517 w = XWINDOW (window); | |
518 IT_set_menu_bar_lines (window, n); | |
519 } | |
520 } | |
521 | |
13179 | 522 /* |
523 * IT_set_terminal_modes is called when emacs is started, | |
524 * resumed, and whenever the screen is redrawn! | |
525 */ | |
526 | |
527 static | |
528 IT_set_terminal_modes (void) | |
529 { | |
530 char *colors; | |
531 FRAME_PTR f; | |
532 struct face *fp; | |
533 | |
534 if (termscript) | |
535 fprintf (termscript, "\n<SET_TERM>"); | |
536 highlight = 0; | |
537 | |
538 screen_size_X = ScreenCols (); | |
539 screen_size_Y = ScreenRows (); | |
540 screen_size = screen_size_X * screen_size_Y; | |
541 | |
542 new_pos_X = new_pos_Y = 0; | |
543 current_pos_X = current_pos_Y = -1; | |
544 | |
545 if (term_setup_done) | |
546 return; | |
547 term_setup_done = 1; | |
548 | |
549 startup_screen_size_X = screen_size_X; | |
550 startup_screen_size_Y = screen_size_Y; | |
551 | |
552 ScreenGetCursor (&startup_pos_Y, &startup_pos_X); | |
553 ScreenRetrieve (startup_screen_buffer = xmalloc (screen_size * 2)); | |
554 | |
555 if (termscript) | |
556 fprintf (termscript, "<SCREEN SAVED>\n"); | |
557 } | |
558 | |
559 /* | |
560 * IT_reset_terminal_modes is called when emacs is | |
561 * suspended or killed. | |
562 */ | |
563 | |
564 static | |
565 IT_reset_terminal_modes (void) | |
566 { | |
567 if (termscript) | |
568 fprintf(termscript, "\n<RESET_TERM>"); | |
569 | |
570 highlight = 0; | |
571 | |
572 if (!term_setup_done) | |
573 return; | |
574 | |
575 ScreenUpdate (startup_screen_buffer); | |
576 ScreenSetCursor (startup_pos_Y, startup_pos_X); | |
577 xfree (startup_screen_buffer); | |
578 | |
579 if (termscript) | |
580 fprintf (termscript, "<SCREEN RESTORED>\n"); | |
581 | |
582 term_setup_done = 0; | |
583 } | |
584 | |
585 static | |
586 IT_set_terminal_window (void) | |
587 { | |
588 } | |
589 | |
9572 | 590 void |
591 IT_set_frame_parameters (frame, alist) | |
592 FRAME_PTR frame; | |
593 Lisp_Object alist; | |
594 { | |
595 Lisp_Object tail; | |
596 int redraw; | |
597 extern unsigned long load_color (); | |
598 FRAME_PTR f = (FRAME_PTR) &the_only_frame; | |
599 | |
600 redraw = 0; | |
601 for (tail = alist; CONSP (tail); tail = Fcdr (tail)) | |
602 { | |
603 Lisp_Object elt, prop, val; | |
604 | |
605 elt = Fcar (tail); | |
606 prop = Fcar (elt); | |
607 val = Fcdr (elt); | |
608 CHECK_SYMBOL (prop, 1); | |
609 | |
610 if (EQ (prop, intern ("foreground-color"))) | |
611 { | |
612 unsigned long new_color = load_color (f, val); | |
613 if (new_color != ~0) | |
614 { | |
615 FRAME_FOREGROUND_PIXEL (f) = new_color; | |
616 redraw = 1; | |
617 } | |
618 } | |
619 else if (EQ (prop, intern ("background-color"))) | |
620 { | |
621 unsigned long new_color = load_color (f, val); | |
622 if (new_color != ~0) | |
623 { | |
624 FRAME_BACKGROUND_PIXEL (f) = new_color & ~8; | |
625 redraw = 1; | |
626 } | |
627 } | |
628 else if (EQ (prop, intern ("menu-bar-lines"))) | |
629 { | |
630 int new; | |
631 int old = FRAME_MENU_BAR_LINES (the_only_frame); | |
632 | |
633 if (INTEGERP (val)) | |
634 new = XINT (val); | |
635 else | |
636 new = 0; | |
637 FRAME_MENU_BAR_LINES (f) = new; | |
638 IT_set_menu_bar_lines (the_only_frame.root_window, new - old); | |
639 } | |
640 } | |
641 | |
642 if (redraw) | |
643 { | |
644 recompute_basic_faces (f); | |
645 Fredraw_frame (Fselected_frame ()); | |
646 } | |
647 } | |
648 | |
13179 | 649 #endif /* !HAVE_X_WINDOWS */ |
9572 | 650 |
651 | |
5503 | 652 /* Do we need the internal terminal? */ |
653 void | |
654 internal_terminal_init () | |
655 { | |
656 char *term = getenv ("TERM"); | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
657 char *colors; |
13179 | 658 |
9572 | 659 #ifdef HAVE_X_WINDOWS |
660 if (!inhibit_window_system) | |
661 return; | |
662 #endif | |
663 | |
5503 | 664 internal_terminal |
665 = (!noninteractive) && term && !strcmp (term, "internal"); | |
9572 | 666 |
13179 | 667 if (getenv ("EMACSTEST")) |
668 termscript = fopen(getenv ("EMACSTEST"), "wt"); | |
669 | |
9572 | 670 #ifndef HAVE_X_WINDOWS |
13179 | 671 if (!internal_terminal || inhibit_window_system) |
9572 | 672 { |
13179 | 673 the_only_frame.output_method = output_termcap; |
674 return; | |
675 } | |
9572 | 676 |
13179 | 677 Vwindow_system = intern ("pc"); |
678 Vwindow_system_version = make_number (1); | |
679 | |
680 bzero (&the_only_x_display, sizeof the_only_x_display); | |
681 the_only_x_display.background_pixel = 7; /* White */ | |
682 the_only_x_display.foreground_pixel = 0; /* Black */ | |
683 colors = getenv("EMACSCOLORS"); | |
684 if (colors && strlen (colors) >= 2) | |
685 { | |
686 the_only_x_display.foreground_pixel = colors[0] & 0x07; | |
687 the_only_x_display.background_pixel = colors[1] & 0x07; | |
688 } | |
689 the_only_x_display.line_height = 1; | |
690 the_only_frame.display.x = &the_only_x_display; | |
691 the_only_frame.output_method = output_msdos_raw; | |
9572 | 692 |
13179 | 693 init_frame_faces ((FRAME_PTR) &the_only_frame); |
694 | |
695 ring_bell_hook = IT_ring_bell; | |
696 write_glyphs_hook = IT_write_glyphs; | |
697 cursor_to_hook = raw_cursor_to_hook = IT_cursor_to; | |
698 clear_to_end_hook = IT_clear_to_end; | |
699 clear_end_of_line_hook = IT_clear_end_of_line; | |
700 clear_frame_hook = IT_clear_screen; | |
701 change_line_highlight_hook = IT_change_line_highlight; | |
702 update_begin_hook = IT_update_begin; | |
703 update_end_hook = IT_update_end; | |
704 reassert_line_highlight_hook = IT_reassert_line_highlight; | |
705 | |
706 /* These hooks are called by term.c without being checked. */ | |
707 set_terminal_modes_hook = IT_set_terminal_modes; | |
708 reset_terminal_modes_hook = IT_reset_terminal_modes; | |
709 set_terminal_window_hook = IT_set_terminal_window; | |
9572 | 710 #endif |
5503 | 711 } |
13179 | 712 |
713 dos_get_saved_screen (screen, rows, cols) | |
714 char **screen; | |
715 int *rows; | |
716 int *cols; | |
717 { | |
718 #ifndef HAVE_X_WINDOWS | |
719 *screen = startup_screen_buffer; | |
720 *cols = startup_screen_size_X; | |
721 *rows = startup_screen_size_Y; | |
722 return 1; | |
723 #else | |
724 return 0; | |
725 #endif | |
726 } | |
727 | |
728 | |
729 /* ----------------------- Keyboard control ---------------------- | |
730 * | |
731 * Keymaps reflect the following keyboard layout: | |
732 * | |
733 * 0 1 2 3 4 5 6 7 8 9 10 11 12 BS | |
734 * TAB 15 16 17 18 19 20 21 22 23 24 25 26 (41) | |
735 * CLOK 30 31 32 33 34 35 36 37 38 39 40 (41) RET | |
736 * SH () 45 46 47 48 49 50 51 52 53 54 SHIFT | |
737 * SPACE | |
738 */ | |
739 | |
740 static int extended_kbd; /* 101 (102) keyboard present. */ | |
741 | |
742 struct dos_keyboard_map | |
743 { | |
744 char *unshifted; | |
745 char *shifted; | |
746 char *alt_gr; | |
747 }; | |
748 | |
13040
169d50e2ee4c
(gettimeofday, init_gettimeofday, daylight, gmtoffset): Undo previous change.
Paul Eggert <eggert@twinsun.com>
parents:
13020
diff
changeset
|
749 |
13179 | 750 static struct dos_keyboard_map us_keyboard = { |
751 /* 0 1 2 3 4 5 */ | |
752 /* 01234567890123456789012345678901234567890 12345678901234 */ | |
753 "`1234567890-= qwertyuiop[] asdfghjkl;'\\ zxcvbnm,./ ", | |
754 /* 0123456789012345678901234567890123456789 012345678901234 */ | |
755 "~!@#$%^&*()_+ QWERTYUIOP{} ASDFGHJKL:\"| ZXCVBNM<>? ", | |
756 0 /* no Alt-Gr key */ | |
757 }; | |
758 | |
759 static struct dos_keyboard_map fr_keyboard = { | |
760 /* 0 1 2 3 4 5 */ | |
761 /* 012 3456789012345678901234567890123456789012345678901234 */ | |
762 "ý&‚\",(-Š_€…)= azertyuiop^$ qsdfghjklm—* wxcvbnm;:! ", | |
763 /* 0123456789012345678901234567890123456789012345678901234 */ | |
764 " 1234567890ø+ AZERTYUIOPùœ QSDFGHJKLM%æ WXCVBN?./õ ", | |
765 /* 01234567 89012345678901234567890123456789012345678901234 */ | |
766 " ~#{[|`\\^@]} Ï " | |
767 }; | |
768 | |
769 static struct dos_keyboard_map dk_keyboard = { | |
770 /* 0 1 2 3 4 5 */ | |
771 /* 0123456789012345678901234567890123456789012345678901234 */ | |
772 "«1234567890+| qwertyuiop†~ asdfghjkl‘›' zxcvbnm,.- ", | |
773 /* 01 23456789012345678901234567890123456789012345678901234 */ | |
774 "õ!\"#$%&/()=?` QWERTYUIOP^ ASDFGHJKL’* ZXCVBNM;:_ ", | |
775 /* 0123456789012345678901234567890123456789012345678901234 */ | |
776 " @œ$ {[]} | " | |
777 }; | |
778 | |
779 static struct keyboard_layout_list | |
780 { | |
781 int country_code; | |
782 struct dos_keyboard_map *keyboard_map; | |
783 } keyboard_layout_list[] = { | |
784 1, &us_keyboard, | |
785 33, &fr_keyboard, | |
786 45, &dk_keyboard | |
787 }; | |
788 | |
789 static struct dos_keyboard_map *keyboard; | |
790 static int keyboard_map_all; | |
7523
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
791 |
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
792 int |
13179 | 793 dos_set_keyboard (code, always) |
794 int code; | |
795 int always; | |
7523
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
796 { |
13179 | 797 int i; |
798 for (i = 0; i < (sizeof (keyboard_layout_list)/sizeof (struct keyboard_layout_list)); i++) | |
799 if (code == keyboard_layout_list[i].country_code) | |
800 { | |
801 keyboard = keyboard_layout_list[i].keyboard_map; | |
802 keyboard_map_all = always; | |
803 dos_keyboard_layout = code; | |
804 return 1; | |
805 } | |
7523
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
806 return 0; |
8994727ff976
(gettimeofday): New function substituting the library
Richard M. Stallman <rms@gnu.org>
parents:
7507
diff
changeset
|
807 } |
13040
169d50e2ee4c
(gettimeofday, init_gettimeofday, daylight, gmtoffset): Undo previous change.
Paul Eggert <eggert@twinsun.com>
parents:
13020
diff
changeset
|
808 |
13179 | 809 #define Ignore 0x0000 |
810 #define Normal 0x0000 /* normal key - alt changes scan-code */ | |
811 #define FctKey 0x1000 /* func key if c == 0, else c */ | |
812 #define Special 0x2000 /* func key even if c != 0 */ | |
813 #define ModFct 0x3000 /* special if mod-keys, else 'c' */ | |
814 #define Map 0x4000 /* alt scan-code, map to unshift/shift key */ | |
815 #define KeyPad 0x5000 /* map to insert/kp-0 depending on c == 0xe0 */ | |
816 #define Grey 0x6000 /* Grey keypad key */ | |
817 | |
818 #define Alt 0x0100 /* alt scan-code */ | |
819 #define Ctrl 0x0200 /* ctrl scan-code */ | |
820 #define Shift 0x0400 /* shift scan-code */ | |
821 | |
822 static struct | |
823 { | |
824 unsigned char char_code; /* normal code */ | |
825 unsigned char meta_code; /* M- code */ | |
826 unsigned char keypad_code; /* keypad code */ | |
827 unsigned char editkey_code; /* edit key */ | |
828 } keypad_translate_map[] = { | |
829 '0', '0', 0xb0, /* kp-0 */ 0x63, /* insert */ | |
830 '1', '1', 0xb1, /* kp-1 */ 0x57, /* end */ | |
831 '2', '2', 0xb2, /* kp-2 */ 0x54, /* down */ | |
832 '3', '3', 0xb3, /* kp-3 */ 0x56, /* next */ | |
833 '4', '4', 0xb4, /* kp-4 */ 0x51, /* left */ | |
834 '5', '5', 0xb5, /* kp-5 */ 0xb5, /* kp-5 */ | |
835 '6', '6', 0xb6, /* kp-6 */ 0x53, /* right */ | |
836 '7', '7', 0xb7, /* kp-7 */ 0x50, /* home */ | |
837 '8', '8', 0xb8, /* kp-8 */ 0x52, /* up */ | |
838 '9', '9', 0xb9, /* kp-9 */ 0x55, /* prior */ | |
839 '.', '-', 0xae, /* kp-decimal */ 0xff /* delete */ | |
840 }; | |
841 | |
842 static struct | |
843 { | |
844 unsigned char char_code; /* normal code */ | |
845 unsigned char keypad_code; /* keypad code */ | |
846 } grey_key_translate_map[] = { | |
847 '/', 0xaf, /* kp-decimal */ | |
848 '*', 0xaa, /* kp-multiply */ | |
849 '-', 0xad, /* kp-subtract */ | |
850 '+', 0xab, /* kp-add */ | |
851 '\r', 0x8d /* kp-enter */ | |
852 }; | |
853 | |
854 static unsigned short | |
855 ibmpc_translate_map[] = | |
13040
169d50e2ee4c
(gettimeofday, init_gettimeofday, daylight, gmtoffset): Undo previous change.
Paul Eggert <eggert@twinsun.com>
parents:
13020
diff
changeset
|
856 { |
13179 | 857 /* --------------- 00 to 0f --------------- */ |
858 Normal | 0xff, /* Ctrl Break + Alt-NNN */ | |
859 Alt | ModFct | 0x1b, /* Escape */ | |
860 Normal | 1, /* '1' */ | |
861 Normal | 2, /* '2' */ | |
862 Normal | 3, /* '3' */ | |
863 Normal | 4, /* '4' */ | |
864 Normal | 5, /* '5' */ | |
865 Normal | 6, /* '6' */ | |
866 Normal | 7, /* '7' */ | |
867 Normal | 8, /* '8' */ | |
868 Normal | 9, /* '9' */ | |
869 Normal | 10, /* '0' */ | |
870 Normal | 11, /* '-' */ | |
871 Normal | 12, /* '=' */ | |
872 Special | 0x08, /* Backspace */ | |
873 ModFct | 0x74, /* Tab/Backtab */ | |
874 | |
875 /* --------------- 10 to 1f --------------- */ | |
876 Map | 15, /* 'q' */ | |
877 Map | 16, /* 'w' */ | |
878 Map | 17, /* 'e' */ | |
879 Map | 18, /* 'r' */ | |
880 Map | 19, /* 't' */ | |
881 Map | 20, /* 'y' */ | |
882 Map | 21, /* 'u' */ | |
883 Map | 22, /* 'i' */ | |
884 Map | 23, /* 'o' */ | |
885 Map | 24, /* 'p' */ | |
886 Map | 25, /* '[' */ | |
887 Map | 26, /* ']' */ | |
888 ModFct | 0x0d, /* Return */ | |
889 Ignore, /* Ctrl */ | |
890 Map | 30, /* 'a' */ | |
891 Map | 31, /* 's' */ | |
892 | |
893 /* --------------- 20 to 2f --------------- */ | |
894 Map | 32, /* 'd' */ | |
895 Map | 33, /* 'f' */ | |
896 Map | 34, /* 'g' */ | |
897 Map | 35, /* 'h' */ | |
898 Map | 36, /* 'j' */ | |
899 Map | 37, /* 'k' */ | |
900 Map | 38, /* 'l' */ | |
901 Map | 39, /* ';' */ | |
902 Map | 40, /* '\'' */ | |
903 Map | 0, /* '`' */ | |
904 Ignore, /* Left shift */ | |
905 Map | 41, /* '\\' */ | |
906 Map | 45, /* 'z' */ | |
907 Map | 46, /* 'x' */ | |
908 Map | 47, /* 'c' */ | |
909 Map | 48, /* 'v' */ | |
910 | |
911 /* --------------- 30 to 3f --------------- */ | |
912 Map | 49, /* 'b' */ | |
913 Map | 50, /* 'n' */ | |
914 Map | 51, /* 'm' */ | |
915 Map | 52, /* ',' */ | |
916 Map | 53, /* '.' */ | |
917 Map | 54, /* '/' */ | |
918 Ignore, /* Right shift */ | |
919 Grey | 1, /* Grey * */ | |
920 Ignore, /* Alt */ | |
921 Normal | ' ', /* ' ' */ | |
922 Ignore, /* Caps Lock */ | |
923 FctKey | 0xbe, /* F1 */ | |
924 FctKey | 0xbf, /* F2 */ | |
925 FctKey | 0xc0, /* F3 */ | |
926 FctKey | 0xc1, /* F4 */ | |
927 FctKey | 0xc2, /* F5 */ | |
928 | |
929 /* --------------- 40 to 4f --------------- */ | |
930 FctKey | 0xc3, /* F6 */ | |
931 FctKey | 0xc4, /* F7 */ | |
932 FctKey | 0xc5, /* F8 */ | |
933 FctKey | 0xc6, /* F9 */ | |
934 FctKey | 0xc7, /* F10 */ | |
935 Ignore, /* Num Lock */ | |
936 Ignore, /* Scroll Lock */ | |
937 KeyPad | 7, /* Home */ | |
938 KeyPad | 8, /* Up */ | |
939 KeyPad | 9, /* Page Up */ | |
940 Grey | 2, /* Grey - */ | |
941 KeyPad | 4, /* Left */ | |
942 KeyPad | 5, /* Keypad 5 */ | |
943 KeyPad | 6, /* Right */ | |
944 Grey | 3, /* Grey + */ | |
945 KeyPad | 1, /* End */ | |
946 | |
947 /* --------------- 50 to 5f --------------- */ | |
948 KeyPad | 2, /* Down */ | |
949 KeyPad | 3, /* Page Down */ | |
950 KeyPad | 0, /* Insert */ | |
951 KeyPad | 10, /* Delete */ | |
952 Shift | FctKey | 0xbe, /* (Shift) F1 */ | |
953 Shift | FctKey | 0xbf, /* (Shift) F2 */ | |
954 Shift | FctKey | 0xc0, /* (Shift) F3 */ | |
955 Shift | FctKey | 0xc1, /* (Shift) F4 */ | |
956 Shift | FctKey | 0xc2, /* (Shift) F5 */ | |
957 Shift | FctKey | 0xc3, /* (Shift) F6 */ | |
958 Shift | FctKey | 0xc4, /* (Shift) F7 */ | |
959 Shift | FctKey | 0xc5, /* (Shift) F8 */ | |
960 Shift | FctKey | 0xc6, /* (Shift) F9 */ | |
961 Shift | FctKey | 0xc7, /* (Shift) F10 */ | |
962 Ctrl | FctKey | 0xbe, /* (Ctrl) F1 */ | |
963 Ctrl | FctKey | 0xbf, /* (Ctrl) F2 */ | |
13040
169d50e2ee4c
(gettimeofday, init_gettimeofday, daylight, gmtoffset): Undo previous change.
Paul Eggert <eggert@twinsun.com>
parents:
13020
diff
changeset
|
964 |
13179 | 965 /* --------------- 60 to 6f --------------- */ |
966 Ctrl | FctKey | 0xc0, /* (Ctrl) F3 */ | |
967 Ctrl | FctKey | 0xc1, /* (Ctrl) F4 */ | |
968 Ctrl | FctKey | 0xc2, /* (Ctrl) F5 */ | |
969 Ctrl | FctKey | 0xc3, /* (Ctrl) F6 */ | |
970 Ctrl | FctKey | 0xc4, /* (Ctrl) F7 */ | |
971 Ctrl | FctKey | 0xc5, /* (Ctrl) F8 */ | |
972 Ctrl | FctKey | 0xc6, /* (Ctrl) F9 */ | |
973 Ctrl | FctKey | 0xc7, /* (Ctrl) F10 */ | |
974 Alt | FctKey | 0xbe, /* (Alt) F1 */ | |
975 Alt | FctKey | 0xbf, /* (Alt) F2 */ | |
976 Alt | FctKey | 0xc0, /* (Alt) F3 */ | |
977 Alt | FctKey | 0xc1, /* (Alt) F4 */ | |
978 Alt | FctKey | 0xc2, /* (Alt) F5 */ | |
979 Alt | FctKey | 0xc3, /* (Alt) F6 */ | |
980 Alt | FctKey | 0xc4, /* (Alt) F7 */ | |
981 Alt | FctKey | 0xc5, /* (Alt) F8 */ | |
982 | |
983 /* --------------- 70 to 7f --------------- */ | |
984 Alt | FctKey | 0xc6, /* (Alt) F9 */ | |
985 Alt | FctKey | 0xc7, /* (Alt) F10 */ | |
986 Ctrl | FctKey | 0x6d, /* (Ctrl) Sys Rq */ | |
987 Ctrl | KeyPad | 4, /* (Ctrl) Left */ | |
988 Ctrl | KeyPad | 6, /* (Ctrl) Right */ | |
989 Ctrl | KeyPad | 1, /* (Ctrl) End */ | |
990 Ctrl | KeyPad | 3, /* (Ctrl) Page Down */ | |
991 Ctrl | KeyPad | 7, /* (Ctrl) Home */ | |
992 Alt | Map | 1, /* '1' */ | |
993 Alt | Map | 2, /* '2' */ | |
994 Alt | Map | 3, /* '3' */ | |
995 Alt | Map | 4, /* '4' */ | |
996 Alt | Map | 5, /* '5' */ | |
997 Alt | Map | 6, /* '6' */ | |
998 Alt | Map | 7, /* '7' */ | |
999 Alt | Map | 8, /* '8' */ | |
1000 | |
1001 /* --------------- 80 to 8f --------------- */ | |
1002 Alt | Map | 9, /* '9' */ | |
1003 Alt | Map | 10, /* '0' */ | |
1004 Alt | Map | 11, /* '-' */ | |
1005 Alt | Map | 12, /* '=' */ | |
1006 Ctrl | KeyPad | 9, /* (Ctrl) Page Up */ | |
1007 FctKey | 0xc8, /* F11 */ | |
1008 FctKey | 0xc9, /* F12 */ | |
1009 Shift | FctKey | 0xc8, /* (Shift) F11 */ | |
1010 Shift | FctKey | 0xc9, /* (Shift) F12 */ | |
1011 Ctrl | FctKey | 0xc8, /* (Ctrl) F11 */ | |
1012 Ctrl | FctKey | 0xc9, /* (Ctrl) F12 */ | |
1013 Alt | FctKey | 0xc8, /* (Alt) F11 */ | |
1014 Alt | FctKey | 0xc9, /* (Alt) F12 */ | |
1015 Ctrl | KeyPad | 8, /* (Ctrl) Up */ | |
1016 Ctrl | Grey | 2, /* (Ctrl) Grey - */ | |
1017 Ctrl | KeyPad | 5, /* (Ctrl) Keypad 5 */ | |
1018 | |
1019 /* --------------- 90 to 9f --------------- */ | |
1020 Ctrl | Grey | 3, /* (Ctrl) Grey + */ | |
1021 Ctrl | KeyPad | 2, /* (Ctrl) Down */ | |
1022 Ctrl | KeyPad | 0, /* (Ctrl) Insert */ | |
1023 Ctrl | KeyPad | 10, /* (Ctrl) Delete */ | |
1024 Ctrl | FctKey | 0x09, /* (Ctrl) Tab */ | |
1025 Ctrl | Grey | 0, /* (Ctrl) Grey / */ | |
1026 Ctrl | Grey | 1, /* (Ctrl) Grey * */ | |
1027 Alt | FctKey | 0x50, /* (Alt) Home */ | |
1028 Alt | FctKey | 0x52, /* (Alt) Up */ | |
1029 Alt | FctKey | 0x55, /* (Alt) Page Up */ | |
1030 Ignore, /* NO KEY */ | |
1031 Alt | FctKey | 0x51, /* (Alt) Left */ | |
1032 Ignore, /* NO KEY */ | |
1033 Alt | FctKey | 0x53, /* (Alt) Right */ | |
1034 Ignore, /* NO KEY */ | |
1035 Alt | FctKey | 0x57, /* (Alt) End */ | |
1036 | |
1037 /* --------------- a0 to af --------------- */ | |
1038 Alt | KeyPad | 2, /* (Alt) Down */ | |
1039 Alt | KeyPad | 3, /* (Alt) Page Down */ | |
1040 Alt | KeyPad | 0, /* (Alt) Insert */ | |
1041 Alt | KeyPad | 10, /* (Alt) Delete */ | |
1042 Alt | Grey | 0, /* (Alt) Grey / */ | |
1043 Alt | FctKey | 0x09, /* (Alt) Tab */ | |
1044 Alt | Grey | 4 /* (Alt) Keypad Enter */ | |
1045 }; | |
5503 | 1046 |
13179 | 1047 /* These bit-positions corresponds to values returned by BIOS */ |
1048 #define SHIFT_P 0x0003 /* two bits! */ | |
1049 #define CTRL_P 0x0004 | |
1050 #define ALT_P 0x0008 | |
1051 #define SCRLOCK_P 0x0010 | |
1052 #define NUMLOCK_P 0x0020 | |
1053 #define CAPSLOCK_P 0x0040 | |
1054 #define ALT_GR_P 0x0800 | |
1055 #define SUPER_P 0x4000 /* pseudo */ | |
1056 #define HYPER_P 0x8000 /* pseudo */ | |
1057 | |
1058 static int | |
1059 dos_get_modifiers (keymask) | |
1060 int *keymask; | |
5503 | 1061 { |
13179 | 1062 union REGS regs; |
1063 int mask; | |
1064 int modifiers = 0; | |
1065 | |
1066 /* Calculate modifier bits */ | |
1067 regs.h.ah = extended_kbd ? 0x12 : 0x02; | |
1068 int86 (0x16, ®s, ®s); | |
1069 | |
1070 if (!extended_kbd) | |
1071 { | |
1072 mask = regs.h.al & (SHIFT_P | CTRL_P | ALT_P | | |
1073 SCRLOCK_P | NUMLOCK_P | CAPSLOCK_P); | |
1074 } | |
1075 else | |
1076 { | |
1077 mask = regs.h.al & (SHIFT_P | | |
1078 SCRLOCK_P | NUMLOCK_P | CAPSLOCK_P); | |
1079 | |
1080 /* Do not break international keyboard support. */ | |
1081 /* When Keyb.Com is loaded, the right Alt key is */ | |
1082 /* used for accessing characters like { and } */ | |
1083 if (regs.h.ah & 2) /* Left ALT pressed ? */ | |
1084 mask |= ALT_P; | |
1085 | |
1086 if ((regs.h.ah & 8) != 0) /* Right ALT pressed ? */ | |
1087 { | |
1088 mask |= ALT_GR_P; | |
1089 if (dos_hyper_key == 1) | |
1090 { | |
1091 mask |= HYPER_P; | |
1092 modifiers |= hyper_modifier; | |
1093 } | |
1094 else if (dos_super_key == 1) | |
1095 { | |
1096 mask |= SUPER_P; | |
1097 modifiers |= super_modifier; | |
1098 } | |
1099 } | |
1100 | |
1101 if (regs.h.ah & 1) /* Left CTRL pressed | |
1102 mask |= CTRL_P; | |
1103 | |
1104 if (regs.h.ah & 4) /* Right CTRL pressed ? */ | |
1105 { | |
1106 if (dos_hyper_key == 2) | |
1107 { | |
1108 mask |= HYPER_P; | |
1109 modifiers |= hyper_modifier; | |
1110 } | |
1111 else if (dos_super_key == 2) | |
1112 { | |
1113 mask |= SUPER_P; | |
1114 modifiers |= super_modifier; | |
1115 } | |
1116 else | |
1117 mask |= CTRL_P; | |
1118 } | |
1119 } | |
1120 | |
1121 if (mask & SHIFT_P) | |
1122 modifiers |= shift_modifier; | |
1123 if (mask & CTRL_P) | |
1124 modifiers |= ctrl_modifier; | |
1125 if (mask & ALT_P) | |
1126 modifiers |= meta_modifier; | |
1127 | |
1128 if (keymask) | |
1129 *keymask = mask; | |
1130 return modifiers; | |
5503 | 1131 } |
1132 | |
13179 | 1133 /* Get a char from keyboard. Function keys are put into the event queue. */ |
1134 static int | |
1135 dos_rawgetc () | |
5503 | 1136 { |
13179 | 1137 struct input_event event; |
1138 union REGS regs; | |
1139 | |
1140 #ifndef HAVE_X_WINDOWS | |
1141 SCREEN_SET_CURSOR(); | |
1142 if (!mouse_visible) mouse_on (); | |
1143 #endif | |
1144 | |
1145 /* The following condition is equivalent to `kbhit ()', except that | |
1146 it uses the bios to do its job. This pleases DESQview/X. */ | |
1147 while ((regs.h.ah = extended_kbd ? 0x11 : 0x01), | |
1148 int86 (0x16, ®s, ®s), | |
1149 (regs.x.flags & 0x40) == 0) | |
5503 | 1150 { |
13179 | 1151 union REGS regs; |
1152 register unsigned char c; | |
1153 int sc, code, mask, kp_mode; | |
1154 int modifiers; | |
1155 | |
1156 regs.h.ah = extended_kbd ? 0x10 : 0x00; | |
1157 int86 (0x16, ®s, ®s); | |
1158 c = regs.h.al; | |
1159 sc = regs.h.ah; | |
5503 | 1160 |
13179 | 1161 modifiers = dos_get_modifiers( &mask ); |
1162 | |
1163 #ifndef HAVE_X_WINDOWS | |
1164 if (!NILP(Vdos_display_scancodes)) | |
1165 { | |
1166 char buf[10]; | |
1167 sprintf (buf, "%02x:%02x*%04x", | |
1168 (unsigned) (sc&0xff), (unsigned) c, mask); | |
1169 dos_direct_output (screen_size_Y - 2, screen_size_X - 12, buf, 10); | |
1170 } | |
1171 #endif | |
5503 | 1172 |
13179 | 1173 if (sc == 0xe0) |
1174 { | |
1175 switch (c) | |
1176 { | |
1177 case 10: /* Ctrl Grey Enter */ | |
1178 code = Ctrl | Grey | 4; | |
1179 break; | |
1180 case 13: /* Grey Enter */ | |
1181 code = Grey | 4; | |
1182 break; | |
1183 case '/': /* Grey / */ | |
1184 code = Grey | 0; | |
1185 break; | |
1186 default: | |
1187 continue; | |
1188 }; | |
1189 c = 0; | |
1190 } | |
1191 else | |
1192 { | |
1193 if (sc >= (sizeof (ibmpc_translate_map) / sizeof (short))) | |
1194 continue; | |
1195 if ((code = ibmpc_translate_map[sc]) == Ignore) | |
1196 continue; | |
1197 } | |
1198 | |
1199 if (c == 0) | |
1200 { | |
1201 if (code & Alt) | |
1202 modifiers |= meta_modifier; | |
1203 if (code & Ctrl) | |
1204 modifiers |= ctrl_modifier; | |
1205 if (code & Shift) | |
1206 modifiers |= shift_modifier; | |
1207 } | |
1208 | |
1209 switch (code & 0xf000) | |
1210 { | |
1211 case ModFct: | |
1212 if (c && !(mask & (SHIFT_P | ALT_P | CTRL_P | HYPER_P | SUPER_P))) | |
1213 return c; | |
1214 c = 0; /* Special */ | |
1215 | |
1216 case FctKey: | |
1217 if (c != 0) | |
1218 return c; | |
1219 | |
1220 case Special: | |
1221 code |= 0xff00; | |
1222 break; | |
1223 | |
1224 case Normal: | |
1225 if (sc == 0) | |
1226 { | |
1227 if (c == 0) /* ctrl-break */ | |
1228 continue; | |
1229 return c; /* ALT-nnn */ | |
1230 } | |
1231 if (!keyboard_map_all) | |
1232 { | |
1233 if (c != ' ') | |
1234 return c; | |
1235 code = c; | |
1236 break; | |
1237 } | |
1238 | |
1239 case Map: | |
1240 if (c && !(mask & ALT_P) && !((mask & SHIFT_P) && (mask & CTRL_P))) | |
1241 if (!keyboard_map_all) | |
1242 return c; | |
5503 | 1243 |
13179 | 1244 code &= 0xff; |
1245 if (mask & ALT_P && code <= 10 && code > 0 && dos_keypad_mode & 0x200) | |
1246 mask |= SHIFT_P; /* ALT-1 => M-! etc. */ | |
1247 | |
1248 if (mask & SHIFT_P) | |
1249 { | |
1250 code = keyboard->shifted[ code ]; | |
1251 mask -= SHIFT_P; | |
1252 modifiers &= ~shift_modifier; | |
1253 } | |
1254 else | |
1255 if ((mask & ALT_GR_P) && keyboard->alt_gr && keyboard->alt_gr[ code ] != ' ') | |
1256 code = keyboard->alt_gr[ code ]; | |
1257 else | |
1258 code = keyboard->unshifted[ code ]; | |
1259 break; | |
1260 | |
1261 case KeyPad: | |
1262 code &= 0xff; | |
1263 if (c == 0xe0) /* edit key */ | |
1264 kp_mode = 3; | |
1265 else | |
1266 if ((mask & (NUMLOCK_P|CTRL_P|SHIFT_P|ALT_P)) == NUMLOCK_P) /* numlock on */ | |
1267 kp_mode = dos_keypad_mode & 0x03; | |
1268 else | |
1269 kp_mode = (dos_keypad_mode >> 4) & 0x03; | |
1270 | |
1271 switch (kp_mode) | |
1272 { | |
1273 case 0: | |
1274 if (code == 10 && dos_decimal_point) | |
1275 return dos_decimal_point; | |
1276 return keypad_translate_map[ code ].char_code; | |
5503 | 1277 |
13179 | 1278 case 1: |
1279 code = 0xff00 | keypad_translate_map[ code ].keypad_code; | |
1280 break; | |
5503 | 1281 |
13179 | 1282 case 2: |
1283 code = keypad_translate_map[ code ].meta_code; | |
1284 modifiers = meta_modifier; | |
1285 break; | |
1286 | |
1287 case 3: | |
1288 code = 0xff00 | keypad_translate_map[ code ].editkey_code; | |
1289 break; | |
1290 } | |
1291 break; | |
1292 | |
1293 case Grey: | |
1294 code &= 0xff; | |
1295 kp_mode = ((mask & (NUMLOCK_P|CTRL_P|SHIFT_P|ALT_P)) == NUMLOCK_P) ? 0x04 : 0x40; | |
1296 if (dos_keypad_mode & kp_mode) | |
1297 code = 0xff00 | grey_key_translate_map[ code ].keypad_code; | |
1298 else | |
1299 code = grey_key_translate_map[ code ].char_code; | |
1300 break; | |
1301 } | |
1302 | |
1303 make_event: | |
1304 if (code == 0) | |
1305 continue; | |
1306 | |
1307 if (code >= 0x100) | |
1308 event.kind = non_ascii_keystroke; | |
1309 else | |
1310 event.kind = ascii_keystroke; | |
1311 event.code = code; | |
1312 event.modifiers = modifiers; | |
1313 XSETFRAME (event.frame_or_window, selected_frame); | |
1314 event.timestamp = event_timestamp (); | |
1315 kbd_buffer_store_event (&event); | |
1316 } | |
5503 | 1317 |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1318 if (have_mouse > 0) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1319 { |
13179 | 1320 int but, press, x, y, ok; |
5503 | 1321 |
13179 | 1322 /* Check for mouse movement *before* buttons. */ |
1323 mouse_check_moved (); | |
5503 | 1324 |
13179 | 1325 for (but = 0; but < NUM_MOUSE_BUTTONS; but++) |
1326 for (press = 0; press < 2; press++) | |
1327 { | |
1328 if (press) | |
1329 ok = mouse_pressed (but, &x, &y); | |
1330 else | |
1331 ok = mouse_released (but, &x, &y); | |
1332 if (ok) | |
1333 { | |
1334 event.kind = mouse_click; | |
1335 event.code = but; | |
1336 event.modifiers = dos_get_modifiers (0) | |
1337 | (press ? down_modifier : up_modifier); | |
1338 event.x = x; | |
1339 event.y = y; | |
1340 XSETFRAME (event.frame_or_window, selected_frame); | |
1341 event.timestamp = event_timestamp (); | |
1342 kbd_buffer_store_event (&event); | |
1343 } | |
1344 } | |
1345 } | |
5503 | 1346 |
13179 | 1347 return -1; |
9572 | 1348 } |
1349 | |
13179 | 1350 static int prev_get_char = -1; |
5503 | 1351 |
13179 | 1352 /* Return 1 if a key is ready to be read without suspending execution. */ |
1353 dos_keysns () | |
5503 | 1354 { |
13179 | 1355 if (prev_get_char != -1) |
1356 return 1; | |
1357 else | |
1358 return ((prev_get_char = dos_rawgetc ()) != -1); | |
5503 | 1359 } |
1360 | |
13179 | 1361 /* Read a key. Return -1 if no key is ready. */ |
1362 dos_keyread () | |
5503 | 1363 { |
13179 | 1364 if (prev_get_char != -1) |
8246
d48c2b01fba5
(mouse_init1): Use alternate mouse detection for old mouse drivers.
Richard M. Stallman <rms@gnu.org>
parents:
8194
diff
changeset
|
1365 { |
13179 | 1366 int c = prev_get_char; |
1367 prev_get_char = -1; | |
1368 return c; | |
8246
d48c2b01fba5
(mouse_init1): Use alternate mouse detection for old mouse drivers.
Richard M. Stallman <rms@gnu.org>
parents:
8194
diff
changeset
|
1369 } |
13179 | 1370 else |
1371 return dos_rawgetc (); | |
1372 } | |
8246
d48c2b01fba5
(mouse_init1): Use alternate mouse detection for old mouse drivers.
Richard M. Stallman <rms@gnu.org>
parents:
8194
diff
changeset
|
1373 |
13179 | 1374 |
5503 | 1375 |
9572 | 1376 #ifndef HAVE_X_WINDOWS |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1377 /* See xterm.c for more info. */ |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1378 void |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1379 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip) |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1380 FRAME_PTR f; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1381 register int pix_x, pix_y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1382 register int *x, *y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1383 void /* XRectangle */ *bounds; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1384 int noclip; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1385 { |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1386 if (bounds) abort (); |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1387 |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1388 /* Ignore clipping. */ |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1389 |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1390 *x = pix_x; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1391 *y = pix_y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1392 } |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1393 |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1394 void |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1395 glyph_to_pixel_coords (f, x, y, pix_x, pix_y) |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1396 FRAME_PTR f; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1397 register int x, y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1398 register int *pix_x, *pix_y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1399 { |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1400 *pix_x = x; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1401 *pix_y = y; |
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1402 } |
9572 | 1403 |
1404 /* Simulation of X's menus. Nothing too fancy here -- just make it work | |
1405 for now. | |
1406 | |
1407 Actually, I don't know the meaning of all the parameters of the functions | |
1408 here -- I only know how they are called by xmenu.c. I could of course | |
1409 grab the nearest Xlib manual (down the hall, second-to-last door on the | |
1410 left), but I don't think it's worth the effort. */ | |
1411 | |
1412 static XMenu * | |
1413 IT_menu_create () | |
1414 { | |
1415 XMenu *menu; | |
1416 | |
1417 menu = (XMenu *) xmalloc (sizeof (XMenu)); | |
1418 menu->allocated = menu->count = menu->panecount = menu->width = 0; | |
1419 return menu; | |
1420 } | |
1421 | |
1422 /* Allocate some (more) memory for MENU ensuring that there is room for one | |
1423 for item. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1424 |
9572 | 1425 static void |
1426 IT_menu_make_room (XMenu *menu) | |
1427 { | |
1428 if (menu->allocated == 0) | |
1429 { | |
1430 int count = menu->allocated = 10; | |
1431 menu->text = (char **) xmalloc (count * sizeof (char *)); | |
1432 menu->submenu = (XMenu **) xmalloc (count * sizeof (XMenu *)); | |
1433 menu->panenumber = (int *) xmalloc (count * sizeof (int)); | |
1434 } | |
1435 else if (menu->allocated == menu->count) | |
1436 { | |
1437 int count = menu->allocated = menu->allocated + 10; | |
1438 menu->text | |
1439 = (char **) xrealloc (menu->text, count * sizeof (char *)); | |
1440 menu->submenu | |
1441 = (XMenu **) xrealloc (menu->submenu, count * sizeof (XMenu *)); | |
1442 menu->panenumber | |
1443 = (int *) xrealloc (menu->panenumber, count * sizeof (int)); | |
1444 } | |
1445 } | |
1446 | |
1447 /* Search the given menu structure for a given pane number. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1448 |
9572 | 1449 static XMenu * |
1450 IT_menu_search_pane (XMenu *menu, int pane) | |
1451 { | |
1452 int i; | |
1453 XMenu *try; | |
1454 | |
1455 for (i = 0; i < menu->count; i++) | |
1456 if (menu->submenu[i]) | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1457 { |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1458 if (pane == menu->panenumber[i]) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1459 return menu->submenu[i]; |
13179 | 1460 if ((try = IT_menu_search_pane (menu->submenu[i], pane))) |
9572 | 1461 return try; |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1462 } |
9572 | 1463 return (XMenu *) 0; |
1464 } | |
1465 | |
1466 /* Determine how much screen space a given menu needs. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1467 |
9572 | 1468 static void |
1469 IT_menu_calc_size (XMenu *menu, int *width, int *height) | |
1470 { | |
1471 int i, h2, w2, maxsubwidth, maxheight; | |
1472 | |
1473 maxsubwidth = 0; | |
1474 maxheight = menu->count; | |
1475 for (i = 0; i < menu->count; i++) | |
1476 { | |
1477 if (menu->submenu[i]) | |
1478 { | |
1479 IT_menu_calc_size (menu->submenu[i], &w2, &h2); | |
1480 if (w2 > maxsubwidth) maxsubwidth = w2; | |
1481 if (i + h2 > maxheight) maxheight = i + h2; | |
1482 } | |
1483 } | |
1484 *width = menu->width + maxsubwidth; | |
1485 *height = maxheight; | |
1486 } | |
1487 | |
1488 /* Display MENU at (X,Y) using FACES. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1489 |
9572 | 1490 static void |
1491 IT_menu_display (XMenu *menu, int y, int x, int *faces) | |
1492 { | |
1493 int i, j, face, width; | |
1494 GLYPH *text, *p; | |
1495 char *q; | |
1496 int mx, my; | |
1497 int enabled, mousehere; | |
1498 int row, col; | |
1499 | |
1500 width = menu->width; | |
1501 text = (GLYPH *) xmalloc ((width + 2) * sizeof (GLYPH)); | |
1502 ScreenGetCursor (&row, &col); | |
1503 mouse_get_xy (&mx, &my); | |
13179 | 1504 IT_update_begin (); |
9572 | 1505 for (i = 0; i < menu->count; i++) |
1506 { | |
13179 | 1507 IT_cursor_to (y + i, x); |
9572 | 1508 enabled |
1509 = (!menu->submenu[i] && menu->panenumber[i]) || (menu->submenu[i]); | |
1510 mousehere = (y + i == my && x <= mx && mx < x + width + 2); | |
1511 face = faces[enabled + mousehere * 2]; | |
1512 p = text; | |
1513 *p++ = FAST_MAKE_GLYPH (' ', face); | |
1514 for (j = 0, q = menu->text[i]; *q; j++) | |
1515 *p++ = FAST_MAKE_GLYPH (*q++, face); | |
1516 for (; j < width; j++) | |
1517 *p++ = FAST_MAKE_GLYPH (' ', face); | |
1518 *p++ = FAST_MAKE_GLYPH (menu->submenu[i] ? 16 : ' ', face); | |
13179 | 1519 IT_write_glyphs (text, width + 2); |
9572 | 1520 } |
13179 | 1521 IT_update_end (); |
1522 IT_cursor_to (row, col); | |
9572 | 1523 xfree (text); |
1524 } | |
1525 | |
13179 | 1526 /* --------------------------- X Menu emulation ---------------------- */ |
1527 | |
9572 | 1528 /* Create a brand new menu structure. */ |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1529 |
9572 | 1530 XMenu * |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1531 XMenuCreate (Display *foo1, Window foo2, char *foo3) |
9572 | 1532 { |
1533 return IT_menu_create (); | |
1534 } | |
1535 | |
1536 /* Create a new pane and place it on the outer-most level. It is not | |
1537 clear that it should be placed out there, but I don't know what else | |
1538 to do. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1539 |
9572 | 1540 int |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1541 XMenuAddPane (Display *foo, XMenu *menu, char *txt, int enable) |
9572 | 1542 { |
1543 int len; | |
1544 | |
1545 if (!enable) | |
1546 abort (); | |
1547 | |
1548 IT_menu_make_room (menu); | |
1549 menu->submenu[menu->count] = IT_menu_create (); | |
1550 menu->text[menu->count] = txt; | |
1551 menu->panenumber[menu->count] = ++menu->panecount; | |
1552 menu->count++; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1553 if ((len = strlen (txt)) > menu->width) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1554 menu->width = len; |
9572 | 1555 return menu->panecount; |
1556 } | |
1557 | |
1558 /* Create a new item in a menu pane. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1559 |
9572 | 1560 int |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1561 XMenuAddSelection (Display *bar, XMenu *menu, int pane, |
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1562 int foo, char *txt, int enable) |
9572 | 1563 { |
1564 int len; | |
1565 | |
1566 if (pane) | |
1567 if (!(menu = IT_menu_search_pane (menu, pane))) | |
1568 return XM_FAILURE; | |
1569 IT_menu_make_room (menu); | |
1570 menu->submenu[menu->count] = (XMenu *) 0; | |
1571 menu->text[menu->count] = txt; | |
1572 menu->panenumber[menu->count] = enable; | |
1573 menu->count++; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1574 if ((len = strlen (txt)) > menu->width) |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1575 menu->width = len; |
9572 | 1576 return XM_SUCCESS; |
1577 } | |
1578 | |
1579 /* Decide where the menu would be placed if requested at (X,Y). */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1580 |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1581 void |
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1582 XMenuLocate (Display *foo0, XMenu *menu, int foo1, int foo2, int x, int y, |
9572 | 1583 int *ulx, int *uly, int *width, int *height) |
1584 { | |
1585 if (menu->count == 1 && menu->submenu[0]) | |
1586 /* Special case: the menu consists of only one pane. */ | |
1587 IT_menu_calc_size (menu->submenu[0], width, height); | |
1588 else | |
1589 IT_menu_calc_size (menu, width, height); | |
1590 *ulx = x + 1; | |
1591 *uly = y; | |
1592 *width += 2; | |
1593 } | |
1594 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1595 struct IT_menu_state |
9572 | 1596 { |
1597 void *screen_behind; | |
1598 XMenu *menu; | |
1599 int pane; | |
1600 int x, y; | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1601 }; |
9572 | 1602 |
1603 | |
1604 /* Display menu, wait for user's response, and return that response. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1605 |
9572 | 1606 int |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1607 XMenuActivate (Display *foo, XMenu *menu, int *pane, int *selidx, |
9572 | 1608 int x0, int y0, unsigned ButtonMask, char **txt) |
1609 { | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1610 struct IT_menu_state *state; |
9572 | 1611 int statecount; |
1612 int x, y, i, b; | |
1613 int screensize; | |
1614 int faces[4], selectface; | |
1615 int leave, result, onepane; | |
1616 | |
1617 /* Just in case we got here without a mouse present... */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1618 if (have_mouse <= 0) |
9572 | 1619 return XM_IA_SELECT; |
1620 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1621 state = alloca (menu->panecount * sizeof (struct IT_menu_state)); |
13179 | 1622 screensize = screen_size * 2; |
9572 | 1623 faces[0] |
1624 = compute_glyph_face (&the_only_frame, | |
1625 face_name_id_number | |
1626 (&the_only_frame, | |
1627 intern ("msdos-menu-passive-face")), | |
1628 0); | |
1629 faces[1] | |
1630 = compute_glyph_face (&the_only_frame, | |
1631 face_name_id_number | |
1632 (&the_only_frame, | |
1633 intern ("msdos-menu-active-face")), | |
1634 0); | |
1635 selectface | |
1636 = face_name_id_number (&the_only_frame, intern ("msdos-menu-select-face")); | |
1637 faces[2] = compute_glyph_face (&the_only_frame, selectface, faces[0]); | |
1638 faces[3] = compute_glyph_face (&the_only_frame, selectface, faces[1]); | |
1639 | |
1640 statecount = 1; | |
1641 state[0].menu = menu; | |
1642 mouse_off (); | |
1643 ScreenRetrieve (state[0].screen_behind = xmalloc (screensize)); | |
1644 if ((onepane = menu->count == 1 && menu->submenu[0])) | |
1645 { | |
1646 menu->width = menu->submenu[0]->width; | |
1647 state[0].menu = menu->submenu[0]; | |
1648 } | |
1649 else | |
1650 { | |
1651 state[0].menu = menu; | |
1652 } | |
1653 state[0].x = x0 - 1; | |
1654 state[0].y = y0; | |
1655 state[0].pane = onepane; | |
1656 | |
1657 mouse_last_x = -1; /* A hack that forces display. */ | |
1658 leave = 0; | |
1659 while (!leave) | |
1660 { | |
13179 | 1661 if (!mouse_visible) mouse_on (); |
9572 | 1662 mouse_check_moved (); |
12573
f8193b0f95ed
(mouse_get_pos, mouse_check_moved, XMenuActivate):
Karl Heuer <kwzh@gnu.org>
parents:
11124
diff
changeset
|
1663 if (selected_frame->mouse_moved) |
9572 | 1664 { |
12573
f8193b0f95ed
(mouse_get_pos, mouse_check_moved, XMenuActivate):
Karl Heuer <kwzh@gnu.org>
parents:
11124
diff
changeset
|
1665 selected_frame->mouse_moved = 0; |
9572 | 1666 result = XM_IA_SELECT; |
1667 mouse_get_xy (&x, &y); | |
1668 for (i = 0; i < statecount; i++) | |
1669 if (state[i].x <= x && x < state[i].x + state[i].menu->width + 2) | |
1670 { | |
1671 int dy = y - state[i].y; | |
1672 if (0 <= dy && dy < state[i].menu->count) | |
1673 { | |
1674 if (!state[i].menu->submenu[dy]) | |
1675 if (state[i].menu->panenumber[dy]) | |
1676 result = XM_SUCCESS; | |
1677 else | |
1678 result = XM_IA_SELECT; | |
1679 *pane = state[i].pane - 1; | |
1680 *selidx = dy; | |
1681 /* We hit some part of a menu, so drop extra menues that | |
1682 have been opened. That does not include an open and | |
1683 active submenu. */ | |
1684 if (i != statecount - 2 | |
1685 || state[i].menu->submenu[dy] != state[i+1].menu) | |
1686 while (i != statecount - 1) | |
1687 { | |
1688 statecount--; | |
1689 mouse_off (); | |
1690 ScreenUpdate (state[statecount].screen_behind); | |
1691 xfree (state[statecount].screen_behind); | |
1692 } | |
1693 if (i == statecount - 1 && state[i].menu->submenu[dy]) | |
1694 { | |
1695 IT_menu_display (state[i].menu, | |
1696 state[i].y, | |
1697 state[i].x, | |
1698 faces); | |
1699 state[statecount].menu = state[i].menu->submenu[dy]; | |
1700 state[statecount].pane = state[i].menu->panenumber[dy]; | |
1701 mouse_off (); | |
1702 ScreenRetrieve (state[statecount].screen_behind | |
1703 = xmalloc (screensize)); | |
1704 state[statecount].x | |
1705 = state[i].x + state[i].menu->width + 2; | |
1706 state[statecount].y = y; | |
1707 statecount++; | |
1708 } | |
1709 } | |
1710 } | |
1711 IT_menu_display (state[statecount - 1].menu, | |
1712 state[statecount - 1].y, | |
1713 state[statecount - 1].x, | |
1714 faces); | |
1715 } | |
1716 for (b = 0; b < mouse_button_count; b++) | |
1717 { | |
1718 (void) mouse_pressed (b, &x, &y); | |
1719 if (mouse_released (b, &x, &y)) | |
1720 leave = 1; | |
1721 } | |
1722 } | |
1723 | |
1724 mouse_off (); | |
1725 ScreenUpdate (state[0].screen_behind); | |
1726 while (statecount--) | |
1727 xfree (state[statecount].screen_behind); | |
1728 return result; | |
1729 } | |
1730 | |
1731 /* Dispose of a menu. */ | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1732 |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1733 void |
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1734 XMenuDestroy (Display *foo, XMenu *menu) |
9572 | 1735 { |
1736 int i; | |
1737 if (menu->allocated) | |
1738 { | |
1739 for (i = 0; i < menu->count; i++) | |
1740 if (menu->submenu[i]) | |
10501
19c4a9ef23e5
(XMenuCreate, XMenuAddPane, XMenuAddSelection, XMenuLocate,
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1741 XMenuDestroy (foo, menu->submenu[i]); |
9572 | 1742 xfree (menu->text); |
1743 xfree (menu->submenu); | |
1744 xfree (menu->panenumber); | |
1745 } | |
1746 xfree (menu); | |
1747 } | |
1748 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1749 int |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1750 x_pixel_width (struct frame *f) |
9572 | 1751 { |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1752 return FRAME_WIDTH (f); |
9572 | 1753 } |
1754 | |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1755 int |
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1756 x_pixel_height (struct frame *f) |
9572 | 1757 { |
12995
a3620c5ffad7
(putchar): Call internal_flush instead of _flsbuf.
Richard M. Stallman <rms@gnu.org>
parents:
12614
diff
changeset
|
1758 return FRAME_HEIGHT (f); |
9572 | 1759 } |
1760 #endif /* !HAVE_X_WINDOWS */ | |
7273
24426d7e14eb
Finish downcasing mouse_init1, mouse_off,
Richard M. Stallman <rms@gnu.org>
parents:
6505
diff
changeset
|
1761 |
13179 | 1762 |
1763 /* ----------------------- DOS / UNIX conversion --------------------- */ | |
1764 | |
1765 /* Destructively turn backslashes into slashes. */ | |
1766 | |
1767 void | |
1768 dostounix_filename (p) | |
1769 register char *p; | |
1770 { | |
1771 while (*p) | |
1772 { | |
1773 if (*p == '\\') | |
1774 *p = '/'; | |
1775 p++; | |
1776 } | |
1777 } | |
1778 | |
1779 /* Destructively turn slashes into backslashes. */ | |
1780 | |
1781 void | |
1782 unixtodos_filename (p) | |
1783 register char *p; | |
1784 { | |
1785 while (*p) | |
1786 { | |
1787 if (*p == '/') | |
1788 *p = '\\'; | |
1789 p++; | |
1790 } | |
1791 } | |
1792 | |
1793 /* Get the default directory for a given drive. 0=def, 1=A, 2=B, ... */ | |
1794 | |
1795 int | |
1796 getdefdir (drive, dst) | |
1797 int drive; | |
1798 char *dst; | |
1799 { | |
1800 union REGS regs; | |
1801 | |
1802 *dst++ = '/'; | |
1803 regs.h.dl = drive; | |
1804 regs.x.si = (int) dst; | |
1805 regs.h.ah = 0x47; | |
1806 intdos (®s, ®s); | |
1807 return !regs.x.cflag; | |
1808 } | |
1809 | |
1810 /* Remove all CR's that are followed by a LF. */ | |
1811 | |
1812 int | |
1813 crlf_to_lf (n, buf) | |
1814 register int n; | |
1815 register unsigned char *buf; | |
1816 { | |
1817 unsigned char *np = buf; | |
1818 unsigned char *startp = buf; | |
1819 unsigned char *endp = buf + n; | |
1820 unsigned char c; | |
1821 | |
1822 if (n == 0) | |
1823 return n; | |
1824 while (buf < endp - 1) | |
1825 { | |
1826 if (*buf == 0x0d) | |
1827 { | |
1828 if (*(++buf) != 0x0a) | |
1829 *np++ = 0x0d; | |
1830 } | |
1831 else | |
1832 *np++ = *buf++; | |
1833 } | |
1834 if (buf < endp) | |
1835 *np++ = *buf++; | |
1836 return np - startp; | |
1837 } | |
1838 | |
1839 /* The Emacs root directory as determined by init_environment. */ | |
1840 | |
1841 static char emacsroot[MAXPATHLEN]; | |
1842 | |
1843 char * | |
1844 rootrelativepath (rel) | |
1845 char *rel; | |
1846 { | |
1847 static char result[MAXPATHLEN + 10]; | |
1848 | |
1849 strcpy (result, emacsroot); | |
1850 strcat (result, "/"); | |
1851 strcat (result, rel); | |
1852 return result; | |
1853 } | |
1854 | |
1855 /* Define a lot of environment variables if not already defined. Don't | |
1856 remove anything unless you know what you're doing -- lots of code will | |
1857 break if one or more of these are missing. */ | |
1858 | |
1859 void | |
1860 init_environment (argc, argv, skip_args) | |
1861 int argc; | |
1862 char **argv; | |
1863 int skip_args; | |
1864 { | |
1865 char *s, *t, *root; | |
1866 int len; | |
1867 | |
1868 /* Find our root from argv[0]. Assuming argv[0] is, say, | |
1869 "c:/emacs/bin/emacs.exe" our root will be "c:/emacs". */ | |
1870 root = alloca (MAXPATHLEN + 20); | |
1871 _fixpath (argv[0], root); | |
1872 strlwr (root); | |
1873 len = strlen (root); | |
1874 while (len > 0 && root[len] != '/' && root[len] != ':') | |
1875 len--; | |
1876 root[len] = '\0'; | |
1877 if (len > 4 && strcmp (root + len - 4, "/bin") == 0) | |
1878 root[len - 4] = '\0'; | |
1879 else | |
1880 strcpy (root, "c:/emacs"); /* Only under debuggers, I think. */ | |
1881 len = strlen (root); | |
1882 strcpy (emacsroot, root); | |
1883 | |
1884 /* We default HOME to our root. */ | |
1885 setenv ("HOME", root, 0); | |
1886 | |
1887 /* We default EMACSPATH to root + "/bin". */ | |
1888 strcpy (root + len, "/bin"); | |
1889 setenv ("EMACSPATH", root, 0); | |
1890 | |
1891 /* I don't expect anybody to ever use other terminals so the internal | |
1892 terminal is the default. */ | |
1893 setenv ("TERM", "internal", 0); | |
1894 | |
1895 #ifdef HAVE_X_WINDOWS | |
1896 /* Emacs expects DISPLAY to be set. */ | |
1897 setenv ("DISPLAY", "unix:0.0", 0); | |
1898 #endif | |
1899 | |
1900 /* SHELL is a bit tricky -- COMSPEC is the closest we come, but we must | |
1901 downcase it and mirror the backslashes. */ | |
1902 s = getenv ("COMSPEC"); | |
1903 if (!s) s = "c:/command.com"; | |
1904 t = alloca (strlen (s) + 1); | |
1905 strcpy (t, s); | |
1906 strlwr (t); | |
1907 dostounix_filename (t); | |
1908 setenv ("SHELL", t, 0); | |
1909 | |
1910 /* PATH is also downcased and backslashes mirrored. */ | |
1911 s = getenv ("PATH"); | |
1912 if (!s) s = ""; | |
1913 t = alloca (strlen (s) + 3); | |
1914 /* Current directory is always considered part of MsDos's path but it is | |
1915 not normally mentioned. Now it is. */ | |
1916 strcat (strcpy (t, ".;"), s); | |
1917 strlwr (t); | |
1918 dostounix_filename (t); /* Not a single file name, but this should work. */ | |
1919 setenv ("PATH", t, 1); | |
1920 | |
1921 /* In some sense all dos users have root privileges, so... */ | |
1922 setenv ("USER", "root", 0); | |
1923 setenv ("NAME", getenv ("USER"), 0); | |
1924 | |
1925 /* Time zone determined from country code. To make this possible, the | |
1926 country code may not span more than one time zone. In other words, | |
1927 in the USA, you lose. */ | |
1928 if (!getenv("TZ")) | |
1929 switch (dos_country_code) | |
1930 { | |
1931 case 31: /* Belgium */ | |
1932 case 32: /* The Netherlands */ | |
1933 case 33: /* France */ | |
1934 case 34: /* Spain */ | |
1935 case 36: /* Hungary */ | |
1936 case 38: /* Yugoslavia (or what's left of it?) */ | |
1937 case 39: /* Italy */ | |
1938 case 41: /* Switzerland */ | |
1939 case 42: /* Tjekia */ | |
1940 case 45: /* Denmark */ | |
1941 case 46: /* Sweden */ | |
1942 case 47: /* Norway */ | |
1943 case 48: /* Poland */ | |
1944 case 49: /* Germany */ | |
1945 /* Daylight saving from last Sunday in March to last Sunday in | |
1946 September, both at 2AM. */ | |
1947 setenv ("TZ", "MET" /* "-01METDST-02,M3.5.0/02:00,M9.5.0/02:00" */, 0); | |
1948 break; | |
1949 case 44: /* United Kingdom */ | |
1950 case 351: /* Portugal */ | |
1951 case 354: /* Iceland */ | |
1952 setenv ("TZ", "GMT" /* "+00" */, 0); | |
1953 break; | |
1954 case 81: /* Japan */ | |
1955 case 82: /* Korea */ | |
1956 setenv ("TZ", "JST" /* "-09" */, 0); | |
1957 break; | |
1958 case 90: /* Turkey */ | |
1959 case 358: /* Finland */ | |
1960 case 972: /* Israel */ | |
1961 setenv ("TZ", "EET" /* "-02" */, 0); | |
1962 break; | |
1963 } | |
1964 } | |
1965 | |
1966 | |
1967 | |
1968 static int break_stat; /* BREAK check mode status. */ | |
1969 static int stdin_stat; /* stdin IOCTL status. */ | |
1970 | |
1971 /* These must be global. */ | |
1972 static _go32_dpmi_seginfo ctrl_break_vector; | |
1973 static _go32_dpmi_registers ctrl_break_regs; | |
1974 static int ctrlbreakinstalled = 0; | |
1975 | |
1976 /* Interrupt level detection of Ctrl-Break. Don't do anything fancy here! */ | |
1977 | |
1978 void | |
1979 ctrl_break_func (regs) | |
1980 _go32_dpmi_registers *regs; | |
1981 { | |
1982 Vquit_flag = Qt; | |
1983 } | |
1984 | |
1985 void | |
1986 install_ctrl_break_check () | |
1987 { | |
1988 if (!ctrlbreakinstalled) | |
1989 { | |
1990 /* Don't press Ctrl-Break if you don't have either DPMI or Emacs | |
1991 was compiler with Djgpp 1.11 maintenance level 5 or later! */ | |
1992 ctrlbreakinstalled = 1; | |
1993 ctrl_break_vector.pm_offset = (int) ctrl_break_func; | |
1994 _go32_dpmi_allocate_real_mode_callback_iret (&ctrl_break_vector, | |
1995 &ctrl_break_regs); | |
1996 _go32_dpmi_set_real_mode_interrupt_vector (0x1b, &ctrl_break_vector); | |
1997 } | |
1998 } | |
1999 | |
2000 /* | |
2001 * Turn off Dos' Ctrl-C checking and inhibit interpretation of | |
2002 * control chars by Dos. | |
2003 * Determine the keyboard type. | |
2004 */ | |
2005 | |
2006 int | |
2007 dos_ttraw () | |
2008 { | |
2009 union REGS inregs, outregs; | |
2010 static int first_time = 1; | |
2011 | |
2012 break_stat = getcbrk (); | |
2013 setcbrk (0); | |
2014 install_ctrl_break_check (); | |
2015 | |
2016 if (first_time) | |
2017 { | |
2018 inregs.h.ah = 0xc0; | |
2019 int86 (0x15, &inregs, &outregs); | |
2020 extended_kbd = (!outregs.x.cflag) && (outregs.h.ah == 0); | |
2021 | |
2022 have_mouse = 0; | |
2023 | |
2024 if (internal_terminal | |
2025 #ifdef HAVE_X_WINDOWS | |
2026 && inhibit_window_system | |
2027 #endif | |
2028 ) | |
2029 { | |
2030 inregs.x.ax = 0x0021; | |
2031 int86 (0x33, &inregs, &outregs); | |
2032 have_mouse = (outregs.x.ax & 0xffff) == 0xffff; | |
2033 if (!have_mouse) | |
2034 { | |
2035 /* Reportedly, the above doesn't work for some mouse drivers. There | |
2036 is an additional detection method that should work, but might be | |
2037 a little slower. Use that as an alternative. */ | |
2038 inregs.x.ax = 0x0000; | |
2039 int86 (0x33, &inregs, &outregs); | |
2040 have_mouse = (outregs.x.ax & 0xffff) == 0xffff; | |
2041 } | |
2042 | |
2043 if (have_mouse) | |
2044 { | |
2045 have_mouse = 1; /* enable mouse */ | |
2046 mouse_visible = 0; | |
2047 | |
2048 if (outregs.x.bx == 3) | |
2049 { | |
2050 mouse_button_count = 3; | |
2051 mouse_button_translate[0] = 0; /* Left */ | |
2052 mouse_button_translate[1] = 2; /* Middle */ | |
2053 mouse_button_translate[2] = 1; /* Right */ | |
2054 } | |
2055 else | |
2056 { | |
2057 mouse_button_count = 2; | |
2058 mouse_button_translate[0] = 0; | |
2059 mouse_button_translate[1] = 1; | |
2060 } | |
2061 mouse_position_hook = &mouse_get_pos; | |
2062 mouse_init (); | |
2063 } | |
2064 } | |
2065 | |
2066 first_time = 0; | |
2067 } | |
2068 | |
2069 inregs.x.ax = 0x4400; /* Get IOCTL status. */ | |
2070 inregs.x.bx = 0x00; /* 0 = stdin. */ | |
2071 intdos (&inregs, &outregs); | |
2072 stdin_stat = outregs.h.dl; | |
2073 | |
2074 inregs.x.dx = stdin_stat | 0x0020; /* raw mode */ | |
2075 inregs.x.ax = 0x4401; /* Set IOCTL status */ | |
2076 intdos (&inregs, &outregs); | |
2077 return !outregs.x.cflag; | |
2078 } | |
2079 | |
2080 /* Restore status of standard input and Ctrl-C checking. */ | |
2081 int | |
2082 dos_ttcooked () | |
2083 { | |
2084 union REGS inregs, outregs; | |
2085 | |
2086 setcbrk (break_stat); | |
2087 mouse_off (); | |
2088 | |
2089 inregs.x.ax = 0x4401; /* Set IOCTL status. */ | |
2090 inregs.x.bx = 0x00; /* 0 = stdin. */ | |
2091 inregs.x.dx = stdin_stat; | |
2092 intdos (&inregs, &outregs); | |
2093 return !outregs.x.cflag; | |
2094 } | |
2095 | |
2096 | |
2097 /* Run command as specified by ARGV in directory DIR. | |
2098 The command is run with input from TEMPIN and output to file TEMPOUT. */ | |
2099 int | |
2100 run_msdos_command (argv, dir, tempin, tempout) | |
2101 unsigned char **argv; | |
2102 Lisp_Object dir; | |
2103 int tempin, tempout; | |
2104 { | |
2105 char *saveargv1, *saveargv2, **envv; | |
2106 char oldwd[MAXPATHLEN + 1]; /* Fixed size is safe on MSDOS. */ | |
2107 int msshell, result = -1; | |
2108 int in, out, inbak, outbak, errbak; | |
2109 int x, y; | |
2110 Lisp_Object cmd; | |
2111 | |
2112 /* Get current directory as MSDOS cwd is not per-process. */ | |
2113 getwd (oldwd); | |
2114 | |
2115 cmd = Ffile_name_nondirectory (build_string (argv[0])); | |
2116 msshell = !NILP (Fmember (cmd, Fsymbol_value (intern ("msdos-shells")))) | |
2117 && !strcmp ("-c", argv[1]); | |
2118 if (msshell) | |
2119 { | |
2120 saveargv1 = argv[1]; | |
2121 saveargv2 = argv[2]; | |
2122 argv[1] = "/c"; | |
2123 if (argv[2]) | |
2124 { | |
2125 char *p = alloca (strlen (argv[2]) + 1); | |
2126 | |
2127 strcpy (argv[2] = p, saveargv2); | |
2128 while (*p && isspace (*p)) | |
2129 p++; | |
2130 while (*p && !isspace (*p)) | |
2131 if (*p == '/') | |
2132 *p++ = '\\'; | |
2133 else | |
2134 p++; | |
2135 } | |
2136 } | |
2137 | |
2138 /* Build the environment array. */ | |
2139 { | |
2140 extern Lisp_Object Vprocess_environment; | |
2141 Lisp_Object tmp, lst; | |
2142 int i, len; | |
2143 | |
2144 lst = Vprocess_environment; | |
2145 len = XFASTINT (Flength (lst)); | |
2146 | |
2147 envv = alloca ((len + 1) * sizeof (char *)); | |
2148 for (i = 0; i < len; i++) | |
2149 { | |
2150 tmp = Fcar (lst); | |
2151 lst = Fcdr (lst); | |
2152 CHECK_STRING (tmp, 0); | |
2153 envv[i] = alloca (XSTRING (tmp)->size + 1); | |
2154 strcpy (envv[i], XSTRING (tmp)->data); | |
2155 } | |
2156 envv[len] = (char *) 0; | |
2157 } | |
2158 | |
2159 if (STRINGP (dir)) | |
2160 chdir (XSTRING (dir)->data); | |
2161 inbak = dup (0); | |
2162 outbak = dup (1); | |
2163 errbak = dup (2); | |
2164 if (inbak < 0 || outbak < 0 || errbak < 0) | |
2165 goto done; /* Allocation might fail due to lack of descriptors. */ | |
2166 | |
2167 if (have_mouse > 0) | |
2168 mouse_get_xy (&x, &y); | |
2169 | |
2170 dos_ttcooked (); /* do it here while 0 = stdin */ | |
2171 | |
2172 dup2 (tempin, 0); | |
2173 dup2 (tempout, 1); | |
2174 dup2 (tempout, 2); | |
2175 | |
2176 result = spawnve (P_WAIT, argv[0], argv, envv); | |
2177 | |
2178 dup2 (inbak, 0); | |
2179 dup2 (outbak, 1); | |
2180 dup2 (errbak, 2); | |
2181 close (inbak); | |
2182 close (outbak); | |
2183 close (errbak); | |
2184 | |
2185 dos_ttraw(); | |
2186 if (have_mouse > 0) | |
2187 { | |
2188 mouse_init (); | |
2189 mouse_moveto (x, y); | |
2190 } | |
2191 | |
2192 done: | |
2193 chdir (oldwd); | |
2194 if (msshell) | |
2195 { | |
2196 argv[1] = saveargv1; | |
2197 argv[2] = saveargv2; | |
2198 } | |
2199 return result; | |
2200 } | |
2201 | |
2202 croak (badfunc) | |
2203 char *badfunc; | |
2204 { | |
2205 fprintf (stderr, "%s not yet implemented\r\n", badfunc); | |
2206 reset_sys_modes (); | |
2207 exit (1); | |
2208 } | |
2209 | |
2210 | |
2211 /* ------------------------- Compatibility functions ------------------- | |
2212 * gethostname | |
2213 * gettimeofday | |
2214 */ | |
2215 | |
2216 /* | |
2217 * Hostnames for a pc are not really funny, | |
2218 * but they are used in change log so we emulate the best we can. | |
2219 */ | |
2220 | |
2221 gethostname (p, size) | |
2222 char *p; | |
2223 int size; | |
2224 { | |
2225 char *q = egetenv ("HOSTNAME"); | |
2226 | |
2227 if (!q) q = "pc"; | |
2228 strcpy (p, q); | |
2229 return 0; | |
2230 } | |
2231 | |
2232 /* When time zones are set from Ms-Dos too may C-libraries are playing | |
2233 tricks with time values. We solve this by defining our own version | |
2234 of `gettimeofday' bypassing GO32. Our version needs to be initialized | |
2235 once and after each call to `tzset' with TZ changed. That is | |
2236 accomplished by aliasing tzset to init_gettimeofday. */ | |
2237 | |
2238 static struct tm time_rec; | |
2239 | |
2240 int | |
2241 gettimeofday (struct timeval *tp, struct timezone *tzp) | |
2242 { | |
2243 if (tp) | |
2244 { | |
2245 struct time t; | |
2246 struct tm tm; | |
2247 | |
2248 gettime (&t); | |
2249 if (t.ti_hour < time_rec.tm_hour) /* midnight wrap */ | |
2250 { | |
2251 struct date d; | |
2252 getdate (&d); | |
2253 time_rec.tm_year = d.da_year - 1900; | |
2254 time_rec.tm_mon = d.da_mon - 1; | |
2255 time_rec.tm_mday = d.da_day; | |
2256 } | |
2257 | |
2258 time_rec.tm_hour = t.ti_hour; | |
2259 time_rec.tm_min = t.ti_min; | |
2260 time_rec.tm_sec = t.ti_sec; | |
2261 | |
2262 tm = time_rec; | |
2263 tm.tm_gmtoff = dos_timezone_offset; | |
2264 | |
2265 tp->tv_sec = mktime (&tm); /* may modify tm */ | |
2266 tp->tv_usec = t.ti_hund * (1000000 / 100); | |
2267 } | |
2268 /* Ignore tzp; it's obsolescent. */ | |
2269 return 0; | |
2270 } | |
2271 | |
2272 | |
2273 /* | |
2274 * A list of unimplemented functions that we silently ignore. | |
2275 */ | |
2276 | |
2277 unsigned alarm (s) unsigned s; {} | |
2278 fork () { return 0; } | |
2279 int kill (x, y) int x, y; { return -1; } | |
2280 nice (p) int p; {} | |
2281 void volatile pause () {} | |
2282 request_sigio () {} | |
2283 setpgrp () {return 0; } | |
2284 setpriority (x,y,z) int x,y,z; { return 0; } | |
2285 sigsetmask (x) int x; { return 0; } | |
2286 unrequest_sigio () {} | |
2287 | |
2288 int run_dos_timer_hooks = 0; | |
2289 | |
2290 #ifndef HAVE_SELECT | |
2291 #include "sysselect.h" | |
2292 | |
2293 static int last_ti_sec = -1; | |
2294 | |
2295 static void | |
2296 check_timer (t) | |
2297 struct time *t; | |
2298 { | |
2299 gettime (t); | |
2300 | |
2301 if (t->ti_sec == last_ti_sec) | |
2302 return; | |
2303 last_ti_sec = t->ti_sec; | |
2304 | |
2305 if (!NILP (Vdos_menubar_clock)) | |
2306 { | |
2307 char clock_str[16]; | |
2308 int len; | |
2309 int min = t->ti_min; | |
2310 int hour = t->ti_hour; | |
2311 | |
2312 if (dos_timezone_offset) | |
2313 { | |
2314 int tz = dos_timezone_offset; | |
2315 min -= tz % 60; | |
2316 if (min < 0) | |
2317 min += 60, hour--; | |
2318 else | |
2319 if (min >= 60) | |
2320 min -= 60, hour++; | |
2321 | |
2322 if ((hour -= (tz / 60)) < 0) | |
2323 hour += 24; | |
2324 else | |
2325 hour %= 24; | |
2326 } | |
2327 | |
2328 if ((dos_country_info[0x11] & 0x01) == 0) /* 12 hour clock */ | |
2329 { | |
2330 hour %= 12; | |
2331 if (hour == 0) hour = 12; | |
2332 } | |
2333 | |
2334 len = sprintf (clock_str, "%2d.%02d.%02d", hour, min, t->ti_sec); | |
2335 dos_direct_output (0, screen_size_X - len - 1, clock_str, len); | |
2336 } | |
2337 | |
2338 if (!NILP (Vdos_timer_hooks)) | |
2339 run_dos_timer_hooks++; | |
2340 } | |
2341 | |
2342 /* Only event queue is checked. */ | |
2343 int | |
2344 sys_select (nfds, rfds, wfds, efds, timeout) | |
2345 int nfds; | |
2346 SELECT_TYPE *rfds, *wfds, *efds; | |
2347 EMACS_TIME *timeout; | |
2348 { | |
2349 int check_input; | |
2350 long timeoutval, clnow, cllast; | |
2351 struct time t; | |
2352 | |
2353 check_input = 0; | |
2354 if (rfds) | |
2355 { | |
2356 check_input = FD_ISSET (0, rfds); | |
2357 FD_ZERO (rfds); | |
2358 } | |
2359 if (wfds) | |
2360 FD_ZERO (wfds); | |
2361 if (efds) | |
2362 FD_ZERO (efds); | |
2363 | |
2364 if (nfds != 1) | |
2365 abort (); | |
2366 | |
2367 /* If we are looking only for the terminal, with no timeout, | |
2368 just read it and wait -- that's more efficient. */ | |
2369 if (!timeout) | |
2370 { | |
2371 while (! detect_input_pending ()) | |
2372 check_timer (&t); | |
2373 } | |
2374 else | |
2375 { | |
2376 timeoutval = EMACS_SECS (*timeout) * 100 + EMACS_USECS (*timeout) / 10000; | |
2377 check_timer (&t); | |
2378 cllast = t.ti_sec * 100 + t.ti_hund; | |
2379 | |
2380 while (!check_input || !detect_input_pending ()) | |
2381 { | |
2382 check_timer (&t); | |
2383 clnow = t.ti_sec * 100 + t.ti_hund; | |
2384 if (clnow < cllast) /* time wrap */ | |
2385 timeoutval -= clnow + 6000 - cllast; | |
2386 else | |
2387 timeoutval -= clnow - cllast; | |
2388 if (timeoutval <= 0) /* Stop on timer being cleared */ | |
2389 return 0; | |
2390 cllast = clnow; | |
2391 } | |
2392 } | |
2393 | |
2394 FD_SET (0, rfds); | |
2395 return 1; | |
2396 } | |
2397 #endif | |
2398 | |
2399 /* | |
2400 * Define overlayed functions: | |
2401 * | |
2402 * chdir -> sys_chdir | |
2403 * tzset -> init_gettimeofday | |
2404 * abort -> dos_abort | |
2405 */ | |
2406 | |
2407 #ifdef chdir | |
2408 #undef chdir | |
2409 extern int chdir (); | |
2410 | |
2411 int | |
2412 sys_chdir (path) | |
2413 const char* path; | |
2414 { | |
2415 int len = strlen (path); | |
2416 char *tmp = (char *)path; | |
2417 | |
2418 if (*tmp && tmp[1] == ':') | |
2419 { | |
2420 if (getdisk () != tolower (tmp[0]) - 'a') | |
2421 setdisk (tolower (tmp[0]) - 'a'); | |
2422 tmp += 2; /* strip drive: KFS 1995-07-06 */ | |
2423 len -= 2; | |
2424 } | |
2425 | |
2426 if (len > 1 && (tmp[len - 1] == '/')) | |
2427 { | |
2428 char *tmp1 = (char *) alloca (len + 1); | |
2429 strcpy (tmp1, tmp); | |
2430 tmp1[len - 1] = 0; | |
2431 tmp = tmp1; | |
2432 } | |
2433 return chdir (tmp); | |
2434 } | |
2435 #endif | |
2436 | |
2437 #ifdef tzset | |
2438 #undef tzset | |
2439 extern void tzset (void); | |
2440 | |
2441 void | |
2442 init_gettimeofday () | |
2443 { | |
2444 time_t ltm, gtm; | |
2445 struct tm *lstm; | |
2446 | |
2447 tzset (); | |
2448 ltm = gtm = time (NULL); | |
2449 ltm = mktime (lstm = localtime (<m)); | |
2450 gtm = mktime (gmtime (>m)); | |
2451 time_rec.tm_hour = 99; /* force gettimeofday to get date */ | |
2452 time_rec.tm_isdst = lstm->tm_isdst; | |
2453 dos_timezone_offset = time_rec.tm_gmtoff = (int)(gtm - ltm) / 60; | |
2454 } | |
2455 #endif | |
2456 | |
2457 #ifdef abort | |
2458 #undef abort | |
2459 void | |
2460 dos_abort (file, line) | |
2461 char *file; | |
2462 int line; | |
2463 { | |
2464 char buffer1[200], buffer2[400]; | |
2465 int i, j; | |
2466 | |
2467 sprintf (buffer1, "<EMACS FATAL ERROR IN %s LINE %d>", file, line); | |
2468 for (i = j = 0; buffer1[i]; i++) { | |
2469 buffer2[j++] = buffer1[i]; | |
2470 buffer2[j++] = 0x70; | |
2471 } | |
2472 dosmemput (buffer2, j, (int)ScreenPrimary); | |
2473 ScreenSetCursor (2, 0); | |
2474 abort (); | |
2475 } | |
2476 #endif | |
2477 | |
5503 | 2478 #endif /* MSDOS */ |