1 /* @(#)tth19.c 8.1 (Berkeley) 6/6/93 */
2 /* $NetBSD: tth19.c,v 1.7 2009/04/14 08:50:06 lukem Exp $ */
5 * Copyright (c) 1983, 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
41 kb|h19|heath|h19-b|h19b|heathkit|heath-19|z19|zenith:
42 cr=^M:nl=^J:bl=^G:al=1*\EL:am:le=^H:bs:cd=\EJ:ce=\EK:
43 cl=\EE:cm=\EY%+ %+ :co#80:dc=\EN:dl=1*\EM:do=\EB:
44 ei=\EO:ho=\EH:im=\E@:li#24:mi:nd=\EC:as=\EF:ae=\EG:ms:
45 ta=^I:pt:sr=\EI:se=\Eq:so=\Ep:up=\EA:vs=\Ex4:ve=\Ey4:
46 kb=^h:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\EH:
47 kn#8:k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:
48 l6=blue:l7=red:l8=white:k6=\EP:k7=\EQ:k8=\ER:
49 es:hs:ts=\Ej\Ex5\Ex1\EY8%+ \Eo:fs=\Ek\Ey5:ds=\Ey1:
55 #define G (WWM_GRP << WWC_MSHIFT)
56 short h19_frame
[16] = {
57 ' ', '`'|G
, 'a'|G
, 'e'|G
,
58 '`'|G
, '`'|G
, 'f'|G
, 'v'|G
,
59 'a'|G
, 'd'|G
, 'a'|G
, 'u'|G
,
60 'c'|G
, 't'|G
, 's'|G
, 'b'|G
63 extern struct tt_str
*gen_VS
;
64 extern struct tt_str
*gen_VE
;
70 for (i = ((ms10) + 5) / h19_msp10c; --i >= 0;) \
73 #define ICPAD() PAD((NCOL - tt.tt_col) * 1) /* 0.1 ms per char */
74 #define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */
76 #define H19_SETINSERT(m) ttesc((tt.tt_insert = (m)) ? '@' : 'O')
79 void h19_clreol(void);
80 void h19_clreos(void);
81 void h19_delchar(int);
82 void h19_delline(int);
84 void h19_inschar(char);
85 void h19_insline(int);
86 void h19_move(int, int);
88 void h19_scroll_up(int);
89 void h19_scroll_down(int);
90 void h19_setmodes(int);
92 void h19_write(const char *, int);
99 diff
= new ^ tt
.tt_modes
;
101 ttesc(new & WWM_REV
? 'p' : 'q');
103 ttesc(new & WWM_REV
? 'F' : 'G');
128 if (tt
.tt_nmodes
!= tt
.tt_modes
)
129 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
133 if (++tt
.tt_col
== NCOL
)
134 tt
.tt_col
= NCOL
- 1;
138 h19_write(const char *p
, int n
)
140 if (tt
.tt_nmodes
!= tt
.tt_modes
)
141 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
146 if (tt
.tt_col
== NCOL
)
147 tt
.tt_col
= NCOL
- 1;
151 h19_move(int row
, int col
)
153 if (tt
.tt_row
== row
) {
154 if (tt
.tt_col
== col
)
160 if (tt
.tt_col
== col
- 1) {
164 if (tt
.tt_col
== col
+ 1) {
169 if (tt
.tt_col
== col
) {
170 if (tt
.tt_row
== row
+ 1) {
174 if (tt
.tt_row
== row
- 1) {
179 if (col
== 0 && row
== 0) {
198 tt
.tt_col
= tt
.tt_row
= 0;
200 tt
.tt_nmodes
= tt
.tt_modes
= 0;
234 if (tt
.tt_nmodes
!= tt
.tt_modes
)
235 (*tt
.tt_setmodes
)(tt
.tt_nmodes
);
241 if (++tt
.tt_col
== NCOL
)
242 tt
.tt_col
= NCOL
- 1;
253 h19_scroll_down(int n
)
255 h19_move(NROW
- 1, 0);
271 float cpms
= (float) wwbaud
/ 10000; /* char per ms */
273 h19_msp10c
= 10 / cpms
; /* ms per 10 char */
274 gen_VS
= ttxgetstr("vs");
275 gen_VE
= ttxgetstr("ve");
277 tt
.tt_start
= h19_start
;
280 tt
.tt_insline
= h19_insline
;
281 tt
.tt_delline
= h19_delline
;
282 tt
.tt_inschar
= h19_inschar
;
283 tt
.tt_delchar
= h19_delchar
;
284 tt
.tt_clreol
= h19_clreol
;
285 tt
.tt_clreos
= h19_clreos
;
286 tt
.tt_clear
= h19_clear
;
287 tt
.tt_move
= h19_move
;
288 tt
.tt_write
= h19_write
;
289 tt
.tt_putc
= h19_putc
;
290 tt
.tt_scroll_down
= h19_scroll_down
;
291 tt
.tt_scroll_up
= h19_scroll_up
;
292 tt
.tt_setmodes
= h19_setmodes
;
296 tt
.tt_availmodes
= WWM_REV
|WWM_GRP
;
297 tt
.tt_frame
= h19_frame
;