1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/*
* Copyright (C) 2004-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#include <assert.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
char *progname;
static void
do_work(void)
{
unsigned char width;
unsigned char height;
unsigned int x;
unsigned int y;
unsigned int n;
/* Check width and height. */
width = getchar();
height = getchar();
if (17 < width
|| 9 < height) {
fprintf(stderr, "No EPA file.\n");
exit(1);
}
printf("const unsigned char logo[] = {\n");
printf("\t%d, /* width */\n", width);
printf("\t%d, /* height */\n", height);
for (y = 0; y < height; y++) {
printf("\t");
for (x = 0; x < width; x++) {
printf("0x%02x, ", getchar());
}
printf("/* colors line %d */\n", y);
}
for (y = 0; y < height; y++) {
for (x = 0; x < width; x++) {
printf("\t");
for (n = 0; n < 14; n++) {
printf("0x%02x, ", getchar());
}
printf("/* pattern %d,%d */\n", x, y);
}
}
printf("};\n");
}
static void
usage(int retval) __attribute__((__noreturn__));
static void
usage(int retval)
{
fprintf(stderr, "Usage: %s < <infile> > <outfile>\n", progname);
exit(retval);
}
int
main(int argc, char *argv[])
{
int c;
progname = *argv;
while ((c = getopt(argc, argv, "")) != -1) {
switch (c) {
default:
usage(1);
/*NOTREACHED*/
}
}
argc -= optind;
argv += optind;
if (argc != 0) {
usage(1);
}
do_work();
return 0;
}
|