summaryrefslogtreecommitdiff
path: root/makexpm.c
blob: 262ba84ce4bbb234e7b0652d439f8b13e8c3b316 (plain)
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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

/* chars to use for colors */
static const char p[] = "0123456789"
"abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"!@#$%^&*()_+-=`~[]{}|;:',<.>/? ";
/* number of chars excl NIL */
static const int q = sizeof(p) - 1;

int main(int argc, char **argv) {
	unsigned int width, height, ncolors, cpp, i, j;
	if (argc != 5) {
		fprintf(stderr, "Usage: %s width height ncolors cpp\n", argv[0]);
		return 1;
	}
	/*
	width = 1600;
	height = 900;
	ncolors = width * height / 1024;
	cpp = 3;
	*/

	width = strtoul(argv[1], NULL, 0);
	height= strtoul(argv[2], NULL, 0);
	ncolors=strtoul(argv[3], NULL, 0);
	cpp   = strtoul(argv[4], NULL, 0);

	printf(
		"/* XPM */\n"
		"static char *picture[] = {\n"
		"/* columns rows colors chars-per-pixel */\n"
		"\"%d %d %d %d \",\n"
		, width, height, ncolors, cpp);


	const char *fmt;
	switch (cpp) {
	case 1: fmt = "%c"; break;
	case 2: fmt = "%c%c"; break;
	case 3: fmt = "%c%c%c"; break;
	default:fmt = "%c%c%c%c"; break;
	}
	for (i = 0; i<ncolors; ++i) {
		putchar('"');
		printf(fmt, p[i%q], p[i/q%q], p[i/q/q%q], p[i/q/q/q%q]);
		printf(" c #%06x\",\n", 256 * 256 * 256 * i / ncolors);
	}

	puts("/* pixels */");
	for (i = 0; i<height; ++i) {
		putchar('"');
		for (j = 0; j<width; ++j) {
			unsigned int n = (i * width + j) % ncolors;
			printf(fmt, p[n%q], p[n/q%q], p[n/q/q%q], p[n/q/q/q%q]);
		}
		if (i < height - 1) puts("\",");
		else puts("\"");
	}
	puts("};");
	return 0;
}