home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / WWIV412S.ZIP / RETURN.C < prev    next >
C/C++ Source or Header  |  1990-08-01  |  45KB  |  2,043 lines

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