os_msdos.c
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:41k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* vi:set ts=8 sts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8. /*
  9.  * os_msdos.c
  10.  *
  11.  * MSDOS system-dependent routines.
  12.  * A cheap plastic imitation of the amiga dependent code.
  13.  * A lot in this file was made by Juergen Weigert (jw).
  14.  *
  15.  * DJGPP changes by Gert van Antwerpen
  16.  * Faster text screens by John Lange (jlange@zilker.net)
  17.  *
  18.  */
  19. #include <io.h>
  20. #include "vim.h"
  21. #include <conio.h>
  22. #ifdef HAVE_FCNTL_H
  23. # include <fcntl.h>
  24. #endif
  25. #include <bios.h>
  26. #ifdef DJGPP
  27. # include <dpmi.h>
  28. # include <signal.h>
  29. # include <sys/movedata.h>
  30. #else
  31. # include <alloc.h>
  32. #endif
  33. #if defined(DJGPP) || defined(PROTO)
  34. # define _cdecl     /* DJGPP doesn't have this */
  35. #endif
  36. static int cbrk_pressed = FALSE;    /* set by ctrl-break interrupt */
  37. static int ctrlc_pressed = FALSE;   /* set when ctrl-C or ctrl-break detected */
  38. static int delayed_redraw = FALSE;  /* set when ctrl-C detected */
  39. #ifdef USE_MOUSE
  40. static int mouse_avail = FALSE; /* mouse present */
  41. static int mouse_active; /* mouse enabled */
  42. static int mouse_hidden; /* mouse not shown */
  43. static int mouse_click = -1; /* mouse status */
  44. static int mouse_last_click = -1; /* previous status at click */
  45. static int mouse_x = -1; /* mouse x coodinate */
  46. static int mouse_y = -1; /* mouse y coodinate */
  47. static long mouse_click_time = 0; /* biostime() of last click */
  48. static int mouse_click_count = 0; /* count for multi-clicks */
  49. static int mouse_click_x = 0; /* x of previous mouse click */
  50. static int mouse_click_y = 0; /* y of previous mouse click */
  51. static linenr_t mouse_topline = 0; /* topline at previous mouse click */
  52. static int mouse_x_div = 8; /* column = x coord / mouse_x_div */
  53. static int mouse_y_div = 8; /* line   = y coord / mouse_y_div */
  54. #endif
  55. #define BIOSTICK    55     /* biostime() increases one tick about
  56. every 55 msec */
  57. #ifdef DJGPP
  58. /*
  59.  * For DJGPP, use our own functions for fast text screens.  JML 1/18/98
  60.  */
  61. unsigned long S_ulScreenBase = 0xb8000;
  62. unsigned short S_uiAttribute = 7 << 8;
  63. int S_iCurrentRow = 0; /* These are 0 offset */
  64. int S_iCurrentColumn = 0;
  65. int S_iLeft = 0; /* These are 1 offset */
  66. int S_iTop = 0;
  67. int S_iRight = 0;
  68. int S_iBottom = 0;
  69. short S_selVideo; /* Selector for DJGPP direct video transfers */
  70.     static void
  71. mygotoxy(int x, int y)
  72. {
  73.     S_iCurrentRow = y - 1;
  74.     S_iCurrentColumn = x - 1;
  75.     gotoxy(x,y); /* set cursor position */
  76. }
  77.     static void
  78. myscroll(void)
  79. {
  80.     short iRow, iColumn;
  81.     unsigned short uiValue;
  82.     /* Copy the screen */
  83.     for (iRow = S_iTop; iRow < S_iBottom; iRow++)
  84. movedata(S_selVideo, (iRow * Columns) << 1,
  85. S_selVideo, ((iRow - 1) * Columns) << 1,
  86. (S_iRight - S_iLeft + 1) << 1);
  87.     /* Clear the bottom row */
  88.     uiValue = S_uiAttribute | ' ';
  89.     for (iColumn = S_iLeft - 1; iColumn < S_iRight; iColumn++)
  90. _dosmemputw(&uiValue, 1, S_ulScreenBase
  91.  + (S_iBottom - 1) * (Columns << 1) + (iColumn << 1));
  92. }
  93.     static int
  94. myputch(int iChar)
  95. {
  96.     unsigned int *puiLocation;
  97.     unsigned short uiValue;
  98.     if (iChar == 'n')
  99.     {
  100. if (S_iCurrentRow >= S_iBottom - S_iTop)
  101.     myscroll();
  102. else
  103.     mygotoxy(S_iLeft, S_iCurrentRow + 2);
  104.     }
  105.     else if (iChar == 'r')
  106. mygotoxy(S_iLeft, S_iCurrentRow + 1);
  107.     else if (iChar == 'b')
  108. mygotoxy(S_iCurrentColumn, S_iCurrentRow + 1);
  109.     else if (iChar == 7)
  110.     {
  111. sound(440); /* short beep */
  112. delay(200);
  113. nosound();
  114.     }
  115.     else
  116.     {
  117. uiValue = S_uiAttribute | (unsigned char)iChar;
  118. _dosmemputw(&uiValue, 1, S_ulScreenBase
  119.   + S_iCurrentRow * (Columns << 1) + (S_iCurrentColumn << 1));
  120. S_iCurrentColumn++;
  121. if (S_iCurrentColumn >= S_iRight && S_iCurrentRow >= S_iBottom - S_iTop)
  122. {
  123.     myscroll();
  124.     mygotoxy(S_iLeft, S_iCurrentRow + 2);
  125. }
  126. else
  127.     mygotoxy(S_iCurrentColumn + 1, S_iCurrentRow + 1);
  128.     }
  129.     return 0;
  130. }
  131.     static void
  132. mywindow(int iLeft, int iTop, int iRight, int iBottom)
  133. {
  134.     S_iLeft = iLeft;
  135.     S_iTop = iTop;
  136.     S_iRight = iRight;
  137.     S_iBottom = iBottom;
  138.     window(iLeft, iTop, iRight, iBottom);
  139. }
  140.     static void
  141. mytextinit(struct text_info *pTextinfo)
  142. {
  143.     S_selVideo = __dpmi_segment_to_descriptor(S_ulScreenBase >> 4);
  144.     S_uiAttribute = pTextinfo->normattr << 8;
  145.     mywindow(1, 1, Columns, Rows);
  146. }
  147.     static void
  148. get_screenbase(void)
  149. {
  150.     static union REGS     regs;
  151.     /* old Hercules grafic card has different base address (Macewicz) */
  152.     regs.h.ah = 0x0f;
  153.     (void)int86(0x10, &regs, &regs); /* int 10 0f */
  154.     if (regs.h.al == 0x07) /* video mode 7 -- hercules mono */
  155. S_ulScreenBase = 0xb0000;
  156.     else
  157. S_ulScreenBase = 0xb8000;
  158. }
  159.     static void
  160. mynormvideo(void)
  161. {
  162.     S_uiAttribute = 0x700;
  163.     textbackground(0); /*for delline() etc*/
  164. }
  165.     static void
  166. mytextattr(int iAttribute)
  167. {
  168.     S_uiAttribute = (unsigned short)iAttribute << 8;
  169.     iAttribute >>= 4;
  170.     if (iAttribute < 8)
  171. textbackground(iAttribute); /*for delline() etc*/
  172.     else
  173. textbackground(0);
  174. }
  175.     static void
  176. mytextcolor(int iTextColor)
  177. {
  178.     S_uiAttribute = (unsigned short)((S_uiAttribute & 0xf000)
  179.    | (unsigned short)iTextColor << 8);
  180.     textcolor(iTextColor); /*for delline() etc*/
  181. }
  182.     static void
  183. mytextbackground(int iBkgColor)
  184. {
  185.     S_uiAttribute = (unsigned short)((S_uiAttribute & 0x0f00)
  186.  | (unsigned short)(iBkgColor << 12));
  187.     if (iBkgColor < 8)
  188. textbackground(iBkgColor); /*for delline() etc*/
  189.     else
  190. textbackground(0);
  191. }
  192. #else
  193. # define mygotoxy gotoxy
  194. # define myputch putch
  195. # define myscroll scroll
  196. # define mywindow window
  197. # define mynormvideo normvideo
  198. # define mytextattr textattr
  199. # define mytextcolor textcolor
  200. # define mytextbackground textbackground
  201. #endif
  202. /*
  203.  * Save/restore the shape of the cursor.
  204.  * call with FALSE to save, TRUE to restore
  205.  */
  206.     static void
  207. mch_restore_cursor_shape(int restore)
  208. {
  209.     static union REGS     regs;
  210.     static int     saved = FALSE;
  211.     if (restore)
  212.     {
  213. if (saved)
  214.     regs.h.ah = 0x01;     /*Set Cursor*/
  215. else
  216.     return;
  217.     }
  218.     else
  219.     {
  220. regs.h.ah = 0x03;     /*Get Cursor*/
  221. regs.h.bh = 0x00;     /*Page */
  222. saved = TRUE;
  223.     }
  224.     (void)int86(0x10, &regs, &regs);
  225. }
  226. /*
  227.  * Set the shape of the cursor.
  228.  * 'thickness' can be from 0 (thin) to 7 (block)
  229.  */
  230.     static void
  231. mch_set_cursor_shape(int thickness)
  232. {
  233.     union REGS     regs;
  234.     regs.h.ch = 7 - thickness;     /*Starting Line*/
  235.     regs.h.cl = 7;     /*Ending Line*/
  236.     regs.h.ah = 0x01;     /*Set Cursor*/
  237.     (void)int86(0x10, &regs, &regs);
  238. }
  239.     void
  240. mch_update_cursor(void)
  241. {
  242.     int idx;
  243.     int thickness;
  244.     /*
  245.      * How the cursor is drawn depends on the current mode.
  246.      */
  247.     idx = get_cursor_idx();
  248.     if (cursor_table[idx].shape == SHAPE_BLOCK)
  249. thickness = 7;
  250.     else
  251. thickness = (7 * cursor_table[idx].percentage + 90) / 100;
  252.     mch_set_cursor_shape(thickness);
  253. }
  254.     long_u
  255. mch_avail_mem(int special)
  256. {
  257. #ifdef DJGPP
  258.     return _go32_dpmi_remaining_virtual_memory();
  259. #else
  260.     return coreleft();
  261. #endif
  262. }
  263. #ifdef USE_MOUSE
  264. /*
  265.  * Set area where mouse can be moved to: The whole screen.
  266.  * Rows must be valid when calling!
  267.  */
  268.     static void
  269. mouse_area(void)
  270. {
  271.     union REGS     regs;
  272.     int     mouse_y_max;     /* maximum mouse y coord */
  273.     if (mouse_avail)
  274.     {
  275. mouse_y_max = Rows * mouse_y_div - 1;
  276. if (mouse_y_max < 199)     /* is this needed? */
  277.     mouse_y_max = 199;
  278. regs.x.cx = 0; /* mouse visible between cx and dx */
  279. regs.x.dx = 639;
  280. regs.x.ax = 7;
  281. (void)int86(0x33, &regs, &regs);
  282. regs.x.cx = 0; /* mouse visible between cx and dx */
  283. regs.x.dx = mouse_y_max;
  284. regs.x.ax = 8;
  285. (void)int86(0x33, &regs, &regs);
  286.     }
  287. }
  288.     static void
  289. show_mouse(int on)
  290. {
  291.     static int     was_on = FALSE;
  292.     union REGS     regs;
  293.     if (mouse_avail)
  294.     {
  295. if (!mouse_active || mouse_hidden)
  296.     on = FALSE;
  297. /*
  298.  * Careful: Each switch on must be compensated by exactly one switch
  299.  * off
  300.  */
  301. if (on && !was_on || !on && was_on)
  302. {
  303.     was_on = on;
  304.     regs.x.ax = on ? 1 : 2;
  305.     int86(0x33, &regs, &regs); /* show mouse */
  306.     if (on)
  307. mouse_area();
  308. }
  309.     }
  310. }
  311. #endif
  312. #ifdef DJGPP
  313. /*
  314.  * DJGPP provides a kbhit() function that goes to the BIOS instead of DOS.
  315.  * This doesn't work for terminals connected to a serial port.
  316.  * Redefine kbhit() here to make it work.
  317.  */
  318.     static int
  319. vim_kbhit(void)
  320. {
  321.     union REGS regs;
  322.     regs.h.ah = 0x0b;
  323.     (void)intdos(&regs, &regs);
  324.     return regs.h.al;
  325. }
  326. #ifdef kbhit
  327. # undef kbhit     /* might have been defined in conio.h */
  328. #endif
  329. #define kbhit() vim_kbhit()
  330. #endif
  331. /*
  332.  * Simulate WaitForChar() by slowly polling with bioskey(1) or kbhit().
  333.  *
  334.  * If Vim should work over the serial line after a 'ctty com1' we must use
  335.  * kbhit() and getch(). (jw)
  336.  * Usually kbhit() is not used, because then CTRL-C and CTRL-P
  337.  * will be catched by DOS (mool).
  338.  *
  339.  * return TRUE if a character is available, FALSE otherwise
  340.  */
  341. #define FOREVER 1999999999L
  342.     static  int
  343. WaitForChar(long msec)
  344. {
  345.     union REGS regs;
  346.     long starttime;
  347.     int x, y;
  348.     starttime = biostime(0, 0L);
  349.     for (;;)
  350.     {
  351. #ifdef USE_MOUSE
  352. long clicktime;
  353. static int last_status = 0;
  354. if (mouse_avail && mouse_active && mouse_click < 0)
  355. {
  356.     regs.x.ax = 3;
  357.     int86(0x33, &regs, &regs);     /* check mouse status */
  358. /* only recognize button-down and button-up event */
  359.     x = regs.x.cx / mouse_x_div;
  360.     y = regs.x.dx / mouse_y_div;
  361.     if ((last_status == 0) != (regs.x.bx == 0))
  362.     {
  363. if (last_status) /* button up */
  364.     mouse_click = MOUSE_RELEASE;
  365. else /* button down */
  366. {
  367.     /*
  368.      * Translate MSDOS mouse events to Vim mouse events.
  369.      * TODO: should handle middle mouse button, by pressing
  370.      * left and right at the same time.
  371.      */
  372.     if (regs.x.bx & MSDOS_MOUSE_LEFT)
  373. mouse_click = MOUSE_LEFT;
  374.     else if (regs.x.bx & MSDOS_MOUSE_RIGHT)
  375. mouse_click = MOUSE_RIGHT;
  376.     else if (regs.x.bx & MSDOS_MOUSE_MIDDLE)
  377. mouse_click = MOUSE_MIDDLE;
  378.     /*
  379.      * Find out if this is a multi-click
  380.      */
  381.     clicktime = biostime(0, 0L);
  382.     if (mouse_click_x == x && mouse_click_y == y &&
  383.     mouse_topline == curwin->w_topline &&
  384.     mouse_click_count != 4 &&
  385.     mouse_click == mouse_last_click &&
  386.     clicktime < mouse_click_time + p_mouset / BIOSTICK)
  387. ++mouse_click_count;
  388.     else
  389. mouse_click_count = 1;
  390.     mouse_click_time = clicktime;
  391.     mouse_last_click = mouse_click;
  392.     mouse_click_x = x;
  393.     mouse_click_y = y;
  394.     mouse_topline = curwin->w_topline;
  395.     SET_NUM_MOUSE_CLICKS(mouse_click, mouse_click_count);
  396. }
  397.     }
  398.     else if (last_status && (x != mouse_x || y != mouse_y))
  399. mouse_click = MOUSE_DRAG;
  400.     last_status = regs.x.bx;
  401.     if (mouse_hidden && mouse_x >= 0 && (mouse_x != x || mouse_y != y))
  402.     {
  403. mouse_hidden = FALSE;
  404. show_mouse(TRUE);
  405.     }
  406.     mouse_x = x;
  407.     mouse_y = y;
  408. }
  409. #endif
  410. if ((p_biosk ? bioskey(1) : kbhit()) || cbrk_pressed
  411. #ifdef USE_MOUSE
  412.     || mouse_click >= 0
  413. #endif
  414. )
  415.     return TRUE;
  416. /*
  417.  * Use biostime() to wait until our time is done.
  418.  * We busy-wait here.  Unfortunately, delay() and usleep() have been
  419.  * reported to give problems with the original Windows 95.  This is
  420.  * fixed in service pack 1, but not everybody installed that.
  421.  */
  422. if (msec != FOREVER && biostime(0, 0L) > starttime + msec / BIOSTICK)
  423.     break;
  424.     }
  425.     return FALSE;
  426. }
  427. /*
  428.  * don't do anything for about "msec" msec
  429.  */
  430.     void
  431. mch_delay(
  432.     long msec,
  433.     int ignoreinput)
  434. {
  435.     long starttime;
  436.     if (ignoreinput)
  437.     {
  438. /*
  439.  * We busy-wait here.  Unfortunately, delay() and usleep() have been
  440.  * reported to give problems with the original Windows 95.  This is
  441.  * fixed in service pack 1, but not everybody installed that.
  442.  */
  443. starttime = biostime(0, 0L);
  444. while (biostime(0, 0L) < starttime + msec / BIOSTICK)
  445.     ;
  446.     }
  447.     else
  448. WaitForChar(msec);
  449. }
  450. /*
  451.  * this version of remove is not scared by a readonly (backup) file
  452.  *
  453.  * returns -1 on error, 0 otherwise (just like remove())
  454.  */
  455.     int
  456. mch_remove(char_u *name)
  457. {
  458.     (void)mch_setperm(name, 0);    /* default permissions */
  459.     return unlink((char *)name);
  460. }
  461. /*
  462.  * mch_write(): write the output buffer to the screen
  463.  */
  464.     void
  465. mch_write(
  466.     char_u *s,
  467.     int len)
  468. {
  469.     char_u *p;
  470.     int row, col;
  471.     if (term_console)     /* translate ESC | sequences into bios calls */
  472. while (len--)
  473. {
  474.     if (p_wd)     /* testing: wait a bit for each char */
  475. WaitForChar(p_wd);
  476.     if (s[0] == 'n')
  477. myputch('r');
  478.     else if (s[0] == ESC && len > 1 && s[1] == '|')
  479.     {
  480. switch (s[2])
  481. {
  482. #ifdef DJGPP
  483. case 'B':   ScreenVisualBell();
  484.     goto got3;
  485. #endif
  486. case 'J':   clrscr();
  487.     goto got3;
  488. case 'K':   clreol();
  489.     goto got3;
  490. case 'L':   insline();
  491.     goto got3;
  492. case 'M':   delline();
  493. got3:     s += 3;
  494.     len -= 2;
  495.     continue;
  496. case '0':
  497. case '1':
  498. case '2':
  499. case '3':
  500. case '4':
  501. case '5':
  502. case '6':
  503. case '7':
  504. case '8':
  505. case '9':   p = s + 2;
  506.     row = getdigits(&p);    /* no check for length! */
  507.     if (p > s + len)
  508. break;
  509.     if (*p == ';')
  510.     {
  511. ++p;
  512. col = getdigits(&p); /* no check for length! */
  513. if (p > s + len)
  514.     break;
  515. if (*p == 'H' || *p == 'r')
  516. {
  517.     if (*p == 'H')  /* set cursor position */
  518. mygotoxy(col, row);
  519.     else     /* set scroll region  */
  520. mywindow(1, row, Columns, col);
  521.     len -= p - s;
  522.     s = p + 1;
  523.     continue;
  524. }
  525.     }
  526.     else if (*p == 'm' || *p == 'f' || *p == 'b')
  527.     {
  528. if (*p == 'm')     /* set color */
  529. {
  530.     if (row == 0)
  531. mynormvideo();/* reset color */
  532.     else
  533. mytextattr(row);
  534. }
  535. else if (*p == 'f') /* set foreground color */
  536.     mytextcolor(row);
  537. else     /* set background color */
  538.     mytextbackground(row);
  539. len -= p - s;
  540. s = p + 1;
  541. continue;
  542.     }
  543. }
  544.     }
  545.     myputch(*s++);
  546. }
  547.     else
  548. write(1, s, (unsigned)len);
  549. }
  550. /*
  551.  * mch_inchar(): low level input funcion.
  552.  * Get a characters from the keyboard.
  553.  * If time == 0 do not wait for characters.
  554.  * If time == n wait a short time for characters.
  555.  * If time == -1 wait forever for characters.
  556.  *
  557.  * return the number of characters obtained
  558.  */
  559.     int
  560. mch_inchar(
  561.     char_u *buf,
  562.     int maxlen,
  563.     long time)
  564. {
  565.     int len = 0;
  566.     int c;
  567.     static int nextchar = 0;     /* may keep character when maxlen == 1 */
  568. /*
  569.  * if we got a ctrl-C when we were busy, there will be a "^C" somewhere
  570.  * on the sceen, so we need to redisplay it.
  571.  */
  572.     if (delayed_redraw)
  573.     {
  574. delayed_redraw = FALSE;
  575. update_screen(CLEAR);
  576. setcursor();
  577. out_flush();
  578.     }
  579.     /* return remaining character from last call */
  580.     if (nextchar)
  581.     {
  582. *buf = nextchar;
  583. nextchar = 0;
  584. return 1;
  585.     }
  586. #ifdef USE_MOUSE
  587.     if (time != 0)
  588. show_mouse(TRUE);
  589. #endif
  590.     if (time >= 0)
  591.     {
  592. if (WaitForChar(time) == 0) /* no character available */
  593. {
  594. #ifdef USE_MOUSE
  595.     show_mouse(FALSE);
  596. #endif
  597.     return 0;
  598. }
  599.     }
  600.     else    /* time == -1 */
  601.     {
  602.     /*
  603.      * If there is no character available within 2 seconds (default)
  604.      * write the autoscript file to disk
  605.      */
  606. if (WaitForChar(p_ut) == 0)
  607.     updatescript(0);
  608.     }
  609.     WaitForChar(FOREVER); /* wait for key or mouse click */
  610. /*
  611.  * Try to read as many characters as there are, until the buffer is full.
  612.  */
  613.     /*
  614.      * we will get at least one key. Get more if they are available
  615.      * After a ctrl-break we have to read a 0 (!) from the buffer.
  616.      * bioskey(1) will return 0 if no key is available and when a
  617.      * ctrl-break was typed. When ctrl-break is hit, this does not always
  618.      * implies a key hit.
  619.      */
  620.     cbrk_pressed = FALSE;
  621. #ifdef USE_MOUSE
  622.     if (mouse_click >= 0 && maxlen >= 5)
  623.     {
  624. len = 5;
  625. *buf++ = ESC + 128;
  626. *buf++ = 'M';
  627. *buf++ = mouse_click;
  628. *buf++ = mouse_x + '!';
  629. *buf++ = mouse_y + '!';
  630. mouse_click = -1;
  631.     }
  632.     else
  633. #endif
  634.     {
  635. #ifdef USE_MOUSE
  636. mouse_hidden = TRUE;
  637. #endif
  638. if (p_biosk)
  639. {
  640.     while ((len == 0 || bioskey(1)) && len < maxlen)
  641.     {
  642. c = bioskey(0); /* get the key */
  643. /*
  644.  * translate a few things for inchar():
  645.  * 0x0000 == CTRL-break -> 3 (CTRL-C)
  646.  * 0x0300 == CTRL-@ -> NUL
  647.  * 0xnn00 == extended key code -> K_NUL, nn
  648.  * K_NUL -> K_NUL, 3
  649.  */
  650. if (c == 0)
  651.     c = 3;
  652. else if (c == 0x0300)
  653.     c = NUL;
  654. else if ((c & 0xff) == 0 || c == K_NUL)
  655. {
  656.     if (c == K_NUL)
  657. c = 3;
  658.     else
  659. c >>= 8;
  660.     *buf++ = K_NUL;
  661.     ++len;
  662. }
  663. if (len < maxlen)
  664. {
  665.     *buf++ = c;
  666.     len++;
  667. }
  668. else
  669.     nextchar = c;
  670.     }
  671. }
  672. else
  673. {
  674.     while ((len == 0 || kbhit()) && len < maxlen)
  675.     {
  676. switch (c = getch())
  677. {
  678.     case 0:
  679. /* NUL means that there is another character.
  680.  * Get it immediately, because kbhit() doesn't always
  681.  * return TRUE for the second character.
  682.  */
  683. *buf++ = K_NUL;
  684. ++len;
  685. c = getch();
  686. break;
  687.     case K_NUL:
  688. *buf++ = K_NUL;
  689. ++len;
  690. c = 3;
  691. break;
  692.     case 3:
  693. cbrk_pressed = TRUE;
  694. /*FALLTHROUGH*/
  695.     default:
  696. break;
  697. }
  698. if (len < maxlen)
  699. {
  700.     *buf++ = c;
  701.     ++len;
  702. }
  703. else
  704.     nextchar = c;
  705.     }
  706. }
  707.     }
  708. #ifdef USE_MOUSE
  709.     show_mouse(FALSE);
  710. #endif
  711.     beep_count = 0;     /* may beep again now that we got some chars */
  712.     return len;
  713. }
  714. /*
  715.  * return non-zero if a character is available
  716.  */
  717.     int
  718. mch_char_avail(void)
  719. {
  720.     return WaitForChar(0L);
  721. }
  722. #ifdef DJGPP
  723. # define INT_ARG    int
  724. #else
  725. # define INT_ARG
  726. #endif
  727. /*
  728.  * function for ctrl-break interrupt
  729.  */
  730.     static void interrupt
  731. #ifdef DJGPP
  732. catch_cbrk(int a)
  733. #else
  734. catch_cbrk(void)
  735. #endif
  736. {
  737.     cbrk_pressed = TRUE;
  738.     ctrlc_pressed = TRUE;
  739. }
  740. /*
  741.  * ctrl-break handler for DOS. Never called when a ctrl-break is typed, because
  742.  * we catch interrupt 1b. If you type ctrl-C while Vim is waiting for a
  743.  * character this function is not called. When a ctrl-C is typed while Vim is
  744.  * busy this function may be called. By that time a ^C has been displayed on
  745.  * the screen, so we have to redisplay the screen. We can't do that here,
  746.  * because we may be called by DOS. The redraw is in mch_inchar().
  747.  */
  748.     static int _cdecl
  749. cbrk_handler(void)
  750. {
  751.     delayed_redraw = TRUE;
  752.     return 1;     /* resume operation after ctrl-break */
  753. }
  754. /*
  755.  * function for critical error interrupt
  756.  * For DOS 1 and 2 return 0 (Ignore).
  757.  * For DOS 3 and later return 3 (Fail)
  758.  */
  759.     static void interrupt
  760. catch_cint(bp, di, si, ds, es, dx, cx, bx, ax)
  761.     unsigned bp, di, si, ds, es, dx, cx, bx, ax;
  762. {
  763.     ax = (ax & 0xff00);     /* set AL to 0 */
  764.     if (_osmajor >= 3)
  765. ax |= 3;     /* set AL to 3 */
  766. }
  767. /*
  768.  * Set the interrupt vectors for use with Vim on or off.
  769.  * on == TRUE means as used within Vim
  770.  */
  771.     static void
  772. set_interrupts(int on)
  773. {
  774.     static int saved_cbrk;
  775. #ifndef DJGPP
  776.     static void interrupt (*old_cint)();
  777. #endif
  778.     static void interrupt (*old_cbrk)(INT_ARG);
  779.     if (on)
  780.     {
  781. saved_cbrk = getcbrk(); /* save old ctrl-break setting */
  782. setcbrk(0); /* do not check for ctrl-break */
  783. #ifdef DJGPP
  784. old_cbrk = signal(SIGINT, catch_cbrk); /* critical error interrupt */
  785. #else
  786. old_cint = getvect(0x24); /* save old critical error interrupt */
  787. setvect(0x24, catch_cint); /* install our critical error interrupt */
  788. old_cbrk = getvect(0x1B); /* save old ctrl-break interrupt */
  789. setvect(0x1B, catch_cbrk); /* install our ctrl-break interrupt */
  790. ctrlbrk(cbrk_handler); /* vim's ctrl-break handler */
  791. #endif
  792. if (term_console)
  793.     out_str(T_ME); /* set colors */
  794.     }
  795.     else
  796.     {
  797. setcbrk(saved_cbrk); /* restore ctrl-break setting */
  798. #ifdef DJGPP
  799. signal(SIGINT,old_cbrk); /* critical error interrupt */
  800. #else
  801. setvect(0x24, old_cint); /* restore critical error interrupt */
  802. setvect(0x1B, old_cbrk); /* restore ctrl-break interrupt */
  803. #endif
  804. /* restore ctrl-break handler, how ??? */
  805. if (term_console)
  806.     mynormvideo(); /* restore screen colors */
  807.     }
  808. }
  809. /*
  810.  * We have no job control, fake it by starting a new shell.
  811.  */
  812.     void
  813. mch_suspend(void)
  814. {
  815.     suspend_shell();
  816. }
  817. extern int _fmode;
  818. /*
  819.  * Prepare window for use by Vim.
  820.  * we do not use windows, there is not much to do here
  821.  */
  822.     void
  823. mch_windinit(void)
  824. {
  825.     union REGS regs;
  826.     term_console = TRUE;    /* assume using the console for the things here */
  827.     _fmode = O_BINARY;     /* we do our own CR-LF translation */
  828.     out_flush();
  829.     set_interrupts(TRUE);   /* catch interrupts */
  830. #ifdef DJGPP
  831.     /*
  832.      * Use Long File Names by default, if $LFN not set.
  833.      */
  834.     if (getenv("LFN") == NULL)
  835. putenv("LFN=y");
  836.     get_screenbase();
  837. #endif
  838. #ifdef USE_MOUSE
  839. /* find out if a MS compatible mouse is available */
  840.     regs.x.ax = 0;
  841.     (void)int86(0x33, &regs, &regs);
  842.     mouse_avail = regs.x.ax;
  843.     /* best guess for mouse coordinate computations */
  844.     mch_get_winsize();
  845.     if (Columns <= 40)
  846. mouse_x_div = 16;
  847.     if (Rows == 30)
  848. mouse_y_div = 16;
  849. #endif
  850.     /*
  851.      * Try switching to 16 colors for background, instead of 8 colors and
  852.      * blinking.  Does this always work?  Can the old value be restored?
  853.      */
  854.     regs.x.ax = 0x1003;
  855.     regs.h.bl = 0x00;
  856.     regs.h.bh = 0x00;
  857.     int86(0x10, &regs, &regs);
  858.     /* Save the old cursor shape */
  859.     mch_restore_cursor_shape(FALSE);
  860.     /* Initialise the cursor shape */
  861.     mch_update_cursor();
  862. }
  863.     int
  864. mch_check_win(
  865.     int argc,
  866.     char **argv)
  867. {
  868.     /* store argv[0], may be used for $VIM */
  869.     if (*argv[0] != NUL)
  870. exe_name = FullName_save((char_u *)argv[0], FALSE);
  871.     if (isatty(1))
  872. return OK;
  873.     return FAIL;
  874. }
  875. /*
  876.  * Return TRUE if the input comes from a terminal, FALSE otherwise.
  877.  */
  878.     int
  879. mch_input_isatty(void)
  880. {
  881.     if (isatty(read_cmd_fd))
  882. return TRUE;
  883.     return FALSE;
  884. }
  885. #ifdef USE_FNAME_CASE
  886. /*
  887.  * fname_case(): Set the case of the file name, if it already exists.
  888.  */
  889.     void
  890. fname_case(char_u *name)
  891. {
  892.     char_u     *tail;
  893.     struct ffblk    fb;
  894.     slash_adjust(name);
  895.     if (findfirst(name, &fb, 0) == 0)
  896.     {
  897. tail = gettail(name);
  898. if (STRLEN(tail) == STRLEN(fb.ff_name))
  899.     STRCPY(tail, fb.ff_name);
  900.     }
  901. }
  902. #endif
  903. /*
  904.  * mch_settitle(): set titlebar of our window.
  905.  * Dos console has no title.
  906.  */
  907.     void
  908. mch_settitle(
  909.     char_u *title,
  910.     char_u *icon)
  911. {
  912. }
  913. /*
  914.  * Restore the window/icon title. (which we don't have)
  915.  */
  916.     void
  917. mch_restore_title(int which)
  918. {
  919. }
  920.     int
  921. mch_can_restore_title(void)
  922. {
  923.     return FALSE;
  924. }
  925.     int
  926. mch_can_restore_icon(void)
  927. {
  928.     return FALSE;
  929. }
  930. /*
  931.  * Insert user name in s[len].
  932.  */
  933.     int
  934. mch_get_user_name(
  935.     char_u *s,
  936.     int len)
  937. {
  938.     *s = NUL;
  939.     return FAIL;
  940. }
  941. /*
  942.  * Insert host name is s[len].
  943.  */
  944.     void
  945. mch_get_host_name(
  946.     char_u *s,
  947.     int len)
  948. {
  949. #ifdef DJGPP
  950.     STRNCPY(s, "PC (32 bits Vim)", len);
  951. #else
  952.     STRNCPY(s, "PC (16 bits Vim)", len);
  953. #endif
  954. }
  955. /*
  956.  * return process ID
  957.  */
  958.     long
  959. mch_get_pid(void)
  960. {
  961.     return (long)0;
  962. }
  963. /*
  964.  * Get name of current directory into buffer 'buf' of length 'len' bytes.
  965.  * Return OK for success, FAIL for failure.
  966.  */
  967.     int
  968. mch_dirname(
  969.     char_u *buf,
  970.     int len)
  971. {
  972. #ifdef DJGPP
  973.     if (getcwd((char *)buf, len) == NULL)
  974. return FAIL;
  975.     /* turn the '/'s returned by DJGPP into ''s */
  976.     slash_adjust(buf);
  977.     return OK;
  978. #else
  979.     return (getcwd((char *)buf, len) != NULL ? OK : FAIL);
  980. #endif
  981. }
  982. /*
  983.  * Change default drive (just like _chdrive of Borland C 3.1)
  984.  */
  985.     static int
  986. change_drive(int drive)
  987. {
  988.     union REGS regs;
  989.     regs.h.ah = 0x0e;
  990.     regs.h.dl = drive - 1;
  991.     intdos(&regs, &regs);   /* set default drive */
  992.     regs.h.ah = 0x19;
  993.     intdos(&regs, &regs);   /* get default drive */
  994.     if (regs.h.al == drive - 1)
  995. return 0;
  996.     else
  997. return -1;
  998. }
  999. /*
  1000.  * Get absolute file name into buffer 'buf' of length 'len' bytes.
  1001.  * All slashes are replaced with backslashes, to avoid trouble when comparing
  1002.  * file names.
  1003.  *
  1004.  * return FAIL for failure, OK otherwise
  1005.  */
  1006.     int
  1007. mch_FullName(
  1008.     char_u *fname,
  1009.     char_u *buf,
  1010.     int len,
  1011.     int force)
  1012. {
  1013.     if (fname == NULL) /* always fail */
  1014.     {
  1015. *buf = NUL;
  1016. return FAIL;
  1017.     }
  1018.     if (!force && mch_isFullName(fname)) /* allready expanded */
  1019.     {
  1020. STRNCPY(buf, fname, len);
  1021. slash_adjust(buf);
  1022. return OK;
  1023.     }
  1024. #ifdef __BORLANDC__ /* the old Turbo C does not have this */
  1025.     if (_fullpath((char *)buf, (char *)fname, len - 1) == NULL)
  1026.     {
  1027. STRNCPY(buf, fname, len);   /* failed, use the relative path name */
  1028. slash_adjust(buf);
  1029. return FAIL;
  1030.     }
  1031.     if (mch_isdir(fname))
  1032. STRCAT(buf, "\");
  1033.     slash_adjust(buf);
  1034.     return OK;
  1035. #else /* almost the same as mch_FullName in os_unix.c */
  1036.     {
  1037. int l;
  1038. char_u olddir[MAXPATHL];
  1039. char_u *p, *q;
  1040. int c;
  1041. int retval = OK;
  1042. *buf = 0;
  1043. /*
  1044.  * change to the directory for a moment,
  1045.  * and then do the getwd() (and get back to where we were).
  1046.  * This will get the correct path name with "../" things.
  1047.  */
  1048. p = vim_strrchr(fname, '/');
  1049. q = vim_strrchr(fname, '\');
  1050. if (q != NULL && (p == NULL || q > p))
  1051.     p = q;
  1052. q = vim_strrchr(fname, ':');
  1053. if (q != NULL && (p == NULL || q > p))
  1054.     p = q;
  1055. if (p != NULL)
  1056. {
  1057.     if (getcwd(olddir, MAXPATHL) == NULL)
  1058.     {
  1059. p = NULL; /* can't get current dir: don't chdir */
  1060. retval = FAIL;
  1061.     }
  1062.     else
  1063.     {
  1064. if ((q + 1) == p) /* ... c:foo     */
  1065.     q = p + 1; /* -> c:     */
  1066. else /* but c:foobar   */
  1067.     q = p; /* -> c:foo     */
  1068. c = *q; /* truncate at start of fname */
  1069. *q = NUL;
  1070. #ifdef DJGPP
  1071. STRCPY(buf, fname);
  1072. slash_adjust(buf); /* needed when fname starts with  */
  1073. if (mch_chdir(buf)) /* change to the directory */
  1074. #else
  1075. if (mch_chdir(fname)) /* change to the directory */
  1076. #endif
  1077.     retval = FAIL;
  1078. else
  1079. {
  1080.     fname = q;
  1081.     if (c == '\')     /* if we cut the name at a */
  1082. fname++;     /* '', don't add it again */
  1083. }
  1084. *q = c;
  1085.     }
  1086. }
  1087. if (getcwd(buf, len) == NULL)
  1088. {
  1089.     retval = FAIL;
  1090.     *buf = NUL;
  1091. }
  1092. /*
  1093.  * Concatenate the file name to the path.
  1094.  */
  1095. l = STRLEN(buf);
  1096. if (l && buf[l - 1] != '/' && buf[l - 1] != '\')
  1097.     strcat(buf, "/");
  1098. if (p)
  1099.     mch_chdir(olddir);
  1100. strcat(buf, fname);
  1101. slash_adjust(buf);
  1102. return retval;
  1103.     }
  1104. #endif
  1105. }
  1106. /*
  1107.  * Replace all slashes by backslashes.
  1108.  * This used to be the other way around, but MS-DOS sometimes has problems
  1109.  * with slashes (e.g. in a command name).  We can't have mixed slashes and
  1110.  * backslashes, because comparing file names will not work correctly.  The
  1111.  * commands that use a file name should try to avoid the need to type a
  1112.  * backslash twice.
  1113.  */
  1114.     void
  1115. slash_adjust(char_u *p)
  1116. {
  1117. #ifdef OLD_DJGPP    /* this seems to have been fixed in DJGPP 2.01 */
  1118.     /* DJGPP can't handle a file name that starts with a backslash, and when it
  1119.      * starts with a slash there should be no backslashes */
  1120.     if (*p == '\' || *p == '/')
  1121. while (*p)
  1122. {
  1123.     if (*p == '\')
  1124. *p = '/';
  1125.     ++p;
  1126. }
  1127.     else
  1128. #endif
  1129.     while (*p)
  1130.     {
  1131. if (*p == '/')
  1132.     *p = '\';
  1133. ++p;
  1134.     }
  1135. }
  1136. /*
  1137.  * return TRUE is fname is an absolute path name
  1138.  */
  1139.     int
  1140. mch_isFullName(char_u *fname)
  1141. {
  1142.     return (vim_strchr(fname, ':') != NULL);
  1143. }
  1144. /*
  1145.  * get file permissions for 'name'
  1146.  * -1 : error
  1147.  * else FA_attributes defined in dos.h
  1148.  */
  1149.     long
  1150. mch_getperm(char_u *name)
  1151. {
  1152.     return (long)_chmod((char *)name, 0, 0);  /* get file mode */
  1153. }
  1154. /*
  1155.  * set file permission for 'name' to 'perm'
  1156.  *
  1157.  * return FAIL for failure, OK otherwise
  1158.  */
  1159.     int
  1160. mch_setperm(
  1161.     char_u *name,
  1162.     long perm)
  1163. {
  1164.     perm |= FA_ARCH;     /* file has changed, set archive bit */
  1165.     return (_chmod((char *)name, 1, (int)perm) == -1 ? FAIL : OK);
  1166. }
  1167. /*
  1168.  * Set hidden flag for "name".
  1169.  */
  1170.     void
  1171. mch_hide(char_u *name)
  1172. {
  1173.     /* DOS 6.2 share.exe causes "seek error on file write" errors when making
  1174.      * the swap file hidden.  Thus don't do it. */
  1175. }
  1176. /*
  1177.  * return TRUE if "name" is a directory
  1178.  * return FALSE if "name" is not a directory
  1179.  * return FALSE for error
  1180.  *
  1181.  * beware of a trailing backslash
  1182.  */
  1183.     int
  1184. mch_isdir(char_u *name)
  1185. {
  1186.     int     f;
  1187.     char_u  *p;
  1188.     p = name + strlen((char *)name);
  1189.     if (p > name)
  1190. --p;
  1191.     if (*p == '\')     /* remove trailing backslash for a moment */
  1192. *p = NUL;
  1193.     else
  1194. p = NULL;
  1195.     f = _chmod((char *)name, 0, 0);
  1196.     if (p != NULL)
  1197. *p = '\';     /* put back backslash */
  1198.     if (f == -1)
  1199. return FALSE;     /* file does not exist at all */
  1200.     if ((f & FA_DIREC) == 0)
  1201. return FALSE;     /* not a directory */
  1202.     return TRUE;
  1203. }
  1204. /*
  1205.  * Careful: mch_windexit() may be called before mch_windinit()!
  1206.  */
  1207.     void
  1208. mch_windexit(int r)
  1209. {
  1210.     settmode(TMODE_COOK);
  1211.     stoptermcap();
  1212.     set_interrupts(FALSE);     /* restore interrupts */
  1213.     out_char('r');
  1214.     out_char('n');
  1215.     out_flush();
  1216.     ml_close_all(TRUE);     /* remove all memfiles */
  1217.     mch_restore_cursor_shape(TRUE);
  1218.     exit(r);
  1219. }
  1220. /*
  1221.  * set the tty in (raw) ? "raw" : "cooked" mode
  1222.  * Does not change the tty, as bioskey() and kbhit() work raw all the time.
  1223.  */
  1224.     void
  1225. mch_settmode(int tmode)
  1226. {
  1227. }
  1228. #ifdef USE_MOUSE
  1229.     void
  1230. mch_setmouse(int on)
  1231. {
  1232.     mouse_active = on;
  1233.     mouse_hidden = TRUE; /* dont show it until moved */
  1234. }
  1235. #endif
  1236. /*
  1237.  * set screen mode
  1238.  * return FAIL for failure, OK otherwise
  1239.  */
  1240.     int
  1241. mch_screenmode(char_u *arg)
  1242. {
  1243.     int     mode;
  1244.     int     i;
  1245.     static char    *(names[]) = {"BW40", "C40", "BW80", "C80", "MONO", "C4350"};
  1246.     static int     modes[]  = { BW40,  C40, BW80, C80,   MONO,   C4350};
  1247.     mode = -1;
  1248.     if (isdigit(*arg))     /* mode number given */
  1249. mode = atoi((char *)arg);
  1250.     else
  1251.     {
  1252. for (i = 0; i < sizeof(names) / sizeof(char_u *); ++i)
  1253.     if (stricmp(names[i], (char *)arg) == 0)
  1254.     {
  1255. mode = modes[i];
  1256. break;
  1257.     }
  1258.     }
  1259.     if (mode == -1)
  1260.     {
  1261. EMSG("Unsupported screen mode");
  1262. return FAIL;
  1263.     }
  1264.     textmode(mode);     /* use Borland function */
  1265. #ifdef DJGPP
  1266.     /* base address may have changed */
  1267.     get_screenbase();
  1268. #endif
  1269.     /* Screen colors may have changed. */
  1270.     out_str(T_ME);
  1271. #ifdef USE_MOUSE
  1272.     if (mode <= 1 || mode == 4 || mode == 5 || mode == 13 || mode == 0x13)
  1273. mouse_x_div = 16;
  1274.     else
  1275. mouse_x_div = 8;
  1276.     if (mode == 0x11 || mode == 0x12)
  1277. mouse_y_div = 16;
  1278.     else if (mode == 0x10)
  1279. mouse_y_div = 14;
  1280.     else
  1281. mouse_y_div = 8;
  1282.     ui_get_winsize();     /* Rows is used in mouse_area() */
  1283.     mouse_area();     /* set area where mouse can go */
  1284. #endif
  1285.     return OK;
  1286. }
  1287. /*
  1288.  * Structure used by Turbo-C/Borland-C to store video parameters.
  1289.  */
  1290. #ifndef DJGPP
  1291. extern struct text_info _video;
  1292. #endif
  1293. /*
  1294.  * try to get the real window size
  1295.  * return FAIL for failure, OK otherwise
  1296.  */
  1297.     int
  1298. mch_get_winsize(void)
  1299. {
  1300.     struct text_info textinfo;
  1301. /*
  1302.  * The screenwidth is returned by the BIOS OK.
  1303.  * The screenheight is in a location in the bios RAM, if the display is EGA or
  1304.  * VGA.
  1305.  */
  1306.     if (!term_console)
  1307. return FAIL;
  1308.     gettextinfo(&textinfo);
  1309.     Columns = textinfo.screenwidth;
  1310.     Rows = textinfo.screenheight;
  1311. #ifndef DJGPP
  1312.     if (textinfo.currmode > 10)
  1313. Rows = *(char far *)MK_FP(0x40, 0x84) + 1;
  1314. #endif
  1315.     /*
  1316.      * don't call set_window() when not doing full screen, since it will move
  1317.      * the cursor.  Also skip this when exiting.
  1318.      */
  1319.     if (full_screen && !exiting)
  1320. set_window();
  1321.     if (Columns < MIN_COLUMNS || Rows < MIN_LINES)
  1322.     {
  1323. /* these values are overwritten by termcap size or default */
  1324. Columns = 80;
  1325. Rows = 25;
  1326. return FAIL;
  1327.     }
  1328.     check_winsize();
  1329. #ifdef DJGPP
  1330.     mytextinit(&textinfo);   /* Added by JML, 1/15/98 */
  1331. #endif
  1332.     return OK;
  1333. }
  1334. /*
  1335.  * Set the active window for delline/insline.
  1336.  */
  1337.     void
  1338. set_window(void)
  1339. {
  1340. #ifndef DJGPP
  1341.     _video.screenheight = Rows;
  1342. #endif
  1343.     mywindow(1, 1, Columns, Rows);
  1344.     screen_start();
  1345. }
  1346.     void
  1347. mch_set_winsize(void)
  1348. {
  1349.     /* should try to set the window size to Rows and Columns */
  1350.     /* may involve switching display mode.... */
  1351. #ifdef USE_MOUSE
  1352.     mouse_area();     /* set area where mouse can go */
  1353. #endif
  1354. }
  1355. /*
  1356.  * call shell, return FAIL for failure, OK otherwise
  1357.  * options == SHELL_FILTER if called by do_filter()
  1358.  * options == SHELL_COOKED if term needs cooked mode
  1359.  */
  1360.     int
  1361. mch_call_shell(
  1362.     char_u *cmd,
  1363.     int options)
  1364. {
  1365.     int     x;
  1366.     char_u  *newcmd;
  1367.     out_flush();
  1368.     if (options & SHELL_COOKED)
  1369. settmode(TMODE_COOK); /* set to normal mode */
  1370.     set_interrupts(FALSE);     /* restore interrupts */
  1371. #ifdef DJGPP
  1372.     /* ignore signals while external command is running */
  1373.     signal(SIGINT, SIG_IGN);
  1374.     signal(SIGHUP, SIG_IGN);
  1375.     signal(SIGQUIT, SIG_IGN);
  1376.     signal(SIGTERM, SIG_IGN);
  1377. #endif
  1378.     if (cmd == NULL)
  1379. x = system((char *)p_sh);
  1380.     else
  1381.     {
  1382. #ifdef DJGPP
  1383. /*
  1384.  * Use 'shell' for system().
  1385.  */
  1386. setenv("SHELL", (char *)p_sh, 1);
  1387. x = system(cmd);
  1388. #else
  1389. /* we use "command" to start the shell, slow but easy */
  1390. newcmd = alloc(STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 3);
  1391. if (newcmd == NULL)
  1392.     x = -1;
  1393. else
  1394. {
  1395.     sprintf((char *)newcmd, "%s %s %s", p_sh, p_shcf, cmd);
  1396.     x = system((char *)newcmd);
  1397.     vim_free(newcmd);
  1398. }
  1399. #endif
  1400.     }
  1401. #ifdef DJGPP
  1402.     signal(SIGINT, SIG_DFL);
  1403.     signal(SIGHUP, SIG_DFL);
  1404.     signal(SIGQUIT, SIG_DFL);
  1405.     signal(SIGTERM, SIG_DFL);
  1406. #endif
  1407.     settmode(TMODE_RAW); /* set to raw mode */
  1408.     set_interrupts(TRUE); /* catch interrupts */
  1409.     if (x && !expand_interactively)
  1410.     {
  1411. msg_putchar('n');
  1412. msg_outnum((long)x);
  1413. MSG_PUTS(" returnedn");
  1414.     }
  1415.     /* resettitle();     we don't have titles */
  1416.     (void)ui_get_winsize();     /* display mode may have been changed */
  1417.     return x;
  1418. }
  1419. /*
  1420.  * check for an "interrupt signal": CTRL-break or CTRL-C
  1421.  */
  1422.     void
  1423. mch_breakcheck(void)
  1424. {
  1425.     if (ctrlc_pressed)
  1426.     {
  1427. ctrlc_pressed = FALSE;
  1428. got_int = TRUE;
  1429.     }
  1430. }
  1431. static int _cdecl pstrcmp();  /* BCC does not like the types */
  1432.     static int _cdecl
  1433. pstrcmp(a, b)
  1434.     char_u **a, **b;
  1435. {
  1436.     return (stricmp((char *)*a, (char *)*b));
  1437. }
  1438.     int
  1439. mch_has_wildcard(char_u *s)
  1440. {
  1441.     return (vim_strpbrk(s, (char_u *)"?*$~") != NULL);
  1442. }
  1443.     static void
  1444. namelowcpy(
  1445.     char_u *d,
  1446.     char_u *s)
  1447. {
  1448. #ifdef DJGPP
  1449.     if (USE_LONG_FNAME)     /* don't lower case on Windows 95/NT systems */
  1450. while (*s)
  1451.     *d++ = *s++;
  1452.     else
  1453. #endif
  1454. while (*s)
  1455.     *d++ = TO_LOWER(*s++);
  1456.     *d = NUL;
  1457. }
  1458. /*
  1459.  * Recursive function to expand one path section with wildcards.
  1460.  * Return the number of matches found.
  1461.  */
  1462.     int
  1463. mch_expandpath(
  1464.     struct growarray *gap,
  1465.     char_u *path,
  1466.     int flags)
  1467. {
  1468.     char_u *buf;
  1469.     char_u *p, *s, *e;
  1470.     int start_len, c;
  1471.     struct ffblk fb;
  1472.     int matches;
  1473.     start_len = gap->ga_len;
  1474.     buf = alloc(STRLEN(path) + BASENAMELEN + 5);   /* make room for file name */
  1475.     if (buf == NULL)
  1476. return 0;
  1477.     /*
  1478.      * Find the first part in the path name that contains a wildcard.
  1479.      * Copy it into buf, including the preceding characters.
  1480.      */
  1481.     p = buf;
  1482.     s = NULL;
  1483.     e = NULL;
  1484.     while (*path)
  1485.     {
  1486. if (*path == '\' || *path == ':' || *path == '/')
  1487. {
  1488.     if (e)
  1489. break;
  1490.     else
  1491. s = p;
  1492. }
  1493. if (*path == '*' || *path == '?')
  1494.     e = p;
  1495. *p++ = *path++;
  1496.     }
  1497.     e = p;
  1498.     if (s)
  1499. s++;
  1500.     else
  1501. s = buf;
  1502.     /* if the file name ends in "*" and does not contain a ".", addd ".*" */
  1503.     if (e[-1] == '*' && vim_strchr(s, '.') == NULL)
  1504.     {
  1505. *e++ = '.';
  1506. *e++ = '*';
  1507.     }
  1508.     /* now we have one wildcard component between s and e */
  1509.     *e = NUL;
  1510.     /* If we are expanding wildcards we try both files and directories */
  1511.     if ((c = findfirst((char *)buf, &fb,
  1512.     (*path || (flags & EW_DIR)) ? FA_DIREC : 0)) != 0)
  1513.     {
  1514. /* not found */
  1515. vim_free(buf);
  1516. return 0; /* unexpanded or empty */
  1517.     }
  1518.     while (!c)
  1519.     {
  1520. namelowcpy((char *)s, fb.ff_name);
  1521. /* ignore "." and ".." */
  1522. if (*s != '.' || (s[1] != NUL && (s[1] != '.' || s[2] != NUL)))
  1523. {
  1524.     STRCAT(buf, path);
  1525.     if (mch_has_wildcard(path))
  1526. (void)mch_expandpath(gap, buf, flags);
  1527.     else if (mch_getperm(buf) >= 0) /* add existing file */
  1528. addfile(gap, buf, flags);
  1529. }
  1530. c = findnext(&fb);
  1531.     }
  1532.     vim_free(buf);
  1533.     matches = gap->ga_len - start_len;
  1534.     if (matches)
  1535. qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
  1536.    sizeof(char_u *), pstrcmp);
  1537.     return matches;
  1538. }
  1539. /*
  1540.  * The normal chdir() does not change the default drive.
  1541.  * This one does.
  1542.  */
  1543.     int
  1544. mch_chdir(char *path)
  1545. {
  1546.     if (path[0] == NUL)     /* just checking... */
  1547. return 0;
  1548.     if (path[1] == ':')     /* has a drive name */
  1549.     {
  1550. if (change_drive(TO_LOWER(path[0]) - 'a' + 1))
  1551.     return -1;     /* invalid drive name */
  1552. path += 2;
  1553.     }
  1554.     if (*path == NUL)     /* drive name only */
  1555. return 0;
  1556.     return chdir(path);     /* let the normal chdir() do the rest */
  1557. }
  1558. #ifdef DJGPP
  1559. /*
  1560.  * mch_rename() works around a bug in rename (aka MoveFile) in
  1561.  * Windows 95: rename("foo.bar", "foo.bar~") will generate a
  1562.  * file whose short file name is "FOO.BAR" (its long file name will
  1563.  * be correct: "foo.bar~").  Because a file can be accessed by
  1564.  * either its SFN or its LFN, "foo.bar" has effectively been
  1565.  * renamed to "foo.bar", which is not at all what was wanted.  This
  1566.  * seems to happen only when renaming files with three-character
  1567.  * extensions by appending a suffix that does not include ".".
  1568.  * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
  1569.  * This works like mch_rename in os_win32.c, but is a bit simpler.
  1570.  *
  1571.  * Like rename(), returns 0 upon success, non-zero upon failure.
  1572.  * Should probably set errno appropriately when errors occur.
  1573.  */
  1574.     int
  1575. mch_rename(const char *OldFile, const char *NewFile)
  1576. {
  1577.     char_u  *TempFile;
  1578.     int     retval;
  1579.     int     fd;
  1580.     /* rename() works correctly without long file names, so use that */
  1581.     if (!_USE_LFN)
  1582. return rename(OldFile, NewFile);
  1583.     if ((TempFile = alloc((unsigned)(STRLEN(OldFile) + 13))) == NULL)
  1584. return -1;
  1585.     STRCPY(TempFile, OldFile);
  1586.     STRCPY(gettail(TempFile), "axlqwqhy.ba~");
  1587.     if (rename(OldFile, TempFile))
  1588. retval = -1;
  1589.     else
  1590.     {
  1591. /* now create an empty file called OldFile; this prevents
  1592.  * the operating system using OldFile as an alias (SFN)
  1593.  * if we're renaming within the same directory.  For example,
  1594.  * we're editing a file called filename.asc.txt by its SFN,
  1595.  * filena~1.txt.  If we rename filena~1.txt to filena~1.txt~
  1596.  * (i.e., we're making a backup while writing it), the SFN
  1597.  * for filena~1.txt~ will be filena~1.txt, by default, which
  1598.  * will cause all sorts of problems later in buf_write.  So, we
  1599.  * create an empty file called filena~1.txt and the system will have
  1600.  * to find some other SFN for filena~1.txt~, such as filena~2.txt
  1601.  */
  1602. if ((fd = open(OldFile, O_RDWR|O_CREAT|O_EXCL, 0444)) < 0)
  1603.     return -1;
  1604. retval = rename(TempFile, NewFile);
  1605. close(fd);
  1606. mch_remove((char_u *)OldFile);
  1607.     }
  1608.     vim_free(TempFile);
  1609.     return retval;  /* success */
  1610. }
  1611. #endif
  1612. /*
  1613.  * Special version of getenv(): use $HOME when $VIM not defined.
  1614.  */
  1615.     char_u *
  1616. mch_getenv(char_u *var)
  1617. {
  1618.     char_u  *retval;
  1619.     retval = (char_u *)getenv((char *)var);
  1620.     if (retval == NULL && STRCMP(var, "VIM") == 0)
  1621. retval = (char_u *)getenv("HOME");
  1622.     return retval;
  1623. }
  1624. #ifdef DJGPP
  1625. /*
  1626.  * setlocale() for DJGPP with MS-DOS codepage support
  1627.  * Author: Cyril Slobin <slobin@fe.msk.ru>
  1628.  *
  1629.  * Scaled down a lot for use by Vim: Only support setlocale(LC_ALL, "").
  1630.  */
  1631. #undef setlocale
  1632. #include <go32.h>
  1633. #include <inlines/ctype.ha>
  1634. #include <locale.h>
  1635. #define UPCASE (__dj_ISALNUM | __dj_ISALPHA | __dj_ISGRAPH | __dj_ISPRINT | __dj_ISUPPER)
  1636. #define LOCASE (__dj_ISALNUM | __dj_ISALPHA | __dj_ISGRAPH | __dj_ISPRINT | __dj_ISLOWER)
  1637.     void
  1638. djgpp_setlocale(void)
  1639. {
  1640.     __dpmi_regs regs;
  1641.     struct { char id; unsigned short off, seg; } __attribute__ ((packed)) info;
  1642.     unsigned char buffer[0x82], lower, upper;
  1643.     int i;
  1644.     regs.x.ax = 0x6502;
  1645.     regs.x.bx = 0xffff;
  1646.     regs.x.dx = 0xffff;
  1647.     regs.x.cx = 5;
  1648.     regs.x.es = __tb >> 4;
  1649.     regs.x.di = __tb & 0xf;
  1650.     __dpmi_int(0x21, &regs);
  1651.     if (regs.x.flags & 1)
  1652. return;
  1653.     dosmemget(__tb, 5, &info);
  1654.     dosmemget((info.seg << 4) + info.off, 0x82, buffer);
  1655.     if (*(short *)buffer != 0x80)
  1656. return;
  1657.     /* Fix problem of underscores being replaced with y-umlaut. (Levin) */
  1658.     if (buffer[26] == 0x5f)
  1659. buffer[26] = 0x98;
  1660.     for (i = 0; i < 0x80; i++)
  1661.     {
  1662. lower = i + 0x80;
  1663. upper = (buffer+2)[i];
  1664. if (lower != upper)
  1665. {
  1666.     __dj_ctype_flags[lower+1] = LOCASE;
  1667.     __dj_ctype_toupper[lower+1] = upper;
  1668.     if (__dj_ctype_flags[upper+1] == 0)
  1669. __dj_ctype_flags[upper+1] = UPCASE;
  1670.     if (__dj_ctype_tolower[upper+1] == upper)
  1671. __dj_ctype_tolower[upper+1] = lower;
  1672. }
  1673.     }
  1674.     return;
  1675. }
  1676. #endif /* DJGPP */