ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/font.c
(Generate patch)

Comparing ray/src/common/font.c (file contents):
Revision 2.7 by greg, Fri May 14 11:30:17 1993 UTC vs.
Revision 2.23 by greg, Sat Nov 20 15:53:24 2021 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Polygonal font handling routines
6   */
7  
8 < #include "standard.h"
8 > #include "copyright.h"
9  
10 + #include <stdlib.h>
11 +
12 + #include "paths.h"
13 + #include "rtio.h"
14 + #include "rterror.h"
15   #include "font.h"
16  
17   #define galloc(nv)      (GLYPH *)malloc(sizeof(GLYPH)+2*sizeof(GORD)*(nv))
18  
19 + int     retainfonts = 0;                /* retain loaded fonts? */
20  
18 extern char  *libpath;                  /* list of library directories */
19
20 extern char  *fgetword();
21
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        char  buf[16];
29          FILE  *fp;
30 <        char  *pathname, *err;
30 >        char  *pathname, *err = NULL;
31          unsigned  wsum, hsum, ngly;
32 <        int  gn, ngv;
33 <        register int  gv;
35 <        register GLYPH  *g;
32 >        int  gn, ngv, gv;
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))
38 >                if (!strcmp(f->name, fname)) {
39 >                        f->nref++;
40                          return(f);
41 +                }
42                                                  /* load the font file */
43 <        if ((pathname = getpath(fname, libpath, R_OK)) == NULL) {
44 <                sprintf(errmsg, "cannot find font file \"%s\"", fname);
45 <                error(USER, errmsg);
43 >        if ((pathname = getpath(fname, getrlibpath(), R_OK)) == NULL) {
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);
57 <        if ((fp = fopen(pathname, "r")) == NULL) {
58 <                sprintf(errmsg, "cannot open font file \"%s\"",
59 <                                pathname);
60 <                error(SYSTEM, errmsg);
55 <        }
56 <        wsum = hsum = ngly = 0;
57 <        while (fgetword(buf,sizeof(buf),fp) != NULL) {  /* get each glyph */
58 <                if (!isint(buf))
56 >        strcpy(f->name, fname);
57 >        f->nref = 1;
58 >        wsum = hsum = ngly = 0;                 /* get each glyph */
59 >        while ((ngv = fgetval(fp, 'i', (char *)&gn)) != EOF) {
60 >                if (ngv == 0)
61                          goto nonint;
60                gn = atoi(buf);
62                  if (gn < 1 || gn > 255) {
63                          err = "illegal";
64                          goto fonterr;
# Line 66 | Line 67 | char  *fname;
67                          err = "duplicate";
68                          goto fonterr;
69                  }
70 <                if (fgetword(buf,sizeof(buf),fp) == NULL || !isint(buf) ||
71 <                                (ngv = atoi(buf)) < 0 || ngv > 32000) {
70 >                if (fgetval(fp, 'i', (char *)&ngv) <= 0 ||
71 >                                ngv < 0 || ngv > 32000) {
72                          err = "bad # vertices for";
73                          goto fonterr;
74                  }
# Line 79 | Line 80 | char  *fname;
80                  ngv *= 2;
81                  gp = gvlist(g);
82                  while (ngv--) {
83 <                        if (fgetword(buf,sizeof(buf),fp) == NULL ||
84 <                                        !isint(buf) ||
84 <                                        (gv = atoi(buf)) < 0 || gv > 255) {
83 >                        if (fgetval(fp, 'i', (char *)&gv) <= 0 ||
84 >                                        gv < 0 || gv > 255) {
85                                  err = "bad vertex for";
86                                  goto fonterr;
87                          }
# Line 113 | Line 113 | char  *fname;
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");
127 >        eputs("out of memory in getfont()\n");
128 >        fclose(fp);
129 >        return(NULL);
130   }
131  
132  
133 < freefont(fname)                 /* free a font (free all if fname==NULL) */
134 < char  *fname;
133 > void
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;
141 <
139 >        FONT  *fl, *f;
140 >        int  i;
141 >                                        /* check reference count */
142 >        if (fnt != NULL && ((fnt->nref-- > 1) | retainfonts))
143 >                return;
144          head.next = fontlist;
145          fl = &head;
146          while ((f = fl->next) != NULL)
147 <                if (fname == NULL || !strcmp(fname, f->name)) {
147 >                if ((fnt == NULL) | (fnt == f)) {
148                          fl->next = f->next;
149                          for (i = 0; i < 256; i++)
150                                  if (f->fg[i] != NULL)
151 <                                        free((char *)f->fg[i]);
152 <                        freestr(f->name);
143 <                        free((char *)f);
151 >                                        free((void *)f->fg[i]);
152 >                        free((void *)f);
153                  } else
154                          fl = f;
155          fontlist = head.next;
# Line 148 | Line 157 | char  *fname;
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  
# Line 160 | Line 170 | register FONT  *f;             /* font */
170                  if (f->fg[*tp++&0xff] == NULL)
171                          *sp++ = 0;
172                  else
173 <                        linelen += *sp++ = 256;
173 >                        linelen += *sp++ = 255;
174          return(linelen);
175   }
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;
191          while (*tp && (gp = f->fg[*tp++&0xff]) == NULL)
192                  *sp++ = 0;
193          cis /= 2;
194 <        linelen = *sp = cis;
194 >        *sp = cis;
195          while (gp != NULL) {
196                  if (gp->nverts) {               /* regular character */
197                          linelen += *sp++ += cis - gp->left;
# Line 200 | Line 212 | int  cis;                      /* intercharacter spacing */
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;
223 >        char  *end, *tab = NULL;
224          GLYPH  *gp;
225          short  *nsp;
226          int  alen, len, width;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines