]>
Commit | Line | Data |
---|---|---|
44bd5ea7 A |
1 | /* $NetBSD: ttinit.c,v 1.4 1997/11/21 08:36:32 lukem Exp $ */ |
2 | ||
3 | /* | |
4 | * Copyright (c) 1983, 1993 | |
5 | * The Regents of the University of California. All rights reserved. | |
6 | * | |
7 | * This code is derived from software contributed to Berkeley by | |
8 | * Edward Wang at The University of California, Berkeley. | |
9 | * | |
10 | * Redistribution and use in source and binary forms, with or without | |
11 | * modification, are permitted provided that the following conditions | |
12 | * are met: | |
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. | |
25 | * | |
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 | |
36 | * SUCH DAMAGE. | |
37 | */ | |
38 | ||
39 | #include <sys/cdefs.h> | |
40 | #ifndef lint | |
41 | #if 0 | |
42 | static char sccsid[] = "@(#)ttinit.c 8.1 (Berkeley) 6/6/93"; | |
43 | #else | |
44 | __RCSID("$NetBSD: ttinit.c,v 1.4 1997/11/21 08:36:32 lukem Exp $"); | |
45 | #endif | |
46 | #endif /* not lint */ | |
47 | ||
48 | #include <stdlib.h> | |
49 | #include <string.h> | |
50 | #include "ww.h" | |
51 | #include "tt.h" | |
52 | ||
53 | struct tt_tab tt_tab[] = { | |
54 | { "h19", 3, tt_h19 }, | |
55 | { "h29", 3, tt_h29 }, | |
56 | { "f100", 4, tt_f100 }, | |
57 | { "tvi925", 6, tt_tvi925 }, | |
58 | { "wyse75", 6, tt_wyse75 }, | |
59 | { "wyse60", 6, tt_wyse60 }, | |
60 | { "w60", 3, tt_wyse60 }, | |
61 | { "zapple", 6, tt_zapple }, | |
62 | { "zentec", 6, tt_zentec }, | |
63 | { "generic", 0, tt_generic }, | |
64 | { 0, 0, 0 } | |
65 | }; | |
66 | ||
67 | int | |
68 | ttinit() | |
69 | { | |
70 | int i; | |
71 | struct tt_tab *tp; | |
72 | char *p, *q; | |
73 | char *t; | |
74 | ||
75 | tt_strp = tt_strings; | |
76 | ||
77 | /* | |
78 | * Set output buffer size to about 1 second of output time. | |
79 | */ | |
80 | i = MIN(wwbaud/10, 512); | |
81 | if ((tt_ob = malloc((unsigned) i)) == 0) { | |
82 | wwerrno = WWE_NOMEM; | |
83 | return -1; | |
84 | } | |
85 | tt_obp = tt_ob; | |
86 | tt_obe = tt_ob + i; | |
87 | ||
88 | /* | |
89 | * Use the standard name of the terminal (i.e. the second | |
90 | * name in termcap). | |
91 | */ | |
92 | for (p = wwtermcap; *p && *p != '|' && *p != ':'; p++) | |
93 | ; | |
94 | if (*p == '|') | |
95 | p++; | |
96 | for (q = p; *q && *q != '|' && *q != ':'; q++) | |
97 | ; | |
98 | if (q != p && (t = malloc((unsigned) (q - p + 1))) != 0) { | |
99 | wwterm = t; | |
100 | while (p < q) | |
101 | *t++ = *p++; | |
102 | *t = 0; | |
103 | } | |
104 | for (tp = tt_tab; tp->tt_name != 0; tp++) | |
105 | if (strncmp(tp->tt_name, wwterm, tp->tt_len) == 0) | |
106 | break; | |
107 | if (tp->tt_name == 0) { | |
108 | wwerrno = WWE_BADTERM; | |
109 | return -1; | |
110 | } | |
111 | if ((*tp->tt_func)() < 0) { | |
112 | wwerrno = WWE_CANTDO; | |
113 | return -1; | |
114 | } | |
115 | if (wwgetttysize(0, &tt.tt_nrow, &tt.tt_ncol) < 0) | |
116 | return -1; | |
117 | tt.tt_scroll_top = 0; | |
118 | tt.tt_scroll_bot = tt.tt_nrow - 1; | |
119 | return 0; | |
120 | } |