BSD 4_3_Net_2 release
[unix-history] / usr / src / usr.bin / talk / display.c
CommitLineData
d0aeaf5a
DF
1/*
2 * Copyright (c) 1983 Regents of the University of California.
f9ac90b4
KB
3 * All rights reserved.
4 *
af359dea
C
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.
d0aeaf5a
DF
32 */
33
963ce42e 34#ifndef lint
1c15e888 35static char sccsid[] = "@(#)display.c 5.4 (Berkeley) 6/1/90";
f9ac90b4 36#endif /* not lint */
a07b5a38 37
963ce42e
MK
38/*
39 * The window 'manager', initializes curses and handles the actual
a07b5a38
MK
40 * displaying of text
41 */
a07b5a38
MK
42#include "talk.h"
43
963ce42e
MK
44xwin_t my_win;
45xwin_t his_win;
46WINDOW *line_win;
a07b5a38 47
963ce42e 48int curses_initialized = 0;
a07b5a38 49
963ce42e
MK
50/*
51 * max HAS to be a function, it is called with
52 * a argument of the form --foo at least once.
53 */
a07b5a38 54max(a,b)
963ce42e 55 int a, b;
a07b5a38 56{
963ce42e
MK
57
58 return (a > b ? a : b);
a07b5a38
MK
59}
60
61/*
62 * Display some text on somebody's window, processing some control
63 * characters while we are at it.
64 */
a07b5a38 65display(win, text, size)
963ce42e
MK
66 register xwin_t *win;
67 register char *text;
68 int size;
a07b5a38 69{
963ce42e
MK
70 register int i;
71 char cch;
72
73 for (i = 0; i < size; i++) {
74 if (*text == '\n') {
75 xscroll(win, 0);
76 text++;
77 continue;
78 }
79 /* erase character */
80 if (*text == win->cerase) {
81 wmove(win->x_win, win->x_line, max(--win->x_col, 0));
82 getyx(win->x_win, win->x_line, win->x_col);
83 waddch(win->x_win, ' ');
84 wmove(win->x_win, win->x_line, win->x_col);
85 getyx(win->x_win, win->x_line, win->x_col);
86 text++;
87 continue;
88 }
89 /*
90 * On word erase search backwards until we find
91 * the beginning of a word or the beginning of
92 * the line.
93 */
94 if (*text == win->werase) {
95 int endcol, xcol, i, c;
96
97 endcol = win->x_col;
98 xcol = endcol - 1;
99 while (xcol >= 0) {
100 c = readwin(win->x_win, win->x_line, xcol);
101 if (c != ' ')
102 break;
103 xcol--;
104 }
105 while (xcol >= 0) {
106 c = readwin(win->x_win, win->x_line, xcol);
107 if (c == ' ')
108 break;
109 xcol--;
110 }
111 wmove(win->x_win, win->x_line, xcol + 1);
112 for (i = xcol + 1; i < endcol; i++)
113 waddch(win->x_win, ' ');
114 wmove(win->x_win, win->x_line, xcol + 1);
115 getyx(win->x_win, win->x_line, win->x_col);
116 continue;
117 }
118 /* line kill */
119 if (*text == win->kill) {
120 wmove(win->x_win, win->x_line, 0);
121 wclrtoeol(win->x_win);
122 getyx(win->x_win, win->x_line, win->x_col);
123 text++;
124 continue;
125 }
126 if (*text == '\f') {
127 if (win == &my_win)
128 wrefresh(curscr);
129 text++;
130 continue;
131 }
132 if (win->x_col == COLS-1) {
133 /* check for wraparound */
134 xscroll(win, 0);
135 }
136 if (*text < ' ' && *text != '\t') {
137 waddch(win->x_win, '^');
138 getyx(win->x_win, win->x_line, win->x_col);
139 if (win->x_col == COLS-1) /* check for wraparound */
140 xscroll(win, 0);
141 cch = (*text & 63) + 64;
142 waddch(win->x_win, cch);
143 } else
144 waddch(win->x_win, *text);
145 getyx(win->x_win, win->x_line, win->x_col);
146 text++;
a07b5a38 147 }
963ce42e 148 wrefresh(win->x_win);
a07b5a38
MK
149}
150
151/*
963ce42e
MK
152 * Read the character at the indicated position in win
153 */
a07b5a38 154readwin(win, line, col)
963ce42e 155 WINDOW *win;
a07b5a38 156{
963ce42e
MK
157 int oldline, oldcol;
158 register int c;
159
160 getyx(win, oldline, oldcol);
161 wmove(win, line, col);
162 c = winch(win);
163 wmove(win, oldline, oldcol);
164 return (c);
a07b5a38
MK
165}
166
167/*
963ce42e
MK
168 * Scroll a window, blanking out the line following the current line
169 * so that the current position is obvious
170 */
a07b5a38 171xscroll(win, flag)
963ce42e
MK
172 register xwin_t *win;
173 int flag;
a07b5a38 174{
963ce42e
MK
175
176 if (flag == -1) {
177 wmove(win->x_win, 0, 0);
178 win->x_line = 0;
179 win->x_col = 0;
180 return;
181 }
182 win->x_line = (win->x_line + 1) % win->x_nlines;
a07b5a38 183 win->x_col = 0;
963ce42e
MK
184 wmove(win->x_win, win->x_line, win->x_col);
185 wclrtoeol(win->x_win);
186 wmove(win->x_win, (win->x_line + 1) % win->x_nlines, win->x_col);
187 wclrtoeol(win->x_win);
188 wmove(win->x_win, win->x_line, win->x_col);
a07b5a38 189}