16 |
|
|
17 |
|
#define galloc(nv) (GLYPH *)malloc(sizeof(GLYPH)+2*sizeof(GORD)*(nv)) |
18 |
|
|
19 |
– |
|
19 |
|
int retainfonts = 0; /* retain loaded fonts? */ |
20 |
|
|
21 |
|
static FONT *fontlist = NULL; /* list of loaded fonts */ |
22 |
|
|
23 |
|
|
24 |
|
FONT * |
25 |
< |
getfont(fname) /* return font fname */ |
26 |
< |
char *fname; |
25 |
> |
getfont( /* return font fname */ |
26 |
> |
char *fname |
27 |
> |
) |
28 |
|
{ |
29 |
|
FILE *fp; |
30 |
|
char *pathname, *err = NULL; |
31 |
|
unsigned wsum, hsum, ngly; |
32 |
|
int gn, ngv, gv; |
33 |
< |
register GLYPH *g; |
33 |
> |
GLYPH *g; |
34 |
|
GORD *gp; |
35 |
< |
register FONT *f; |
35 |
> |
FONT *f; |
36 |
|
|
37 |
|
for (f = fontlist; f != NULL; f = f->next) |
38 |
|
if (!strcmp(f->name, fname)) { |
41 |
|
} |
42 |
|
/* load the font file */ |
43 |
|
if ((pathname = getpath(fname, getrlibpath(), R_OK)) == NULL) { |
44 |
< |
sprintf(errmsg, "cannot find font file \"%s\"", fname); |
45 |
< |
error(SYSTEM, errmsg); |
44 |
> |
sprintf(errmsg, "cannot find font file \"%s\"\n", fname); |
45 |
> |
eputs(errmsg); |
46 |
> |
return(NULL); |
47 |
|
} |
48 |
+ |
if ((fp = fopen(pathname, "r")) == NULL) { |
49 |
+ |
sprintf(errmsg, "cannot open font file \"%s\"\n", pathname); |
50 |
+ |
eputs(errmsg); |
51 |
+ |
return(NULL); |
52 |
+ |
} |
53 |
|
f = (FONT *)calloc(1, sizeof(FONT)); |
54 |
|
if (f == NULL) |
55 |
|
goto memerr; |
56 |
< |
f->name = savestr(fname); |
56 |
> |
strcpy(f->name, fname); |
57 |
|
f->nref = 1; |
52 |
– |
if ((fp = fopen(pathname, "r")) == NULL) { |
53 |
– |
sprintf(errmsg, "cannot open font file \"%s\"", |
54 |
– |
pathname); |
55 |
– |
error(SYSTEM, errmsg); |
56 |
– |
} |
58 |
|
wsum = hsum = ngly = 0; /* get each glyph */ |
59 |
|
while ((ngv = fgetval(fp, 'i', (char *)&gn)) != EOF) { |
60 |
|
if (ngv == 0) |
113 |
|
f->next = fontlist; |
114 |
|
return(fontlist = f); |
115 |
|
nonint: |
116 |
< |
sprintf(errmsg, "non-integer in font file \"%s\"", pathname); |
117 |
< |
error(USER, errmsg); |
116 |
> |
sprintf(errmsg, "non-integer in font file \"%s\"\n", pathname); |
117 |
> |
eputs(errmsg); |
118 |
> |
fclose(fp); |
119 |
> |
return(NULL); |
120 |
|
fonterr: |
121 |
< |
sprintf(errmsg, "%s character (%d) in font file \"%s\"", |
121 |
> |
sprintf(errmsg, "%s character (%d) in font file \"%s\"\n", |
122 |
|
err, gn, pathname); |
123 |
< |
error(USER, errmsg); |
123 |
> |
eputs(errmsg); |
124 |
> |
fclose(fp); |
125 |
> |
return(NULL); |
126 |
|
memerr: |
127 |
< |
error(SYSTEM, "out of memory in fontglyph"); |
128 |
< |
return NULL; /* pro forma return */ |
127 |
> |
eputs("out of memory in getfont()\n"); |
128 |
> |
fclose(fp); |
129 |
> |
return(NULL); |
130 |
|
} |
131 |
|
|
132 |
|
|
133 |
|
void |
134 |
< |
freefont(fnt) /* release a font (free all if NULL) */ |
135 |
< |
FONT *fnt; |
134 |
> |
freefont( /* release a font (free all if NULL) */ |
135 |
> |
FONT *fnt |
136 |
> |
) |
137 |
|
{ |
138 |
|
FONT head; |
139 |
< |
register FONT *fl, *f; |
140 |
< |
register int i; |
139 |
> |
FONT *fl, *f; |
140 |
> |
int i; |
141 |
|
/* check reference count */ |
142 |
|
if (fnt != NULL && ((fnt->nref-- > 1) | retainfonts)) |
143 |
|
return; |
149 |
|
for (i = 0; i < 256; i++) |
150 |
|
if (f->fg[i] != NULL) |
151 |
|
free((void *)f->fg[i]); |
145 |
– |
freestr(f->name); |
152 |
|
free((void *)f); |
153 |
|
} else |
154 |
|
fl = f; |
157 |
|
|
158 |
|
|
159 |
|
int |
160 |
< |
uniftext(sp, tp, f) /* uniformly space text line */ |
161 |
< |
register short *sp; /* returned character spacing */ |
162 |
< |
register char *tp; /* text line */ |
163 |
< |
register FONT *f; /* font */ |
160 |
> |
uniftext( /* uniformly space text line */ |
161 |
> |
short *sp, /* returned character spacing */ |
162 |
> |
char *tp, /* text line */ |
163 |
> |
FONT *f /* font */ |
164 |
> |
) |
165 |
|
{ |
166 |
|
int linelen; |
167 |
|
|
176 |
|
|
177 |
|
|
178 |
|
int |
179 |
< |
squeeztext(sp, tp, f, cis) /* squeeze text line */ |
180 |
< |
short *sp; /* returned character spacing */ |
181 |
< |
char *tp; /* text line */ |
182 |
< |
FONT *f; /* font */ |
183 |
< |
int cis; /* intercharacter spacing */ |
179 |
> |
squeeztext( /* squeeze text line */ |
180 |
> |
short *sp, /* returned character spacing */ |
181 |
> |
char *tp, /* text line */ |
182 |
> |
FONT *f, /* font */ |
183 |
> |
int cis /* intercharacter spacing */ |
184 |
> |
) |
185 |
|
{ |
186 |
|
int linelen; |
187 |
< |
register GLYPH *gp; |
187 |
> |
GLYPH *gp; |
188 |
|
|
189 |
|
linelen = 0; |
190 |
|
gp = NULL; |
212 |
|
|
213 |
|
|
214 |
|
int |
215 |
< |
proptext(sp, tp, f, cis, nsi) /* space line proportionally */ |
216 |
< |
short *sp; /* returned character spacing */ |
217 |
< |
char *tp; /* text line */ |
218 |
< |
FONT *f; /* font */ |
219 |
< |
int cis; /* target intercharacter spacing */ |
220 |
< |
int nsi; /* minimum number of spaces for indent */ |
215 |
> |
proptext( /* space line proportionally */ |
216 |
> |
short *sp, /* returned character spacing */ |
217 |
> |
char *tp, /* text line */ |
218 |
> |
FONT *f, /* font */ |
219 |
> |
int cis, /* target intercharacter spacing */ |
220 |
> |
int nsi /* minimum number of spaces for indent */ |
221 |
> |
) |
222 |
|
{ |
223 |
< |
register char *end, *tab = NULL; |
223 |
> |
char *end, *tab = NULL; |
224 |
|
GLYPH *gp; |
225 |
|
short *nsp; |
226 |
|
int alen, len, width; |