home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / UTIL / WWIVE / MYWIVE.ZIP / RETURN.C < prev    next >
C/C++ Source or Header  |  1993-05-06  |  44KB  |  1,918 lines

  1. #include <process.h>
  2. #include <math.h>
  3. #include <dir.h>
  4. #include <stdio.h>
  5. #include <io.h>
  6. #include <fcntl.h>
  7. #include <string.h>
  8. #include <stdlib.h>
  9. #include <sys\stat.h>
  10. #include <dos.h>
  11. #include <alloc.h>
  12. #include <time.h>
  13. #include "vardec.h"
  14.  
  15. void far *funcs[25];
  16.  
  17. void ansic(int n);
  18. unsigned char getkey();
  19. char inkey();
  20. void pausescr();
  21. void backspace();
  22. void nl();
  23. void outstr(char *s);
  24. void outchr(char c);
  25. void checkhangup();
  26. void outcomch(char ch);
  27. long timer1();
  28. void checka(int *abort, int *next);
  29.  
  30. char *xenviron[50],newprompt[161];
  31. char ver_no1[51];
  32.  
  33. int topline=0,screenbottom=24,tempio,curatr=0x07,lines_listed=0,outcom=0;
  34. int hangup=0,hungup=0,echo=1,lecho=1,input_extern=0,ctc=0,ccc=0;
  35. int defscreenbottom=24;
  36.  
  37. char charbuffer[161]="",endofline[81]="";
  38. int charbufferpointer=0;
  39. int ansiptr=0;
  40.  
  41. int oldx,oldy,flow_control;
  42. char ansistr[81];
  43. int change_color;
  44. userrec thisuser;
  45.  
  46. unsigned int baud_rate;
  47.  
  48. long timelastchar1,hanguptime1;
  49.  
  50. unsigned char andwith=255;
  51.  
  52. char cdir[81];
  53.  
  54. volatile int head,tail;
  55. volatile char buffer[max_buf];
  56. int base,async_irq,useron,in_extern,ok_modem_stuff;
  57. int outcom,incom,using_modem,chatting,screenlinest;
  58.  
  59. void my_video_int()
  60. {
  61.   static unsigned short sav_bp;
  62.  
  63.   __emit__(0x56, 0x57); /* push si, push di */
  64.   sav_bp = _BP;
  65.   geninterrupt(0x10);
  66.   _BP = sav_bp;
  67.   __emit__(0x5f, 0x5e); /* pop di, pop si */
  68. }
  69.  
  70. int okansi()
  71. /* This function checks the status of the current user's record to see if
  72.  * the user has specified that he wants ANSI graphics displayed.
  73.  */
  74. {
  75.   if (thisuser.sysstatus & sysstatus_ansi)
  76.     return(1);
  77.   else
  78.     return(0);
  79. }
  80.  
  81. void wait1(long l)
  82. {
  83.   long l1;
  84.  
  85.   l1 = timer1()+l;
  86.  
  87.   enable();
  88.   while (timer1()<l1)
  89.     ;
  90. }
  91.  
  92. #define frequency 500
  93.  
  94. void setbeep(int i)
  95. {
  96.   int i1,i2;
  97.  
  98.   if (i) {
  99.     i1 = 0x34DD / frequency;
  100.     i2 = inportb(0x61);
  101.     if (!(i2 & 0x03)) {
  102.       outportb(0x61, i2 | 0x03);
  103.       outportb(0x43, 0xB6);
  104.     }
  105.     outportb(0x42, i1 & 0x0F);
  106.     outportb(0x42, i1 >> 4);
  107.   } else
  108.     outportb(0x61, inportb(0x61) & 0xFC);
  109. }
  110.  
  111. void pla(char *s, int *abort)
  112. {
  113.   int i,next;
  114.  
  115.   i=0;
  116.   checkhangup();
  117.   if (hangup)
  118.     *abort=1;
  119.   checka(abort,&next);
  120.   while ((s[i]) && (!(*abort))) {
  121.     outchr(s[i++]);
  122.     checka(abort,&next);
  123.   }
  124.   if (!(*abort))
  125.     nl();
  126. }
  127.  
  128. void checka(int *abort, int *next)
  129. {
  130.   char ch;
  131.  
  132.   while ((!empty()) && (!(*abort)) && (!hangup)) {
  133.     checkhangup();
  134.     ch=inkey();
  135.     switch(ch) {
  136.       case 14:
  137.         *next=1;
  138.       case 3:
  139.       case 32:
  140.       case 24:
  141.         *abort=1;
  142.         break;
  143.       case 'P':
  144.       case 'p':
  145.       case 19:
  146.         ch=getkey();
  147.         break;
  148.     }
  149.   }
  150. }
  151.  
  152. void inli(char *s, char *rollover, int maxlen, int crend)
  153. {
  154.   int cp,i,i1,done,cm,begx;
  155.   char s1[255];
  156.   unsigned char ch;
  157.  
  158.   cm=chatting;
  159.  
  160.   begx=wherex();
  161.   if (rollover[0]!=0) {
  162.     if (charbufferpointer) {
  163.       strcpy(s1,rollover);
  164.       strcat(s1,&charbuffer[charbufferpointer]);
  165.       strcpy(&charbuffer[1],s1);
  166.       charbufferpointer=1;
  167.     } else {
  168.       strcpy(&charbuffer[1],rollover);
  169.       charbufferpointer=1;
  170.     }
  171.     rollover[0]=0;
  172.   }
  173.   cp=0;
  174.   done=0;
  175.   do {
  176.     ch=getkey();
  177.     if (cm)
  178.       if (chatting==0)
  179.         ch=13;
  180.     if ((ch>=32)) {
  181.       if ((wherex()<(thisuser.screenchars-1)) && (cp<maxlen)) {
  182.         s[cp++]=ch;
  183.         outchr(ch);
  184.         if (wherex()==(thisuser.screenchars-1))
  185.           done=1;
  186.       } else {
  187.         if (wherex()>=(thisuser.screenchars-1))
  188.           done=1;
  189.       }
  190.     } else
  191.         switch(ch) {
  192.           case 7:
  193.             if ((chatting) && (outcom))
  194.               outcomch(7);
  195.             break;
  196.           case 13: /* C/R */
  197.             s[cp]=0;
  198.             done=1;
  199.             break;
  200.           case 8:  /* Backspace */
  201.             if (cp) {
  202.               if (s[cp-2]==3) {
  203.                 cp-=2;
  204.                 ansic(0);
  205.               } else
  206.                 if (s[cp-1]==8) {
  207.                   cp--;
  208.                   outchr(32);
  209.                 } else {
  210.                   cp--;
  211.                   backspace();
  212.                 }
  213.             }
  214.             break;
  215.           case 24: /* Ctrl-X */
  216.             while (wherex()>begx) {
  217.               backspace();
  218.               cp=0;
  219.             }
  220.             ansic(0);
  221.             break;
  222.           case 23: /* Ctrl-W */
  223.             if (cp) {
  224.               do {
  225.                 if (s[cp-2]==3) {
  226.                   cp-=2;
  227.                   ansic(0);
  228.                 } else
  229.                   if (s[cp-1]==8) {
  230.                     cp--;
  231.                     outchr(32);
  232.                   } else {
  233.                     cp--;
  234.                     backspace();
  235.                   }
  236.               } while ((cp) && (s[cp-1]!=32) && (s[cp-1]!=8) && (s[cp-2]!=3));
  237.             }
  238.             break;
  239.           case 14: /* Ctrl-N */
  240.             if ((wherex()) && (cp<maxlen)) {
  241.               outchr(8);
  242.               s[cp++]=8;
  243.             }
  244.             break;
  245.           case 16: /* Ctrl-P */
  246.             if (cp<maxlen-1) {
  247.               ch=getkey();
  248.               if ((ch>='0') && (ch<='7')) {
  249.                 s[cp++]=3;
  250.                 s[cp++]=ch;
  251.                 ansic(ch-'0');
  252.               }
  253.             }
  254.             break;
  255.           case 9:  /* Tab */
  256.             i=5-(cp % 5);
  257.             if (((cp+i)<maxlen) && ((wherex()+i)<thisuser.screenchars)) {
  258.               i=5-((wherex()+1) % 5);
  259.               for (i1=0; i1<i; i1++) {
  260.                 s[cp++]=32;
  261.                 outchr(32);
  262.               }
  263.             }
  264.             break;
  265.         }
  266.   } while ((done==0) && (hangup==0));
  267.   if (ch!=13) {
  268.     i=cp-1;
  269.     while ((i>0) && (s[i]!=32) && (s[i]!=8) || (s[i-1]==3))
  270.       i--;
  271.     if ((i>(wherex()/2)) && (i!=(cp-1))) {
  272.       i1=cp-i-1;
  273.       for (i=0; i<i1; i++)
  274.         outchr(8);
  275.       for (i=0; i<i1; i++)
  276.         outchr(32);
  277.       for (i=0; i<i1; i++)
  278.         rollover[i]=s[cp-i1+i];
  279.       rollover[i1]=0;
  280.       cp -= i1;
  281.     }
  282.     s[cp++]=1;
  283.     s[cp]=0;
  284.   }
  285.   if (crend)
  286.     nl();
  287.  
  288. }
  289.  
  290. long timer1()
  291. /* This function returns the time, in seconds since midnight. */
  292. {
  293.   unsigned short h,m;
  294.   long l;
  295.  
  296.   m=peek(0x0040,0x006c);
  297.   h=peek(0x0040,0x006e);
  298.   l=((long)h)*65536 + ((long)m);
  299.   return(l);
  300. }
  301.  
  302. #define SCROLL_UP(t,b,l) \
  303.   _CH=t;\
  304.   _DH=b;\
  305.   _BH=curatr;\
  306.   _AL=l;\
  307.   _CL=0;\
  308.   _DL=79;\
  309.   _AH=6;\
  310.   my_video_int();
  311.  
  312. void movecsr(int x,int y)
  313. /* This, obviously, moves the cursor to the location specified, offset from
  314.  * the protected dispaly at the top of the screen
  315.  */
  316. {
  317.   if (x<0)
  318.     x=0;
  319.   if (x>79)
  320.     x=79;
  321.   if (y<0)
  322.     y=0;
  323.   y+=topline;
  324.   if (y>screenbottom)
  325.     y=screenbottom;
  326.  
  327.   _BH=0x00;
  328.   _DH=y;
  329.   _DL=x;
  330.   _AH=0x02;
  331.   my_video_int();
  332. }
  333.  
  334. int wherex()
  335. /* This function returns the current X cursor position, as the number of
  336.  * characters from the left hand side of the screen.  An X position of zero
  337.  * means the cursor is at the left-most position
  338.  */
  339. {
  340.   _BH=0x00;
  341.   _AH=0x03;
  342.   my_video_int();
  343.   tempio=_DL;
  344.   return(tempio);
  345. }
  346.  
  347. int wherey()
  348. /* This function returns the Y cursor position, as the line number from
  349.  * the top of the logical window.  The offset due to the protected top
  350.  * of the screen display is taken into account.  A wherey() of zero means
  351.  * the cursor is at the top-most position it can be at.
  352.  */
  353. {
  354.   _BH=0x00;
  355.   _AH=0x03;
  356.   my_video_int();
  357.   tempio=_DH;
  358.   return(tempio-topline);
  359. }
  360.  
  361. void lf()
  362. /* This function performs a linefeed to the screen (but not remotely) by
  363.  * either moving the cursor down one line, or scrolling the logical screen
  364.  * up one line.
  365.  */
  366. {
  367.   _BH=0x00;
  368.   _AH=0x03;
  369.   my_video_int();
  370.   tempio=_DL;
  371.   if (_DH==screenbottom) {
  372.     SCROLL_UP(topline,screenbottom,1);
  373.     _DL=tempio;
  374.     _DH=screenbottom;
  375.     _BH=0;
  376.     _AH=0x02;
  377.     my_video_int();
  378.   } else {
  379.     tempio=_DH+1;
  380.     _DH=tempio;
  381.     _AH=0x02;
  382.     my_video_int();
  383.   }
  384. }
  385.  
  386. void cr()
  387. /* This short function returns the local cursor to the left-most position
  388.  * on the screen.
  389.  */
  390. {
  391.   _BH=0x00;
  392.   _AH=0x03;
  393.   my_video_int();
  394.   _DL=0x00;
  395.   _AH=2;
  396.   my_video_int();
  397. }
  398.  
  399. void clrscrb()
  400. /* This clears the local logical screen */
  401. {
  402.   SCROLL_UP(topline,screenbottom,0);
  403.   movecsr(0,0);
  404.   lines_listed=0;
  405. }
  406.  
  407. void bs()
  408. /* This function moves the cursor one position to the left, or if the cursor
  409.  * is currently at its left-most position, the cursor is moved to the end of
  410.  * the previous line, except if it is on the top line, in which case nothing
  411.  * happens.
  412.  */
  413. {
  414.   _BH=0;
  415.   _AH=3;
  416.   my_video_int();
  417.   if (_DL==0) {
  418.     if (_DH != topline) {
  419.       _DL=79;
  420.       tempio=_DH-1;
  421.       _DH=tempio;
  422.       _AH=2;
  423.       my_video_int();
  424.     }
  425.   } else {
  426.     _DL--;
  427.     _AH=2;
  428.     my_video_int();
  429.   }
  430. }
  431.  
  432. void out1chx(unsigned char ch)
  433. /* This function outputs one character to the screen, then updates the
  434.  * cursor position accordingly, scolling the screen if necessary.  Not that
  435.  * this function performs no commands such as a C/R or L/F.  If a value of
  436.  * 8, 7, 13, 10, 12 (backspace, beep, C/R, L/F, TOF), or any other command-
  437.  * type characters are passed, the appropriate corresponding "graphics"
  438.  * symbol will be output to the screen as a normal character.
  439.  */
  440. {
  441.   _BL=curatr;
  442.   _BH=0x00;
  443.   _CX=0x01;
  444.   _AL=ch;
  445.   _AH=0x09;
  446.   my_video_int();
  447.   _BH=0x00;
  448.   _AH=0x03;
  449.   my_video_int();
  450.   ++_DL;
  451.   if (_DL==80) {
  452.     _DL=0;
  453.     if (_DH==screenbottom) {
  454.       SCROLL_UP(topline,screenbottom,1);
  455.       _DH=screenbottom;
  456.       _DL=0;
  457.       _BH=0;
  458.       _AH=0x02;
  459.       my_video_int();
  460.     } else {
  461.       tempio=_DH+1;
  462.       _DH=tempio;
  463.       _AH=0x02;
  464.       my_video_int();
  465.     }
  466.   } else {
  467.     _AH=0x02;
  468.     my_video_int();
  469.   }
  470. }
  471.  
  472. void out1ch(unsigned char ch)
  473. /* This function outputs one character to the local screen.  C/R, L/F, TOF,
  474.  * BS, and BELL are interpreted as commands instead of characters.
  475.  */
  476. {
  477.   if (ch>31)
  478.     out1chx(ch);
  479.   else
  480.     if (ch==13)
  481.       cr();
  482.     else
  483.       if (ch==10)
  484.         lf();
  485.       else
  486.         if (ch==12)
  487.           clrscrb();
  488.         else
  489.           if (ch==8)
  490.             bs();
  491.           else
  492.             if (ch==7)
  493.               if (outcom==0) {
  494.                 setbeep(1);
  495.                 wait1(4);
  496.                 setbeep(0);
  497.               }
  498. }
  499.  
  500. void far interrupt async_isr ()
  501. /* This function is called every time a char is received on the com port.
  502.  * The character is stored in the buffer[] array, and the head pointer is
  503.  * updated.
  504.  */
  505. {
  506.   buffer[head++] = inportb(base);
  507.   if (head == max_buf)
  508.     head = 0;
  509.   outportb(0x20, 0x20);
  510. }
  511.  
  512. void outcomch(char ch)
  513. /* This function outputs one character to the com port */
  514. {
  515.   while (!(inportb(base + 5) & 0x20))
  516.     ;
  517.   if (flow_control)
  518.     while (!(inportb(base + 6) & 0x10))
  519.       ;
  520.   outportb(base, ch);
  521. }
  522.  
  523. char get1c()
  524. /* This function returns one character from the com port, or a zero if
  525.  * no character is waiting
  526.  */
  527. {
  528.   char c1;
  529.  
  530.   if (head != tail) {
  531.     disable();
  532.     c1 = buffer[tail++];
  533.     if (tail == max_buf)
  534.       tail = 0;
  535.     enable();
  536.     return(c1);
  537.   } else
  538.     return(0);
  539. }
  540.  
  541. int comhit()
  542. /* This returns a value telling if there is a character waiting in the com
  543.  * buffer.
  544.  */
  545. {
  546.   return(head != tail);
  547. }
  548.  
  549. void dump()
  550. /* This function clears the com buffer */
  551. {
  552.   disable();
  553.   head = tail = 0;
  554.   enable();
  555. }
  556.  
  557. void set_baud(unsigned int rate)
  558. /* This function sets the com speed to that passed */
  559. {
  560.   float rl;
  561.  
  562.   if ((rate > 49) && (rate < 57601)) {
  563.     rl   = 115200.0 / ((float) rate);
  564.     rate = (int) rl;
  565.     outportb(base + 3, inportb(base + 3) | 0x80);
  566.     outportb(base,     (rate & 0x00FF));
  567.     outportb(base + 1, ((rate >> 8) & 0x00FF));
  568.     outportb(base + 3, inportb(base + 3) & 0x7F);
  569.   }
  570. }
  571.  
  572. void initport(int portnum)
  573. /* This function initializes the com buffer, setting up the interrupt,
  574.  * and com parameters
  575.  */
  576. {
  577.   int temp;
  578.  
  579.   temp=portnum;
  580.  
  581.   setvect(8 + async_irq, async_isr);
  582.   head = tail = 0;
  583.   outportb(base + 3, 0x03);
  584.   disable();
  585.   temp = inportb(base + 5);
  586.   temp = inportb(base);
  587.   temp = inportb(0x21);
  588.   temp = temp & ((1 << async_irq) ^ 0x00FF);
  589.   outportb(0x21, temp);
  590.   outportb(base + 1, 0x01);
  591.   temp=inportb(base + 4);
  592.   outportb(base + 4, temp | 0x0B);
  593.   enable();
  594.   set_baud(baud_rate);
  595. }
  596.  
  597. void closeport()
  598. /* This function closes out the com port, removing the interrupt routine,
  599.  * etc.
  600.  */
  601. {
  602.   int temp;
  603.  
  604.   disable();
  605.   temp = inportb(0x21);
  606.   temp = temp | ((1 << async_irq));
  607.   outportb(0x21, temp);
  608.   outportb(base + 2, 0);
  609.   outportb(base + 4, 3);
  610.   setvect(async_irq+8,getvect(8)); /* for desqview */
  611.   enable();
  612. }
  613.  
  614. int cdet()
  615. /* This returns the status of the carrier detect lead from the modem */
  616. {
  617.   return((inportb(base + 6) & 0x80) ? 1 : 0);
  618. }
  619.  
  620. void checkhangup()
  621. /* This function checks to see if the user logged on to the com port has
  622.  * hung up.  Obviously, if no user is logged on remotely, this does nothing.
  623.  * If carrier detect is detected to be low, it is checked 100 times
  624.  * sequentially to make sure it stays down, and is not just a quirk.
  625.  */
  626. {
  627.   int i, ok;
  628.  
  629.   if (!hangup && using_modem && !cdet()) {
  630.     ok = 0;
  631.     for (i = 0; (i < 500) && !ok; i++)
  632.       if (cdet())
  633.         ok = 1;
  634.     if (!ok) {
  635.       hangup = hungup = 1;
  636.     }
  637.   }
  638. }
  639.  
  640. void addto(char *s, int i)
  641. {
  642.   char temp[20];
  643.  
  644.   if (s[0])
  645.     strcat(s, ";");
  646.   else
  647.     strcpy(s, "\x1B[");
  648.   itoa(i, temp, 10);
  649.   strcat(s, temp);
  650. }
  651.  
  652. void makeansi(unsigned char attr, char *s, int forceit)
  653. /* Passed to this function is a one-byte attribute as defined for IBM type
  654.  * screens.  Returned is a string which, when printed, will change the
  655.  * display to the color desired, from the current function.
  656.  */
  657. {
  658.   unsigned char catr;
  659.   char *temp = "04261537";
  660.  
  661.   catr = curatr;
  662.   s[0] = 0;
  663.   if (attr != catr) {
  664.     if ((catr & 0x88) ^ (attr & 0x88)) {
  665.       addto(s, 0);
  666.       addto(s, 30 + temp[attr & 0x07] - '0');
  667.       addto(s, 40 + temp[(attr & 0x70) >> 4] - '0');
  668.       catr = attr & 0x77;
  669.     }
  670.     if ((catr & 0x07) != (attr & 0x07))
  671.       addto(s, 30 + temp[attr & 0x07] - '0');
  672.     if ((catr & 0x70) != (attr & 0x70))
  673.       addto(s, 40 + temp[(attr & 0x70) >> 4] - '0');
  674.     if ((catr & 0x08) ^ (attr & 0x08))
  675.       addto(s, 1);
  676.     if ((catr & 0x80) ^ (attr & 0x80))
  677.       addto(s, 5);
  678.   }
  679.   if (s[0])
  680.     strcat(s, "m");
  681.   if (!okansi() && !forceit)
  682.     s[0]=0;
  683. }
  684.  
  685. void setfgc(int i)
  686. /* This sets the foreground color to that passed.  It is called only from
  687.  * execute_ansi
  688.  */
  689. {
  690.   curatr = (curatr & 0xf8) | i;
  691. }
  692.  
  693. void setbgc(int i)
  694. /* This sets the background color to that passed.  It is called only from
  695.  * execute_ansi
  696.  */
  697. {
  698.   curatr = (curatr & 0x8f) | (i << 4);
  699. }
  700.  
  701. void execute_ansi()
  702. /* This function executes an ANSI string to change color, position the
  703.  * cursor, etc.
  704.  */
  705. {
  706.   int args[10], argptr, count, ptr, tempptr, ox, oy;
  707.   char cmd, temp[10], teol[81], *clrlst = "04261537";
  708.  
  709.   if (ansistr[1] != '[') {
  710.  
  711.     /* do nothing if invalid ANSI string. */
  712.  
  713.   } else {
  714.     argptr = tempptr = 0;
  715.     ptr = 2;
  716.     for (count = 0; count < 10; count++)
  717.       args[count] = temp[count] = 0;
  718.     cmd = ansistr[ansiptr - 1];
  719.     ansistr[ansiptr - 1] = 0;
  720.     while (ansistr[ptr]) {
  721.       if (ansistr[ptr] == ';') {
  722.         temp[tempptr] = 0;
  723.         tempptr = 0;
  724.         args[argptr++] = atoi(temp);
  725.       } else
  726.         temp[tempptr++] = ansistr[ptr];
  727.       ++ptr;
  728.     }
  729.     if (tempptr) {
  730.       temp[tempptr]  = 0;
  731.       args[argptr++] = atoi(temp);
  732.     }
  733.     if ((cmd >= 'A') && (cmd <= 'D') && !args[0])
  734.       args[0] = 1;
  735.     switch (cmd) {
  736.         case 'f':
  737.         case 'H':
  738.           movecsr(args[1] - 1, args[0] - 1);
  739.           break;
  740.         case 'A':
  741.           movecsr(wherex(), wherey() - args[0]);
  742.           break;
  743.         case 'B':
  744.           movecsr(wherex(), wherey() + args[0]);
  745.           break;
  746.         case 'C':
  747.           movecsr(wherex() + args[0], wherey());
  748.           break;
  749.         case 'D':
  750.           movecsr(wherex() - args[0], wherey());
  751.           break;
  752.         case 's':
  753.           oldx = wherex();
  754.           oldy = wherey();
  755.           break;
  756.         case 'u':
  757.           movecsr(oldx, oldy);
  758.           break;
  759.         case 'J':
  760.           if (args[0] == 2)
  761.             clrscrb();
  762.           break;
  763.         case 'k':
  764.         case 'K':
  765.           ox = wherex();
  766.           oy = wherey();
  767.           _CX = 80 - ox;
  768.           _AH = 0x09;
  769.           _BH = 0x00;
  770.           _AL = 32;
  771.           _BL = curatr;
  772.           my_video_int();
  773.           movecsr(ox, oy);
  774.           break;
  775.         case 'm':
  776.           if (!argptr) {
  777.             argptr = 1;
  778.             args[0] = 0;
  779.           }
  780.           for (count = 0; count < argptr; count++)
  781.             switch (args[count]) {
  782.               case 0: curatr = 0x07; break;
  783.               case 1: curatr = curatr | 0x08; break;
  784.               case 4: break;
  785.               case 5: curatr = curatr | 0x80; break;
  786.               case 7:
  787.                 ptr = curatr & 0x77;
  788.                 curatr = (curatr & 0x88) | (ptr << 4) | (ptr >> 4);
  789.                 break;
  790.               case 8: curatr = 0; break;
  791.               default:
  792.                 if ((args[count] >= 30) && (args[count] <= 37))
  793.                   setfgc(clrlst[args[count] - 30] - '0');
  794.                 else if ((args[count] >= 40) && (args[count] <= 47))
  795.                   setbgc(clrlst[args[count] - 40] - '0');
  796.             }
  797.           break;
  798.       }
  799.     }
  800.   ansiptr = 0;
  801. }
  802.  
  803. void outchr(char c)
  804. /* This function outputs one character to the screen, and if output to the
  805.  * com port is enabled, the character is output there too.  ANSI graphics
  806.  * are also trapped here, and the ansi function is called to execute the
  807.  * ANSI codes
  808.  */
  809. {
  810.   int i, i1;
  811.  
  812.   if (change_color) {
  813.     change_color = 0;
  814.     if ((c >= '0') && (c <= '7'))
  815.       ansic(c - '0');
  816.     return;
  817.   }
  818.   if (c == 3) {
  819.     change_color = 1;
  820.     return;
  821.   }
  822.   if ((c == 10) && endofline[0]) {
  823.     if (!in_extern)
  824.       outstr(endofline);
  825.     endofline[0] = 0;
  826.   }
  827.   if (outcom && (c != 9))
  828.     outcomch(echo ? c : 'X');
  829.   if (ansiptr) {
  830.     ansistr[ansiptr++] = c;
  831.     ansistr[ansiptr]   = 0;
  832.     if (((c > '@') && (c != '[')) || (ansistr[1] != '['))
  833.       execute_ansi();
  834.   } else if (c == 27) {
  835.     ansistr[0] = 27;
  836.     ansiptr = 1;
  837.   } else if (c == 9) {
  838.     i1 = wherex();
  839.     for (i = i1; i< (((i1 / 8) + 1) * 8); i++)
  840.       outchr(32);
  841.   } else if (echo || lecho) {
  842.     out1ch(c);
  843.     if (c == 10) {
  844.       ++lines_listed;
  845.       if ((sysstatus_pause_on_page & thisuser.sysstatus) &&
  846.           (lines_listed >= screenlinest - 1)) {
  847.         pausescr();
  848.         lines_listed = 0;
  849.       }
  850.     }
  851.   } else
  852.     out1ch('X');
  853. }
  854.  
  855. void outstr(char *s)
  856. /* This function outputs a string of characters to the screen (and remotely
  857.  * if applicable).  The com port is also checked first to see if a remote
  858.  * user has hung up
  859.  */
  860. {
  861.   int i=0;
  862.  
  863.   checkhangup();
  864.   if (!hangup)
  865.     while (s[i])
  866.       outchr(s[i++]);
  867. }
  868.  
  869. void nl()
  870. /* This function performs a CR/LF sequence to move the cursor to the next
  871.  * line.  If any end-of-line ANSI codes are set (such as changing back to
  872.  * the default color) are specified, those are executed first.
  873.  */
  874. {
  875.   if (endofline[0]) {
  876.     outstr(endofline);
  877.     endofline[0] = 0;
  878.   }
  879.   outstr("\r\n");
  880. }
  881.  
  882. void backspace()
  883. /* This function executes a backspace, space, backspace sequence. */
  884. {
  885.   int i;
  886.  
  887.   i = echo;
  888.   echo = 1;
  889.   outstr("\b \b");
  890.   echo = i;
  891. }
  892.  
  893. void setc(unsigned char ch)
  894. /* This sets the current color (both locally and remotely) to that
  895.  * specified (in IBM format).
  896.  */
  897. {
  898.   char s[30];
  899.  
  900.   makeansi(ch, s, 0);
  901.   outstr(s);
  902. }
  903.  
  904. void pausescr()
  905. /* This will pause output, displaying the [PAUSE] message, and wait for
  906.  * a key to be hit.
  907.  */
  908. {
  909.   int i;
  910.  
  911.   if (okansi()) {
  912.     i = curatr;
  913.     setc((thisuser.sysstatus & sysstatus_color) ? thisuser.colors[3] :
  914.           thisuser.bwcolors[3]);
  915.     outstr("[PAUSE]\x1b[7D");
  916.     setc(i);
  917.     getkey();
  918.     outstr("       \x1b[7D");
  919.   } else {
  920.     outstr("[PAUSE]");
  921.     getkey();
  922.     for (i = 0; i < 7; i++)
  923.       backspace();
  924.   }
  925. }
  926.  
  927. void pl(char *s)
  928. {
  929.   outstr(s);
  930.   nl();
  931. }
  932.  
  933. int kbhitb()
  934. {
  935.   union REGS r;
  936.  
  937.   r.h.ah = 1;
  938.   int86(0x16, &r, &r);
  939.   return((r.x.flags & 64) == 0);
  940. }
  941.  
  942. int empty()
  943. {
  944.   if (kbhitb() || (incom && (head != tail)) ||
  945.       (charbufferpointer && charbuffer[charbufferpointer]) ||
  946.       (in_extern == 2))
  947.     return(0);
  948.   return(1);
  949. }
  950.  
  951. void skey1(char *ch)
  952. {
  953.   char c;
  954.  
  955.   c = *ch;
  956.   if (c == 127)
  957.     c = 8;
  958.     switch(c) {
  959.       case 1:
  960.       case 4:
  961.       case 6:
  962.         if (!charbufferpointer) {
  963.           if (c == 1)
  964.             c = 2;
  965.           else if (c == 4)
  966.             c = 0;
  967.           else if (c == 6)
  968.             c = 1;
  969.           strcpy(charbuffer, &(thisuser.macros[c][0]));
  970.           c = charbuffer[0];
  971.           if (c)
  972.             charbufferpointer = 1;
  973.         }
  974.         break;
  975.     }
  976.   *ch = c;
  977. }
  978.  
  979. char getchd()
  980. {
  981.   union REGS r;
  982.  
  983.   r.h.ah = 0x07;
  984.   int86(INT_SAVE_21, &r, &r);
  985.   return(r.h.al);
  986. }
  987.  
  988. char getchd1()
  989. {
  990.   union REGS r;
  991.  
  992.   r.h.ah = 0x06;
  993.   r.h.dl = 0xFF;
  994.   int86(INT_SAVE_21, &r, &r);
  995.   return((r.x.flags & 0x40) ? 255 : r.h.al);
  996. }
  997.  
  998. char inkey()
  999. /* This function checks both the local keyboard, and the remote terminal
  1000.  * (if any) for input.  If there is input, the key is returned.  If there
  1001.  * is no input, a zero is returned.  Function keys hit are interpreted as
  1002.  * such within the routine and not returned.
  1003.  */
  1004. {
  1005.   char ch=0;
  1006.  
  1007.   if (charbufferpointer) {
  1008.     if (!charbuffer[charbufferpointer])
  1009.       charbufferpointer = charbuffer[0] = 0;
  1010.     else
  1011.       return(charbuffer[charbufferpointer++]);
  1012.   }
  1013.   if (kbhitb() || (in_extern == 2)) {
  1014.     ch = getchd1();
  1015.     if (!ch) {
  1016.       if (in_extern)
  1017.         in_extern = 2;
  1018.       else {
  1019.         ch = getchd1();
  1020.         ch=0;
  1021.       }
  1022.     } else if (in_extern)
  1023.       in_extern = 1;
  1024.     timelastchar1=timer1();
  1025.   } else if (incom && comhit()) {
  1026.     ch = (get1c() & andwith);
  1027.   }
  1028.   skey1(&ch);
  1029.   return(ch);
  1030. }
  1031.  
  1032. void mpl(int i)
  1033. /* This will make a reverse-video prompt line i characters long, repositioning
  1034.  * the cursor at the beginning of the input prompt area.  Of course, if the
  1035.  * user does not want ansi, this routine does nothing.
  1036.  */
  1037. {
  1038.   int i1;
  1039.   char s[81];
  1040.  
  1041.   if (okansi()) {
  1042.     ansic(4);
  1043.     for (i1 = 0; i1 < i; i1++)
  1044.       outchr(' ');
  1045.     outstr("\x1b[");
  1046.     itoa(i,s,10);
  1047.     outstr(s);
  1048.     outstr("D");
  1049.   }
  1050. }
  1051.  
  1052. char upcase(char ch)
  1053. /* This converts a character to uppercase */
  1054. {
  1055.   if ((ch > '`') && (ch < '{'))
  1056.     ch = ch - 32;
  1057.   return(ch);
  1058. }
  1059.  
  1060. unsigned char getkey()
  1061. /* This function returns one character from either the local keyboard or
  1062.  * remote com port (if applicable).  After 1.5 minutes of inactivity, a
  1063.  * beep is sounded.  After 3 minutes of inactivity, the user is hung up.
  1064.  */
  1065. {
  1066.   unsigned char ch;
  1067.   int beepyet;
  1068.   long dd;
  1069.  
  1070.   beepyet = 0;
  1071.   timelastchar1=timer1();
  1072.  
  1073.   lines_listed = 0;
  1074.   do {
  1075.     while (empty() && !hangup) {
  1076.       dd = timer1();
  1077.       if (labs(dd - timelastchar1) > 65536L)
  1078.         timelastchar1 -= 1572480L;
  1079.       if (((dd - timelastchar1) > 1638L) && (!beepyet)) {
  1080.         beepyet = 1;
  1081.         outchr(7);
  1082.       }
  1083.       if (labs(dd - timelastchar1) > 3276L) {
  1084.         nl();
  1085.         outstr("Call back later when you are there.");
  1086.         nl();
  1087.         hangup = 1;
  1088.       }
  1089.       checkhangup();
  1090.     }
  1091.     ch = inkey();
  1092.   } while (!ch && !in_extern && !hangup);
  1093.   return(ch);
  1094. }
  1095.  
  1096. void input1(char *s, int maxlen, int lc, int crend)
  1097. /* This will input a line of data, maximum maxlen characters long, terminated
  1098.  * by a C/R.  if (lc) is non-zero, lowercase is allowed, otherwise all
  1099.  * characters are converted to uppercase.
  1100.  */
  1101. {
  1102.   int curpos=0, done=0;
  1103.   unsigned char ch;
  1104.  
  1105.   while (!done && !hangup) {
  1106.     ch = getkey();
  1107.     if (ch > 31) {
  1108.       if (curpos < maxlen) {
  1109.         if (!lc)
  1110.           ch = upcase(ch);
  1111.         s[curpos++] = ch;
  1112.         outchr(ch);
  1113.       }
  1114.     } else
  1115.       switch(ch) {
  1116.         case 14:
  1117.         case 13:
  1118.           s[curpos] = 0;
  1119.           done = echo = 1;
  1120.           if (crend)
  1121.             nl();
  1122.           break;
  1123.         case 26:
  1124.           if (input_extern) {
  1125.             s[curpos++] = 26;
  1126.             outstr("^Z");
  1127.           }
  1128.           break;
  1129.         case 8:
  1130.           if (curpos) {
  1131.             curpos--;
  1132.             backspace();
  1133.             if (s[curpos] == 26)
  1134.               backspace();
  1135.           }
  1136.           break;
  1137.         case 24:
  1138.           while (curpos) {
  1139.             curpos--;
  1140.             backspace();
  1141.             if (s[curpos] == 26)
  1142.               backspace();
  1143.           }
  1144.           break;
  1145.       }
  1146.   }
  1147.   if (hangup)
  1148.     s[0] = 0;
  1149. }
  1150.  
  1151. void input(char *s, int len)
  1152. /* This will input an upper-case string */
  1153. {
  1154.   input1(s, len, 0, 1);
  1155. }
  1156.  
  1157. void inputl(char *s, int len)
  1158. /* This will input an upper or lowercase string of characters */
  1159. {
  1160.   input1(s, len, 1, 1);
  1161. }
  1162.  
  1163. int yn()
  1164. /* The keyboard is checked for either a Y, N, or C/R to be hit.  C/R is
  1165.  * assumed to be the same as a N.  Yes or No is output, and yn is set to
  1166.  * zero if No was returned, and yn() is non-zero if Y was hit.
  1167.  */
  1168. {
  1169.   char ch=0;
  1170.  
  1171.   ansic(1);
  1172.   while (!hangup && ((ch = upcase(getkey())) != 'Y') && (ch != 'N') && (ch != 13))
  1173.     ;
  1174.   outstr((ch == 'Y') ? "Yes" : "No");
  1175.   nl();
  1176.   return(ch == 'Y');
  1177. }
  1178.  
  1179. int ny()
  1180. /* This is the same as yn(), except C/R is assumed to be "Y" */
  1181. {
  1182.   char ch=0;
  1183.  
  1184.   ansic(1);
  1185.   while (!hangup && ((ch = upcase(getkey())) != 'Y') && (ch != 'N') && (ch != 13))
  1186.     ;
  1187.   outstr((ch == 'N') ? "No" : "Yes");
  1188.   nl();
  1189.   return((ch == 'Y') || (ch==13));
  1190. }
  1191.  
  1192. void ansic(int n)
  1193. {
  1194.   char s[81], c;
  1195.  
  1196.   c = ((thisuser.sysstatus & sysstatus_color) ? thisuser.colors[n] :
  1197.         thisuser.bwcolors[n]);
  1198.   if (c == curatr)
  1199.     return;
  1200.   setc(c);
  1201.   makeansi((thisuser.sysstatus & sysstatus_color) ? thisuser.colors[0] :
  1202.         thisuser.bwcolors[0],endofline, 0);
  1203. }
  1204.  
  1205. char onek(char *s)
  1206. {
  1207.   char ch;
  1208.  
  1209.   while (!strchr(s, ch = upcase(getkey())) && !hangup)
  1210.     ;
  1211.   if (hangup)
  1212.     ch = s[0];
  1213.   outchr(ch);
  1214.   nl();
  1215.   return(ch);
  1216. }
  1217.  
  1218. void prt(int i, char *s)
  1219. {
  1220.   ansic(i);
  1221.   outstr(s);
  1222.   ansic(0);
  1223. }
  1224.  
  1225. #pragma warn -par
  1226.  
  1227. void far interrupt inlii(unsigned bp, unsigned di, unsigned si,
  1228.                            unsigned ds, unsigned es, unsigned dx,
  1229.                            unsigned cx, unsigned bx, unsigned ax,
  1230.                            unsigned ip, unsigned cs, unsigned flags,
  1231.                            char *s1, char *s2, int i1, int i2)
  1232. {
  1233.   inli(s1,s2,i1,i2);
  1234. }
  1235.  
  1236. void far interrupt checkai(unsigned bp, unsigned di, unsigned si,
  1237.                            unsigned ds, unsigned es, unsigned dx,
  1238.                            unsigned cx, unsigned bx, unsigned ax,
  1239.                            unsigned ip, unsigned cs, unsigned flags,
  1240.                            int *i1, int *i2)
  1241. {
  1242.   checka(i1,i2);
  1243. }
  1244.  
  1245. void far interrupt plai(unsigned bp, unsigned di, unsigned si,
  1246.                            unsigned ds, unsigned es, unsigned dx,
  1247.                            unsigned cx, unsigned bx, unsigned ax,
  1248.                            unsigned ip, unsigned cs, unsigned flags,
  1249.                            char *s1, int *i1)
  1250. {
  1251.   pla(s1,i1);
  1252. }
  1253.  
  1254. void far interrupt outchri(unsigned bp, unsigned di, unsigned si,
  1255.                            unsigned ds, unsigned es, unsigned dx,
  1256.                            unsigned cx, unsigned bx, unsigned ax,
  1257.                            unsigned ip, unsigned cs, unsigned flags,
  1258.                            char ch)
  1259. {
  1260.   outchr(ch);
  1261. }
  1262.  
  1263. void far interrupt outstri(unsigned bp, unsigned di, unsigned si,
  1264.                            unsigned ds, unsigned es, unsigned dx,
  1265.                            unsigned cx, unsigned bx, unsigned ax,
  1266.                            unsigned ip, unsigned cs, unsigned flags,
  1267.                            char *s1)
  1268. {
  1269.   outstr(s1);
  1270. }
  1271.  
  1272. void far interrupt nli(unsigned bp, unsigned di, unsigned si,
  1273.                            unsigned ds, unsigned es, unsigned dx,
  1274.                            unsigned cx, unsigned bx, unsigned ax,
  1275.                            unsigned ip, unsigned cs, unsigned flags)
  1276. {
  1277.   nl();
  1278. }
  1279.  
  1280. void far interrupt pli(unsigned bp, unsigned di, unsigned si,
  1281.                            unsigned ds, unsigned es, unsigned dx,
  1282.                            unsigned cx, unsigned bx, unsigned ax,
  1283.                            unsigned ip, unsigned cs, unsigned flags,
  1284.                            char *s1)
  1285. {
  1286.   pl(s1);
  1287. }
  1288.  
  1289. void far interrupt emptyi(unsigned bp, unsigned di, unsigned si,
  1290.                            unsigned ds, unsigned es, unsigned dx,
  1291.                            unsigned cx, unsigned bx, unsigned ax,
  1292.                            unsigned ip, unsigned cs, unsigned flags)
  1293. {
  1294.   ax=empty();
  1295. }
  1296.  
  1297. void far interrupt inkeyi(unsigned bp, unsigned di, unsigned si,
  1298.                            unsigned ds, unsigned es, unsigned dx,
  1299.                            unsigned cx, unsigned bx, unsigned ax,
  1300.                            unsigned ip, unsigned cs, unsigned flags)
  1301. {
  1302.   ax=(unsigned) empty();
  1303. }
  1304.  
  1305. void far interrupt getkeyi(unsigned bp, unsigned di, unsigned si,
  1306.                            unsigned ds, unsigned es, unsigned dx,
  1307.                            unsigned cx, unsigned bx, unsigned ax,
  1308.                            unsigned ip, unsigned cs, unsigned flags)
  1309. {
  1310.   ax=(unsigned) getkey();
  1311. }
  1312.  
  1313. void far interrupt inputi(unsigned bp, unsigned di, unsigned si,
  1314.                            unsigned ds, unsigned es, unsigned dx,
  1315.                            unsigned cx, unsigned bx, unsigned ax,
  1316.                            unsigned ip, unsigned cs, unsigned flags,
  1317.                            char *s1, int i)
  1318. {
  1319.   input(s1,i);
  1320. }
  1321.  
  1322. void far interrupt inputli(unsigned bp, unsigned di, unsigned si,
  1323.                            unsigned ds, unsigned es, unsigned dx,
  1324.                            unsigned cx, unsigned bx, unsigned ax,
  1325.                            unsigned ip, unsigned cs, unsigned flags,
  1326.                            char *s1, int i)
  1327. {
  1328.   inputl(s1,i);
  1329. }
  1330.  
  1331. void far interrupt yni(unsigned bp, unsigned di, unsigned si,
  1332.                            unsigned ds, unsigned es, unsigned dx,
  1333.                            unsigned cx, unsigned bx, unsigned ax,
  1334.                            unsigned ip, unsigned cs, unsigned flags)
  1335. {
  1336.   ax=yn();
  1337. }
  1338.  
  1339. void far interrupt nyi(unsigned bp, unsigned di, unsigned si,
  1340.                            unsigned ds, unsigned es, unsigned dx,
  1341.                            unsigned cx, unsigned bx, unsigned ax,
  1342.                            unsigned ip, unsigned cs, unsigned flags)
  1343. {
  1344.   ax=ny();
  1345. }
  1346.  
  1347. void far interrupt ansici(unsigned bp, unsigned di, unsigned si,
  1348.                            unsigned ds, unsigned es, unsigned dx,
  1349.                            unsigned cx, unsigned bx, unsigned ax,
  1350.                            unsigned ip, unsigned cs, unsigned flags,
  1351.                            int i1)
  1352. {
  1353.   ansic(i1);
  1354. }
  1355.  
  1356. void far interrupt oneki(unsigned bp, unsigned di, unsigned si,
  1357.                            unsigned ds, unsigned es, unsigned dx,
  1358.                            unsigned cx, unsigned bx, unsigned ax,
  1359.                            unsigned ip, unsigned cs, unsigned flags,
  1360.                            char *s1)
  1361. {
  1362.   ax=(unsigned) onek(s1);
  1363. }
  1364.  
  1365. void far interrupt prti(unsigned bp, unsigned di, unsigned si,
  1366.                            unsigned ds, unsigned es, unsigned dx,
  1367.                            unsigned cx, unsigned bx, unsigned ax,
  1368.                            unsigned ip, unsigned cs, unsigned flags,
  1369.                            int i1, char *s1)
  1370. {
  1371.   prt(i1,s1);
  1372. }
  1373.  
  1374. void far interrupt mpli(unsigned bp, unsigned di, unsigned si,
  1375.                            unsigned ds, unsigned es, unsigned dx,
  1376.                            unsigned cx, unsigned bx, unsigned ax,
  1377.                            unsigned ip, unsigned cs, unsigned flags,
  1378.                            int i1)
  1379. {
  1380.   mpl(i1);
  1381. }
  1382.  
  1383. #pragma warn +par
  1384.  
  1385. unsigned char getkeyext()
  1386. {
  1387.   unsigned char ch;
  1388.   static int holding=0;
  1389.   static char held=0;
  1390.  
  1391.   if (holding) {
  1392.     holding=0;
  1393.     return(held);
  1394.   }
  1395.   ch=getkey();
  1396.   if (charbufferpointer==0) {
  1397.     if (ch==16) {
  1398.       ch=getkey();
  1399.       if ((ch==1) && (charbufferpointer==0)) {
  1400.         strcpy(charbuffer,&(thisuser.macros[2][0]));
  1401.         ch=charbuffer[0];
  1402.         if (ch) {
  1403.           charbufferpointer=1;
  1404.           return(ch);
  1405.         } else
  1406.           return(getkeyext());
  1407.       } else
  1408.         if ((ch==4) && (charbufferpointer==0)) {
  1409.           strcpy(charbuffer,&(thisuser.macros[0][0]));
  1410.           ch=charbuffer[0];
  1411.           if (ch) {
  1412.             charbufferpointer=1;
  1413.             return(ch);
  1414.           } else
  1415.             return(getkeyext());
  1416.         } else
  1417.           if ((ch==6) && (charbufferpointer==0)) {
  1418.             strcpy(charbuffer,&(thisuser.macros[1][0]));
  1419.             ch=charbuffer[0];
  1420.             if (ch) {
  1421.               charbufferpointer=1;
  1422.               return(ch);
  1423.             } else
  1424.               return(getkeyext());
  1425.           } else {
  1426.             holding=1;
  1427.             held=ch;
  1428.             return(16);
  1429.           }
  1430.     }
  1431.   }
  1432.   return(ch);
  1433. }
  1434.  
  1435. int do_it(char *cl)
  1436. {
  1437.   int i,i1,l;
  1438.   char s[160];
  1439.   char *ss[30];
  1440.  
  1441.   strcpy(s,cl);
  1442.   ss[0]=s;
  1443.   i=1;
  1444.   l=strlen(s);
  1445.   for (i1=1; i1<l; i1++)
  1446.     if (s[i1]==32) {
  1447.       s[i1]=0;
  1448.       ss[i++]=&(s[i1+1]);
  1449.     }
  1450.   ss[i]=NULL;
  1451.   i=(spawnvpe(P_WAIT,ss[0],ss,xenviron) & 0x00ff);
  1452. /*   spawnvp(P_WAIT,ss[0],ss); */
  1453.   return(i);
  1454. }
  1455.  
  1456. int do_remote(char *s, int ccc)
  1457. {
  1458.   int rc,xx;
  1459.   char x[161];
  1460.  
  1461.   checkhangup();
  1462.   if (hangup)
  1463.     return(32767);
  1464.   strcpy(x,getenv("COMSPEC"));
  1465.   strcat(x," /C ");
  1466.   strcat(x,s);
  1467.   if (ccc)
  1468.     rc=do_it(x);
  1469.   else
  1470.     rc=do_it(s);
  1471.   chdir(cdir);
  1472.   setdisk(cdir[0]-'A');
  1473.   return(rc);
  1474. }
  1475.  
  1476. union REGS ca_r;
  1477. int ca_pause,ca_ctrl_c;
  1478. long ca_d1;
  1479.  
  1480. void checka2()
  1481. {
  1482.   ca_pause=0;
  1483.   ca_ctrl_c=0;
  1484.   ca_r.h.ah=1;
  1485.   int86(0x16,&ca_r,&ca_r);
  1486.   if ((ca_r.x.flags & 64)==0) {
  1487.     if (ca_r.x.ax==11779)
  1488.       ca_ctrl_c=1;
  1489.     if (ca_r.x.ax==7955)
  1490.       ca_pause=1;
  1491.   }
  1492.   if (head!=tail) {
  1493.     if (buffer[tail]==3)
  1494.       ca_ctrl_c=1;
  1495.     if (buffer[tail]==19)
  1496.       ca_pause=1;
  1497.   }
  1498.   if (ca_pause) {
  1499.     while (inkey()!=0)
  1500.       ;
  1501.     ca_d1=timer1();
  1502.     while ((inkey()==0) && (labs(timer1()-ca_d1)<3276L) && (!hangup))
  1503.       checkhangup();
  1504.     lines_listed=0;
  1505.   }
  1506.   if ((ca_ctrl_c) && (ctc)) {
  1507.     while (inkey()!=0)
  1508.       ;
  1509.     pl("^C");
  1510.     ca_r.x.ax=0x4c00;
  1511.     int86(INT_SAVE_21,&ca_r,&ca_r);
  1512.   }
  1513. }
  1514.  
  1515. void outdosstr(char *s)
  1516. /* This function outputs a string of characters to the screen (and remotely
  1517.  * if applicable).  The com port is also checked first to see if a remote
  1518.  * user has hung up
  1519.  */
  1520. {
  1521.   int i;
  1522.  
  1523.   checkhangup();
  1524.   if (hangup==0) {
  1525.     i=0;
  1526.     while ((s[i] !='$') && (i<1024)) {
  1527.       checka2();
  1528.       outchr(s[i++]);
  1529.     }
  1530.   }
  1531. }
  1532.  
  1533. union REGS ni_r;
  1534. struct SREGS ni_s;
  1535. unsigned ni_n;
  1536. char ni_ch,ni_ch1,ni_ss[10],ni_ch2;
  1537. unsigned char *ni_st;
  1538.  
  1539. #define ST_SIZE 300
  1540. static unsigned short ni_stack[ST_SIZE];
  1541.  
  1542. #pragma warn -par
  1543.  
  1544. void far interrupt newintr1(unsigned bp, unsigned di, unsigned si,
  1545.                            unsigned ds, unsigned es, unsigned dx,
  1546.                            unsigned cx, unsigned bx, unsigned ax,
  1547.                            unsigned ip, unsigned cs, unsigned flags)
  1548. {
  1549.  
  1550.   unsigned short ni_SS, ni_SP;
  1551. #define NEW_STK() { _BX=FP_OFF(&ni_stack[ST_SIZE-2]); _SS=_DS; _SP=_BX; }
  1552. #define OLD_STK() { _AX=ni_SS; _BX=ni_SP; _SS=_AX; _SP=_BX; }
  1553.  
  1554.   ni_r.x.ax=ax;
  1555.   ni_r.x.bx=bx;
  1556.   ni_r.x.cx=cx;
  1557.   ni_r.x.dx=dx;
  1558.   ni_r.x.si=si;
  1559.   ni_r.x.di=di;
  1560.   ni_r.x.flags=flags;
  1561.   ni_s.ds=ds;
  1562.   ni_s.es=es;
  1563.  
  1564.   ni_SS=_SS;
  1565.   ni_SP=_SP;
  1566.  
  1567.   ni_ch=ni_r.h.ah;
  1568.   ni_ch1=0;
  1569.  
  1570.   switch(ni_ch) {
  1571.     case 0x01:
  1572.       NEW_STK();
  1573.       ni_ch=getkeyext();
  1574.       outchr(ni_ch);
  1575.       if (hangup)
  1576.         ni_ch=3;
  1577.       ni_r.h.al=ni_ch;
  1578.       ni_ch1=1;
  1579.       OLD_STK();
  1580.       break;
  1581.     case 0x02:
  1582.       NEW_STK();
  1583.       outchr(ni_r.h.dl);
  1584.       ni_ch1=1;
  1585.       checka2();
  1586.       OLD_STK();
  1587.       break;
  1588.     case 0x06:
  1589.       NEW_STK();
  1590.       if (ni_r.h.dl!=0xff) {
  1591.         outchr(ni_r.h.dl);
  1592.         ni_ch1=1;
  1593.       } else {
  1594.         if (empty()) {
  1595.           ni_r.x.flags |= 64;
  1596.         } else {
  1597.           ni_r.x.flags &= (0xffff ^ 64);
  1598.           ni_r.h.al=getkeyext();
  1599.         }
  1600.       }
  1601.       OLD_STK();
  1602.       break;
  1603.     case 0x07:
  1604.       NEW_STK();
  1605.       ni_ch1=1;
  1606.       ni_r.h.al=getkeyext();
  1607.       OLD_STK();
  1608.       break;
  1609.     case 0x08:
  1610.       NEW_STK();
  1611.       ni_ch1=1;
  1612.       ni_r.h.al=getkeyext();
  1613.       OLD_STK();
  1614.       break;
  1615.     case 0x09:
  1616.       NEW_STK();
  1617.       outdosstr((char *) MK_FP(ni_s.ds, ni_r.x.dx));
  1618.       ni_ch1=1;
  1619.       OLD_STK();
  1620.       break;
  1621.     case 0x0a:
  1622.       NEW_STK();
  1623.       ni_st=(char *) MK_FP(ni_s.ds,ni_r.x.dx);
  1624.       ni_n=(unsigned int)(ni_st[0]);
  1625.       if (in_extern==2)
  1626.         getkeyext();
  1627.       in_extern=0;
  1628.       input_extern=1;
  1629.       input1(&(ni_st[2]),ni_n-3,1,0);
  1630.       input_extern=0;
  1631.       in_extern=1;
  1632.       ni_st[1]=strlen(&(ni_st[2]));
  1633.       strcat(&(ni_st[2]),"\r");
  1634.       if ((hangup)) {
  1635.         strcpy(&(ni_st[2]),"EXIT\r");
  1636.         ni_st[1]=4;
  1637.         outstr("Exiting...");
  1638.       }
  1639.       ni_ch1=1;
  1640.       OLD_STK();
  1641.       break;
  1642.     case 0x0b:
  1643.       NEW_STK();
  1644.       if (empty())
  1645.         ni_r.h.al=0x00;
  1646.       else
  1647.         ni_r.h.al=0xff;
  1648.       ni_ch1=1;
  1649.       OLD_STK();
  1650.       break;
  1651.     case 0x0c:
  1652.       ni_r.h.ah=ni_r.h.al;
  1653.       int86x(0x21,&ni_r,&ni_r,&ni_s);
  1654.       ni_ch1=1;
  1655.       break;
  1656.     case 0x3f:
  1657.       if (ni_r.x.bx==0x0000) {
  1658.         NEW_STK();
  1659.         ni_st=(char *)MK_FP(ni_s.ds,ni_r.x.dx);
  1660.         inputl(ni_st,ni_r.x.cx);
  1661.         strcat(ni_st,"\r\n");
  1662.         ni_r.x.ax=strlen(ni_st);
  1663.         if (hangup)
  1664.           ni_r.x.ax=0;
  1665.         ni_r.x.flags &=(0xffff ^ 1);
  1666.         ni_ch1=1;
  1667.         OLD_STK();
  1668.       } else
  1669.         int86x(INT_SAVE_21,&ni_r,&ni_r,&ni_s);
  1670.       break;
  1671.     case 0x40:
  1672.       if ((ni_r.x.bx==0x0001) || (ni_r.x.bx==0x0002)) {
  1673.         NEW_STK();
  1674.         ni_st=(char *)MK_FP(ni_s.ds,ni_r.x.dx);
  1675.         for (ni_n=0; ni_n<ni_r.x.cx; ni_n++) {
  1676.           outchr(ni_st[ni_n]);
  1677.           checka2();
  1678.         }
  1679.         ni_r.x.ax=ni_r.x.cx;
  1680.         ni_r.x.flags &=(0xffff ^ 1);
  1681.         ni_ch1=1;
  1682.         OLD_STK();
  1683.       } else
  1684.         int86x(INT_SAVE_21,&ni_r,&ni_r,&ni_s);
  1685.       break;
  1686.     default:
  1687.       int86x(INT_SAVE_21,&ni_r,&ni_r,&ni_s);
  1688.       break;
  1689.   }
  1690.  
  1691.   if (ni_ch1) {
  1692.     checkhangup();
  1693.     if (hangup) {
  1694.       if (hanguptime1<0L) {
  1695.         hanguptime1=timer1();
  1696.         outstr("Aborting...\r\n");
  1697.         ni_r.x.ax=0x4c00;
  1698.         int86x(INT_SAVE_21,&ni_r,&ni_r,&ni_s);
  1699.       } else {
  1700.         if (labs(timer1()-hanguptime1)>36L) {
  1701.           hanguptime1=timer1();
  1702.           outstr("Aborting...\r\n");
  1703.           ni_r.x.ax=0x4c00;
  1704.           int86x(INT_SAVE_21,&ni_r,&ni_r,&ni_s);
  1705.         }
  1706.       }
  1707.     }
  1708.   }
  1709.  
  1710.   ax=ni_r.x.ax;
  1711.   bx=ni_r.x.bx;
  1712.   cx=ni_r.x.cx;
  1713.   dx=ni_r.x.dx;
  1714.   si=ni_r.x.si;
  1715.   di=ni_r.x.di;
  1716.   flags=ni_r.x.flags;
  1717.   ds=ni_s.ds;
  1718.   es=ni_s.es;
  1719. }
  1720.  
  1721. int full_external(char *s, int ccc)
  1722. {
  1723.   unsigned short sav;
  1724.   int xx,cy,cx,xxx;
  1725.  
  1726.   checkhangup();
  1727.   if (hangup)
  1728.     return(0);
  1729.   in_extern=1;
  1730.   hanguptime1=-1L;
  1731.   setvect(INT_SAVE_21,getvect(0x21));
  1732.  
  1733.   setvect(0x21,newintr1);
  1734.  
  1735.   if ((screenlinest<=defscreenbottom) && (screenlinest>20)) {
  1736.     screenbottom=screenlinest-1;
  1737.     cy=wherey();
  1738.     cx=wherex();
  1739.     xxx=cy-screenbottom+topline;
  1740.     if (xxx>0) {
  1741.       SCROLL_UP(topline,defscreenbottom,xxx);
  1742.       movecsr(cx,screenbottom);
  1743.     }
  1744.   }
  1745.  
  1746.   do_remote(s,ccc);
  1747.  
  1748.   setvect(0x21,getvect(INT_SAVE_21));
  1749.  
  1750.   if (in_extern==2)
  1751.     getkey();
  1752.   in_extern=0;
  1753.   return(0);
  1754. }
  1755.  
  1756. #define READ(x) read(i,&(x),sizeof(x))
  1757.  
  1758. int init_r()
  1759. {
  1760.   int i;
  1761.  
  1762.   for (i=0; i<25; i++)
  1763.     funcs[i]=NULL;
  1764.   funcs[0]=(void far *)inlii;
  1765.   funcs[1]=(void far *)checkai;
  1766.   funcs[2]=(void far *)plai;
  1767.   funcs[3]=(void far *)outchri;
  1768.   funcs[4]=(void far *)outstri;
  1769.   funcs[5]=(void far *)nli;
  1770.   funcs[8]=(void far *)pli;
  1771.   funcs[9]=(void far *)emptyi;
  1772.   funcs[10]=(void far *)inkeyi;
  1773.   funcs[11]=(void far *)getkeyi;
  1774.   funcs[12]=(void far *)inputi;
  1775.   funcs[13]=(void far *)inputli;
  1776.   funcs[14]=(void far *)yni;
  1777.   funcs[15]=(void far *)nyi;
  1778.   funcs[16]=(void far *)ansici;
  1779.   funcs[17]=(void far *)oneki;
  1780.   funcs[18]=(void far *)prti;
  1781.   funcs[19]=(void far *)mpli;
  1782.   setvect(INT_POINT_FUNCS,(void far interrupt (*) (void))funcs);
  1783.  
  1784.   i=open("stat.wwv",O_RDONLY | O_BINARY);
  1785.   if (i<0)
  1786.     return(1);
  1787.  
  1788.   READ(incom);
  1789.   READ(outcom);
  1790.   using_modem=incom || outcom;
  1791.   READ(thisuser);
  1792.   READ(flow_control);
  1793.   READ(async_irq);
  1794.   READ(baud_rate);
  1795.   READ(base);
  1796.   READ(andwith);
  1797.   READ(ctc);
  1798.   READ(defscreenbottom);
  1799.   READ(ok_modem_stuff);
  1800.  
  1801.   close(i);
  1802.  
  1803.   if (ok_modem_stuff)
  1804.     initport(0);
  1805.   return(0);
  1806. }
  1807.  
  1808. void get_dir(char *s, int be)
  1809. {
  1810.   strcpy(s,"X:\\");
  1811.   s[0]='A'+getdisk();
  1812.   getcurdir(0,&(s[3]));
  1813.   if (be) {
  1814.     if (s[strlen(s)-1]!='\\')
  1815.       strcat(s,"\\");
  1816.   }
  1817. }
  1818.  
  1819. void cd_to(char *s)
  1820. {
  1821.   char s1[81];
  1822.   int i,db;
  1823.  
  1824.   strcpy(s1,s);
  1825.   i=strlen(s1)-1;
  1826.   db=(s1[i]=='\\');
  1827.   if (i==0)
  1828.     db=0;
  1829.   if ((i==2) && (s1[1]==':'))
  1830.     db=0;
  1831.   if (db)
  1832.     s1[i]=0;
  1833.   chdir(s1);
  1834.   if (s[1]==':')
  1835.     setdisk(s[0]-'A');
  1836. }
  1837.  
  1838. void setup_stuff()
  1839. {
  1840.   char s[161];
  1841.   int i;
  1842.  
  1843.     strcpy(ver_no1,"BBS=");
  1844.     strcat(ver_no1,VERSION_NUMBER);
  1845.  
  1846.     strcpy(s,getenv("PROMPT"));
  1847.     strcpy(newprompt,"PROMPT=WWIV: ");
  1848.     if (s[0])
  1849.       strcat(newprompt,s);
  1850.     else
  1851.       strcat(newprompt,"$P$G");
  1852.     i=0;
  1853.     while (environ[i]!=NULL) {
  1854.       if (strncmp(environ[i],"PROMPT=",7)==0)
  1855.         xenviron[i]=newprompt;
  1856.       else
  1857.         xenviron[i]=environ[i];
  1858.       ++i;
  1859.     }
  1860.     if (s[0]==0)
  1861.       xenviron[i++]=newprompt;
  1862.     xenviron[i++]=ver_no1;
  1863.     xenviron[i]=NULL;
  1864. }
  1865.  
  1866. void do_it_1(char *cl)
  1867. {
  1868.   char *ss1;
  1869.  
  1870.   ss1=(char far *)getvect(INT_SHRINK);
  1871.   *ss1=1;
  1872.   ss1++;
  1873.   strcpy(ss1,searchpath(cl));
  1874.   ss1=MK_FP(FP_SEG(ss1),0x0080);
  1875.   *ss1=0;
  1876.   ++ss1;
  1877.   *ss1=0x0d;
  1878.   exit(0);
  1879. }
  1880.  
  1881. void main(int argc, char *argv[])
  1882. {
  1883.   int i,i1;
  1884.   char s[130];
  1885.  
  1886.   i=atoi(argv[1]);
  1887.   ccc=atoi(argv[2]);
  1888.  
  1889.   get_dir(cdir,0);
  1890.  
  1891.   setup_stuff();
  1892.   if (argc>=3) {
  1893.     s[0]=0;
  1894.     for (i1=3; i1<argc; i1++) {
  1895.       strcat(s,argv[i1]);
  1896.       strcat(s," ");
  1897.     }
  1898.     if (i) {
  1899.       if (!init_r()) {
  1900.         if (incom || outcom)
  1901.           screenbottom=thisuser.screenlines-1;
  1902.         else
  1903.           screenbottom=defscreenbottom;
  1904.         screenlinest=screenbottom+1;
  1905.         full_external(s,ccc);
  1906.         pl("Returning...");
  1907.         if (ok_modem_stuff)
  1908.           closeport();
  1909.         setvect(INT_POINT_FUNCS,NULL);
  1910.       } else
  1911.         pl("Couldn't find data");
  1912.     } else
  1913.       do_remote(s,ccc);
  1914.   }
  1915.   cd_to(cdir);
  1916.   do_it_1("BBS.EXE");
  1917. }
  1918.