]>
git.saurik.com Git - apple/shell_cmds.git/blob - window/xx.c
1 /* $NetBSD: xx.c,v 1.4 1997/11/21 08:38:02 lukem Exp $ */
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Edward Wang at The University of California, Berkeley.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #include <sys/cdefs.h>
42 static char sccsid
[] = "@(#)xx.c 8.1 (Berkeley) 6/6/93";
44 __RCSID("$NetBSD: xx.c,v 1.4 1997/11/21 08:38:02 lukem Exp $");
61 xxbufsize
= tt
.tt_nrow
* tt
.tt_ncol
* 2;
62 /* ccinit may choose to change xxbufsize */
63 if (tt
.tt_ntoken
> 0 && ccinit() < 0)
65 xxbuf
= malloc((unsigned) xxbufsize
* sizeof *xxbuf
);
71 xxbufe
= xxbuf
+ xxbufsize
;
81 xxreset1(); /* might be a restart */
98 for (xp
= xx_head
; xp
!= 0; xp
= xq
) {
102 xx_tail
= xx_head
= 0;
109 if (tt
.tt_scroll_top
!= 0 || tt
.tt_scroll_bot
!= tt
.tt_nrow
- 1)
110 /* tt.tt_setscroll is known to be defined */
111 (*tt
.tt_setscroll
)(0, tt
.tt_nrow
- 1);
113 (*tt
.tt_setmodes
)(0);
114 if (tt
.tt_scroll_down
)
115 (*tt
.tt_scroll_down
)(1);
116 (*tt
.tt_move
)(tt
.tt_nrow
- 1, 0);
117 if (tt
.tt_ntoken
> 0)
130 if ((xp
= xx_freelist
) == 0)
131 /* XXX can't deal with failure */
132 xp
= (struct xx
*) malloc((unsigned) sizeof *xp
);
134 xx_freelist
= xp
->link
;
148 xp
->link
= xx_freelist
;
156 struct xx
*xp
= xx_tail
;
158 if (xp
== 0 || xp
->cmd
!= xc_move
) {
167 xxscroll(dir
, top
, bot
)
170 struct xx
*xp
= xx_tail
;
172 if (xp
!= 0 && xp
->cmd
== xc_scroll
&&
173 xp
->arg1
== top
&& xp
->arg2
== bot
&&
174 ((xp
->arg0
< 0 && dir
< 0) || (xp
->arg0
> 0 && dir
> 0))) {
186 xxinschar(row
, col
, c
, m
)
192 xp
->cmd
= xc_inschar
;
203 struct xx
*xp
= xx_tail
;
205 if (xp
!= 0 && xp
->cmd
== xc_insspace
&& xp
->arg0
== row
&&
206 col
>= xp
->arg1
&& col
<= xp
->arg1
+ xp
->arg2
) {
211 xp
->cmd
= xc_insspace
;
221 struct xx
*xp
= xx_tail
;
223 if (xp
!= 0 && xp
->cmd
== xc_delchar
&&
224 xp
->arg0
== row
&& xp
->arg1
== col
) {
229 xp
->cmd
= xc_delchar
;
249 struct xx
*xp
= xxalloc();
260 struct xx
*xp
= xxalloc();
268 xxwrite(row
, col
, p
, n
, m
)
275 if (xxbufp
+ n
+ 1 > xxbufe
)
284 memmove(xxbufp
, p
, n
);
286 *xxbufp
++ = char_sep
;