#include <err.h>
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
u_short holes[256] = {
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x206, 0x20a, 0x042, 0x442, 0x222, 0x800, 0x406,
0x812, 0x412, 0x422, 0xa00, 0x242, 0x400, 0x842, 0x300,
0x200, 0x100, 0x080, 0x040, 0x020, 0x010, 0x008, 0x004,
0x002, 0x001, 0x012, 0x40a, 0x80a, 0x212, 0x00a, 0x006,
0x022, 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804,
0x802, 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408,
0x404, 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208,
0x204, 0x202, 0x201, 0x082, 0x806, 0x822, 0x600, 0x282,
0x022, 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804,
0x802, 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408,
0x404, 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208,
0x204, 0x202, 0x201, 0x082, 0x806, 0x822, 0x600, 0x282,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x206, 0x20a, 0x042, 0x442, 0x222, 0x800, 0x406,
0x812, 0x412, 0x422, 0xa00, 0x242, 0x400, 0x842, 0x300,
0x200, 0x100, 0x080, 0x040, 0x020, 0x010, 0x008, 0x004,
0x002, 0x001, 0x012, 0x40a, 0x80a, 0x212, 0x00a, 0x006,
0x022, 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804,
0x802, 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408,
0x404, 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208,
0x204, 0x202, 0x201, 0x082, 0x806, 0x822, 0x600, 0x282,
0x022, 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804,
0x802, 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408,
0x404, 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208,
0x204, 0x202, 0x201, 0x082, 0x806, 0x822, 0x600, 0x282,
};
#define bit(w,i) ((w)&(1<<(i)))
void printonecard(char *, size_t);
void printcard(char *);
int decode(char *buf);
int columns = 48;
int
main(int argc, char *argv[])
{
char cardline[1024];
extern char *__progname;
int dflag = 0;
int ch;
if (pledge("stdio", NULL) == -1)
err(1, "pledge");
while ((ch = getopt(argc, argv, "dl")) != -1) {
switch (ch) {
case 'd':
dflag = 1;
break;
case 'l':
columns = 80;
break;
default:
fprintf(stderr, "usage: %s [-l] [string ...]\n",
__progname);
fprintf(stderr, "usage: %s -d [-l]\n", __progname);
return 1;
}
}
argc -= optind;
argv += optind;
if (dflag) {
while (decode(cardline) == 0) {
printf("%s\n", cardline);
}
return 0;
}
if (argc > 0) {
while (argc--) {
printcard(*argv);
argv++;
}
} else {
while (fgets(cardline, sizeof(cardline), stdin))
printcard(cardline);
}
return 0;
}
void
printcard(char *str)
{
size_t len = strlen(str);
while (len > 0) {
size_t amt = len > columns ? columns : len;
printonecard(str, amt);
str += amt;
len -= amt;
}
}
void
printonecard(char *str, size_t len)
{
static const char rowchars[] = " 123456789";
int i, row;
char *p, *end;
end = str + len;
for (p = str; p < end; ++p)
*p = toupper((unsigned char)*p);
putchar(' ');
for (i = 1; i <= columns; ++i)
putchar('_');
putchar('\n');
p = str;
putchar('/');
for (i = 1; p < end; i++, p++)
if (holes[(unsigned char)*p])
putchar(*p);
else
putchar(' ');
while (i++ <= columns)
putchar(' ');
putchar('|');
putchar('\n');
for (row = 0; row <= 11; ++row) {
putchar('|');
for (i = 0, p = str; p < end; i++, p++) {
if (bit(holes[(unsigned char)*p], 11 - row))
putchar(']');
else
putchar(rowchars[row]);
}
while (i++ < columns)
putchar(rowchars[row]);
putchar('|');
putchar('\n');
}
putchar('|');
for (i = 1; i <= columns; i++)
putchar('_');
putchar('|');
putchar('\n');
}
#define LINES 12
int
decode(char *buf)
{
int col, i;
char lines[LINES][1024];
char tmp[1024];
if (fgets(tmp, sizeof(tmp), stdin) == NULL)
return 1;
if (fgets(tmp, sizeof(tmp), stdin) == NULL)
return -1;
for (i = 0; i < LINES; i++)
if (fgets(lines[i], sizeof(lines[i]), stdin) == NULL)
return -1;
if (fgets(tmp, sizeof(tmp), stdin) == NULL)
return -1;
for (i = 0; i < LINES; i++) {
if (strlen(lines[i]) < columns + 2)
return -1;
if (lines[i][0] != '|' || lines[i][columns + 1] != '|')
return -1;
memmove(&lines[i][0], &lines[i][1], columns);
lines[i][columns] = 0;
}
for (col = 0; col < columns; col++) {
unsigned int val = 0;
for (i = 0; i < LINES; i++)
if (lines[i][col] == ']')
val |= 1 << (11 - i);
buf[col] = ' ';
for (i = 0; i < 256; i++)
if (holes[i] == val && holes[i]) {
buf[col] = i;
break;
}
}
buf[col] = 0;
for (col = columns - 1; col >= 0; col--) {
if (buf[col] == ' ')
buf[col] = '\0';
else
break;
}
return 0;
}