Subversion Repositories planix.SVN

Rev

Rev 40 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
36 7u83 1
/*
2
 * Copyright (c) 1980 The Regents of the University of California.
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 * 1. Redistributions of source code must retain the above copyright
9
 *    notice, this list of conditions and the following disclaimer.
10
 * 2. Redistributions in binary form must reproduce the above copyright
11
 *    notice, this list of conditions and the following disclaimer in the
12
 *    documentation and/or other materials provided with the distribution.
13
 * 3. All advertising materials mentioning features or use of this software
14
 *    must display the following acknowledgement:
15
 *	This product includes software developed by the University of
16
 *	California, Berkeley and its contributors.
17
 * 4. Neither the name of the University nor the names of its contributors
18
 *    may be used to endorse or promote products derived from this software
19
 *    without specific prior written permission.
20
 *
21
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31
 * SUCH DAMAGE.
32
 */
33
 
34
#include <ctype.h>
35
 
36
/*
37
 * The following array gives the number of tens of milliseconds per
38
 * character for each speed as returned by gtty.  Thus since 300
39
 * baud returns a 7, there are 33.3 milliseconds per char at 300 baud.
40
 */
41
static
42
short	tmspc10[] = {
43
	0, 2000, 1333, 909, 743, 666, 500, 333, 166, 83, 55, 41, 20, 10, 5
44
};
45
 
46
short	ospeed;
47
char	PC;
48
 
49
/*
50
 * Put the character string cp out, with padding.
51
 * The number of affected lines is affcnt, and the routine
52
 * used to output one character is outc.
53
 */
54
tputs(cp, affcnt, outc)
55
	register char *cp;
56
	int affcnt;
57
	int (*outc)();
58
{
59
	register int i = 0;
60
	register int mspc10;
61
 
62
	if (cp == 0)
40 7u83 63
		return 0;
36 7u83 64
 
65
	/*
66
	 * Convert the number representing the delay.
67
	 */
68
	if (isdigit(*cp)) {
69
		do
70
			i = i * 10 + *cp++ - '0';
71
		while (isdigit(*cp));
72
	}
73
	i *= 10;
74
	if (*cp == '.') {
75
		cp++;
76
		if (isdigit(*cp))
77
			i += *cp - '0';
78
		/*
79
		 * Only one digit to the right of the decimal point.
80
		 */
81
		while (isdigit(*cp))
82
			cp++;
83
	}
84
 
85
	/*
86
	 * If the delay is followed by a `*', then
87
	 * multiply by the affected lines count.
88
	 */
89
	if (*cp == '*')
90
		cp++, i *= affcnt;
91
 
92
	/*
93
	 * The guts of the string.
94
	 */
95
	while (*cp)
96
		(*outc)(*cp++);
97
 
98
	/*
99
	 * If no delay needed, or output speed is
100
	 * not comprehensible, then don't try to delay.
101
	 */
102
	if (i == 0)
40 7u83 103
		return 0;
36 7u83 104
	if (ospeed <= 0 || ospeed >= (sizeof tmspc10 / sizeof tmspc10[0]))
40 7u83 105
		return 0;
36 7u83 106
 
107
	/*
108
	 * Round up by a half a character frame,
109
	 * and then do the delay.
110
	 * Too bad there are no user program accessible programmed delays.
111
	 * Transmitting pad characters slows many
112
	 * terminals down and also loads the system.
113
	 */
114
	mspc10 = tmspc10[ospeed];
115
	i += mspc10 / 2;
116
	for (i /= mspc10; i > 0; i--)
117
		(*outc)(PC);
40 7u83 118
 
119
	return 0;
36 7u83 120
}