1 |
< |
/* Copyright (c) 1987 Regents of the University of California */ |
1 |
> |
/* Copyright (c) 1992 Regents of the University of California */ |
2 |
|
|
3 |
|
#ifndef lint |
4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
10 |
|
* 7/1/87 |
11 |
|
*/ |
12 |
|
|
13 |
< |
#include <stdio.h> |
13 |
> |
#include "standard.h" |
14 |
|
|
15 |
|
#include "color.h" |
16 |
|
|
17 |
+ |
#include "font.h" |
18 |
+ |
|
19 |
+ |
#ifndef SSS |
20 |
+ |
#define SSS 3 /* super-sample size */ |
21 |
+ |
#endif |
22 |
+ |
|
23 |
|
#define MAXLINE 512 /* longest allowable line */ |
24 |
|
|
25 |
< |
char *fontfile = "/usr/local/lib/ray/helvet.fnt"; /* our font file */ |
25 |
> |
#ifndef DEFPATH |
26 |
> |
#define DEFPATH ":/usr/local/lib/ray" |
27 |
> |
#endif |
28 |
> |
#ifndef ULIBVAR |
29 |
> |
#define ULIBVAR "RAYPATH" |
30 |
> |
#endif |
31 |
|
|
32 |
< |
COLR bgcolr = WHTCOLR; /* background color */ |
22 |
< |
COLR fgcolr = BLKCOLR; /* foreground color */ |
32 |
> |
char *fontfile = "helvet.fnt"; /* our font file */ |
33 |
|
|
34 |
+ |
COLOR bgcolor = WHTCOLOR; /* background color */ |
35 |
+ |
COLOR fgcolor = BLKCOLOR; /* foreground color */ |
36 |
+ |
|
37 |
|
int direct = 'r'; /* direction (right, up, left, down) */ |
38 |
|
|
39 |
< |
int cheight = 32; /* character height */ |
39 |
> |
int cheight = 32*SSS; /* character height */ |
40 |
|
double aspect = 1.67; /* height/width character aspect */ |
41 |
+ |
double spacing = 0.0; /* character spacing */ |
42 |
|
int cwidth; /* computed character width */ |
43 |
|
|
44 |
|
unsigned char *ourbitmap; /* our output bitmap */ |
51 |
|
#define clrbit(x,y) bitop(x,y,&=~) |
52 |
|
#define tglbit(x,y) bitop(x,y,^=) |
53 |
|
|
54 |
< |
typedef unsigned char GLYPH; |
54 |
> |
FONT *ourfont; /* our font */ |
55 |
|
|
56 |
< |
GLYPH *ourfont[128]; /* our font */ |
56 |
> |
char *libpath; /* library search path */ |
57 |
|
|
58 |
|
typedef struct line { |
59 |
|
char *s; /* line w/o LF */ |
60 |
+ |
short *sp; /* character spacing */ |
61 |
|
struct line *next; /* next line up */ |
62 |
|
} LINE; |
63 |
|
|
64 |
|
LINE *ourtext; /* our text */ |
65 |
|
int nlines, maxline; /* text dimensions */ |
66 |
+ |
int maxwidth; /* maximum line width (dvi) */ |
67 |
|
|
68 |
< |
char *malloc(), *calloc(); |
68 |
> |
extern char *getenv(); |
69 |
|
|
70 |
|
|
71 |
|
main(argc, argv) |
72 |
|
int argc; |
73 |
|
char *argv[]; |
74 |
|
{ |
59 |
– |
double atof(); |
75 |
|
int an; |
76 |
|
|
77 |
|
for (an = 1; an < argc && argv[an][0] == '-'; an++) |
79 |
|
case 'c': /* color */ |
80 |
|
switch (argv[an][2]) { |
81 |
|
case 'f': /* foreground */ |
82 |
< |
setcolr(fgcolr, atof(argv[an+1]), |
82 |
> |
setcolor(fgcolor, atof(argv[an+1]), |
83 |
|
atof(argv[an+2]), |
84 |
|
atof(argv[an+3])); |
85 |
|
an += 3; |
86 |
|
break; |
87 |
|
case 'b': /* background */ |
88 |
< |
setcolr(bgcolr, atof(argv[an+1]), |
88 |
> |
setcolor(bgcolor, atof(argv[an+1]), |
89 |
|
atof(argv[an+2]), |
90 |
|
atof(argv[an+3])); |
91 |
|
an += 3; |
109 |
|
goto unkopt; |
110 |
|
} |
111 |
|
break; |
112 |
+ |
case 'x': /* x resolution */ |
113 |
+ |
xsiz = atoi(argv[++an])*SSS; |
114 |
+ |
break; |
115 |
+ |
case 'y': |
116 |
+ |
ysiz = atoi(argv[++an])*SSS; |
117 |
+ |
break; |
118 |
|
case 'h': /* height of characters */ |
119 |
< |
cheight = atoi(argv[++an]); |
119 |
> |
cheight = atoi(argv[++an])*SSS; |
120 |
> |
xsiz = xsiz = 0; |
121 |
|
break; |
122 |
|
case 'a': /* aspect ratio */ |
123 |
|
aspect = atof(argv[++an]); |
124 |
|
break; |
125 |
+ |
case 's': /* spacing */ |
126 |
+ |
spacing = atof(argv[++an]); |
127 |
+ |
break; |
128 |
|
default:; |
129 |
|
unkopt: |
130 |
|
fprintf(stderr, "%s: unknown option: %s\n", |
131 |
|
argv[0], argv[an]); |
132 |
|
exit(1); |
133 |
|
} |
134 |
+ |
/* load font file */ |
135 |
+ |
if ((libpath = getenv(ULIBVAR)) == NULL) |
136 |
+ |
libpath = DEFPATH; |
137 |
+ |
ourfont = getfont(fontfile); |
138 |
|
/* get text */ |
139 |
|
if (an == argc) |
140 |
|
gettext(stdin); |
143 |
|
|
144 |
|
/* create bit map */ |
145 |
|
makemap(); |
117 |
– |
/* load font file */ |
118 |
– |
loadfont(); |
146 |
|
/* convert text to bitmap */ |
147 |
|
maptext(); |
148 |
|
/* print header */ |
149 |
|
printargs(argc, argv, stdout); |
150 |
< |
printf("\n\n"); |
150 |
> |
fputformat(COLRFMT, stdout); |
151 |
> |
putchar('\n'); |
152 |
|
/* write out bitmap */ |
153 |
|
writemap(stdout); |
154 |
|
|
158 |
|
|
159 |
|
makemap() /* create the bit map */ |
160 |
|
{ |
161 |
< |
cwidth = cheight/aspect + 0.5; |
161 |
> |
double pictaspect; |
162 |
> |
|
163 |
|
if (direct == 'r' || direct == 'l') { |
164 |
< |
xsiz = maxline*cwidth; |
165 |
< |
ysiz = nlines*cheight; |
164 |
> |
if (xsiz == 0 || ysiz == 0) { |
165 |
> |
cwidth = cheight/aspect + 0.5; |
166 |
> |
xsiz = (long)maxwidth*cwidth >> 8; |
167 |
> |
ysiz = nlines*cheight; |
168 |
> |
} else if (aspect > FTINY) { |
169 |
> |
pictaspect = 256*nlines*aspect/maxwidth; |
170 |
> |
if (pictaspect*xsiz < ysiz) |
171 |
> |
ysiz = pictaspect*xsiz + 0.5; |
172 |
> |
else |
173 |
> |
xsiz = ysiz/pictaspect + 0.5; |
174 |
> |
cheight = ysiz/nlines; |
175 |
> |
cwidth = cheight/aspect + 0.5; |
176 |
> |
} else { |
177 |
> |
pictaspect = (double)ysiz/xsiz; |
178 |
> |
aspect = pictaspect*maxwidth/(256*nlines); |
179 |
> |
cheight = ysiz/nlines; |
180 |
> |
cwidth = cheight/aspect + 0.5; |
181 |
> |
} |
182 |
|
} else { /* reverse orientation */ |
183 |
< |
xsiz = nlines*cheight; |
184 |
< |
ysiz = maxline*cwidth; |
183 |
> |
if (xsiz == 0 || ysiz == 0) { |
184 |
> |
cwidth = cheight/aspect + 0.5; |
185 |
> |
xsiz = nlines*cheight; |
186 |
> |
ysiz = (long)maxwidth*cwidth >> 8; |
187 |
> |
} else if (aspect > FTINY) { |
188 |
> |
pictaspect = maxwidth/(256*nlines*aspect); |
189 |
> |
if (pictaspect*xsiz < ysiz) |
190 |
> |
ysiz = pictaspect*xsiz + 0.5; |
191 |
> |
else |
192 |
> |
xsiz = ysiz/pictaspect + 0.5; |
193 |
> |
cheight = xsiz/nlines; |
194 |
> |
cwidth = cheight/aspect + 0.5; |
195 |
> |
} else { |
196 |
> |
pictaspect = (double)ysiz/xsiz; |
197 |
> |
aspect = maxwidth/(256*nlines*pictaspect); |
198 |
> |
cheight = xsiz/nlines; |
199 |
> |
cwidth = cheight/aspect + 0.5; |
200 |
> |
} |
201 |
|
} |
202 |
+ |
if (xsiz % SSS) |
203 |
+ |
xsiz += SSS - xsiz%SSS; |
204 |
+ |
if (ysiz % SSS) |
205 |
+ |
ysiz += SSS - ysiz%SSS; |
206 |
|
xdim = (xsiz+7)/8; |
207 |
< |
ourbitmap = (BYTE *)calloc(ysiz, xdim); |
208 |
< |
if (ourbitmap == NULL) { |
209 |
< |
fprintf(stderr, "out of memory in makemap\n"); |
210 |
< |
exit(1); |
146 |
< |
} |
207 |
> |
ourbitmap = (BYTE *)bmalloc(ysiz*xdim); |
208 |
> |
if (ourbitmap == NULL) |
209 |
> |
error(SYSTEM, "Out of memory in makemap"); |
210 |
> |
bzero((char *)ourbitmap, ysiz*xdim); |
211 |
|
} |
212 |
|
|
213 |
|
|
150 |
– |
loadfont() /* load the font file */ |
151 |
– |
{ |
152 |
– |
FILE *fp; |
153 |
– |
char *err; |
154 |
– |
int gn, ngv, gv; |
155 |
– |
register GLYPH *g; |
156 |
– |
|
157 |
– |
if ((fp = fopen(fontfile, "r")) == NULL) { |
158 |
– |
fprintf(stderr, "cannot open font file \"%s\"\n", |
159 |
– |
fontfile); |
160 |
– |
exit(1); |
161 |
– |
} |
162 |
– |
while (fscanf(fp, "%d", &gn) == 1) { /* get each glyph */ |
163 |
– |
if (gn < 0 || gn > 127) { |
164 |
– |
err = "illegal"; |
165 |
– |
goto fonterr; |
166 |
– |
} |
167 |
– |
if (ourfont[gn] != NULL) { |
168 |
– |
err = "duplicate"; |
169 |
– |
goto fonterr; |
170 |
– |
} |
171 |
– |
if (fscanf(fp, "%d", &ngv) != 1 || |
172 |
– |
ngv < 0 || ngv > 255) { |
173 |
– |
err = "bad # vertices for"; |
174 |
– |
goto fonterr; |
175 |
– |
} |
176 |
– |
g = (GLYPH *)malloc((2*ngv+1)*sizeof(GLYPH)); |
177 |
– |
if (g == NULL) |
178 |
– |
goto memerr; |
179 |
– |
ourfont[gn] = g; |
180 |
– |
*g++ = ngv; |
181 |
– |
ngv *= 2; |
182 |
– |
while (ngv--) { |
183 |
– |
if (fscanf(fp, "%d", &gv) != 1 || |
184 |
– |
gv < 0 || gv > 255) { |
185 |
– |
err = "bad vertex for"; |
186 |
– |
goto fonterr; |
187 |
– |
} |
188 |
– |
*g++ = gv; |
189 |
– |
} |
190 |
– |
} |
191 |
– |
fclose(fp); |
192 |
– |
return; |
193 |
– |
fonterr: |
194 |
– |
fprintf(stderr, "%s character (%d) in font file \"%s\"\n", |
195 |
– |
err, gn, fontfile); |
196 |
– |
exit(1); |
197 |
– |
memerr: |
198 |
– |
fprintf(stderr, "out of memory in loadfont\n"); |
199 |
– |
exit(1); |
200 |
– |
} |
201 |
– |
|
202 |
– |
|
214 |
|
gettext(fp) /* get text from a file */ |
215 |
|
FILE *fp; |
216 |
|
{ |
220 |
|
int len; |
221 |
|
|
222 |
|
maxline = 0; |
223 |
+ |
maxwidth = 0; |
224 |
|
nlines = 0; |
225 |
|
while (fgets(buf, MAXLINE, fp) != NULL) { |
226 |
|
curl = (LINE *)malloc(sizeof(LINE)); |
227 |
|
if (curl == NULL) |
228 |
|
goto memerr; |
229 |
|
len = strlen(buf); |
230 |
< |
curl->s = malloc(len--); |
231 |
< |
if (curl->s == NULL) |
230 |
> |
curl->s = malloc(len); |
231 |
> |
curl->sp = (short *)malloc(sizeof(short)*len--); |
232 |
> |
if (curl->s == NULL | curl->sp == NULL) |
233 |
|
goto memerr; |
234 |
+ |
if (len > maxline) |
235 |
+ |
maxline = len; |
236 |
|
strncpy(curl->s, buf, len); |
237 |
|
curl->s[len] = '\0'; |
238 |
+ |
if (spacing < -1./256.) |
239 |
+ |
len = squeeztext(curl->sp, curl->s, ourfont, |
240 |
+ |
(int)(spacing*-256.0)); |
241 |
+ |
else if (spacing > 1./256.) |
242 |
+ |
len = proptext(curl->sp, curl->s, ourfont, |
243 |
+ |
(int)(spacing*256.0), 3); |
244 |
+ |
else |
245 |
+ |
len = uniftext(curl->sp, curl->s, ourfont); |
246 |
+ |
if (len > maxwidth) |
247 |
+ |
maxwidth = len; |
248 |
|
curl->next = ourtext; |
249 |
|
ourtext = curl; |
225 |
– |
if (len > maxline) |
226 |
– |
maxline = len; |
250 |
|
nlines++; |
251 |
|
} |
252 |
|
return; |
253 |
|
memerr: |
254 |
< |
fprintf(stderr, "out of memory in gettext\n"); |
232 |
< |
exit(1); |
254 |
> |
error(SYSTEM, "Out of memory in gettext"); |
255 |
|
} |
256 |
|
|
257 |
|
|
275 |
|
*--cp = '\0'; |
276 |
|
ourtext->next = NULL; |
277 |
|
maxline = strlen(ourtext->s); |
278 |
+ |
ourtext->sp = (short *)malloc(sizeof(short)*(maxline+1)); |
279 |
+ |
if (ourtext->sp == NULL) |
280 |
+ |
goto memerr; |
281 |
+ |
if (spacing < 0.0) |
282 |
+ |
maxwidth = squeeztext(ourtext->sp, ourtext->s, ourfont, |
283 |
+ |
(int)(spacing*-256.0)); |
284 |
+ |
else if (spacing > 0.0) |
285 |
+ |
maxwidth = proptext(ourtext->sp, ourtext->s, ourfont, |
286 |
+ |
(int)(spacing*256.0), 3); |
287 |
+ |
else |
288 |
+ |
maxwidth = uniftext(ourtext->sp, ourtext->s, ourfont); |
289 |
|
nlines = 1; |
290 |
|
return; |
291 |
|
memerr: |
292 |
< |
fprintf(stderr, "out of memory in arg_text\n"); |
260 |
< |
exit(1); |
292 |
> |
error(SYSTEM, "Out of memory in arg_text"); |
293 |
|
} |
294 |
|
|
295 |
|
|
296 |
|
maptext() /* map our text */ |
297 |
|
{ |
298 |
|
register LINE *curl; |
299 |
< |
int l; |
300 |
< |
register int c; |
299 |
> |
int l, len; |
300 |
> |
register int i, c; |
301 |
|
|
302 |
< |
for (l = 0, curl = ourtext; curl != NULL; l++, curl = curl->next) |
303 |
< |
for (c = strlen(curl->s)-1; c >= 0; c--) |
304 |
< |
mapglyph(ourfont[curl->s[c]], c, l); |
302 |
> |
for (l = 0, curl = ourtext; curl != NULL; l += 256, curl = curl->next) { |
303 |
> |
len = strlen(curl->s); c = 0; |
304 |
> |
for (i = 0; i < len; i++) { |
305 |
> |
c += curl->sp[i]; |
306 |
> |
mapglyph(ourfont->fg[curl->s[i]&0xff], c, l); |
307 |
> |
} |
308 |
> |
} |
309 |
|
} |
310 |
|
|
311 |
|
|
312 |
|
mapglyph(gl, tx0, ty0) /* convert a glyph */ |
313 |
< |
register GLYPH *gl; |
313 |
> |
GLYPH *gl; |
314 |
|
int tx0, ty0; |
315 |
|
{ |
316 |
|
int n; |
317 |
+ |
register GORD *gp; |
318 |
|
int p0[2], p1[2]; |
319 |
|
|
320 |
|
if (gl == NULL) |
321 |
|
return; |
322 |
|
|
323 |
< |
tx0 <<= 8; ty0 <<= 8; |
324 |
< |
n = *gl++; |
325 |
< |
mapcoord(p0, gl[2*n-2]+tx0, gl[2*n-1]+ty0); |
323 |
> |
n = gl->nverts; |
324 |
> |
gp = gvlist(gl); |
325 |
> |
mapcoord(p0, gp[2*n-2]+tx0, gp[2*n-1]+ty0); |
326 |
|
while (n--) { |
327 |
< |
mapcoord(p1, gl[0]+tx0, gl[1]+ty0); |
327 |
> |
mapcoord(p1, gp[0]+tx0, gp[1]+ty0); |
328 |
|
mapedge(p0[0], p0[1], p1[0]-p0[0], p1[1]-p0[1]); |
329 |
|
p0[0] = p1[0]; p0[1] = p1[1]; |
330 |
< |
gl += 2; |
330 |
> |
gp += 2; |
331 |
|
} |
332 |
|
} |
333 |
|
|
399 |
|
writemap(fp) /* write out bitmap */ |
400 |
|
FILE *fp; |
401 |
|
{ |
402 |
+ |
COLR pixval[SSS*SSS+1]; /* possible pixel values */ |
403 |
+ |
COLOR ctmp0, ctmp1; |
404 |
+ |
double d; |
405 |
|
COLR *scanout; |
406 |
< |
int y; |
407 |
< |
register int x; |
406 |
> |
int x, y; |
407 |
> |
register int i, j; |
408 |
> |
int cnt; |
409 |
|
register int inglyph; |
410 |
|
|
411 |
< |
fprintf(fp, "-Y %d +X %d\n", ysiz, xsiz); |
411 |
> |
fprintf(fp, "-Y %d +X %d\n", ysiz/SSS, xsiz/SSS); |
412 |
|
|
413 |
< |
scanout = (COLR *)malloc(xsiz*sizeof(COLR)); |
414 |
< |
if (scanout == NULL) { |
415 |
< |
fprintf(stderr, "out of memory in writemap\n"); |
416 |
< |
exit(1); |
413 |
> |
scanout = (COLR *)malloc(xsiz/SSS*sizeof(COLR)); |
414 |
> |
if (scanout == NULL) |
415 |
> |
error(SYSTEM, "Out of memory in writemap"); |
416 |
> |
for (i = 0; i <= SSS*SSS; i++) { /* compute possible values */ |
417 |
> |
copycolor(ctmp0, fgcolor); |
418 |
> |
d = (double)i/(SSS*SSS); |
419 |
> |
scalecolor(ctmp0, d); |
420 |
> |
copycolor(ctmp1, bgcolor); |
421 |
> |
d = 1.0 - d; |
422 |
> |
scalecolor(ctmp1, d); |
423 |
> |
addcolor(ctmp0, ctmp1); |
424 |
> |
setcolr(pixval[i], colval(ctmp0,RED), |
425 |
> |
colval(ctmp0,GRN), colval(ctmp0,BLU)); |
426 |
|
} |
427 |
< |
for (y = ysiz-1; y >= 0; y--) { |
427 |
> |
for (y = ysiz/SSS-1; y >= 0; y--) { |
428 |
|
inglyph = 0; |
429 |
< |
for (x = 0; x < xsiz; x++) { |
430 |
< |
if (tstbit(x, y)) |
431 |
< |
inglyph ^= 1; |
432 |
< |
if (inglyph) |
433 |
< |
copycolr(scanout[x], fgcolr); |
434 |
< |
else |
435 |
< |
copycolr(scanout[x], bgcolr); |
429 |
> |
for (x = 0; x < xsiz/SSS; x++) { |
430 |
> |
cnt = 0; |
431 |
> |
for (j = 0; j < SSS; j++) |
432 |
> |
for (i = 0; i < SSS; i++) { |
433 |
> |
if (tstbit(x*SSS+i, y*SSS+j)) |
434 |
> |
inglyph ^= 1<<j; |
435 |
> |
if (inglyph & 1<<j) |
436 |
> |
cnt++; |
437 |
> |
} |
438 |
> |
copycolr(scanout[x], pixval[cnt]); |
439 |
|
} |
440 |
< |
if (fwritecolrs(scanout, xsiz, fp) < 0) { |
440 |
> |
if (fwritecolrs(scanout, xsiz/SSS, fp) < 0) { |
441 |
|
fprintf(stderr, "write error in writemap\n"); |
442 |
|
exit(1); |
443 |
|
} |
444 |
|
} |
445 |
|
free((char *)scanout); |
393 |
– |
} |
394 |
– |
|
395 |
– |
|
396 |
– |
printargs(ac, av, fp) /* print arguments to a file */ |
397 |
– |
int ac; |
398 |
– |
char **av; |
399 |
– |
FILE *fp; |
400 |
– |
{ |
401 |
– |
while (ac-- > 0) { |
402 |
– |
fputs(*av++, fp); |
403 |
– |
putc(' ', fp); |
404 |
– |
} |
446 |
|
} |