refresh.c revision 1.43 1 1.43 blymn /* $NetBSD: refresh.c,v 1.43 2001/12/02 09:14:22 blymn Exp $ */
2 1.8 mikel
3 1.1 cgd /*
4 1.7 cgd * Copyright (c) 1981, 1993, 1994
5 1.5 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.8 mikel #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.8 mikel #if 0
39 1.7 cgd static char sccsid[] = "@(#)refresh.c 8.7 (Berkeley) 8/13/94";
40 1.8 mikel #else
41 1.43 blymn __RCSID("$NetBSD: refresh.c,v 1.43 2001/12/02 09:14:22 blymn Exp $");
42 1.8 mikel #endif
43 1.11 mrg #endif /* not lint */
44 1.1 cgd
45 1.38 matt #include <stdlib.h>
46 1.4 mycroft #include <string.h>
47 1.1 cgd
48 1.7 cgd #include "curses.h"
49 1.15 blymn #include "curses_private.h"
50 1.7 cgd
51 1.4 mycroft static void domvcur __P((int, int, int, int));
52 1.23 jdc static int makech __P((int));
53 1.23 jdc static void quickch __P((void));
54 1.23 jdc static void scrolln __P((int, int, int, int, int));
55 1.1 cgd
56 1.17 blymn #ifndef _CURSES_USE_MACROS
57 1.17 blymn
58 1.17 blymn /*
59 1.17 blymn * refresh --
60 1.17 blymn * Make the current screen look like "stdscr" over the area covered by
61 1.17 blymn * stdscr.
62 1.17 blymn */
63 1.17 blymn int
64 1.17 blymn refresh(void)
65 1.17 blymn {
66 1.17 blymn return wrefresh(stdscr);
67 1.17 blymn }
68 1.17 blymn
69 1.17 blymn #endif
70 1.17 blymn
71 1.4 mycroft /*
72 1.23 jdc * wnoutrefresh --
73 1.23 jdc * Add the contents of "win" to the virtual window.
74 1.23 jdc */
75 1.23 jdc int
76 1.23 jdc wnoutrefresh(WINDOW *win)
77 1.23 jdc {
78 1.33 mycroft short wy, wx, x_off;
79 1.33 mycroft __LINE *wlp, *vlp;
80 1.23 jdc
81 1.23 jdc #ifdef DEBUG
82 1.23 jdc __CTRACE("wnoutrefresh: win %0.2o, flags 0x%08x\n", win, win->flags);
83 1.23 jdc #endif
84 1.23 jdc
85 1.43 blymn if (_cursesi_screen->curwin)
86 1.23 jdc return(OK);
87 1.23 jdc __virtscr->cury = win->cury + win->begy;
88 1.23 jdc __virtscr->curx = win->curx + win->begx;
89 1.23 jdc
90 1.23 jdc /* Copy the window flags from "win" to "__virtscr" */
91 1.33 mycroft if (win->flags & __CLEAROK) {
92 1.33 mycroft if (win->flags & __FULLWIN)
93 1.33 mycroft __virtscr->flags |= __CLEAROK;
94 1.23 jdc win->flags &= ~__CLEAROK;
95 1.33 mycroft }
96 1.30 mycroft __virtscr->flags &= ~__LEAVEOK;
97 1.23 jdc __virtscr->flags |= win->flags;
98 1.23 jdc
99 1.33 mycroft for (wy = 0; wy < win->maxy && wy < __virtscr->maxy - win->begy; wy++) {
100 1.33 mycroft wlp = win->lines[wy];
101 1.23 jdc #ifdef DEBUG
102 1.23 jdc __CTRACE("wnoutrefresh: wy %d\tf: %d\tl:%d\tflags %x\n", wy,
103 1.33 mycroft *wlp->firstchp, *wlp->lastchp, wlp->flags);
104 1.23 jdc #endif
105 1.35 mycroft if ((wlp->flags & __ISDIRTY) == 0)
106 1.33 mycroft continue;
107 1.33 mycroft vlp = __virtscr->lines[wy + win->begy];
108 1.33 mycroft
109 1.33 mycroft if (*wlp->firstchp < win->maxx + win->ch_off &&
110 1.33 mycroft *wlp->lastchp >= win->ch_off) {
111 1.23 jdc /* Copy line from "win" to "__virtscr". */
112 1.29 jdc for (wx = 0, x_off = win->begx; wx < win->maxx &&
113 1.29 jdc x_off < __virtscr->maxx; wx++, x_off++) {
114 1.33 mycroft vlp->line[x_off].attr = wlp->line[wx].attr;
115 1.36 jdc if (wlp->line[wx].attr & __COLOR)
116 1.33 mycroft vlp->line[x_off].attr |=
117 1.36 jdc wlp->line[wx].battr & ~__COLOR;
118 1.36 jdc else
119 1.36 jdc vlp->line[x_off].attr |=
120 1.36 jdc wlp->line[wx].battr;
121 1.33 mycroft if (wlp->line[wx].ch == ' ' &&
122 1.33 mycroft wlp->line[wx].bch != ' ')
123 1.33 mycroft vlp->line[x_off].ch
124 1.33 mycroft = wlp->line[wx].bch;
125 1.23 jdc else
126 1.33 mycroft vlp->line[x_off].ch
127 1.33 mycroft = wlp->line[wx].ch;
128 1.23 jdc }
129 1.23 jdc
130 1.23 jdc /* Set flags on "__virtscr" and unset on "win". */
131 1.33 mycroft if (wlp->flags & __ISPASTEOL)
132 1.33 mycroft vlp->flags |= __ISPASTEOL;
133 1.23 jdc else
134 1.33 mycroft vlp->flags &= ~__ISPASTEOL;
135 1.33 mycroft if (wlp->flags & __ISDIRTY)
136 1.33 mycroft vlp->flags |= __ISDIRTY;
137 1.23 jdc
138 1.23 jdc #ifdef DEBUG
139 1.23 jdc __CTRACE("win: firstch = %d, lastch = %d\n",
140 1.33 mycroft *wlp->firstchp, *wlp->lastchp);
141 1.23 jdc #endif
142 1.23 jdc /* Set change pointers on "__virtscr". */
143 1.33 mycroft if (*vlp->firstchp >
144 1.33 mycroft *wlp->firstchp + win->begx - win->ch_off)
145 1.33 mycroft *vlp->firstchp =
146 1.33 mycroft *wlp->firstchp + win->begx - win->ch_off;
147 1.33 mycroft if (*vlp->lastchp <
148 1.33 mycroft *wlp->lastchp + win->begx - win->ch_off)
149 1.33 mycroft *vlp->lastchp =
150 1.33 mycroft *wlp->lastchp + win->begx - win->ch_off;
151 1.23 jdc #ifdef DEBUG
152 1.23 jdc __CTRACE("__virtscr: firstch = %d, lastch = %d\n",
153 1.33 mycroft *vlp->firstchp, *vlp->lastchp);
154 1.23 jdc #endif
155 1.23 jdc
156 1.23 jdc /* Set change pointers on "win". */
157 1.33 mycroft if (*wlp->firstchp >= win->ch_off)
158 1.33 mycroft *wlp->firstchp = win->maxx + win->ch_off;
159 1.33 mycroft if (*wlp->lastchp < win->maxx + win->ch_off)
160 1.33 mycroft *wlp->lastchp = win->ch_off;
161 1.33 mycroft if (*wlp->lastchp < *wlp->firstchp) {
162 1.23 jdc #ifdef DEBUG
163 1.23 jdc __CTRACE("wnoutrefresh: line %d notdirty\n",
164 1.23 jdc wy);
165 1.23 jdc #endif
166 1.33 mycroft wlp->flags &= ~__ISDIRTY;
167 1.23 jdc }
168 1.23 jdc }
169 1.23 jdc }
170 1.23 jdc
171 1.23 jdc return (OK);
172 1.23 jdc }
173 1.23 jdc
174 1.23 jdc /*
175 1.4 mycroft * wrefresh --
176 1.4 mycroft * Make the current screen look like "win" over the area coverd by
177 1.4 mycroft * win.
178 1.4 mycroft */
179 1.4 mycroft int
180 1.17 blymn wrefresh(WINDOW *win)
181 1.1 cgd {
182 1.11 mrg int retval;
183 1.23 jdc
184 1.43 blymn _cursesi_screen->curwin = (win == curscr);
185 1.43 blymn if (!_cursesi_screen->curwin)
186 1.23 jdc retval = wnoutrefresh(win);
187 1.23 jdc else
188 1.23 jdc retval = OK;
189 1.23 jdc if (retval == OK) {
190 1.23 jdc retval = doupdate();
191 1.24 jdc if (!win->flags & __LEAVEOK) {
192 1.24 jdc win->cury = max(0, curscr->cury - win->begy);
193 1.24 jdc win->curx = max(0, curscr->curx - win->begx);
194 1.24 jdc }
195 1.23 jdc }
196 1.43 blymn _cursesi_screen->curwin = 0;
197 1.23 jdc return(retval);
198 1.23 jdc }
199 1.23 jdc
200 1.23 jdc /*
201 1.23 jdc * doupdate --
202 1.23 jdc * Make the current screen look like the virtual window "__virtscr".
203 1.23 jdc */
204 1.23 jdc int
205 1.23 jdc doupdate(void)
206 1.23 jdc {
207 1.23 jdc WINDOW *win;
208 1.23 jdc __LINE *wlp;
209 1.23 jdc short wy;
210 1.23 jdc int dnum;
211 1.9 phil
212 1.9 phil /* Check if we need to restart ... */
213 1.43 blymn if (_cursesi_screen->endwin)
214 1.9 phil __restartwin();
215 1.7 cgd
216 1.43 blymn if (_cursesi_screen->curwin)
217 1.23 jdc win = curscr;
218 1.23 jdc else
219 1.23 jdc win = __virtscr;
220 1.23 jdc
221 1.4 mycroft /* Initialize loop parameters. */
222 1.43 blymn _cursesi_screen->ly = curscr->cury;
223 1.43 blymn _cursesi_screen->lx = curscr->curx;
224 1.1 cgd wy = 0;
225 1.1 cgd
226 1.43 blymn if (!_cursesi_screen->curwin)
227 1.5 cgd for (wy = 0; wy < win->maxy; wy++) {
228 1.5 cgd wlp = win->lines[wy];
229 1.5 cgd if (wlp->flags & __ISDIRTY)
230 1.12 christos wlp->hash = __hash((char *)(void *)wlp->line,
231 1.11 mrg (int) (win->maxx * __LDATASIZE));
232 1.5 cgd }
233 1.5 cgd
234 1.43 blymn if ((win->flags & __CLEAROK) || (curscr->flags & __CLEAROK) ||
235 1.43 blymn _cursesi_screen->curwin) {
236 1.23 jdc if (curscr->wattr & __COLOR)
237 1.23 jdc __unsetattr(0);
238 1.41 jdc tputs(__tc_cl, 0, __cputchar);
239 1.43 blymn _cursesi_screen->ly = 0;
240 1.43 blymn _cursesi_screen->lx = 0;
241 1.43 blymn if (!_cursesi_screen->curwin) {
242 1.23 jdc curscr->flags &= ~__CLEAROK;
243 1.23 jdc curscr->cury = 0;
244 1.23 jdc curscr->curx = 0;
245 1.23 jdc werase(curscr);
246 1.1 cgd }
247 1.23 jdc __touchwin(win);
248 1.5 cgd win->flags &= ~__CLEAROK;
249 1.1 cgd }
250 1.41 jdc if (!__CA) {
251 1.5 cgd if (win->curx != 0)
252 1.39 itojun __cputchar('\n');
253 1.43 blymn if (!_cursesi_screen->curwin)
254 1.1 cgd werase(curscr);
255 1.1 cgd }
256 1.4 mycroft #ifdef DEBUG
257 1.43 blymn __CTRACE("doupdate: (%0.2o): curwin = %d\n", win,
258 1.43 blymn _cursesi_screen->curwin);
259 1.23 jdc __CTRACE("doupdate: \tfirstch\tlastch\n");
260 1.5 cgd #endif
261 1.5 cgd
262 1.43 blymn if (!_cursesi_screen->curwin) {
263 1.5 cgd /*
264 1.5 cgd * Invoke quickch() only if more than a quarter of the lines
265 1.5 cgd * in the window are dirty.
266 1.5 cgd */
267 1.5 cgd for (wy = 0, dnum = 0; wy < win->maxy; wy++)
268 1.35 mycroft if (win->lines[wy]->flags & __ISDIRTY)
269 1.5 cgd dnum++;
270 1.5 cgd if (!__noqch && dnum > (int) win->maxy / 4)
271 1.23 jdc quickch();
272 1.5 cgd }
273 1.5 cgd
274 1.5 cgd #ifdef DEBUG
275 1.11 mrg {
276 1.11 mrg int i, j;
277 1.11 mrg
278 1.5 cgd __CTRACE("#####################################\n");
279 1.5 cgd for (i = 0; i < curscr->maxy; i++) {
280 1.5 cgd __CTRACE("C: %d:", i);
281 1.5 cgd __CTRACE(" 0x%x \n", curscr->lines[i]->hash);
282 1.7 cgd for (j = 0; j < curscr->maxx; j++)
283 1.11 mrg __CTRACE("%c", curscr->lines[i]->line[j].ch);
284 1.5 cgd __CTRACE("\n");
285 1.14 simonb __CTRACE(" attr:");
286 1.7 cgd for (j = 0; j < curscr->maxx; j++)
287 1.43 blymn __CTRACE(" %x",
288 1.43 blymn curscr->lines[i]->line[j].attr);
289 1.5 cgd __CTRACE("\n");
290 1.5 cgd __CTRACE("W: %d:", i);
291 1.23 jdc __CTRACE(" 0x%x \n", win->lines[i]->hash);
292 1.23 jdc __CTRACE(" 0x%x ", win->lines[i]->flags);
293 1.23 jdc for (j = 0; j < win->maxx; j++)
294 1.23 jdc __CTRACE("%c", win->lines[i]->line[j].ch);
295 1.23 jdc __CTRACE("\n");
296 1.23 jdc __CTRACE(" attr:");
297 1.23 jdc for (j = 0; j < win->maxx; j++)
298 1.23 jdc __CTRACE(" %x",
299 1.23 jdc win->lines[i]->line[j].attr);
300 1.23 jdc __CTRACE("\n");
301 1.5 cgd }
302 1.11 mrg }
303 1.11 mrg #endif /* DEBUG */
304 1.5 cgd
305 1.5 cgd for (wy = 0; wy < win->maxy; wy++) {
306 1.33 mycroft wlp = win->lines[wy];
307 1.23 jdc /* XXX: remove this debug */
308 1.4 mycroft #ifdef DEBUG
309 1.23 jdc __CTRACE("doupdate: wy %d\tf: %d\tl:%d\tflags %x\n", wy,
310 1.33 mycroft *wlp->firstchp, *wlp->lastchp, wlp->flags);
311 1.4 mycroft #endif
312 1.43 blymn if (!_cursesi_screen->curwin)
313 1.33 mycroft curscr->lines[wy]->hash = wlp->hash;
314 1.35 mycroft if (wlp->flags & __ISDIRTY) {
315 1.23 jdc if (makech(wy) == ERR)
316 1.4 mycroft return (ERR);
317 1.1 cgd else {
318 1.33 mycroft if (*wlp->firstchp >= 0)
319 1.33 mycroft *wlp->firstchp = win->maxx;
320 1.33 mycroft if (*wlp->lastchp < win->maxx)
321 1.33 mycroft *wlp->lastchp = 0;
322 1.33 mycroft if (*wlp->lastchp < *wlp->firstchp) {
323 1.5 cgd #ifdef DEBUG
324 1.23 jdc __CTRACE("doupdate: line %d notdirty\n", wy);
325 1.5 cgd #endif
326 1.33 mycroft wlp->flags &= ~__ISDIRTY;
327 1.5 cgd }
328 1.1 cgd }
329 1.5 cgd
330 1.5 cgd }
331 1.4 mycroft #ifdef DEBUG
332 1.33 mycroft __CTRACE("\t%d\t%d\n", *wlp->firstchp, *wlp->lastchp);
333 1.4 mycroft #endif
334 1.1 cgd }
335 1.7 cgd
336 1.5 cgd #ifdef DEBUG
337 1.43 blymn __CTRACE("doupdate: ly=%d, lx=%d\n", _cursesi_screen->ly,
338 1.43 blymn _cursesi_screen->lx);
339 1.5 cgd #endif
340 1.1 cgd
341 1.43 blymn if (_cursesi_screen->curwin)
342 1.43 blymn domvcur(_cursesi_screen->ly, _cursesi_screen->lx,
343 1.43 blymn (int) win->cury, (int) win->curx);
344 1.1 cgd else {
345 1.5 cgd if (win->flags & __LEAVEOK) {
346 1.43 blymn curscr->cury = _cursesi_screen->ly;
347 1.43 blymn curscr->curx = _cursesi_screen->lx;
348 1.4 mycroft } else {
349 1.43 blymn domvcur(_cursesi_screen->ly, _cursesi_screen->lx,
350 1.43 blymn win->cury, win->curx);
351 1.23 jdc curscr->cury = win->cury;
352 1.23 jdc curscr->curx = win->curx;
353 1.1 cgd }
354 1.1 cgd }
355 1.23 jdc
356 1.28 mycroft /* Don't leave the screen with attributes set. */
357 1.28 mycroft __unsetattr(0);
358 1.43 blymn (void) fflush(_cursesi_screen->outfd);
359 1.28 mycroft return (OK);
360 1.1 cgd }
361 1.1 cgd
362 1.1 cgd /*
363 1.4 mycroft * makech --
364 1.4 mycroft * Make a change on the screen.
365 1.1 cgd */
366 1.4 mycroft static int
367 1.23 jdc makech(wy)
368 1.11 mrg int wy;
369 1.1 cgd {
370 1.23 jdc WINDOW *win;
371 1.34 mycroft static __LDATA blank = {' ', 0, ' ', 0};
372 1.7 cgd __LDATA *nsp, *csp, *cp, *cep;
373 1.11 mrg int clsp, nlsp; /* Last space in lines. */
374 1.23 jdc int lch, wx;
375 1.35 mycroft char *ce;
376 1.23 jdc attr_t lspc; /* Last space colour */
377 1.27 mycroft attr_t off, on;
378 1.5 cgd
379 1.8 mikel #ifdef __GNUC__
380 1.23 jdc nlsp = lspc = 0; /* XXX gcc -Wuninitialized */
381 1.8 mikel #endif
382 1.43 blymn if (_cursesi_screen->curwin)
383 1.23 jdc win = curscr;
384 1.23 jdc else
385 1.23 jdc win = __virtscr;
386 1.5 cgd /* Is the cursor still on the end of the last line? */
387 1.40 itojun if (wy > 0 && curscr->lines[wy - 1]->flags & __ISPASTEOL) {
388 1.43 blymn domvcur(_cursesi_screen->ly, _cursesi_screen->lx,
389 1.43 blymn _cursesi_screen->ly + 1, 0);
390 1.43 blymn _cursesi_screen->ly++;
391 1.43 blymn _cursesi_screen->lx = 0;
392 1.5 cgd }
393 1.23 jdc wx = *win->lines[wy]->firstchp;
394 1.5 cgd if (wx < 0)
395 1.5 cgd wx = 0;
396 1.11 mrg else
397 1.11 mrg if (wx >= win->maxx)
398 1.11 mrg return (OK);
399 1.23 jdc lch = *win->lines[wy]->lastchp;
400 1.1 cgd if (lch < 0)
401 1.4 mycroft return (OK);
402 1.11 mrg else
403 1.11 mrg if (lch >= (int) win->maxx)
404 1.11 mrg lch = win->maxx - 1;
405 1.1 cgd
406 1.43 blymn if (_cursesi_screen->curwin)
407 1.5 cgd csp = ␣
408 1.1 cgd else
409 1.23 jdc csp = &curscr->lines[wy]->line[wx];
410 1.1 cgd
411 1.5 cgd nsp = &win->lines[wy]->line[wx];
412 1.43 blymn if (__tc_ce && !_cursesi_screen->curwin) {
413 1.20 jdc cp = &win->lines[wy]->line[win->maxx - 1];
414 1.23 jdc lspc = cp->attr & __COLOR;
415 1.23 jdc while (cp->ch == ' ' && cp->attr == lspc)
416 1.20 jdc if (cp-- <= win->lines[wy]->line)
417 1.1 cgd break;
418 1.5 cgd nlsp = cp - win->lines[wy]->line;
419 1.42 blymn if (nlsp < 0)
420 1.42 blymn nlsp = 0;
421 1.1 cgd }
422 1.43 blymn if (!_cursesi_screen->curwin)
423 1.41 jdc ce = __tc_ce;
424 1.1 cgd else
425 1.4 mycroft ce = NULL;
426 1.1 cgd
427 1.1 cgd while (wx <= lch) {
428 1.35 mycroft if (memcmp(nsp, csp, sizeof(__LDATA)) == 0) {
429 1.4 mycroft if (wx <= lch) {
430 1.5 cgd while (wx <= lch &&
431 1.7 cgd memcmp(nsp, csp, sizeof(__LDATA)) == 0) {
432 1.7 cgd nsp++;
433 1.43 blymn if (!_cursesi_screen->curwin)
434 1.7 cgd ++csp;
435 1.7 cgd ++wx;
436 1.7 cgd }
437 1.4 mycroft continue;
438 1.4 mycroft }
439 1.4 mycroft break;
440 1.4 mycroft }
441 1.43 blymn domvcur(_cursesi_screen->ly, _cursesi_screen->lx, wy, wx);
442 1.5 cgd
443 1.4 mycroft #ifdef DEBUG
444 1.35 mycroft __CTRACE("makech: 1: wx = %d, ly= %d, lx = %d, newy = %d, newx = %d\n",
445 1.43 blymn wx, _cursesi_screen->ly, _cursesi_screen->lx, wy, wx);
446 1.4 mycroft #endif
447 1.43 blymn _cursesi_screen->ly = wy;
448 1.43 blymn _cursesi_screen->lx = wx;
449 1.35 mycroft while (memcmp(nsp, csp, sizeof(__LDATA)) != 0 && wx <= lch) {
450 1.7 cgd if (ce != NULL &&
451 1.23 jdc wx >= nlsp && nsp->ch == ' ' && nsp->attr == lspc) {
452 1.4 mycroft /* Check for clear to end-of-line. */
453 1.5 cgd cep = &curscr->lines[wy]->line[win->maxx - 1];
454 1.23 jdc while (cep->ch == ' ' && cep->attr == lspc)
455 1.5 cgd if (cep-- <= csp)
456 1.4 mycroft break;
457 1.7 cgd clsp = cep - curscr->lines[wy]->line -
458 1.11 mrg win->begx * __LDATASIZE;
459 1.4 mycroft #ifdef DEBUG
460 1.20 jdc __CTRACE("makech: clsp = %d, nlsp = %d\n",
461 1.20 jdc clsp, nlsp);
462 1.4 mycroft #endif
463 1.41 jdc if (((clsp - nlsp >= strlen(__tc_ce) &&
464 1.20 jdc clsp < win->maxx * __LDATASIZE) ||
465 1.20 jdc wy == win->maxy - 1) &&
466 1.23 jdc (!(lspc & __COLOR) ||
467 1.41 jdc ((lspc & __COLOR) && __tc_ut))) {
468 1.23 jdc __unsetattr(0);
469 1.23 jdc if ((lspc & __COLOR) !=
470 1.20 jdc (curscr->wattr & __COLOR)) {
471 1.23 jdc __set_color(lspc);
472 1.20 jdc curscr->wattr &= ~__COLOR;
473 1.23 jdc curscr->wattr |= lspc & __COLOR;
474 1.20 jdc }
475 1.41 jdc tputs(__tc_ce, 0, __cputchar);
476 1.43 blymn _cursesi_screen->lx = wx + win->begx;
477 1.5 cgd while (wx++ <= clsp) {
478 1.5 cgd csp->ch = ' ';
479 1.23 jdc csp->attr = lspc;
480 1.5 cgd csp++;
481 1.5 cgd }
482 1.4 mycroft return (OK);
483 1.1 cgd }
484 1.4 mycroft ce = NULL;
485 1.4 mycroft }
486 1.4 mycroft
487 1.7 cgd /*
488 1.16 jdc * Unset colour if appropriate. Check to see
489 1.16 jdc * if we also turn off standout, underscore and
490 1.16 jdc * attributes.
491 1.16 jdc */
492 1.16 jdc if (!(nsp->attr & __COLOR) &&
493 1.16 jdc (curscr->wattr & __COLOR)) {
494 1.41 jdc if (__tc_oc != NULL && __tc_cc == NULL)
495 1.41 jdc tputs(__tc_oc, 0, __cputchar);
496 1.41 jdc if (__tc_op != NULL) {
497 1.41 jdc tputs(__tc_op, 0, __cputchar);
498 1.41 jdc curscr->wattr &= __mask_op;
499 1.16 jdc }
500 1.27 mycroft }
501 1.27 mycroft
502 1.27 mycroft off = ~nsp->attr & curscr->wattr;
503 1.16 jdc
504 1.16 jdc /*
505 1.11 mrg * Unset attributes as appropriate. Unset first
506 1.11 mrg * so that the relevant attributes can be reset
507 1.16 jdc * (because 'me' unsets 'mb', 'md', 'mh', 'mk',
508 1.16 jdc * 'mp' and 'mr'). Check to see if we also turn off
509 1.27 mycroft * standout, attributes and colour.
510 1.11 mrg */
511 1.41 jdc if (off & __TERMATTR && __tc_me != NULL) {
512 1.41 jdc tputs(__tc_me, 0, __cputchar);
513 1.41 jdc curscr->wattr &= __mask_me;
514 1.41 jdc off &= __mask_me;
515 1.11 mrg }
516 1.11 mrg
517 1.11 mrg /*
518 1.11 mrg * Exit underscore mode if appropriate.
519 1.27 mycroft * Check to see if we also turn off standout,
520 1.27 mycroft * attributes and colour.
521 1.11 mrg */
522 1.41 jdc if (off & __UNDERSCORE && __tc_ue != NULL) {
523 1.41 jdc tputs(__tc_ue, 0, __cputchar);
524 1.41 jdc curscr->wattr &= __mask_ue;
525 1.41 jdc off &= __mask_ue;
526 1.11 mrg }
527 1.11 mrg
528 1.11 mrg /*
529 1.27 mycroft * Exit standout mode as appropriate.
530 1.27 mycroft * Check to see if we also turn off underscore,
531 1.27 mycroft * attributes and colour.
532 1.7 cgd * XXX
533 1.41 jdc * Should use uc if so/se not available.
534 1.7 cgd */
535 1.41 jdc if (off & __STANDOUT && __tc_se != NULL) {
536 1.41 jdc tputs(__tc_se, 0, __cputchar);
537 1.41 jdc curscr->wattr &= __mask_se;
538 1.41 jdc off &= __mask_se;
539 1.27 mycroft }
540 1.27 mycroft
541 1.41 jdc if (off & __ALTCHARSET && __tc_ae != NULL) {
542 1.41 jdc tputs(__tc_ae, 0, __cputchar);
543 1.27 mycroft curscr->wattr &= ~__ALTCHARSET;
544 1.27 mycroft }
545 1.27 mycroft
546 1.27 mycroft on = nsp->attr & ~curscr->wattr;
547 1.27 mycroft
548 1.27 mycroft /*
549 1.27 mycroft * Enter standout mode if appropriate.
550 1.27 mycroft */
551 1.41 jdc if (on & __STANDOUT && __tc_so != NULL && __tc_se
552 1.41 jdc != NULL) {
553 1.41 jdc tputs(__tc_so, 0, __cputchar);
554 1.27 mycroft curscr->wattr |= __STANDOUT;
555 1.11 mrg }
556 1.11 mrg
557 1.11 mrg /*
558 1.11 mrg * Enter underscore mode if appropriate.
559 1.11 mrg * XXX
560 1.41 jdc * Should use uc if us/ue not available.
561 1.11 mrg */
562 1.41 jdc if (on & __UNDERSCORE && __tc_us != NULL &&
563 1.41 jdc __tc_ue != NULL) {
564 1.41 jdc tputs(__tc_us, 0, __cputchar);
565 1.15 blymn curscr->wattr |= __UNDERSCORE;
566 1.11 mrg }
567 1.11 mrg
568 1.11 mrg /*
569 1.11 mrg * Set other attributes as appropriate.
570 1.11 mrg */
571 1.41 jdc if (__tc_me != NULL) {
572 1.41 jdc if (on & __BLINK && __tc_mb != NULL) {
573 1.41 jdc tputs(__tc_mb, 0, __cputchar);
574 1.27 mycroft curscr->wattr |= __BLINK;
575 1.27 mycroft }
576 1.41 jdc if (on & __BOLD && __tc_md != NULL) {
577 1.41 jdc tputs(__tc_md, 0, __cputchar);
578 1.27 mycroft curscr->wattr |= __BOLD;
579 1.27 mycroft }
580 1.41 jdc if (on & __DIM && __tc_mh != NULL) {
581 1.41 jdc tputs(__tc_mh, 0, __cputchar);
582 1.27 mycroft curscr->wattr |= __DIM;
583 1.27 mycroft }
584 1.41 jdc if (on & __BLANK && __tc_mk != NULL) {
585 1.41 jdc tputs(__tc_mk, 0, __cputchar);
586 1.27 mycroft curscr->wattr |= __BLANK;
587 1.27 mycroft }
588 1.41 jdc if (on & __PROTECT && __tc_mp != NULL) {
589 1.41 jdc tputs(__tc_mp, 0, __cputchar);
590 1.27 mycroft curscr->wattr |= __PROTECT;
591 1.27 mycroft }
592 1.41 jdc if (on & __REVERSE && __tc_mr != NULL) {
593 1.41 jdc tputs(__tc_mr, 0, __cputchar);
594 1.27 mycroft curscr->wattr |= __REVERSE;
595 1.27 mycroft }
596 1.15 blymn }
597 1.15 blymn
598 1.16 jdc /* Set/change colour as appropriate. */
599 1.41 jdc if ((nsp->attr & __COLOR) && __tc_Co != NULL &&
600 1.41 jdc (__tc_oc != NULL || __tc_op != NULL)) {
601 1.23 jdc if ((nsp->attr & __COLOR) !=
602 1.23 jdc (curscr->wattr & __COLOR)) {
603 1.23 jdc __set_color(nsp->attr);
604 1.23 jdc curscr->wattr &= ~__COLOR;
605 1.23 jdc curscr->wattr |= nsp->attr &
606 1.23 jdc __COLOR;
607 1.16 jdc }
608 1.16 jdc }
609 1.16 jdc
610 1.15 blymn /* Enter/exit altcharset mode as appropriate. */
611 1.41 jdc if (on & __ALTCHARSET && __tc_as != NULL &&
612 1.41 jdc __tc_ae != NULL) {
613 1.41 jdc tputs(__tc_as, 0, __cputchar);
614 1.27 mycroft curscr->wattr |= __ALTCHARSET;
615 1.11 mrg }
616 1.4 mycroft
617 1.4 mycroft wx++;
618 1.23 jdc if (wx >= win->maxx &&
619 1.43 blymn wy == win->maxy - 1 && !_cursesi_screen->curwin)
620 1.5 cgd if (win->flags & __SCROLLOK) {
621 1.28 mycroft if (win->flags & __ENDLINE)
622 1.23 jdc __unsetattr(1);
623 1.5 cgd if (!(win->flags & __SCROLLWIN)) {
624 1.43 blymn if (!_cursesi_screen->curwin) {
625 1.23 jdc csp->attr = nsp->attr;
626 1.39 itojun __cputchar((int)
627 1.23 jdc (csp->ch =
628 1.23 jdc nsp->ch));
629 1.5 cgd } else
630 1.39 itojun __cputchar((int) nsp->ch);
631 1.5 cgd }
632 1.23 jdc if (wx < curscr->maxx) {
633 1.43 blymn domvcur(_cursesi_screen->ly, wx,
634 1.23 jdc (int) (win->maxy - 1),
635 1.23 jdc (int) (win->maxx - 1));
636 1.5 cgd }
637 1.43 blymn _cursesi_screen->ly = win->maxy - 1;
638 1.43 blymn _cursesi_screen->lx = win->maxx - 1;
639 1.4 mycroft return (OK);
640 1.7 cgd }
641 1.7 cgd if (wx < win->maxx || wy < win->maxy - 1 ||
642 1.5 cgd !(win->flags & __SCROLLWIN)) {
643 1.43 blymn if (!_cursesi_screen->curwin) {
644 1.23 jdc csp->attr = nsp->attr;
645 1.39 itojun __cputchar((int) (csp->ch = nsp->ch));
646 1.5 cgd csp++;
647 1.7 cgd } else
648 1.39 itojun __cputchar((int) nsp->ch);
649 1.5 cgd }
650 1.4 mycroft #ifdef DEBUG
651 1.5 cgd __CTRACE("makech: putchar(%c)\n", nsp->ch & 0177);
652 1.4 mycroft #endif
653 1.41 jdc if (__tc_uc && ((nsp->attr & __STANDOUT) ||
654 1.11 mrg (nsp->attr & __UNDERSCORE))) {
655 1.39 itojun __cputchar('\b');
656 1.41 jdc tputs(__tc_uc, 0, __cputchar);
657 1.1 cgd }
658 1.4 mycroft nsp++;
659 1.4 mycroft #ifdef DEBUG
660 1.43 blymn __CTRACE("makech: 2: wx = %d, lx = %d\n", wx, _cursesi_screen->lx);
661 1.4 mycroft #endif
662 1.5 cgd }
663 1.43 blymn if (_cursesi_screen->lx == wx) /* If no change. */
664 1.4 mycroft break;
665 1.43 blymn _cursesi_screen->lx = wx;
666 1.43 blymn if (_cursesi_screen->lx >= COLS && __tc_am)
667 1.43 blymn _cursesi_screen->lx = COLS - 1;
668 1.11 mrg else
669 1.11 mrg if (wx >= win->maxx) {
670 1.43 blymn domvcur(_cursesi_screen->ly,
671 1.43 blymn _cursesi_screen->lx,
672 1.43 blymn _cursesi_screen->ly,
673 1.43 blymn (int) (win->maxx - 1));
674 1.43 blymn _cursesi_screen->lx = win->maxx - 1;
675 1.11 mrg }
676 1.4 mycroft #ifdef DEBUG
677 1.43 blymn __CTRACE("makech: 3: wx = %d, lx = %d\n", wx,
678 1.43 blymn _cursesi_screen->lx);
679 1.4 mycroft #endif
680 1.1 cgd }
681 1.7 cgd
682 1.4 mycroft return (OK);
683 1.1 cgd }
684 1.1 cgd
685 1.1 cgd /*
686 1.4 mycroft * domvcur --
687 1.19 jdc * Do a mvcur, leaving attributes if necessary.
688 1.1 cgd */
689 1.4 mycroft static void
690 1.1 cgd domvcur(oy, ox, ny, nx)
691 1.11 mrg int oy, ox, ny, nx;
692 1.4 mycroft {
693 1.23 jdc __unsetattr(1);
694 1.5 cgd __mvcur(oy, ox, ny, nx, 1);
695 1.5 cgd }
696 1.5 cgd
697 1.5 cgd /*
698 1.5 cgd * Quickch() attempts to detect a pattern in the change of the window
699 1.7 cgd * in order to optimize the change, e.g., scroll n lines as opposed to
700 1.5 cgd * repainting the screen line by line.
701 1.5 cgd */
702 1.5 cgd
703 1.5 cgd static void
704 1.23 jdc quickch(void)
705 1.5 cgd {
706 1.23 jdc #define THRESH (int) __virtscr->maxy / 4
707 1.5 cgd
708 1.10 perry __LINE *clp, *tmp1, *tmp2;
709 1.11 mrg int bsize, curs, curw, starts, startw, i, j;
710 1.11 mrg int n, target, cur_period, bot, top, sc_region;
711 1.5 cgd __LDATA buf[1024];
712 1.11 mrg u_int blank_hash;
713 1.22 jdc attr_t bcolor;
714 1.5 cgd
715 1.8 mikel #ifdef __GNUC__
716 1.11 mrg curs = curw = starts = startw = 0; /* XXX gcc -Wuninitialized */
717 1.8 mikel #endif
718 1.7 cgd /*
719 1.5 cgd * Find how many lines from the top of the screen are unchanged.
720 1.5 cgd */
721 1.23 jdc for (top = 0; top < __virtscr->maxy; top++)
722 1.35 mycroft if (__virtscr->lines[top]->flags & __ISDIRTY &&
723 1.35 mycroft (__virtscr->lines[top]->hash != curscr->lines[top]->hash ||
724 1.35 mycroft memcmp(__virtscr->lines[top]->line,
725 1.32 mycroft curscr->lines[top]->line,
726 1.35 mycroft (size_t) __virtscr->maxx * __LDATASIZE) != 0))
727 1.5 cgd break;
728 1.5 cgd else
729 1.23 jdc __virtscr->lines[top]->flags &= ~__ISDIRTY;
730 1.11 mrg /*
731 1.11 mrg * Find how many lines from bottom of screen are unchanged.
732 1.11 mrg */
733 1.23 jdc for (bot = __virtscr->maxy - 1; bot >= 0; bot--)
734 1.35 mycroft if (__virtscr->lines[bot]->flags & __ISDIRTY &&
735 1.35 mycroft (__virtscr->lines[bot]->hash != curscr->lines[bot]->hash ||
736 1.35 mycroft memcmp(__virtscr->lines[bot]->line,
737 1.32 mycroft curscr->lines[bot]->line,
738 1.35 mycroft (size_t) __virtscr->maxx * __LDATASIZE) != 0))
739 1.5 cgd break;
740 1.5 cgd else
741 1.23 jdc __virtscr->lines[bot]->flags &= ~__ISDIRTY;
742 1.23 jdc
743 1.23 jdc /*
744 1.23 jdc * Work round an xterm bug where inserting lines causes all the
745 1.23 jdc * inserted lines to be covered with the background colour we
746 1.23 jdc * set on the first line (even if we unset it for subsequent
747 1.23 jdc * lines).
748 1.23 jdc */
749 1.23 jdc bcolor = __virtscr->lines[min(top,
750 1.23 jdc __virtscr->maxy - 1)]->line[0].attr & __COLOR;
751 1.23 jdc for (i = top + 1, j = 0; i < bot; i++) {
752 1.23 jdc if ((__virtscr->lines[i]->line[0].attr & __COLOR) != bcolor) {
753 1.23 jdc bcolor = __virtscr->lines[i]->line[__virtscr->maxx].
754 1.23 jdc attr & __COLOR;
755 1.23 jdc j = i - top;
756 1.23 jdc } else
757 1.23 jdc break;
758 1.23 jdc }
759 1.23 jdc top += j;
760 1.5 cgd
761 1.5 cgd #ifdef NO_JERKINESS
762 1.5 cgd /*
763 1.5 cgd * If we have a bottom unchanged region return. Scrolling the
764 1.5 cgd * bottom region up and then back down causes a screen jitter.
765 1.5 cgd * This will increase the number of characters sent to the screen
766 1.5 cgd * but it looks better.
767 1.5 cgd */
768 1.23 jdc if (bot < __virtscr->maxy - 1)
769 1.5 cgd return;
770 1.11 mrg #endif /* NO_JERKINESS */
771 1.5 cgd
772 1.5 cgd /*
773 1.5 cgd * Search for the largest block of text not changed.
774 1.5 cgd * Invariants of the loop:
775 1.23 jdc * - Startw is the index of the beginning of the examined block in
776 1.23 jdc * __virtscr.
777 1.11 mrg * - Starts is the index of the beginning of the examined block in
778 1.23 jdc * curscr.
779 1.7 cgd * - Curw is the index of one past the end of the exmined block in
780 1.23 jdc * __virtscr.
781 1.23 jdc * - Curs is the index of one past the end of the exmined block in
782 1.5 cgd * curscr.
783 1.5 cgd * - bsize is the current size of the examined block.
784 1.11 mrg */
785 1.23 jdc
786 1.5 cgd for (bsize = bot - top; bsize >= THRESH; bsize--) {
787 1.5 cgd for (startw = top; startw <= bot - bsize; startw++)
788 1.7 cgd for (starts = top; starts <= bot - bsize;
789 1.11 mrg starts++) {
790 1.5 cgd for (curw = startw, curs = starts;
791 1.11 mrg curs < starts + bsize; curw++, curs++)
792 1.35 mycroft if (__virtscr->lines[curw]->hash !=
793 1.35 mycroft curscr->lines[curs]->hash)
794 1.32 mycroft break;
795 1.32 mycroft if (curs != starts + bsize)
796 1.32 mycroft continue;
797 1.32 mycroft for (curw = startw, curs = starts;
798 1.32 mycroft curs < starts + bsize; curw++, curs++)
799 1.32 mycroft if (memcmp(__virtscr->lines[curw]->line,
800 1.32 mycroft curscr->lines[curs]->line,
801 1.32 mycroft (size_t) __virtscr->maxx *
802 1.32 mycroft __LDATASIZE) != 0)
803 1.5 cgd break;
804 1.5 cgd if (curs == starts + bsize)
805 1.5 cgd goto done;
806 1.5 cgd }
807 1.5 cgd }
808 1.11 mrg done:
809 1.22 jdc
810 1.5 cgd /* Did not find anything */
811 1.7 cgd if (bsize < THRESH)
812 1.5 cgd return;
813 1.5 cgd
814 1.5 cgd #ifdef DEBUG
815 1.7 cgd __CTRACE("quickch:bsize=%d,starts=%d,startw=%d,curw=%d,curs=%d,top=%d,bot=%d\n",
816 1.11 mrg bsize, starts, startw, curw, curs, top, bot);
817 1.5 cgd #endif
818 1.5 cgd
819 1.7 cgd /*
820 1.7 cgd * Make sure that there is no overlap between the bottom and top
821 1.5 cgd * regions and the middle scrolled block.
822 1.5 cgd */
823 1.5 cgd if (bot < curs)
824 1.5 cgd bot = curs - 1;
825 1.5 cgd if (top > starts)
826 1.5 cgd top = starts;
827 1.5 cgd
828 1.5 cgd n = startw - starts;
829 1.5 cgd
830 1.5 cgd #ifdef DEBUG
831 1.11 mrg __CTRACE("#####################################\n");
832 1.11 mrg for (i = 0; i < curscr->maxy; i++) {
833 1.11 mrg __CTRACE("C: %d:", i);
834 1.11 mrg __CTRACE(" 0x%x \n", curscr->lines[i]->hash);
835 1.11 mrg for (j = 0; j < curscr->maxx; j++)
836 1.11 mrg __CTRACE("%c", curscr->lines[i]->line[j].ch);
837 1.11 mrg __CTRACE("\n");
838 1.14 simonb __CTRACE(" attr:");
839 1.11 mrg for (j = 0; j < curscr->maxx; j++)
840 1.14 simonb __CTRACE(" %x", curscr->lines[i]->line[j].attr);
841 1.11 mrg __CTRACE("\n");
842 1.11 mrg __CTRACE("W: %d:", i);
843 1.23 jdc __CTRACE(" 0x%x \n", __virtscr->lines[i]->hash);
844 1.23 jdc __CTRACE(" 0x%x ", __virtscr->lines[i]->flags);
845 1.23 jdc for (j = 0; j < __virtscr->maxx; j++)
846 1.23 jdc __CTRACE("%c", __virtscr->lines[i]->line[j].ch);
847 1.11 mrg __CTRACE("\n");
848 1.14 simonb __CTRACE(" attr:");
849 1.23 jdc for (j = 0; j < __virtscr->maxx; j++)
850 1.23 jdc __CTRACE(" %x", __virtscr->lines[i]->line[j].attr);
851 1.11 mrg __CTRACE("\n");
852 1.11 mrg }
853 1.7 cgd #endif
854 1.7 cgd
855 1.5 cgd /* So we don't have to call __hash() each time */
856 1.23 jdc for (i = 0; i < __virtscr->maxx; i++) {
857 1.5 cgd buf[i].ch = ' ';
858 1.20 jdc buf[i].bch = ' ';
859 1.5 cgd buf[i].attr = 0;
860 1.20 jdc buf[i].battr = 0;
861 1.5 cgd }
862 1.12 christos blank_hash = __hash((char *)(void *)buf,
863 1.23 jdc (int) (__virtscr->maxx * __LDATASIZE));
864 1.5 cgd
865 1.5 cgd /*
866 1.5 cgd * Perform the rotation to maintain the consistency of curscr.
867 1.5 cgd * This is hairy since we are doing an *in place* rotation.
868 1.5 cgd * Invariants of the loop:
869 1.5 cgd * - I is the index of the current line.
870 1.5 cgd * - Target is the index of the target of line i.
871 1.5 cgd * - Tmp1 points to current line (i).
872 1.5 cgd * - Tmp2 and points to target line (target);
873 1.7 cgd * - Cur_period is the index of the end of the current period.
874 1.5 cgd * (see below).
875 1.5 cgd *
876 1.5 cgd * There are 2 major issues here that make this rotation non-trivial:
877 1.5 cgd * 1. Scrolling in a scrolling region bounded by the top
878 1.5 cgd * and bottom regions determined (whose size is sc_region).
879 1.7 cgd * 2. As a result of the use of the mod function, there may be a
880 1.5 cgd * period introduced, i.e., 2 maps to 4, 4 to 6, n-2 to 0, and
881 1.5 cgd * 0 to 2, which then causes all odd lines not to be rotated.
882 1.7 cgd * To remedy this, an index of the end ( = beginning) of the
883 1.7 cgd * current 'period' is kept, cur_period, and when it is reached,
884 1.7 cgd * the next period is started from cur_period + 1 which is
885 1.5 cgd * guaranteed not to have been reached since that would mean that
886 1.5 cgd * all records would have been reached. (think about it...).
887 1.7 cgd *
888 1.5 cgd * Lines in the rotation can have 3 attributes which are marked on the
889 1.5 cgd * line so that curscr is consistent with the visual screen.
890 1.5 cgd * 1. Not dirty -- lines inside the scrolled block, top region or
891 1.5 cgd * bottom region.
892 1.7 cgd * 2. Blank lines -- lines in the differential of the scrolling
893 1.7 cgd * region adjacent to top and bot regions
894 1.5 cgd * depending on scrolling direction.
895 1.5 cgd * 3. Dirty line -- all other lines are marked dirty.
896 1.5 cgd */
897 1.5 cgd sc_region = bot - top + 1;
898 1.5 cgd i = top;
899 1.5 cgd tmp1 = curscr->lines[top];
900 1.5 cgd cur_period = top;
901 1.5 cgd for (j = top; j <= bot; j++) {
902 1.5 cgd target = (i - top + n + sc_region) % sc_region + top;
903 1.5 cgd tmp2 = curscr->lines[target];
904 1.5 cgd curscr->lines[target] = tmp1;
905 1.5 cgd /* Mark block as clean and blank out scrolled lines. */
906 1.5 cgd clp = curscr->lines[target];
907 1.5 cgd #ifdef DEBUG
908 1.5 cgd __CTRACE("quickch: n=%d startw=%d curw=%d i = %d target=%d ",
909 1.11 mrg n, startw, curw, i, target);
910 1.5 cgd #endif
911 1.7 cgd if ((target >= startw && target < curw) || target < top
912 1.5 cgd || target > bot) {
913 1.5 cgd #ifdef DEBUG
914 1.22 jdc __CTRACE("-- notdirty\n");
915 1.5 cgd #endif
916 1.23 jdc __virtscr->lines[target]->flags &= ~__ISDIRTY;
917 1.11 mrg } else
918 1.11 mrg if ((n > 0 && target >= top && target < top + n) ||
919 1.11 mrg (n < 0 && target <= bot && target > bot + n)) {
920 1.11 mrg if (clp->hash != blank_hash || memcmp(clp->line,
921 1.23 jdc buf, (size_t) __virtscr->maxx * __LDATASIZE) !=0) {
922 1.11 mrg (void)memcpy(clp->line, buf,
923 1.23 jdc (size_t) __virtscr->maxx * __LDATASIZE);
924 1.11 mrg #ifdef DEBUG
925 1.22 jdc __CTRACE("-- blanked out: dirty\n");
926 1.11 mrg #endif
927 1.11 mrg clp->hash = blank_hash;
928 1.35 mycroft __touchline(__virtscr, target, 0, (int) __virtscr->maxx - 1);
929 1.11 mrg } else {
930 1.5 cgd #ifdef DEBUG
931 1.22 jdc __CTRACE(" -- blank line already: dirty\n");
932 1.5 cgd #endif
933 1.35 mycroft __touchline(__virtscr, target, 0, (int) __virtscr->maxx - 1);
934 1.11 mrg }
935 1.5 cgd } else {
936 1.5 cgd #ifdef DEBUG
937 1.22 jdc __CTRACE(" -- dirty\n");
938 1.5 cgd #endif
939 1.35 mycroft __touchline(__virtscr, target, 0, (int) __virtscr->maxx - 1);
940 1.5 cgd }
941 1.5 cgd if (target == cur_period) {
942 1.5 cgd i = target + 1;
943 1.5 cgd tmp1 = curscr->lines[i];
944 1.5 cgd cur_period = i;
945 1.5 cgd } else {
946 1.5 cgd tmp1 = tmp2;
947 1.5 cgd i = target;
948 1.5 cgd }
949 1.5 cgd }
950 1.5 cgd #ifdef DEBUG
951 1.11 mrg __CTRACE("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n");
952 1.11 mrg for (i = 0; i < curscr->maxy; i++) {
953 1.11 mrg __CTRACE("C: %d:", i);
954 1.11 mrg for (j = 0; j < curscr->maxx; j++)
955 1.11 mrg __CTRACE("%c", curscr->lines[i]->line[j].ch);
956 1.11 mrg __CTRACE("\n");
957 1.11 mrg __CTRACE("W: %d:", i);
958 1.23 jdc for (j = 0; j < __virtscr->maxx; j++)
959 1.23 jdc __CTRACE("%c", __virtscr->lines[i]->line[j].ch);
960 1.11 mrg __CTRACE("\n");
961 1.11 mrg }
962 1.5 cgd #endif
963 1.23 jdc if (n != 0)
964 1.23 jdc scrolln(starts, startw, curs, bot, top);
965 1.5 cgd }
966 1.5 cgd
967 1.5 cgd /*
968 1.7 cgd * scrolln --
969 1.7 cgd * Scroll n lines, where n is starts - startw.
970 1.5 cgd */
971 1.11 mrg static void /* ARGSUSED */
972 1.23 jdc scrolln(starts, startw, curs, bot, top)
973 1.11 mrg int starts, startw, curs, bot, top;
974 1.5 cgd {
975 1.11 mrg int i, oy, ox, n;
976 1.5 cgd
977 1.5 cgd oy = curscr->cury;
978 1.5 cgd ox = curscr->curx;
979 1.5 cgd n = starts - startw;
980 1.5 cgd
981 1.7 cgd /*
982 1.7 cgd * XXX
983 1.7 cgd * The initial tests that set __noqch don't let us reach here unless
984 1.41 jdc * we have either cs + ho + SF/sf/SR/sr, or AL + DL. SF/sf and SR/sr
985 1.7 cgd * scrolling can only shift the entire scrolling region, not just a
986 1.7 cgd * part of it, which means that the quickch() routine is going to be
987 1.41 jdc * sadly disappointed in us if we don't have cs as well.
988 1.7 cgd *
989 1.41 jdc * If cs, ho and SF/sf are set, can use the scrolling region. Because
990 1.41 jdc * the cursor position after cs is undefined, we need ho which gives us
991 1.7 cgd * the ability to move to somewhere without knowledge of the current
992 1.7 cgd * location of the cursor. Still call __mvcur() anyway, to update its
993 1.7 cgd * idea of where the cursor is.
994 1.7 cgd *
995 1.7 cgd * When the scrolling region has been set, the cursor has to be at the
996 1.7 cgd * last line of the region to make the scroll happen.
997 1.7 cgd *
998 1.7 cgd * Doing SF/SR or AL/DL appears faster on the screen than either sf/sr
999 1.41 jdc * or AL/DL, and, some terminals have AL/DL, sf/sr, and cs, but not
1000 1.7 cgd * SF/SR. So, if we're scrolling almost all of the screen, try and use
1001 1.7 cgd * AL/DL, otherwise use the scrolling region. The "almost all" is a
1002 1.7 cgd * shameless hack for vi.
1003 1.7 cgd */
1004 1.5 cgd if (n > 0) {
1005 1.41 jdc if (__tc_cs != NULL && __tc_ho != NULL && (__tc_SF != NULL ||
1006 1.41 jdc ((__tc_AL == NULL || __tc_DL == NULL ||
1007 1.41 jdc top > 3 || bot + 3 < __virtscr->maxy) &&
1008 1.41 jdc __tc_sf != NULL))) {
1009 1.41 jdc tputs(__tscroll(__tc_cs, top, bot + 1), 0, __cputchar);
1010 1.7 cgd __mvcur(oy, ox, 0, 0, 1);
1011 1.41 jdc tputs(__tc_ho, 0, __cputchar);
1012 1.7 cgd __mvcur(0, 0, bot, 0, 1);
1013 1.41 jdc if (__tc_SF != NULL)
1014 1.41 jdc tputs(__tscroll(__tc_SF, n, 0), 0, __cputchar);
1015 1.7 cgd else
1016 1.7 cgd for (i = 0; i < n; i++)
1017 1.41 jdc tputs(__tc_sf, 0, __cputchar);
1018 1.41 jdc tputs(__tscroll(__tc_cs, 0, (int) __virtscr->maxy), 0,
1019 1.41 jdc __cputchar);
1020 1.7 cgd __mvcur(bot, 0, 0, 0, 1);
1021 1.41 jdc tputs(__tc_ho, 0, __cputchar);
1022 1.7 cgd __mvcur(0, 0, oy, ox, 1);
1023 1.7 cgd return;
1024 1.7 cgd }
1025 1.7 cgd
1026 1.7 cgd /* Scroll up the block. */
1027 1.41 jdc if (__tc_SF != NULL && top == 0) {
1028 1.7 cgd __mvcur(oy, ox, bot, 0, 1);
1029 1.41 jdc tputs(__tscroll(__tc_SF, n, 0), 0, __cputchar);
1030 1.7 cgd } else
1031 1.41 jdc if (__tc_DL != NULL) {
1032 1.11 mrg __mvcur(oy, ox, top, 0, 1);
1033 1.41 jdc tputs(__tscroll(__tc_DL, n, 0), 0, __cputchar);
1034 1.11 mrg } else
1035 1.41 jdc if (__tc_dl != NULL) {
1036 1.11 mrg __mvcur(oy, ox, top, 0, 1);
1037 1.11 mrg for (i = 0; i < n; i++)
1038 1.41 jdc tputs(__tc_dl, 0, __cputchar);
1039 1.11 mrg } else
1040 1.41 jdc if (__tc_sf != NULL && top == 0) {
1041 1.11 mrg __mvcur(oy, ox, bot, 0, 1);
1042 1.11 mrg for (i = 0; i < n; i++)
1043 1.41 jdc tputs(__tc_sf, 0,
1044 1.41 jdc __cputchar);
1045 1.11 mrg } else
1046 1.11 mrg abort();
1047 1.5 cgd
1048 1.7 cgd /* Push down the bottom region. */
1049 1.5 cgd __mvcur(top, 0, bot - n + 1, 0, 1);
1050 1.41 jdc if (__tc_AL != NULL)
1051 1.41 jdc tputs(__tscroll(__tc_AL, n, 0), 0, __cputchar);
1052 1.5 cgd else
1053 1.41 jdc if (__tc_al != NULL)
1054 1.11 mrg for (i = 0; i < n; i++)
1055 1.41 jdc tputs(__tc_al, 0, __cputchar);
1056 1.11 mrg else
1057 1.11 mrg abort();
1058 1.5 cgd __mvcur(bot - n + 1, 0, oy, ox, 1);
1059 1.5 cgd } else {
1060 1.7 cgd /*
1061 1.7 cgd * !!!
1062 1.7 cgd * n < 0
1063 1.7 cgd *
1064 1.41 jdc * If cs, ho and SR/sr are set, can use the scrolling region.
1065 1.7 cgd * See the above comments for details.
1066 1.7 cgd */
1067 1.41 jdc if (__tc_cs != NULL && __tc_ho != NULL && (__tc_SR != NULL ||
1068 1.41 jdc ((__tc_AL == NULL || __tc_DL == NULL || top > 3 ||
1069 1.41 jdc bot + 3 < __virtscr->maxy) && __tc_sr != NULL))) {
1070 1.41 jdc tputs(__tscroll(__tc_cs, top, bot + 1), 0, __cputchar);
1071 1.7 cgd __mvcur(oy, ox, 0, 0, 1);
1072 1.41 jdc tputs(__tc_ho, 0, __cputchar);
1073 1.7 cgd __mvcur(0, 0, top, 0, 1);
1074 1.7 cgd
1075 1.41 jdc if (__tc_SR != NULL)
1076 1.41 jdc tputs(__tscroll(__tc_SR, -n, 0), 0, __cputchar);
1077 1.7 cgd else
1078 1.7 cgd for (i = n; i < 0; i++)
1079 1.41 jdc tputs(__tc_sr, 0, __cputchar);
1080 1.41 jdc tputs(__tscroll(__tc_cs, 0, (int) __virtscr->maxy), 0,
1081 1.41 jdc __cputchar);
1082 1.7 cgd __mvcur(top, 0, 0, 0, 1);
1083 1.41 jdc tputs(__tc_ho, 0, __cputchar);
1084 1.7 cgd __mvcur(0, 0, oy, ox, 1);
1085 1.7 cgd return;
1086 1.7 cgd }
1087 1.7 cgd
1088 1.7 cgd /* Preserve the bottom lines. */
1089 1.7 cgd __mvcur(oy, ox, bot + n + 1, 0, 1);
1090 1.41 jdc if (__tc_SR != NULL && bot == __virtscr->maxy)
1091 1.41 jdc tputs(__tscroll(__tc_SR, -n, 0), 0, __cputchar);
1092 1.5 cgd else
1093 1.41 jdc if (__tc_DL != NULL)
1094 1.41 jdc tputs(__tscroll(__tc_DL, -n, 0), 0, __cputchar);
1095 1.11 mrg else
1096 1.41 jdc if (__tc_dl != NULL)
1097 1.11 mrg for (i = n; i < 0; i++)
1098 1.41 jdc tputs(__tc_dl, 0, __cputchar);
1099 1.11 mrg else
1100 1.41 jdc if (__tc_sr != NULL &&
1101 1.41 jdc bot == __virtscr->maxy)
1102 1.11 mrg for (i = n; i < 0; i++)
1103 1.41 jdc tputs(__tc_sr, 0,
1104 1.41 jdc __cputchar);
1105 1.11 mrg else
1106 1.11 mrg abort();
1107 1.7 cgd
1108 1.7 cgd /* Scroll the block down. */
1109 1.5 cgd __mvcur(bot + n + 1, 0, top, 0, 1);
1110 1.41 jdc if (__tc_AL != NULL)
1111 1.41 jdc tputs(__tscroll(__tc_AL, -n, 0), 0, __cputchar);
1112 1.5 cgd else
1113 1.41 jdc if (__tc_al != NULL)
1114 1.11 mrg for (i = n; i < 0; i++)
1115 1.41 jdc tputs(__tc_al, 0, __cputchar);
1116 1.11 mrg else
1117 1.11 mrg abort();
1118 1.5 cgd __mvcur(top, 0, oy, ox, 1);
1119 1.19 jdc }
1120 1.19 jdc }
1121 1.19 jdc
1122 1.19 jdc /*
1123 1.23 jdc * __unsetattr --
1124 1.19 jdc * Unset attributes on curscr. Leave standout, attribute and colour
1125 1.41 jdc * modes if necessary (!ms). Always leave altcharset (xterm at least
1126 1.19 jdc * ignores a cursor move if we don't).
1127 1.19 jdc */
1128 1.23 jdc void /* ARGSUSED */
1129 1.23 jdc __unsetattr(int checkms)
1130 1.19 jdc {
1131 1.19 jdc int isms;
1132 1.19 jdc
1133 1.19 jdc if (checkms)
1134 1.41 jdc if (!__tc_ms) {
1135 1.19 jdc isms = 1;
1136 1.19 jdc } else {
1137 1.19 jdc isms = 0;
1138 1.19 jdc }
1139 1.19 jdc else
1140 1.19 jdc isms = 1;
1141 1.20 jdc #ifdef DEBUG
1142 1.41 jdc __CTRACE("__unsetattr: checkms = %d, ms = %s, wattr = %08x\n",
1143 1.41 jdc checkms, __tc_ms ? "TRUE" : "FALSE", curscr->wattr);
1144 1.20 jdc #endif
1145 1.19 jdc
1146 1.20 jdc /*
1147 1.41 jdc * Don't leave the screen in standout mode (check against ms). Check
1148 1.27 mycroft * to see if we also turn off underscore, attributes and colour.
1149 1.20 jdc */
1150 1.19 jdc if (curscr->wattr & __STANDOUT && isms) {
1151 1.41 jdc tputs(__tc_se, 0, __cputchar);
1152 1.41 jdc curscr->wattr &= __mask_se;
1153 1.19 jdc }
1154 1.20 jdc /*
1155 1.41 jdc * Don't leave the screen in underscore mode (check against ms).
1156 1.26 jdc * Check to see if we also turn off attributes. Assume that we
1157 1.26 jdc * also turn off colour.
1158 1.20 jdc */
1159 1.19 jdc if (curscr->wattr & __UNDERSCORE && isms) {
1160 1.41 jdc tputs(__tc_ue, 0, __cputchar);
1161 1.41 jdc curscr->wattr &= __mask_ue;
1162 1.19 jdc }
1163 1.20 jdc /*
1164 1.41 jdc * Don't leave the screen with attributes set (check against ms).
1165 1.26 jdc * Assume that also turn off colour.
1166 1.20 jdc */
1167 1.20 jdc if (curscr->wattr & __TERMATTR && isms) {
1168 1.41 jdc tputs(__tc_me, 0, __cputchar);
1169 1.41 jdc curscr->wattr &= __mask_me;
1170 1.19 jdc }
1171 1.41 jdc /* Don't leave the screen with altcharset set (don't check ms). */
1172 1.19 jdc if (curscr->wattr & __ALTCHARSET) {
1173 1.41 jdc tputs(__tc_ae, 0, __cputchar);
1174 1.19 jdc curscr->wattr &= ~__ALTCHARSET;
1175 1.19 jdc }
1176 1.41 jdc /* Don't leave the screen with colour set (check against ms). */
1177 1.19 jdc if (curscr->wattr & __COLOR && isms) {
1178 1.41 jdc if (__tc_oc != NULL && __tc_cc == NULL)
1179 1.41 jdc tputs(__tc_oc, 0, __cputchar);
1180 1.41 jdc if (__tc_op != NULL) {
1181 1.41 jdc tputs(__tc_op, 0, __cputchar);
1182 1.41 jdc curscr->wattr &= __mask_op;
1183 1.27 mycroft }
1184 1.7 cgd }
1185 1.1 cgd }
1186