home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / elm.lzh / ELM / SRC / CURSES.C < prev    next >
Text File  |  1993-03-18  |  20KB  |  920 lines

  1.  
  2. static char rcsid[] = "@(#)$Id: curses.c,v 4.1.1.3 90/07/12 20:18:02 syd Exp $";
  3.  
  4. /*******************************************************************************
  5.  *  The Elm Mail System  -  $Revision: 4.1.1.3 $   $State: Exp $
  6.  *
  7.  *             Copyright (c) 1986, 1987 Dave Taylor
  8.  *             Copyright (c) 1988, 1989, 1990 USENET Community Trust
  9.  *******************************************************************************
  10.  * Bug reports, patches, comments, suggestions should be sent to:
  11.  *
  12.  *    Syd Weinstein, Elm Coordinator
  13.  *    elm@DSI.COM            dsinc!elm
  14.  *
  15.  *******************************************************************************
  16.  * $Log:    curses.c,v $
  17.  * Revision 4.1.1.3  90/07/12  20:18:02  syd
  18.  * Be sure that output characters are not negative integers.
  19.  * From: tct!chip@uunet.UU.NET (Chip Salzenberg)
  20.  * 
  21.  * Revision 4.1.1.2  90/06/26  20:09:09  syd
  22.  * Add 8 bit support via ascii_ctype
  23.  * From: Robert Claeson <prc@erbe.se>
  24.  * 
  25.  * Revision 4.1.1.1  90/06/05  21:05:22  syd
  26.  * Fixes where src/curses.c attempts to set the screen size via the ioctl
  27.  * TIOCGWINSIZ if it exsists. It should only use the row or col size as
  28.  * returned from the ioctl if they are not 0.
  29.  * From: muller%sdcc10@ucsd.edu (Keith Muller)
  30.  * 
  31.  * Revision 4.1  90/04/28  22:42:39  syd
  32.  * checkin of Elm 2.3 as of Release PL0
  33.  * 
  34.  *
  35.  ******************************************************************************/
  36.  
  37. /**  This library gives programs the ability to easily access the
  38.      termcap information and write screen oriented and raw input
  39.      programs.  The routines can be called as needed, except that
  40.      to use the cursor / screen routines there must be a call to
  41.      InitScreen() first.  The 'Raw' input routine can be used
  42.      independently, however.
  43.  
  44. **/
  45.  
  46. /** NOTE THE ADDITION OF: the #ifndef ELM stuff around routines that
  47.     we don't use.  This is for code size and compile time speed...
  48. **/
  49.  
  50. #include "headers.h"
  51.  
  52. #ifdef TERMIOS
  53. #  include <termios.h>
  54. # if __convex__
  55. #  include <sys/ioctl.h>    /* non-standard, for TIOCGWINSZ */
  56. # endif
  57. #else
  58. # ifdef TERMIO
  59. #  include <termio.h>
  60. # else
  61. #  include <sgstat.h>        /* OSK ... */
  62. # endif
  63. #endif
  64.  
  65. #include <ctype.h>
  66.  
  67. #ifdef PTEM
  68. #  include <sys/types.h>
  69. #  include <sys/stream.h>
  70. #  include <sys/ptem.h>
  71. #endif
  72.  
  73. #ifdef BSD
  74. #undef tolower
  75. #endif
  76.  
  77. #define TTYIN    0
  78.  
  79. #ifdef SHORTNAMES
  80. # define _clearinverse    _clrinv
  81. # define _cleartoeoln    _clrtoeoln
  82. # define _cleartoeos    _clr2eos
  83. # define _transmit_off    xmit_off
  84. # define _transmit_on    xmit_on
  85. #endif
  86.  
  87. #ifdef TERMIOS
  88. struct termios _raw_tty,
  89.            _original_tty;
  90. #define    ttgetattr(fd,where)    tcgetattr((fd),(where))
  91. #define    ttsetattr(fd,where)    tcsetattr((fd),TCSADRAIN,(where))
  92. #else    /*TERMIOS*/
  93. # ifdef TERMIO
  94. struct termio _raw_tty, 
  95.               _original_tty;
  96. #define    ttgetattr(fd,where)    ioctl((fd),TCGETA,(where))
  97. #define    ttsetattr(fd,where)    ioctl((fd),TCSETAW,(where))
  98. # else
  99. struct sgbuf  _raw_tty,
  100.           _original_tty;
  101. #define    ttgetattr(fd,where)    _gs_opt((fd),(where))
  102. #define    ttsetattr(fd,where)    _ss_opt((fd),(where))
  103. # endif    /*TERMIO*/
  104. #endif    /*TERMIOS*/
  105.  
  106. static int _inraw = 0;                  /* are we IN rawmode?    */
  107.  
  108. #define DEFAULT_LINES_ON_TERMINAL    24
  109. #define DEFAULT_COLUMNS_ON_TERMINAL    80
  110.  
  111. static int _memory_locked = 0;        /* are we IN memlock??   */
  112. static int _line  = -1,            /* initialize to "trash" */
  113.            _col   = -1;
  114.  
  115. static int _intransmit;            /* are we transmitting keys? */
  116.  
  117. static
  118. char *_clearscreen, *_moveto, *_up, *_down, *_right, *_left,
  119.      *_setbold, *_clearbold, *_setunderline, *_clearunderline, 
  120.      *_sethalfbright, *_clearhalfbright, *_setinverse, *_clearinverse,
  121.      *_cleartoeoln, *_cleartoeos, *_transmit_on, *_transmit_off,
  122.      *_set_memlock, *_clear_memlock;
  123.  
  124. static int _lines, _columns, _automargin, _eatnewlineglitch;
  125. int tabspacing;
  126.  
  127. static char _terminal[1024];              /* Storage for terminal entry */
  128. static char _capabilities[1024];           /* String for cursor motion */
  129.  
  130. static char *ptr = _capabilities;    /* for buffering         */
  131.  
  132. int    outchar();            /* char output for tputs */
  133. char  *tgetstr(),                    /* Get termcap capability */
  134.       *tgoto();                /* and the goto stuff    */
  135.  
  136. short ospeed;
  137. char PC_;
  138. char *UP, *BC;
  139.  
  140. InitScreen()
  141. {
  142.     /* Set up all this fun stuff: returns zero if all okay, or;
  143.         -1 indicating no terminal name associated with this shell,
  144.         -2..-n  No termcap for this terminal type known
  145.    */
  146.  
  147.     int  tgetent(),      /* get termcap entry */
  148.          err;
  149.     char termname[40];
  150.     char *strcpy(), *getenv();
  151.     
  152.     if (getenv("TERM") == NULL) return(-1);
  153.  
  154.     if (strcpy(termname, getenv("TERM")) == NULL)
  155.         return(-1);
  156.  
  157.     if ((err = tgetent(_terminal, termname)) != 1)
  158.         return(err-2);
  159.  
  160.     _line  =  0;        /* where are we right now?? */
  161.     _col   =  0;        /* assume zero, zero...     */
  162.  
  163.     /* load in all those pesky values */
  164.     _clearscreen       = tgetstr("cl", &ptr);
  165.     _moveto            = tgetstr("cm", &ptr);
  166.     _up                = tgetstr("up", &ptr);
  167.     _down              = tgetstr("do", &ptr);
  168.     _right             = tgetstr("nd", &ptr);
  169.     _left              = tgetstr("bs", &ptr);
  170.     _setbold           = tgetstr("so", &ptr);
  171.     _clearbold         = tgetstr("se", &ptr);
  172.     _setunderline      = tgetstr("us", &ptr);
  173.     _clearunderline    = tgetstr("ue", &ptr);
  174.     _setinverse        = tgetstr("so", &ptr);
  175.     _clearinverse      = tgetstr("se", &ptr);
  176.     _sethalfbright     = tgetstr("hs", &ptr);
  177.     _clearhalfbright   = tgetstr("he", &ptr);
  178.     _cleartoeoln       = tgetstr("ce", &ptr);
  179.     _cleartoeos        = tgetstr("cd", &ptr);
  180.     _lines                 = tgetnum("li");
  181.     _columns       = tgetnum("co");
  182.     tabspacing       = ((tabspacing=tgetnum("it"))==-1 ? 8 : tabspacing);
  183.     _automargin       = tgetflag("am");
  184.     _eatnewlineglitch   = tgetflag("xn");
  185.     _transmit_on       = tgetstr("ks", &ptr);
  186.     _transmit_off      = tgetstr("ke", &ptr);
  187.     _set_memlock       = tgetstr("ml", &ptr);
  188.     _clear_memlock       = tgetstr("mu", &ptr);
  189.  
  190.  
  191.     if (!_left) {
  192.         _left = "\b";
  193.     }
  194.  
  195.     return(0);
  196. }
  197.  
  198. char *return_value_of(termcap_label)
  199. char *termcap_label;
  200. {
  201.     /** This will return the string kept by termcap for the 
  202.         specified capability. Modified to ensure that if 
  203.         tgetstr returns a pointer to a transient address    
  204.         that we won't bomb out with a later segmentation
  205.         fault (thanks to Dave@Infopro for this one!)
  206.  
  207.         Tweaked to remove padding sequences.
  208.      **/
  209.  
  210.     static char escape_sequence[20];
  211.     register int i=0,j=0;
  212.     char buffer[20];
  213.     char *myptr, *tgetstr();             /* Get termcap capability */
  214.  
  215.     if (strlen(termcap_label) < 2)
  216.       return(NULL);
  217.  
  218.     if (termcap_label[0] == 's' && termcap_label[1] == 'o')
  219.       {
  220.       if (_setinverse)
  221.         strcpy(escape_sequence, _setinverse);
  222.       else
  223.         return( (char *) NULL );
  224.       }
  225.     else if (termcap_label[0] == 's' && termcap_label[1] == 'e')
  226.       {
  227.       if (_clearinverse)
  228.         strcpy(escape_sequence, _clearinverse);
  229.       else
  230.         return( (char *) NULL );
  231.       }
  232.     else if ((myptr = tgetstr(termcap_label, &ptr)) == NULL)
  233.       return( (char *) NULL );
  234.     else
  235.       strcpy(escape_sequence, myptr);
  236.  
  237.     if (chloc(escape_sequence, '$') != -1) {
  238.       while (escape_sequence[i] != '\0') {
  239.         while (escape_sequence[i] != '$' && escape_sequence[i] != '\0')
  240.           buffer[j++] = escape_sequence[i++];
  241.         if (escape_sequence[i] == '$') {
  242.           while (escape_sequence[i] != '>') i++;
  243.           i++;
  244.         }
  245.       }
  246.       buffer[j] = '\0';
  247.       strcpy(escape_sequence, buffer);
  248.     }
  249.  
  250.     return( (char *) escape_sequence);
  251. }
  252.  
  253. transmit_functions(newstate)
  254. int newstate;
  255. {
  256.     /** turn function key transmission to ON | OFF **/
  257.  
  258.     if (newstate != _intransmit) {
  259.         _intransmit = ! _intransmit;
  260.         if (newstate == ON)
  261.           tputs(_transmit_on, 1, outchar);
  262.         else 
  263.           tputs(_transmit_off, 1, outchar);
  264.             fflush(stdout);      /* clear the output buffer */
  265.     }
  266. }
  267.  
  268. /****** now into the 'meat' of the routines...the cursor stuff ******/
  269.  
  270. ScreenSize(lines, columns)
  271. int *lines, *columns;
  272. {
  273.     /** returns the number of lines and columns on the display. **/
  274.  
  275. #ifdef TIOCGWINSZ
  276.     struct winsize w;
  277.  
  278.     if (ioctl(1,TIOCGWINSZ,&w) != -1) {
  279.         if (w.ws_row > 0)
  280.             _lines = w.ws_row;
  281.         if (w.ws_col > 0)
  282.             _columns = w.ws_col;
  283.     }
  284. #endif
  285.  
  286.     if (_lines == 0) _lines = DEFAULT_LINES_ON_TERMINAL;
  287.     if (_columns == 0) _columns = DEFAULT_COLUMNS_ON_TERMINAL;
  288.  
  289.     *lines = _lines - 1;        /* assume index from zero */
  290.     *columns = _columns;
  291. }
  292.  
  293. SetXYLocation(x,y)
  294. register int x,y;
  295. {
  296.     /* declare where the cursor is on the screen - useful after using
  297.      * a function that moves cursor in predictable fasion but doesn't
  298.      * set the static x and y variables used in this source file -
  299.      * e.g. getpass().
  300.      */
  301.  
  302.     _line = x;
  303.     _col = y;
  304. }
  305.  
  306. GetXYLocation(x,y)
  307. register int *x,*y;
  308. {
  309.     /* return the current cursor location on the screen */
  310.  
  311.     *x = _line;
  312.     *y = _col;
  313. }
  314.  
  315. ClearScreen()
  316. {
  317.     /* clear the screen: returns -1 if not capable */
  318.  
  319.     _line = 0;    /* clear leaves us at top... */
  320.     _col  = 0;
  321.  
  322.     if (!_clearscreen)
  323.         return(-1);
  324.  
  325.     tputs(_clearscreen, 1, outchar);
  326.     fflush(stdout);      /* clear the output buffer */
  327.     return(0);
  328. }
  329.  
  330. static
  331. CursorUp(n)
  332. register int n;
  333. {
  334.     /** move the cursor up 'n' lines **/
  335.     /** Calling function must check that _up is not null before calling **/
  336.  
  337.     _line = (_line-n > 0? _line - n: 0);    /* up 'n' lines... */
  338.  
  339.     while (n-- > 0)
  340.         tputs(_up, 1, outchar);
  341.  
  342.         fflush(stdout);/**/
  343.     return(0);
  344. }
  345.  
  346.  
  347. static
  348. CursorDown(n)
  349. register int n;
  350. {
  351.     /** move the cursor down 'n' lines **/
  352.     /** Caller must check that _down is not null before calling **/
  353.  
  354.     _line = (_line+n <= LINES? _line + n: LINES);    /* down 'n' lines... */
  355.  
  356.     while (n-- > 0)
  357.         tputs(_down, 1, outchar);
  358.  
  359.     fflush(stdout);/**/
  360.     return(0);
  361. }
  362.  
  363.  
  364. static
  365. CursorLeft(n)
  366. register int n;
  367. {
  368.     /** move the cursor 'n' characters to the left **/
  369.     /** Caller must check that _left is not null before calling **/
  370.  
  371.     _col = (_col - n> 0? _col - n: 0);    /* left 'n' chars... */
  372.  
  373.     while (n-- > 0)
  374.         tputs(_left, 1, outchar);
  375.  
  376.     fflush(stdout);/*       */
  377.     return(0);
  378. }
  379.  
  380.  
  381. static
  382. CursorRight(n)
  383. register int n;
  384. {
  385.     /** move the cursor 'n' characters to the right (nondestructive) **/
  386.     /** Caller must check that _right is not null before calling **/
  387.  
  388.     _col = (_col+n < COLUMNS? _col + n: COLUMNS);    /* right 'n' chars... */
  389.  
  390.     while (n-- > 0)
  391.         tputs(_right, 1, outchar);
  392.  
  393.     fflush(stdout);/*       */
  394.     return(0);
  395. }
  396.  
  397. static
  398. moveabsolute(col, row)
  399. register int col, row;
  400. {
  401.  
  402.     char *stuff, *tgoto();
  403.  
  404.     stuff = tgoto(_moveto, col, row);
  405.     tputs(stuff, 1, outchar);
  406.     fflush(stdout);/*       */
  407. }
  408.  
  409. MoveCursor(row, col)
  410. register int row, col;
  411. {
  412.     /** move cursor to the specified row column on the screen.
  413.             0,0 is the top left! **/
  414.  
  415.     int scrollafter = 0;
  416.  
  417.     /* we don't want to change "rows" or we'll mangle scrolling... */
  418.  
  419.     if (col < 0)
  420.       col = 0;
  421.     if (col >= COLUMNS)
  422.       col = COLUMNS - 1;
  423.     if (row < 0)
  424.       row = 0;
  425.     if (row > LINES) {
  426.       if (col == 0)
  427.         scrollafter = row - LINES;
  428.       row = LINES;
  429.     }
  430.  
  431.     if (!_moveto)
  432.         return(-1);
  433.  
  434.     if (row == _line) {
  435.       if (col == _col)
  436.         return(0);                /* already there! */
  437.  
  438.       else if (abs(col - _col) < 5) {    /* within 5 spaces... */
  439.         if (col > _col && _right)
  440.           CursorRight(col - _col);
  441.         else if (col < _col &&  _left)
  442.           CursorLeft(_col - col);
  443.         else
  444.           moveabsolute(col, row);
  445.           }
  446.       else         /* move along to the new x,y loc */
  447.         moveabsolute(col, row);
  448.     }
  449.     else if (_line == row-1 && col == 0) {
  450.       if (_col != 0)
  451.         outchar('\r');
  452.       outchar('\l');
  453.         fflush(stdout);/*   */
  454.     }
  455.     else if (col == _col && abs(row - _line) < 5) {
  456.       if (row < _line && _up)
  457.         CursorUp(_line - row);
  458.       else if (row > _line && _down)
  459.         CursorDown(row - _line);
  460.       else
  461.         moveabsolute(col, row);
  462.     }
  463.     else 
  464.       moveabsolute(col, row);
  465.  
  466.     _line = row;    /* to ensure we're really there... */
  467.     _col  = col;
  468.  
  469.     if (scrollafter) {
  470.       outchar('\r');
  471.       while (scrollafter--)
  472.         outchar('\l');
  473.     }
  474.  
  475.     return(0);
  476. }
  477.  
  478. CarriageReturn()
  479. {
  480.     /** move the cursor to the beginning of the current line **/
  481.     Writechar('\r');
  482. }
  483.  
  484. NewLine()
  485. {
  486.     /** move the cursor to the beginning of the next line **/
  487.  
  488.     Writechar('\r');
  489.     Writechar('\l');
  490. }
  491.  
  492. StartBold()
  493. {
  494.     /** start boldface/standout mode **/
  495.  
  496.     if (!_setbold)
  497.         return(-1);
  498.  
  499.     tputs(_setbold, 1, outchar);
  500.    fflush(stdout);/**/
  501.     return(0);
  502. }
  503.  
  504.  
  505. EndBold()
  506. {
  507.     /** compliment of startbold **/
  508.  
  509.     if (!_clearbold)
  510.         return(-1);
  511.  
  512.     tputs(_clearbold, 1, outchar);
  513.     fflush(stdout);/*       */
  514.     return(0);
  515. }
  516.  
  517. #ifndef ELM
  518.  
  519. StartUnderline()
  520. {
  521.     /** start underline mode **/
  522.  
  523.     if (!_setunderline)
  524.         return(-1);
  525.  
  526.     tputs(_setunderline, 1, outchar);
  527.    fflush(stdout);/*        */
  528.     return(0);
  529. }
  530.  
  531.  
  532. EndUnderline()
  533. {
  534.     /** the compliment of start underline mode **/
  535.  
  536.     if (!_clearunderline)
  537.         return(-1);
  538.  
  539.     tputs(_clearunderline, 1, outchar);
  540.    fflush(stdout);/**/
  541.     return(0);
  542. }
  543.  
  544.  
  545. StartHalfbright()
  546. {
  547.     /** start half intensity mode **/
  548.  
  549.     if (!_sethalfbright)
  550.         return(-1);
  551.  
  552.     tputs(_sethalfbright, 1, outchar);
  553.    fflush(stdout);/**/
  554.     return(0);
  555. }
  556.  
  557. EndHalfbright()
  558. {
  559.     /** compliment of starthalfbright **/
  560.  
  561.     if (!_clearhalfbright)
  562.         return(-1);
  563.  
  564.     tputs(_clearhalfbright, 1, outchar);
  565.    fflush(stdout);/**/
  566.     return(0);
  567. }
  568.  
  569. StartInverse()
  570. {
  571.     /** set inverse video mode **/
  572.  
  573.     if (!_setinverse)
  574.         return(-1);
  575.  
  576.     tputs(_setinverse, 1, outchar);
  577.    fflush(stdout);/**/
  578.     return(0);
  579. }
  580.  
  581.  
  582. EndInverse()
  583. {
  584.     /** compliment of startinverse **/
  585.  
  586.     if (!_clearinverse)
  587.         return(-1);
  588.  
  589.     tputs(_clearinverse, 1, outchar);
  590.    fflush(stdout);/**/
  591.     return(0);
  592. }
  593.  
  594. int
  595. HasMemlock()
  596. {
  597.     /** returns TRUE iff memory locking is available (a terminal
  598.         feature that allows a specified portion of the screen to
  599.         be "locked" & not cleared/scrolled... **/
  600.  
  601.     return ( _set_memlock && _clear_memlock );
  602. }
  603.  
  604. static int _old_LINES;
  605.  
  606. int
  607. StartMemlock()
  608. {
  609.     /** mark the current line as the "last" line of the portion to 
  610.         be memory locked (always relative to the top line of the
  611.         screen) Note that this will alter LINES so that it knows
  612.         the top is locked.  This means that (plus) the program 
  613.         will scroll nicely but (minus) End memlock MUST be called
  614.         whenever we leave the locked-memory part of the program! **/
  615.  
  616.     if (! _set_memlock)
  617.       return(-1);
  618.  
  619.     if (! _memory_locked) {
  620.  
  621.       _old_LINES = LINES;
  622.       LINES -= _line;        /* we can't use this for scrolling */
  623.  
  624.       tputs(_set_memlock, 1, outchar);
  625.      fflush(stdout);/**/
  626.       _memory_locked = TRUE;
  627.     }
  628.  
  629.     return(0);
  630. }
  631.  
  632. int
  633. EndMemlock()
  634. {
  635.     /** Clear the locked memory condition...  **/
  636.  
  637.     if (! _set_memlock)
  638.       return(-1);
  639.  
  640.     if (_memory_locked) {
  641.       LINES = _old_LINES;        /* back to old setting */
  642.   
  643.       tputs(_clear_memlock, 1, outchar);
  644.      fflush(stdout);/**/
  645.       _memory_locked = FALSE;
  646.     }
  647.     return(0);
  648. }
  649.  
  650. #endif /* ndef ELM */
  651.  
  652. Writechar(ch)
  653. register int ch;
  654. {
  655.     /** write a character to the current screen location. **/
  656.  
  657.     static int wrappedlastchar = 0;
  658.     register int justwrapped, nt;
  659.  
  660.     ch &= 0xFF;
  661.     justwrapped = 0;
  662.  
  663.     /* if return, just go to left column. */
  664.     if(ch == '\r') {
  665.       if (wrappedlastchar)
  666.         justwrapped = 1;                /* preserve wrap flag */
  667.       else {
  668.         outchar('\r');
  669.         _col = 0;
  670.       }
  671.     }
  672.  
  673.     /* if newline and terminal just did a newline without our asking,
  674.      * do nothing, else output a newline and increment the line count */
  675.     else if (ch == '\l') {
  676.       if (!wrappedlastchar) {
  677.         outchar('\l');
  678.         if (_line < LINES)
  679.           ++_line;
  680.       }
  681.     }
  682.  
  683.     /* if backspace, move back  one space  if not already in column 0 */
  684.     else if (ch == BACKSPACE) {
  685.       if(_col != 0) {
  686.         outchar('\b');
  687.         _col--;
  688.       } /* else BACKSPACE does nothing */
  689.     }
  690.  
  691.     /* if bell, ring the bell but don't advance the column */
  692.     else if (ch == '\007') {
  693.       outchar(ch);
  694.     }
  695.  
  696.     /* if a tab, output it */
  697.     else if (ch == '\t') {
  698.       outchar(ch);
  699.       if((nt=next_tab(_col+1)) > prev_tab(COLUMNS))
  700.         _col = COLUMNS-1;
  701.       else
  702.         _col = nt-1;
  703.     }
  704.  
  705.     else {
  706.       /* if some kind of non-printable character change to a '?' */
  707. #ifdef ASCII_CTYPE
  708.       if(!isascii(ch) || !isprint(ch))
  709. #else
  710.       if(!isprint(ch))
  711. #endif
  712.         ch = '?';
  713.  
  714.       /* if we only have one column left, simulate automargins if
  715.        * the terminal doesn't have them */
  716.       if (_col == COLUMNS - 1) {
  717.         outchar(ch);
  718.         if (!_automargin || _eatnewlineglitch) {
  719.           outchar('\r');
  720.           outchar('\l');
  721.         }
  722.         if (_line < LINES)
  723.           ++_line;
  724.         _col = 0;
  725.         justwrapped = 1;
  726.       }
  727.  
  728.       /* if we are here this means we have no interference from the
  729.        * right margin - just output the character and increment the
  730.        * column position. */
  731.       else {
  732.         outchar(ch);
  733.         _col++;
  734.       }
  735.     }
  736.  
  737.     wrappedlastchar = justwrapped;
  738.    fflush(stdout);/**/
  739.     return(0);
  740. }
  741.  
  742. /*VARARGS2*/
  743.  
  744. Write_to_screen(line, argcount, arg1, arg2, arg3)
  745. char *line;
  746. int   argcount; 
  747. char *arg1, *arg2, *arg3;
  748. {
  749.     /** This routine writes to the screen at the current location.
  750.           when done, it increments lines & columns accordingly by
  751.         looking for "\n" sequences... **/
  752.  
  753.     switch (argcount) {
  754.     case 0 :
  755.         PutLine0(_line, _col, line);
  756.         break;
  757.     case 1 :
  758.         PutLine1(_line, _col, line, arg1);
  759.         break;
  760.     case 2 :
  761.         PutLine2(_line, _col, line, arg1, arg2);
  762.         break;
  763.     case 3 :
  764.         PutLine3(_line, _col, line, arg1, arg2, arg3);
  765.         break;
  766.     }
  767. }
  768.  
  769. PutLine0(x, y, line)
  770. int x,y;
  771. register char *line;
  772. {
  773.     /** Write a zero argument line at location x,y **/
  774.  
  775.     MoveCursor(x,y);
  776.     while(*line)
  777.       Writechar(*line++);
  778.    fflush(stdout);/**/
  779. }
  780.  
  781. /*VARARGS2*/
  782. PutLine1(x,y, line, arg1)
  783. int x,y;
  784. char *line;
  785. char *arg1;
  786. {
  787.     /** write line at location x,y - one argument... **/
  788.  
  789.     char buffer[VERY_LONG_STRING];
  790.  
  791.     sprintf(buffer, line, arg1);
  792.  
  793.     PutLine0(x, y, buffer);
  794. /*        fflush(stdout);        */
  795. }
  796.  
  797. /*VARARGS2*/
  798. PutLine2(x,y, line, arg1, arg2)
  799. int x,y;
  800. char *line;
  801. char *arg1, *arg2;
  802. {
  803.     /** write line at location x,y - one argument... **/
  804.  
  805.     char buffer[VERY_LONG_STRING];
  806.  
  807.     sprintf(buffer, line, arg1, arg2);
  808.  
  809.     PutLine0(x, y, buffer);
  810. /*        fflush(stdout);    */
  811. }
  812.  
  813. /*VARARGS2*/
  814. PutLine3(x,y, line, arg1, arg2, arg3)
  815. int x,y;
  816. char *line;
  817. char *arg1, *arg2, *arg3;
  818. {
  819.     /** write line at location x,y - one argument... **/
  820.  
  821.     char buffer[VERY_LONG_STRING];
  822.  
  823.     sprintf(buffer, line, arg1, arg2, arg3);
  824.  
  825.     PutLine0(x, y, buffer);
  826. /*        fflush(stdout);    */
  827. }
  828.  
  829. CleartoEOLN()
  830. {
  831.     /** clear to end of line **/
  832.  
  833.     if (!_cleartoeoln)
  834.         return(-1);
  835.  
  836.     tputs(_cleartoeoln, 1, outchar);
  837.    fflush(stdout);  /* clear the output buffer */
  838.     return(0);
  839. }
  840.  
  841. CleartoEOS()
  842. {
  843.     /** clear to end of screen **/
  844.  
  845.     if (!_cleartoeos)
  846.         return(-1);
  847.  
  848.     tputs(_cleartoeos, 1, outchar);
  849.    fflush(stdout);  /* clear the output buffer */
  850.     return(0);
  851. }
  852.  
  853.  
  854. RawState()
  855. {
  856.     /** returns either 1 or 0, for ON or OFF **/
  857.  
  858.     return( _inraw );
  859. }
  860.  
  861. Raw(state)
  862. int state;
  863. {
  864.     /** state is either ON or OFF, as indicated by call **/
  865.  
  866.     if (state == OFF && _inraw) {
  867.       (void) ttsetattr(TTYIN,&_original_tty);
  868.       _inraw = 0;
  869.     }
  870.     else if (state == ON && ! _inraw) {
  871.  
  872.       (void) ttgetattr(TTYIN, &_original_tty);
  873.       (void) ttgetattr(TTYIN, &_raw_tty);    /** again! **/
  874.  
  875. #if !defined(TERMIO) && !defined(TERMIOS)
  876.       _raw_tty.sg_echo=        /* echo off */
  877.       _raw_tty.sg_alf=
  878.       _raw_tty.sg_pause=
  879.       _raw_tty.sg_page=
  880.       _raw_tty.sg_dlnch=
  881. /*      _raw_tty.sg_eorch=        */
  882. /*      _raw_tty.sg_eofch=        */
  883.       _raw_tty.sg_rlnch=
  884.       _raw_tty.sg_dulnch=
  885.       _raw_tty.sg_psch=
  886.       _raw_tty.sg_kbich=
  887.       _raw_tty.sg_kbach= 0;
  888.  
  889. #else
  890.       _raw_tty.c_lflag &= ~(ICANON | ECHO);    /* noecho raw mode        */
  891.  
  892.       _raw_tty.c_cc[VMIN] = '\01';    /* minimum # of chars to queue    */
  893.       _raw_tty.c_cc[VTIME] = '\0';    /* minimum time to wait for input */
  894.  
  895. #endif
  896.       (void) ttsetattr(TTYIN, &_raw_tty);
  897.       _inraw = 1;
  898.     }
  899. }
  900.  
  901. int
  902. ReadCh()
  903. {
  904.     /** read a character with Raw mode set! **/
  905.  
  906.     register int result;
  907.     char ch;
  908.     result = read(0, &ch, 1);
  909.         return((result <= 0 ) ? EOF : ch);
  910. }
  911.  
  912. outchar(c)
  913. char c;
  914. {
  915.     /** output the given character.  From tputs... **/
  916.     /** Note: this CANNOT be a macro!              **/
  917.  
  918.     fwrite(&c, 1, 1, stdout);
  919. }
  920.