home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / inetutils-1.2-src.tgz / tar.out / fsf / inetutils / talk / init_disp.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  6KB  |  210 lines

  1. /*
  2.  * Copyright (c) 1983, 1993
  3.  *    The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. #ifndef lint
  35. static char sccsid[] = "@(#)init_disp.c    8.2 (Berkeley) 2/16/94";
  36. #endif /* not lint */
  37.  
  38. /*
  39.  * Initialization code for the display package,
  40.  * as well as the signal handling routines.
  41.  */
  42.  
  43. #ifdef HAVE_CONFIG_H
  44. #include <config.h>
  45. #endif
  46.  
  47. #ifdef HAVE_TERMIOS_H
  48. #include <termios.h>
  49. #else
  50. #include <sys/ioctl.h>
  51. #ifdef HAVE_SYS_IOCTL_COMPAT_H
  52. #include <sys/ioctl_compat.h>
  53. #endif
  54. #endif
  55.  
  56. #include <signal.h>
  57. #include <err.h>
  58. #include "talk.h"
  59.  
  60. /* 
  61.  * Set up curses, catch the appropriate signals,
  62.  * and build the various windows.
  63.  */
  64. init_display()
  65. {
  66.     void sig_sent();
  67. #ifdef HAVE_SIGACTION
  68.     struct sigaction siga;
  69. #else
  70. #ifdef HAVE_SIGVEC
  71.     struct sigvec sigv;
  72. #endif
  73. #endif
  74.  
  75.     if (initscr() == NULL)
  76.         errx(1, "Terminal type unset or lacking necessary features.");
  77.  
  78. #ifdef HAVE_SIGACTION
  79.     sigaction (SIGTSTP, (struct sigaction *)0, &siga);
  80.     siga.sa_mask |= sigmask (SIGALRM);
  81.     sigaction (SIGTSTP, &siga, (struct sigaction *)0);
  82. #else /* !HAVE_SIGACTION */
  83. #ifdef HAVE_SIGVEC
  84.     sigvec (SIGTSTP, (struct sigvec *)0, &sigv);
  85.     sigv.sv_mask |= sigmask (SIGALRM);
  86.     sigvec (SIGTSTP, &sigv, (struct sigvec *)0);
  87. #endif /* HAVE_SIGVEC */
  88. #endif /* HAVE_SIGACTION */
  89.  
  90.     curses_initialized = 1;
  91.     clear();
  92.     refresh();
  93.     noecho();
  94.     crmode();
  95.  
  96.     signal(SIGINT, sig_sent);
  97.     signal(SIGPIPE, sig_sent);
  98.  
  99.     /* curses takes care of ^Z */
  100.     my_win.x_nlines = LINES / 2;
  101.     my_win.x_ncols = COLS;
  102.     my_win.x_win = newwin(my_win.x_nlines, my_win.x_ncols, 0, 0);
  103.     scrollok(my_win.x_win, FALSE);
  104.     wclear(my_win.x_win);
  105.  
  106.     his_win.x_nlines = LINES / 2 - 1;
  107.     his_win.x_ncols = COLS;
  108.     his_win.x_win = newwin(his_win.x_nlines, his_win.x_ncols,
  109.         my_win.x_nlines+1, 0);
  110.     scrollok(his_win.x_win, FALSE);
  111.     wclear(his_win.x_win);
  112.  
  113.     line_win = newwin(1, COLS, my_win.x_nlines, 0);
  114.     box(line_win, '-', '-');
  115.     wrefresh(line_win);
  116.     /* let them know we are working on it */
  117.     current_state = "No connection yet";
  118. }
  119.  
  120. /*
  121.  * Trade edit characters with the other talk. By agreement
  122.  * the first three characters each talk transmits after
  123.  * connection are the three edit characters.
  124.  */
  125. set_edit_chars()
  126. {
  127.     int cc;
  128.     char buf[3];
  129.  
  130. #ifdef HAVE_TCGETATTR
  131.       struct termios tty;
  132.     cc_t disable = (cc_t)-1, erase, werase, kill;
  133.  
  134. #if !defined (_POSIX_VDISABLE) && defined (HAVE_FPATHCONF) && defined (_PC_VDISABLE)
  135.     disable = fpathconf (0, _PC_VDISABLE);
  136. #endif
  137.  
  138.     erase = werase = kill = disable;
  139.  
  140.     if (tcgetattr (0, &tty) >= 0) {
  141.         erase = tty.c_cc[VERASE];
  142. #ifdef VWERASE
  143.         werase = tty.c_cc[VWERASE];
  144. #endif
  145.         kill = tty.c_cc[VKILL];
  146.     }
  147.  
  148.     if (erase == disable)
  149.         erase = '\177';    /* rubout */
  150.     if (werase == disable)
  151.         werase = '\027'; /* ^W */
  152.     if (kill == disable)
  153.         kill = '\025';    /* ^U */
  154.  
  155.     my_win.cerase = erase;
  156.     my_win.werase = werase;
  157.     my_win.kill = kill;
  158. #else /* !HAVE_TCGETATTR */
  159.     struct sgttyb tty;
  160.     struct ltchars ltc;
  161.     
  162.     ioctl(0, TIOCGETP, &tty);
  163.     ioctl(0, TIOCGLTC, (struct sgttyb *)<c);
  164.     my_win.cerase = tty.sg_erase;
  165.     my_win.kill = tty.sg_kill;
  166.     if (ltc.t_werasc == (char) -1)
  167.         my_win.werase = '\027';     /* control W */
  168.     else
  169.         my_win.werase = ltc.t_werasc;
  170. #endif /* HAVE_TCGETATTR */
  171.  
  172.     buf[0] = my_win.cerase;
  173.     buf[1] = my_win.kill;
  174.     buf[2] = my_win.werase;
  175.     cc = write(sockt, buf, sizeof(buf));
  176.     if (cc != sizeof(buf) )
  177.         p_error("Lost the connection");
  178.     cc = read(sockt, buf, sizeof(buf));
  179.     if (cc != sizeof(buf) )
  180.         p_error("Lost the connection");
  181.     his_win.cerase = buf[0];
  182.     his_win.kill = buf[1];
  183.     his_win.werase = buf[2];
  184. }
  185.  
  186. void
  187. sig_sent()
  188. {
  189.  
  190.     message("Connection closing. Exiting");
  191.     quit();
  192. }
  193.  
  194. /*
  195.  * All done talking...hang up the phone and reset terminal thingy's
  196.  */
  197. quit()
  198. {
  199.  
  200.     if (curses_initialized) {
  201.         wmove(his_win.x_win, his_win.x_nlines-1, 0);
  202.         wclrtoeol(his_win.x_win);
  203.         wrefresh(his_win.x_win);
  204.         endwin();
  205.     }
  206.     if (invitation_waiting)
  207.         send_delete();
  208.     exit(0);
  209. }
  210.