summaryrefslogtreecommitdiff
path: root/chips/build_font.c
blob: 2542351e314b8cf661a6367c32a472645a7adfe8 (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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* 
 * Mach Operating System
 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
 * All Rights Reserved.
 * 
 * Permission to use, copy, modify and distribute this software and its
 * documentation is hereby granted, provided that both the copyright
 * notice and this permission notice appear in all copies of the
 * software, derivative works or modified versions, and any portions
 * thereof, and that both notices appear in supporting documentation.
 * 
 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
 * 
 * Carnegie Mellon requests users of this software to return to
 * 
 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
 *  School of Computer Science
 *  Carnegie Mellon University
 *  Pittsburgh PA 15213-3890
 * 
 * any improvements or extensions that they make and grant Carnegie Mellon
 * the rights to redistribute these changes.
 */
/*
 *	File: build_font.c
 * 	Author: Alessandro Forin, Carnegie Mellon University
 *	Date:	10/90
 *
 *
 *	Takes a font description file and generates a C source
 *	appropriate for use as kernel font on mips/vax boxes.
 *	This basically means encoding and mirroring the bitmaps.
 */

#include <stdio.h>

main(argc,argv)
	char **argv;
{
	int		fd;
	FILE		*fout;
	int             i, j, k, n, l;
	int		first, last;
	char		*fname = "kernel_font.data";
	char		buf[16*9];
	int		verbose = 0;

	if (argc > 1 && argv[1][0] == '+')
		verbose++, argc--, argv++;

	first = 0;
	last = 190;	/* 8-bit ASCII, offset by 'space' */
	if (argc > 1) {
		first = atoi(argv[1]);
		last = first + 1;
	}
	if (argc > 2)
		last = atoi(argv[2]) + 1;
	if (argc > 3)
		fname = argv[3];

	fd = open(fname, 0, 0);
	fout = fopen("kernel_font.c", "w");

	fprintf(fout, "/* \n\
 * Mach Operating System\n\
 * Copyright (c) 1989 Carnegie-Mellon University\n\
 * All rights reserved.  The CMU software License Agreement specifies\n\
 * the terms and conditions for use and redistribution.\n\
 */\n\
/*\n\
 * THIS FILE WAS GENERATED BY %s FROM %s\n\
 * IF YOU NEED TO, BE SURE YOU EDIT THE REAL THING!\n\
 */\n\
/*\n\
 *	Object:\n\
 *		kfont_7x14			EXPORTED array\n\
 *\n\
 *		Kernel font for printable ASCII chars\n\
 *\n\
 * The smallest index in this array corresponds to a\n\
 * space. So, we start at 0x20 in the ascii table.\n\
 * Note that glyphs are mirrored (byteorder, I think)\n\
 * the commented bitmap shows how they really look like\n\
 */\n\
\n\
unsigned char kfont_7x14[] = {\n", argv[0], fname);

skip_comments:
	read(fd, buf, 1);
	if (buf[0] == '#') {
		do
			read(fd, buf, 1);
		while (buf[0] != '\n');
		goto skip_comments;
	}
	lseek(fd, -1, 1);	/* put char back */

	/* if must skip some */
	for (l = 0; l < first; l++)
		read(fd, buf, 2+(9*15));

	/* scan for real now */
	for (i = first; i < last; i++) {
		/* read one full glyph */
		if (read(fd, buf, 2+(9*15)) < 0)
			break;
		if (verbose)
			printf("Character '%c':\n\t", buf[0]);
		/* index and char itself in comments */
		fprintf(fout, "/* %3x '%c' */\n", i, 0x20+i);

		/* encode and mirror each one of the 15 scanlines */
		for (n = 0; n < 15; n++) {
			unsigned char	cc[8], swap = 0;
			/* 8 bits per scanline */
			for (k = 2+(n*9), j = 0; j < 8; k++, j++) {
				if (verbose)
					printf("%c", (buf[k] == '1') ? '@' : ' ');
				swap = ((buf[k] - '0') << 7) | (swap >> 1);
				cc[j] = buf[k];
			}
			fprintf(fout,"\t/* %8s */\t%#2x,\n", cc, (unsigned char)swap);
			if (verbose)
				printf("\n\t");
		}
	}
	fprintf(fout, "};\n");
	fclose(fout);
}