1 /* $NetBSD: tth19.c,v 1.6 2003/08/07 11:17:31 agc 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. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/cdefs.h>
38 static char sccsid
[] = "@(#)tth19.c 8.1 (Berkeley) 6/6/93";
40 __RCSID("$NetBSD: tth19.c,v 1.6 2003/08/07 11:17:31 agc Exp $");
49 kb|h19|heath|h19-b|h19b|heathkit|heath-19|z19|zenith:
50 cr=^M:nl=^J:bl=^G:al=1*\EL:am:le=^H:bs:cd=\EJ:ce=\EK:
51 cl=\EE:cm=\EY%+ %+ :co#80:dc=\EN:dl=1*\EM:do=\EB:
52 ei=\EO:ho=\EH:im=\E@:li#24:mi:nd=\EC:as=\EF:ae=\EG:ms:
53 ta=^I:pt:sr=\EI:se=\Eq:so=\Ep:up=\EA:vs=\Ex4:ve=\Ey4:
54 kb=^h:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\EH:
55 kn#8:k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:
56 l6=blue:l7=red:l8=white:k6=\EP:k7=\EQ:k8=\ER:
57 es:hs:ts=\Ej\Ex5\Ex1\EY8%+ \Eo:fs=\Ek\Ey5:ds=\Ey1:
63 #define G (WWM_GRP << WWC_MSHIFT)
64 short h19_frame
[16] = {
65 ' ', '`'|G
, 'a'|G
, 'e'|G
,
66 '`'|G
, '`'|G
, 'f'|G
, 'v'|G
,
67 'a'|G
, 'd'|G
, 'a'|G
, 'u'|G
,
68 'c'|G
, 't'|G
, 's'|G
, 'b'|G
71 extern struct tt_str
*gen_VS
;
72 extern struct tt_str
*gen_VE
;
78 for (i = ((ms10) + 5) / h19_msp10c; --i >= 0;) \
81 #define ICPAD() PAD((NCOL - tt.tt_col) * 1) /* 0.1 ms per char */
82 #define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */
84 #define H19_SETINSERT(m) ttesc((tt.tt_insert = (m)) ? '@' : 'O')
87 void h19_clreol(void);
88 void h19_clreos(void);
89 void h19_delchar(int);
90 void h19_delline(int);
92 void h19_inschar(char);
93 void h19_insline(int);
94 void h19_move(int, int);
96 void h19_scroll_up(int);
97 void h19_scroll_down(int);
98 void h19_setmodes(int);
100 void h19_write(const char *, int);
103 h19_setmodes(int new)
107 diff
= new ^ tt
.tt_modes
;
109 ttesc(new & WWM_REV
? 'p' : 'q');
111 ttesc(new & WWM_REV
? 'F' : 'G');
136 if (tt
.tt_nmodes
!= tt
.tt_modes
)
137 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
141 if (++tt
.tt_col
== NCOL
)
142 tt
.tt_col
= NCOL
- 1;
146 h19_write(const char *p
, int n
)
148 if (tt
.tt_nmodes
!= tt
.tt_modes
)
149 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
154 if (tt
.tt_col
== NCOL
)
155 tt
.tt_col
= NCOL
- 1;
159 h19_move(int row
, int col
)
161 if (tt
.tt_row
== row
) {
162 if (tt
.tt_col
== col
)
168 if (tt
.tt_col
== col
- 1) {
172 if (tt
.tt_col
== col
+ 1) {
177 if (tt
.tt_col
== col
) {
178 if (tt
.tt_row
== row
+ 1) {
182 if (tt
.tt_row
== row
- 1) {
187 if (col
== 0 && row
== 0) {
206 tt
.tt_col
= tt
.tt_row
= 0;
208 tt
.tt_nmodes
= tt
.tt_modes
= 0;
242 if (tt
.tt_nmodes
!= tt
.tt_modes
)
243 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
249 if (++tt
.tt_col
== NCOL
)
250 tt
.tt_col
= NCOL
- 1;
261 h19_scroll_down(int n
)
263 h19_move(NROW
- 1, 0);
279 float cpms
= (float) wwbaud
/ 10000; /* char per ms */
281 h19_msp10c
= 10 / cpms
; /* ms per 10 char */
282 gen_VS
= ttxgetstr("vs");
283 gen_VE
= ttxgetstr("ve");
285 tt
.tt_start
= h19_start
;
288 tt
.tt_insline
= h19_insline
;
289 tt
.tt_delline
= h19_delline
;
290 tt
.tt_inschar
= h19_inschar
;
291 tt
.tt_delchar
= h19_delchar
;
292 tt
.tt_clreol
= h19_clreol
;
293 tt
.tt_clreos
= h19_clreos
;
294 tt
.tt_clear
= h19_clear
;
295 tt
.tt_move
= h19_move
;
296 tt
.tt_write
= h19_write
;
297 tt
.tt_putc
= h19_putc
;
298 tt
.tt_scroll_down
= h19_scroll_down
;
299 tt
.tt_scroll_up
= h19_scroll_up
;
300 tt
.tt_setmodes
= h19_setmodes
;
304 tt
.tt_availmodes
= WWM_REV
|WWM_GRP
;
305 tt
.tt_frame
= h19_frame
;