2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Steve Hayman of the Indiana University Computer Science Dept.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
33 * @(#)bcd.c 8.2 (Berkeley) 3/20/94
34 * $NetBSD: bcd.c,v 1.6 1995/04/24 12:22:23 cgd Exp $
35 * $OpenBSD: bcd.c,v 1.25 2016/03/07 12:07:55 mestre Exp $
41 * Read one line of standard input and produce something that looks like a
42 * punch card. An attempt to reimplement /usr/games/bcd. All I looked at
45 * I couldn't find a BCD table handy so I wrote a shell script to deduce what
46 * the patterns were that the old bcd was using for each possible 8-bit
47 * character. These are the results -- the low order 12 bits represent the
48 * holes. (A 1 bit is a hole.) These may be wrong, but they match the old
52 * sahayman@iuvax.cs.indiana.edu
56 * I found an error in the table. The same error is found in the SunOS 4.1.1
57 * version of bcd. It has apparently been around a long time. The error caused
58 * 'Q' and 'R' to have the same punch code. I only noticed the error due to
59 * someone pointing it out to me when the program was used to print a cover
60 * for an APA! The table was wrong in 4 places. The other error was masked
61 * by the fact that the input is converted to upper case before lookup.
64 * db@diana.ocunix.on.ca
74 static const u_short holes
[256] = {
75 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
76 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
77 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
78 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
79 0x0, 0x206, 0x20a, 0x042, 0x442, 0x222, 0x800, 0x406,
80 0x812, 0x412, 0x422, 0xa00, 0x242, 0x400, 0x842, 0x300,
81 0x200, 0x100, 0x080, 0x040, 0x020, 0x010, 0x008, 0x004,
82 0x002, 0x001, 0x012, 0x40a, 0x80a, 0x212, 0x00a, 0x006,
83 0x022, 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804,
84 0x802, 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408,
85 0x404, 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208,
86 0x204, 0x202, 0x201, 0x082, 0x822, 0x600, 0x282, 0x30f,
87 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804, 0x802,
88 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408, 0x404,
89 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208, 0x204,
90 0x202, 0x201, 0x082, 0x806, 0x822, 0x600, 0x282, 0x0,
91 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
92 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
93 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
94 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
95 0x206, 0x20a, 0x042, 0x442, 0x222, 0x800, 0x406, 0x812,
96 0x412, 0x422, 0xa00, 0x242, 0x400, 0x842, 0x300, 0x200,
97 0x100, 0x080, 0x040, 0x020, 0x010, 0x008, 0x004, 0x002,
98 0x001, 0x012, 0x40a, 0x80a, 0x212, 0x00a, 0x006, 0x022,
99 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804, 0x802,
100 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408, 0x404,
101 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208, 0x204,
102 0x202, 0x201, 0x082, 0x806, 0x822, 0x600, 0x282, 0x30f,
103 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804, 0x802,
104 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408, 0x404,
105 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208, 0x204,
106 0x202, 0x201, 0x082, 0x806, 0x822, 0x600, 0x282, 0x0
112 #define bit(w,i) ((w)&(1<<(i)))
114 static void printonecard(char *, size_t);
115 static void printcard(char *);
116 static int decode(char *buf
);
118 static unsigned int columns
= 48;
121 main(int argc
, char *argv
[])
127 /* revoke setgid privileges */
130 while ((ch
= getopt(argc
, argv
, "dl")) != -1) {
139 fprintf(stderr
, "usage: %s [-l] [string ...]\n",
141 fprintf(stderr
, "usage: %s -d [-l]\n", getprogname());
149 while (decode(cardline
) == 0) {
150 printf("%s\n", cardline
);
157 * The original bcd prompts with a "%" when reading from stdin,
158 * but this seems kind of silly. So this one doesn't.
166 while (fgets(cardline
, sizeof(cardline
), stdin
))
175 size_t len
= strlen(str
);
178 size_t amt
= len
> columns
? columns
: len
;
179 printonecard(str
, amt
);
186 printonecard(char *str
, size_t len
)
188 static const char rowchars
[] = " 123456789";
195 /* make string upper case. */
196 for (p
= str
; p
< end
; ++p
) {
197 if (isascii(*p
) && islower(*p
))
203 for (i
= 1; i
<= columns
; ++i
)
208 * line of text. Leave a blank if the character doesn't have
213 for (i
= 1; p
< end
; i
++, p
++)
218 while (i
++ <= columns
)
224 * 12 rows of potential holes; output a ']', which looks kind of
225 * like a hole, if the appropriate bit is set in the holes[] table.
226 * The original bcd output a '[', a backspace, five control A's,
227 * and then a ']'. This seems a little excessive.
229 for (row
= 0; row
<= 11; ++row
) {
231 for (i
= 0, p
= str
; p
< end
; i
++, p
++) {
232 if (bit(holes
[(int)*p
], 11 - row
))
235 putchar(rowchars
[row
]);
237 while (i
++ < columns
)
238 putchar(rowchars
[row
]);
245 for (i
= 1; i
<= columns
; i
++)
258 char lines
[LINES
][1024];
261 /* top of card; if missing signal no more input */
262 if (fgets(tmp
, sizeof(tmp
), stdin
) == NULL
)
264 /* text line, ignored */
265 if (fgets(tmp
, sizeof(tmp
), stdin
) == NULL
)
267 /* twelve lines of data */
268 for (i
= 0; i
< LINES
; i
++)
269 if (fgets(lines
[i
], sizeof(lines
[i
]), stdin
) == NULL
)
272 if (fgets(tmp
, sizeof(tmp
), stdin
) == NULL
)
275 for (i
= 0; i
< LINES
; i
++) {
276 if (strlen(lines
[i
]) < columns
+ 2)
278 if (lines
[i
][0] != '|' || lines
[i
][columns
+ 1] != '|')
280 memmove(&lines
[i
][0], &lines
[i
][1], columns
);
281 lines
[i
][columns
] = 0;
283 for (col
= 0; col
< (int)columns
; col
++) {
284 unsigned int val
= 0;
285 for (i
= 0; i
< LINES
; i
++)
286 if (lines
[i
][col
] == ']')
287 val
|= 1 << (11 - i
);
289 for (i
= 0; i
< 256; i
++)
290 if (holes
[i
] == val
&& holes
[i
]) {
296 for (col
= columns
- 1; col
>= 0; col
--) {