123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- #include "compiler.h"
- enum {
- MODE_GEN_INFO,
- MODE_GEN_DATA
- };
- typedef struct bitmap_s {
- uint16_t width;
- uint16_t height;
- uint8_t palette[256*3];
- uint8_t *data;
- } bitmap_t;
- #define DEFAULT_CMAP_SIZE 16
- void usage(const char *prog)
- {
- fprintf(stderr, "Usage: %s [--gen-info|--gen-data] file\n", prog);
- }
- uint16_t le_short(uint16_t x)
- {
- uint16_t val;
- uint8_t *p = (uint8_t *)(&x);
- val = (*p++ & 0xff) << 0;
- val |= (*p & 0xff) << 8;
- return val;
- }
- void skip_bytes (FILE *fp, int n)
- {
- while (n-- > 0)
- fgetc (fp);
- }
- __attribute__ ((__noreturn__))
- int error (char * msg, FILE *fp)
- {
- fprintf (stderr, "ERROR: %s\n", msg);
- fclose (fp);
- exit (EXIT_FAILURE);
- }
- void gen_info(bitmap_t *b, uint16_t n_colors)
- {
- printf("/*\n"
- " * Automatically generated by \"tools/bmp_logo\"\n"
- " *\n"
- " * DO NOT EDIT\n"
- " *\n"
- " */\n\n\n"
- "#ifndef __BMP_LOGO_H__\n"
- "#define __BMP_LOGO_H__\n\n"
- "#define BMP_LOGO_WIDTH\t\t%d\n"
- "#define BMP_LOGO_HEIGHT\t\t%d\n"
- "#define BMP_LOGO_COLORS\t\t%d\n"
- "#define BMP_LOGO_OFFSET\t\t%d\n\n"
- "extern unsigned short bmp_logo_palette[];\n"
- "extern unsigned char bmp_logo_bitmap[];\n\n"
- "#endif /* __BMP_LOGO_H__ */\n",
- b->width, b->height, n_colors,
- DEFAULT_CMAP_SIZE);
- }
- int main (int argc, char *argv[])
- {
- int mode, i, x;
- FILE *fp;
- bitmap_t bmp;
- bitmap_t *b = &bmp;
- uint16_t data_offset, n_colors;
- if (argc < 3) {
- usage(argv[0]);
- exit (EXIT_FAILURE);
- }
- if (!strcmp(argv[1], "--gen-info"))
- mode = MODE_GEN_INFO;
- else if (!strcmp(argv[1], "--gen-data"))
- mode = MODE_GEN_DATA;
- else {
- usage(argv[0]);
- exit(EXIT_FAILURE);
- }
- fp = fopen(argv[2], "rb");
- if (!fp) {
- perror(argv[2]);
- exit (EXIT_FAILURE);
- }
- if (fgetc (fp) != 'B' || fgetc (fp) != 'M')
- error ("Input file is not a bitmap", fp);
-
- skip_bytes (fp, 8);
- if (fread (&data_offset, sizeof (uint16_t), 1, fp) != 1)
- error ("Couldn't read bitmap data offset", fp);
- skip_bytes (fp, 6);
- if (fread (&b->width, sizeof (uint16_t), 1, fp) != 1)
- error ("Couldn't read bitmap width", fp);
- skip_bytes (fp, 2);
- if (fread (&b->height, sizeof (uint16_t), 1, fp) != 1)
- error ("Couldn't read bitmap height", fp);
- skip_bytes (fp, 22);
- if (fread (&n_colors, sizeof (uint16_t), 1, fp) != 1)
- error ("Couldn't read bitmap colors", fp);
- skip_bytes (fp, 6);
-
- data_offset = le_short(data_offset);
- b->width = le_short(b->width);
- b->height = le_short(b->height);
- n_colors = le_short(n_colors);
-
- if ((n_colors == 0) || (n_colors > 256 - DEFAULT_CMAP_SIZE)) {
-
- n_colors = 256 - DEFAULT_CMAP_SIZE;
- }
- if (mode == MODE_GEN_INFO) {
- gen_info(b, n_colors);
- goto out;
- }
- printf("/*\n"
- " * Automatically generated by \"tools/bmp_logo\"\n"
- " *\n"
- " * DO NOT EDIT\n"
- " *\n"
- " */\n\n\n"
- "#ifndef __BMP_LOGO_DATA_H__\n"
- "#define __BMP_LOGO_DATA_H__\n\n");
-
- if ((b->data = (uint8_t *)malloc(b->width * b->height)) == NULL)
- error ("Error allocating memory for file", fp);
-
- printf("unsigned short bmp_logo_palette[] = {\n");
- for (i=0; i<n_colors; ++i) {
- b->palette[(int)(i*3+2)] = fgetc(fp);
- b->palette[(int)(i*3+1)] = fgetc(fp);
- b->palette[(int)(i*3+0)] = fgetc(fp);
- x=fgetc(fp);
- printf ("%s0x0%X%X%X,%s",
- ((i%8) == 0) ? "\t" : " ",
- (b->palette[(int)(i*3+0)] >> 4) & 0x0F,
- (b->palette[(int)(i*3+1)] >> 4) & 0x0F,
- (b->palette[(int)(i*3+2)] >> 4) & 0x0F,
- ((i%8) == 7) ? "\n" : ""
- );
- }
-
- fseek(fp, (long)data_offset, SEEK_SET);
-
- printf ("\n");
- printf ("};\n");
- printf ("\n");
- printf("unsigned char bmp_logo_bitmap[] = {\n");
- for (i=(b->height-1)*b->width; i>=0; i-=b->width) {
- for (x = 0; x < b->width; x++) {
- b->data[i + x] = (uint8_t) fgetc(fp)
- + DEFAULT_CMAP_SIZE;
- }
- }
- for (i=0; i<(b->height*b->width); ++i) {
- if ((i%8) == 0)
- putchar ('\t');
- printf ("0x%02X,%c",
- b->data[i],
- ((i%8) == 7) ? '\n' : ' '
- );
- }
- printf ("\n"
- "};\n\n"
- "#endif /* __BMP_LOGO_DATA_H__ */\n"
- );
- out:
- fclose(fp);
- return 0;
- }
|