]>
git.saurik.com Git - apple/shell_cmds.git/blob - window/tth19.c
fa16b68ca781e88c7efb5b5f3cf2676189b57e84
1 /* $NetBSD: tth19.c,v 1.4 1997/11/21 08:36:30 lukem Exp $ */
4 * Copyright (c) 1983, 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
[] = "@(#)tth19.c 8.1 (Berkeley) 6/6/93";
44 __RCSID("$NetBSD: tth19.c,v 1.4 1997/11/21 08:36:30 lukem Exp $");
53 kb|h19|heath|h19-b|h19b|heathkit|heath-19|z19|zenith:
54 cr=^M:nl=^J:bl=^G:al=1*\EL:am:le=^H:bs:cd=\EJ:ce=\EK:
55 cl=\EE:cm=\EY%+ %+ :co#80:dc=\EN:dl=1*\EM:do=\EB:
56 ei=\EO:ho=\EH:im=\E@:li#24:mi:nd=\EC:as=\EF:ae=\EG:ms:
57 ta=^I:pt:sr=\EI:se=\Eq:so=\Ep:up=\EA:vs=\Ex4:ve=\Ey4:
58 kb=^h:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\EH:
59 kn#8:k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:
60 l6=blue:l7=red:l8=white:k6=\EP:k7=\EQ:k8=\ER:
61 es:hs:ts=\Ej\Ex5\Ex1\EY8%+ \Eo:fs=\Ek\Ey5:ds=\Ey1:
67 #define G (WWM_GRP << WWC_MSHIFT)
68 short h19_frame
[16] = {
69 ' ', '`'|G
, 'a'|G
, 'e'|G
,
70 '`'|G
, '`'|G
, 'f'|G
, 'v'|G
,
71 'a'|G
, 'd'|G
, 'a'|G
, 'u'|G
,
72 'c'|G
, 't'|G
, 's'|G
, 'b'|G
75 extern struct tt_str
*gen_VS
;
76 extern struct tt_str
*gen_VE
;
82 for (i = ((ms10) + 5) / h19_msp10c; --i >= 0;) \
85 #define ICPAD() PAD((NCOL - tt.tt_col) * 1) /* 0.1 ms per char */
86 #define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */
88 #define H19_SETINSERT(m) ttesc((tt.tt_insert = (m)) ? '@' : 'O')
90 void h19_clear
__P((void));
91 void h19_clreol
__P((void));
92 void h19_clreos
__P((void));
93 void h19_delchar
__P((int));
94 void h19_delline
__P((int));
95 void h19_end
__P((void));
96 void h19_inschar
__P((char));
97 void h19_insline
__P((int));
98 void h19_move
__P((int, int));
99 void h19_putc
__P((char));
100 void h19_scroll_up
__P((int));
101 void h19_scroll_down
__P((int));
102 void h19_setmodes
__P((int));
103 void h19_start
__P((void));
104 void h19_write
__P((char *, int));
112 diff
= new ^ tt
.tt_modes
;
114 ttesc(new & WWM_REV
? 'p' : 'q');
116 ttesc(new & WWM_REV
? 'F' : 'G');
144 if (tt
.tt_nmodes
!= tt
.tt_modes
)
145 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
149 if (++tt
.tt_col
== NCOL
)
150 tt
.tt_col
= NCOL
- 1;
158 if (tt
.tt_nmodes
!= tt
.tt_modes
)
159 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
164 if (tt
.tt_col
== NCOL
)
165 tt
.tt_col
= NCOL
- 1;
172 if (tt
.tt_row
== row
) {
173 if (tt
.tt_col
== col
)
179 if (tt
.tt_col
== col
- 1) {
183 if (tt
.tt_col
== col
+ 1) {
188 if (tt
.tt_col
== col
) {
189 if (tt
.tt_row
== row
+ 1) {
193 if (tt
.tt_row
== row
- 1) {
198 if (col
== 0 && row
== 0) {
217 tt
.tt_col
= tt
.tt_row
= 0;
219 tt
.tt_nmodes
= tt
.tt_modes
= 0;
254 if (tt
.tt_nmodes
!= tt
.tt_modes
)
255 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
261 if (++tt
.tt_col
== NCOL
)
262 tt
.tt_col
= NCOL
- 1;
277 h19_move(NROW
- 1, 0);
294 float cpms
= (float) wwbaud
/ 10000; /* char per ms */
296 h19_msp10c
= 10 / cpms
; /* ms per 10 char */
297 gen_VS
= ttxgetstr("vs");
298 gen_VE
= ttxgetstr("ve");
300 tt
.tt_start
= h19_start
;
303 tt
.tt_insline
= h19_insline
;
304 tt
.tt_delline
= h19_delline
;
305 tt
.tt_inschar
= h19_inschar
;
306 tt
.tt_delchar
= h19_delchar
;
307 tt
.tt_clreol
= h19_clreol
;
308 tt
.tt_clreos
= h19_clreos
;
309 tt
.tt_clear
= h19_clear
;
310 tt
.tt_move
= h19_move
;
311 tt
.tt_write
= h19_write
;
312 tt
.tt_putc
= h19_putc
;
313 tt
.tt_scroll_down
= h19_scroll_down
;
314 tt
.tt_scroll_up
= h19_scroll_up
;
315 tt
.tt_setmodes
= h19_setmodes
;
319 tt
.tt_availmodes
= WWM_REV
|WWM_GRP
;
320 tt
.tt_frame
= h19_frame
;