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

Comparing ray/src/rt/text.c (file contents):
Revision 1.7 by greg, Mon Aug 5 09:32:12 1991 UTC vs.
Revision 2.16 by greg, Sat Jun 22 09:48:52 1996 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 6 | Line 6 | static char SCCSid[] = "$SunId$ LBL";
6  
7   /*
8   *  text.c - functions for text patterns and mixtures.
9 *
10 *     11/12/86
9   */
10  
11   #include  "ray.h"
12  
13   #include  "otypes.h"
14  
15 + #include  "font.h"
16 +
17   /*
18   *      A text pattern is specified as the text (a file or line),
19   *  the upper left anchor point, the right motion vector, the down
# Line 23 | Line 23 | static char SCCSid[] = "$SunId$ LBL";
23   *      modifier brighttext id
24   *      2 fontfile textfile
25   *      0
26 < *      11
26 > *      11+
27   *              Ax Ay Az
28   *              Rx Ry Rz
29   *              Dx Dy Dz
30   *              foreground background
31 + *              [spacing]
32   *
33   *  For a single line, we use:
34   *
35   *      modifier brighttext id
36   *      N+2 fontfile . This is a line with N words...
37   *      0
38 < *      11
38 > *      11+
39   *              Ax Ay Az
40   *              Rx Ry Rz
41   *              Dx Dy Dz
42   *              foreground background
43 + *              [spacing]
44   *
45   *  Colortext is identical, except colors are given rather than
46 < *  brightnesses.  Mixtext has foreground and background modifiers:
46 > *  brightnesses.
47   *
48 + *  Mixtext has foreground and background modifiers:
49 + *
50   *      modifier mixtext id
51   *      4+ foremod backmod fontfile text..
52   *      0
53 < *      9
53 > *      9+
54   *              Ax Ay Az
55   *              Rx Ry Rz
56   *              Dx Dy Dz
57 + *              [spacing]
58   */
59  
60   #define  fndx(m)        ((m)->otype==MIX_TEXT ? 2 : 0)
61   #define  tndx(m)        ((m)->otype==MIX_TEXT ? 3 : 1)
62 + #define  sndx(m)        ((m)->otype==PAT_BTEXT ? 11 : \
63 +                                (m)->otype==PAT_CTEXT ? 15 : 9)
64  
65 < extern char  *libpath;                  /* library search path */
65 > typedef struct tline {
66 >        struct tline  *next;            /* pointer to next line */
67 >        short  *spc;                    /* character spacing */
68 >        int  width;                     /* total line width */
69 >                                        /* followed by the string */
70 > }  TLINE;
71  
72 < typedef unsigned char  GLYPH;
72 > #define  TLSTR(l)       ((char *)((l)+1))
73  
62 typedef struct font {
63        GLYPH  *fg[256];                /* font glyphs */
64        char  *name;                    /* font file name */
65        struct font  *next;             /* next font in list */
66 }  FONT;
67
74   typedef struct {
69        char  **t;                      /* text array */
75          FVECT  right, down;             /* right and down unit vectors */
76          FONT  *f;                       /* our font */
77 +        TLINE  tl;                      /* line list */
78   }  TEXT;
79  
80 + extern char  *getlibpath();
81 +
82   extern char  *fgetword();
83  
84   TEXT  *gettext();
85  
86 < FONT  *getfont();
86 > TLINE  *tlalloc();
87  
80 static FONT  *fontlist = NULL;          /* our font list */
88  
89 <
83 < text(m, r)
89 > do_text(m, r)
90   register OBJREC  *m;
91   RAY  *r;
92   {
93 <        double  v[3];
93 >        FVECT  v;
94          int  foreground;
95                                  /* get transformed position */
96          if (r->rox != NULL)
# Line 103 | Line 109 | RAY  *r;
109                          sprintf(errmsg, "undefined modifier \"%s\"", modname);
110                          objerror(m, USER, errmsg);
111                  }
112 <                raytexture(r, omod);
112 >                if (rayshade(r, omod)) {
113 >                        if (m->omod != OVOID)
114 >                                objerror(m, USER, "inappropriate modifier");
115 >                        return(1);
116 >                }
117          } else if (m->otype == PAT_BTEXT) {
118                  if (foreground)
119                          scalecolor(r->pcol, m->oargs.farg[9]);
# Line 121 | Line 131 | RAY  *r;
131                                          m->oargs.farg[14]);
132                  multcolor(r->pcol, cval);
133          }
134 +        return(0);
135   }
136  
137  
138 + TLINE *
139 + tlalloc(s)                      /* allocate and assign text line */
140 + char  *s;
141 + {
142 +        extern char  *strcpy();
143 +        register int  siz;
144 +        register TLINE  *tl;
145 +
146 +        siz = strlen(s) + 1;
147 +        if ((tl=(TLINE *)malloc(sizeof(TLINE)+siz)) == NULL ||
148 +                        (tl->spc=(short *)malloc(siz*sizeof(short))) == NULL)
149 +                error(SYSTEM, "out of memory in tlalloc");
150 +        tl->next = NULL;
151 +        strcpy(TLSTR(tl), s);
152 +        return(tl);
153 + }
154 +
155 +
156   TEXT *
157   gettext(tm)                     /* get text structure for material */
158   register OBJREC  *tm;
159   {
160   #define  R      (tm->oargs.farg+3)
161   #define  D      (tm->oargs.farg+6)
162 <        extern char  *strcpy(), *fgets();
162 >        extern char  *strcpy();
163          FVECT  DxR;
164          double  d;
165          FILE  *fp;
166          char  linbuf[512];
167 <        register TEXT  *t;
167 >        TEXT  *t;
168          register int  i;
169 +        register TLINE  *tlp;
170          register char  *s;
171  
172          if ((t = (TEXT *)tm->os) != NULL)
173                  return(t);
174                                                  /* check arguments */
175 <        if (tm->oargs.nsargs - tndx(tm) < 1 ||
146 <                        tm->oargs.nfargs != (tm->otype == PAT_BTEXT ? 11 :
147 <                                        tm->otype == PAT_CTEXT ? 15 : 9))
175 >        if (tm->oargs.nsargs - tndx(tm) < 1 || tm->oargs.nfargs < sndx(tm))
176                  objerror(tm, USER, "bad # arguments");
177          if ((t = (TEXT *)malloc(sizeof(TEXT))) == NULL)
178 <                goto memerr;
178 >                error(SYSTEM, "out of memory in gettext");
179                                                  /* compute vectors */
180          fcross(DxR, D, R);
181          fcross(t->right, DxR, D);
182 <        d = DOT(D,D) / DOT(t->right,t->right);
182 >        d = DOT(D,D)/DOT(t->right,t->right);
183          for (i = 0; i < 3; i++)
184                  t->right[i] *= d;
185          fcross(t->down, R, DxR);
186 <        d = DOT(R,R) / DOT(t->down,t->down);
186 >        d = DOT(R,R)/DOT(t->down,t->down);
187          for (i = 0; i < 3; i++)
188                  t->down[i] *= d;
189                                                  /* get text */
190 <        t->t = (char **)malloc(2*sizeof(char **));
163 <        if (t->t == NULL)
164 <                goto memerr;
190 >        tlp = &t->tl;
191          if (tm->oargs.nsargs - tndx(tm) > 1) {  /* single line */
192                  s = linbuf;
193                  for (i = tndx(tm)+1; i < tm->oargs.nsargs; i++) {
# Line 170 | Line 196 | register OBJREC  *tm;
196                          *s++ = ' ';
197                  }
198                  *--s = '\0';
199 <                t->t[0] = savqstr(linbuf);
200 <                t->t[1] = NULL;
199 >                tlp->next = tlalloc(linbuf);
200 >                tlp = tlp->next;
201          } else {                                /* text file */
202                  if ((s = getpath(tm->oargs.sarg[tndx(tm)],
203 <                                libpath, R_OK)) == NULL) {
203 >                                getlibpath(), R_OK)) == NULL) {
204                          sprintf(errmsg, "cannot find text file \"%s\"",
205                                          tm->oargs.sarg[tndx(tm)]);
206                          error(USER, errmsg);
207                  }
208                  if ((fp = fopen(s, "r")) == NULL) {
209 <                        sprintf(errmsg, "cannot open text file \"%s\"",
184 <                                        s);
209 >                        sprintf(errmsg, "cannot open text file \"%s\"", s);
210                          error(SYSTEM, errmsg);
211                  }
212 <                for (i=0; fgets(linbuf,sizeof(linbuf),fp)!=NULL; i++) {
212 >                while (fgets(linbuf, sizeof(linbuf), fp) != NULL) {
213                          s = linbuf + strlen(linbuf) - 1;
214                          if (*s == '\n')
215                                  *s = '\0';
216 <                        t->t=(char **)realloc((char *)t->t,
217 <                                        (i+2)*sizeof(char **));
193 <                        if (t->t == NULL)
194 <                                goto memerr;
195 <                        t->t[i] = savqstr(linbuf);
216 >                        tlp->next = tlalloc(linbuf);
217 >                        tlp = tlp->next;
218                  }
197                t->t[i] = NULL;
219                  fclose(fp);
220          }
221 +        tlp->next = NULL;
222                                                  /* get the font */
223          t->f = getfont(tm->oargs.sarg[fndx(tm)]);
224 +                                                /* compute character spacing */
225 +        i = sndx(tm);
226 +        d = i < tm->oargs.nfargs ? tm->oargs.farg[i] : 0.0;
227 +        i = d * 255.0;
228 +        t->tl.width = 0;
229 +        for (tlp = t->tl.next; tlp != NULL; tlp = tlp->next) {
230 +                if (i < 0)
231 +                        tlp->width = squeeztext(tlp->spc, TLSTR(tlp), t->f, -i);
232 +                else if (i > 0)
233 +                        tlp->width = proptext(tlp->spc, TLSTR(tlp), t->f, i, 3);
234 +                else
235 +                        tlp->width = uniftext(tlp->spc, TLSTR(tlp), t->f);
236 +                if (tlp->width > t->tl.width)
237 +                        t->tl.width = tlp->width;
238 +        }
239                                                  /* we're done */
240          tm->os = (char *)t;
241          return(t);
205 memerr:
206        error(SYSTEM, "out of memory in gettext");
242   #undef  R
243   #undef  D
244   }
# Line 213 | Line 248 | freetext(m)                    /* free text structures associated with
248   OBJREC  *m;
249   {
250          register TEXT  *tp;
251 <        register int  i;
251 >        register TLINE  *tlp;
252  
253          tp = (TEXT *)m->os;
254          if (tp == NULL)
255                  return;
256 <        for (i = 0; tp->t[i] != NULL; i++)
257 <                freeqstr(tp->t[i]);
258 <        free((char *)tp->t);
256 >        while ((tlp = tp->tl.next) != NULL) {
257 >                tp->tl.next = tlp->next;
258 >                free((char *)tlp->spc);
259 >                free((char *)tlp);
260 >        }
261          free((char *)tp);
262          m->os = NULL;
263   }
# Line 228 | Line 265 | OBJREC  *m;
265  
266   intext(p, m)                    /* check to see if p is in text glyph */
267   FVECT  p;
268 < register OBJREC  *m;
268 > OBJREC  *m;
269   {
270          register TEXT  *tp;
271 <        register int  i;
272 <        double  v[3], y, x;
273 <        int  col, lno;
271 >        register TLINE  *tlp;
272 >        FVECT  v;
273 >        double  y, x;
274 >        register int  i, h;
275                                  /* first, compute position in text */
276 +        tp = gettext(m);
277          v[0] = p[0] - m->oargs.farg[0];
278          v[1] = p[1] - m->oargs.farg[1];
279          v[2] = p[2] - m->oargs.farg[2];
280 <        col = x = DOT(v, tp->right);
281 <        lno = y = DOT(v, tp->down);
280 >        x = DOT(v, tp->right);
281 >        i = sndx(m);
282 >        if (i < m->oargs.nfargs)
283 >                x *= tp->f->mwidth + 255.*fabs(m->oargs.farg[i]);
284 >        else
285 >                x *= 255.;
286 >        h = x;
287 >        i = y = DOT(v, tp->down);
288          if (x < 0.0 || y < 0.0)
289                  return(0);
290 <        x -= (double)col;
291 <        y = (lno+1) - y;
292 <                                /* get the font character */
293 <        tp = gettext(m);
294 <        for (i = 0; i < lno; i++)
295 <                if (tp->t[i] == NULL)
296 <                        return(0);
252 <        if (col >= strlen(tp->t[i]))
290 >        x -= (double)h;
291 >        y = ((i+1) - y)*255.;
292 >                                /* find the line position */
293 >        for (tlp = tp->tl.next; tlp != NULL; tlp = tlp->next)
294 >                if (--i < 0)
295 >                        break;
296 >        if (tlp == NULL || h >= tlp->width)
297                  return(0);
298 <        return(inglyph(x, y, tp->f->fg[tp->t[i][col]]));
298 >        for (i = 0; (h -= tlp->spc[i]) >= 0; i++)
299 >                if (h < 255 && inglyph(h+x, y,
300 >                                tp->f->fg[TLSTR(tlp)[i]&0xff]))
301 >                        return(1);
302 >        return(0);
303   }
304  
305  
258 FONT *
259 getfont(fname)                          /* return font fname */
260 char  *fname;
261 {
262        char  buf[16];
263        FILE  *fp;
264        char  *pathname, *err;
265        int  gn, ngv, gv;
266        register GLYPH  *g;
267        register FONT  *f;
268
269        for (f = fontlist; f != NULL; f = f->next)
270                if (!strcmp(f->name, fname))
271                        return(f);
272                                                /* load the font file */
273        if ((pathname = getpath(fname, libpath, R_OK)) == NULL) {
274                sprintf(errmsg, "cannot find font file \"%s\"", fname);
275                error(USER, errmsg);
276        }
277        f = (FONT *)calloc(1, sizeof(FONT));
278        if (f == NULL)
279                goto memerr;
280        f->name = savestr(fname);
281        if ((fp = fopen(pathname, "r")) == NULL) {
282                sprintf(errmsg, "cannot open font file \"%s\"",
283                                pathname);
284                error(SYSTEM, errmsg);
285        }
286        while (fgetword(buf,sizeof(buf),fp) != NULL) {  /* get each glyph */
287                if (!isint(buf))
288                        goto nonint;
289                gn = atoi(buf);
290                if (gn < 0 || gn > 255) {
291                        err = "illegal";
292                        goto fonterr;
293                }
294                if (f->fg[gn] != NULL) {
295                        err = "duplicate";
296                        goto fonterr;
297                }
298                if (fgetword(buf,sizeof(buf),fp) == NULL || !isint(buf) ||
299                                (ngv = atoi(buf)) < 0 || ngv > 255) {
300                        err = "bad # vertices for";
301                        goto fonterr;
302                }
303                g = (GLYPH *)malloc((2*ngv+1)*sizeof(GLYPH));
304                if (g == NULL)
305                        goto memerr;
306                f->fg[gn] = g;
307                *g++ = ngv;
308                ngv *= 2;
309                while (ngv--) {
310                        if (fgetword(buf,sizeof(buf),fp) == NULL ||
311                                        !isint(buf) ||
312                                        (gv = atoi(buf)) < 0 || gv > 255) {
313                                err = "bad vertex for";
314                                goto fonterr;
315                        }
316                        *g++ = gv;
317                }
318        }
319        fclose(fp);
320        f->next = fontlist;
321        return(fontlist = f);
322 nonint:
323        sprintf(errmsg, "non-integer in font file \"%s\"", pathname);
324        error(USER, errmsg);
325 fonterr:
326        sprintf(errmsg, "%s character (%d) in font file \"%s\"",
327                        err, gn, pathname);
328        error(USER, errmsg);
329 memerr:
330        error(SYSTEM, "out of memory in fontglyph");
331 }
332
333
306   inglyph(x, y, gl)               /* (x,y) within font glyph gl? */
307 < double  x, y;
308 < GLYPH  *gl;
307 > double  x, y;           /* real coordinates in range [0,255) */
308 > register GLYPH  *gl;
309   {
310          int  n, ncross;
311          int  xlb, ylb;
312 <        register GLYPH  *p0, *p1;
312 >        int  tv;
313 >        register GORD  *p0, *p1;
314  
315          if (gl == NULL)
316                  return(0);
317 <        x *= 256.0;                     /* get glyph coordinates */
318 <        y *= 256.0;
319 <        xlb = x + 0.5;
320 <        ylb = y + 0.5;
321 <        n = *gl++;                      /* get # of vertices */
322 <        p0 = gl + 2*(n-1);              /* connect last to first */
323 <        p1 = gl;
317 >        xlb = x;
318 >        ylb = y;
319 >        if (gl->left > xlb || gl->right <= xlb ||       /* check extent */
320 >                        gl->bottom > ylb || gl->top <= ylb)
321 >                return(0);
322 >        xlb = xlb<<1 | 1;               /* add 1/2 to test points... */
323 >        ylb = ylb<<1 | 1;               /* ...so no equal comparisons */
324 >        n = gl->nverts;                 /* get # of vertices */
325 >        p0 = gvlist(gl) + 2*(n-1);      /* connect last to first */
326 >        p1 = gvlist(gl);
327          ncross = 0;
328                                          /* positive x axis cross test */
329          while (n--) {
330 <                if ((p0[1] > ylb) ^ (p1[1] > ylb))
331 <                        if (p0[0] > xlb && p1[0] > xlb)
330 >                if ((p0[1]<<1 > ylb) ^ (p1[1]<<1 > ylb)) {
331 >                        tv = p0[0]<<1 > xlb | (p1[0]<<1 > xlb) << 1;
332 >                        if (tv == 03)
333                                  ncross++;
334 <                        else if (p0[0] > xlb || p1[0] > xlb)
334 >                        else if (tv)
335                                  ncross += (p1[1] > p0[1]) ^
336                                                  ((p0[1]-y)*(p1[0]-x) >
337                                                  (p0[0]-x)*(p1[1]-y));
338 +                }
339                  p0 = p1;
340                  p1 += 2;
341          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines