1 /* @(#)xxflush.c 8.1 (Berkeley) 6/6/93 */
2 /* $NetBSD: xxflush.c,v 1.6 2003/08/07 11:17:47 agc Exp $ */
5 * Copyright (c) 1989, 1993
6 * The Regents of the University of California. All rights reserved.
8 * This code is derived from software contributed to Berkeley by
9 * Edward Wang at The University of California, Berkeley.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
45 for (xp
= xx_head
; xp
!= NULL
&& !(intr
&& wwinterrupt()); xp
= xq
) {
49 (*tt
.tt_move
)(xp
->arg0
, xp
->arg1
);
55 (*tt
.tt_move
)(xp
->arg0
, xp
->arg1
);
56 tt
.tt_nmodes
= xp
->arg3
;
57 (*tt
.tt_inschar
)(xp
->arg2
);
60 (*tt
.tt_move
)(xp
->arg0
, xp
->arg1
);
61 (*tt
.tt_insspace
)(xp
->arg2
);
64 (*tt
.tt_move
)(xp
->arg0
, xp
->arg1
);
65 (*tt
.tt_delchar
)(xp
->arg2
);
71 (*tt
.tt_move
)(xp
->arg0
, xp
->arg1
);
75 (*tt
.tt_move
)(xp
->arg0
, xp
->arg1
);
79 (*tt
.tt_move
)(xp
->arg0
, xp
->arg1
);
80 tt
.tt_nmodes
= xp
->arg3
;
81 (*tt
.tt_write
)(xp
->buf
, xp
->arg2
);
87 if ((xx_head
= xp
) == NULL
) {
95 xxflush_scroll(struct xx
*xp
)
103 * We handle retain (da and db) by putting the burden on scrolling up,
104 * which is the less common operation. It must ensure that
105 * text is not pushed below the screen, so scrolling down doesn't
106 * have to worry about it.
108 * Try scrolling region (or scrolling the whole screen) first.
109 * Can we assume "sr" doesn't push text below the screen
110 * so we don't have to worry about retain below?
111 * What about scrolling down with a newline? It probably does
112 * push text above (with da). Scrolling up would then have
113 * to take care of that.
114 * It's easy to be fool proof, but that slows things down.
115 * The current solution is to disallow tt_scroll_up if da or db is true
116 * but cs (scrolling region) is not. Again, we sacrifice scrolling
117 * up in favor of scrolling down. The idea is having scrolling regions
118 * probably means we can scroll (even the whole screen) with impunity.
119 * This lets us work efficiently on simple terminals (use newline
120 * on the bottom to scroll), on any terminal without retain, and
121 * on vt100 style scrolling regions (I think).
124 if ((xq
= xp
->link
) != NULL
&& xq
->cmd
== xc_scroll
&&
125 xp
->arg2
== xq
->arg2
&& xq
->arg0
< 0) {
126 if (xp
->arg1
< xq
->arg1
) {
127 if (xp
->arg2
- xp
->arg0
<= xq
->arg1
) {
133 xp
->arg2
= xq
->arg1
+ xp
->arg0
;
134 xq
->arg0
+= xp
->arg0
;
137 xq
->arg1
-= xq
->arg0
;
140 if (xp
->arg1
- xq
->arg0
>= xp
->arg2
)
142 xq
->arg2
= xp
->arg1
- xq
->arg0
;
143 xp
->arg0
+= xq
->arg0
;
146 xp
->arg1
+= xp
->arg0
;
150 if (xp
->arg0
> xp
->arg2
- xp
->arg1
)
151 xp
->arg0
= xp
->arg2
- xp
->arg1
;
152 if (tt
.tt_scroll_down
) {
153 if (tt
.tt_scroll_top
!= xp
->arg1
||
154 tt
.tt_scroll_bot
!= xp
->arg2
- 1) {
155 if (tt
.tt_setscroll
== 0)
157 (*tt
.tt_setscroll
)(xp
->arg1
, xp
->arg2
- 1);
159 tt
.tt_scroll_down(xp
->arg0
);
162 (*tt
.tt_move
)(xp
->arg1
, 0);
163 (*tt
.tt_delline
)(xp
->arg0
);
164 if (xp
->arg2
< tt
.tt_nrow
) {
165 (*tt
.tt_move
)(xp
->arg2
- xp
->arg0
, 0);
166 (*tt
.tt_insline
)(xp
->arg0
);
170 xp
->arg0
= - xp
->arg0
;
171 if (xp
->arg0
> xp
->arg2
- xp
->arg1
)
172 xp
->arg0
= xp
->arg2
- xp
->arg1
;
173 if (tt
.tt_scroll_up
) {
174 if (tt
.tt_scroll_top
!= xp
->arg1
||
175 tt
.tt_scroll_bot
!= xp
->arg2
- 1) {
176 if (tt
.tt_setscroll
== 0)
178 (*tt
.tt_setscroll
)(xp
->arg1
, xp
->arg2
- 1);
180 tt
.tt_scroll_up(xp
->arg0
);
183 if (tt
.tt_retain
|| xp
->arg2
!= tt
.tt_nrow
) {
184 (*tt
.tt_move
)(xp
->arg2
- xp
->arg0
, 0);
185 (*tt
.tt_delline
)(xp
->arg0
);
187 (*tt
.tt_move
)(xp
->arg1
, 0);
188 (*tt
.tt_insline
)(xp
->arg0
);