c2d/text2page.c
2017-04-16 13:16:36 -06:00

52 lines
1.2 KiB
C

#include <stdio.h>
unsigned char holes[] = {
0x37, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,
0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
0xff, 0xff, 0x00, 0x17, 0xff, 0xff, 0x00, 0x00,
0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,
0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,
0xff, 0xff, 0x00, 0xd0, 0xff, 0xff, 0x00, 0x00,
0xc6, 0xff, 0x00, 0x07, 0xff, 0xff, 0x00, 0x00
};
int main()
{
char c, highbit = 0x80;
int i, j, k, column = 0, line = 0;
unsigned char screen[24][40];
// clear screen
for (i = 0; i < 24; i++)
for (j = 0; j < 40; j++)
screen[i][j] = ' ' | highbit;
while ((c = getchar()) != EOF) {
if (c == '\r') // windows trash
continue;
if (c == '\n') { // end of line
column = 0;
line++;
continue;
}
if (column > 39) // user didn't read the docs
continue;
if (line > 23) // ditto
break;
screen[3 * (line % 8) + line / 8][column++] = c | highbit;
}
// dump to stdout
for (i = 0; i < 24; i++) {
for (j = 0; j < 40; j++)
putchar(screen[i][j]);
if ((i + 1) % 3 == 0)
for (k = 0; k < 8; k++)
putchar(holes[(i / 3) * 8 + k]);
}
return 0;
}