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.8 by greg, Tue Aug 6 09:04:41 1991 UTC vs.
Revision 2.18 by gwlarson, Mon Aug 10 18:37:06 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4 < static char SCCSid[] = "$SunId$ LBL";
4 > static char SCCSid[] = "$SunId$ SGI";
5   #endif
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  
58 extern char  *libpath;                  /* library search path */
59
60 typedef unsigned char  GLYPH;
61
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
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 < #define  TLSTR(l)       ((char *)(l+1))
72 > #define  TLSTR(l)       ((char *)((l)+1))
73  
74   typedef struct {
75          FVECT  right, down;             /* right and down unit vectors */
# Line 78 | Line 77 | typedef struct {
77          TLINE  tl;                      /* line list */
78   }  TEXT;
79  
80 + extern char  *getlibpath();
81 +
82   extern char  *fgetword();
83  
84   TEXT  *gettext();
85  
86   TLINE  *tlalloc();
87  
87 FONT  *getfont();
88  
89 < static FONT  *fontlist = NULL;          /* our font list */
90 <
91 <
92 < 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 108 | Line 105 | RAY  *r;
105                  char  *modname = m->oargs.sarg[foreground ? 0 : 1];
106                  if (!strcmp(modname, VOIDID))
107                          omod = OVOID;
108 <                else if ((omod = modifier(modname)) == OVOID) {
108 >                else if ((omod = lastmod(objndx(m), modname)) == OVOID) {
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 130 | Line 131 | RAY  *r;
131                                          m->oargs.farg[14]);
132                  multcolor(r->pcol, cval);
133          }
134 +        return(0);
135   }
136  
137  
# Line 138 | Line 140 | 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 <        tl = (TLINE *)malloc(sizeof(TLINE)+1+strlen(s));
147 <        if (tl == NULL)
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);
# Line 155 | Line 159 | 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;
# Line 168 | Line 172 | register OBJREC  *tm;
172          if ((t = (TEXT *)tm->os) != NULL)
173                  return(t);
174                                                  /* check arguments */
175 <        if (tm->oargs.nsargs - tndx(tm) < 1 ||
172 <                        tm->oargs.nfargs != (tm->otype == PAT_BTEXT ? 11 :
173 <                                        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                  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(t->right,t->right);
183 >        if (d <= FTINY*FTINY)
184 >                objerror(tm, USER, "illegal motion vector");
185 >        d = DOT(D,D)/d;
186          for (i = 0; i < 3; i++)
187                  t->right[i] *= d;
188          fcross(t->down, R, DxR);
189 <        d = DOT(R,R) / DOT(t->down,t->down);
189 >        d = DOT(R,R)/DOT(t->down,t->down);
190          for (i = 0; i < 3; i++)
191                  t->down[i] *= d;
192                                                  /* get text */
# Line 198 | Line 203 | register OBJREC  *tm;
203                  tlp = tlp->next;
204          } else {                                /* text file */
205                  if ((s = getpath(tm->oargs.sarg[tndx(tm)],
206 <                                libpath, R_OK)) == NULL) {
206 >                                getlibpath(), R_OK)) == NULL) {
207                          sprintf(errmsg, "cannot find text file \"%s\"",
208                                          tm->oargs.sarg[tndx(tm)]);
209                          error(USER, errmsg);
210                  }
211                  if ((fp = fopen(s, "r")) == NULL) {
212 <                        sprintf(errmsg, "cannot open text file \"%s\"",
208 <                                        s);
212 >                        sprintf(errmsg, "cannot open text file \"%s\"", s);
213                          error(SYSTEM, errmsg);
214                  }
215                  while (fgets(linbuf, sizeof(linbuf), fp) != NULL) {
# Line 220 | Line 224 | register OBJREC  *tm;
224          tlp->next = NULL;
225                                                  /* get the font */
226          t->f = getfont(tm->oargs.sarg[fndx(tm)]);
227 +                                                /* compute character spacing */
228 +        i = sndx(tm);
229 +        d = i < tm->oargs.nfargs ? tm->oargs.farg[i] : 0.0;
230 +        i = d * 255.0;
231 +        t->tl.width = 0;
232 +        for (tlp = t->tl.next; tlp != NULL; tlp = tlp->next) {
233 +                if (i < 0)
234 +                        tlp->width = squeeztext(tlp->spc, TLSTR(tlp), t->f, -i);
235 +                else if (i > 0)
236 +                        tlp->width = proptext(tlp->spc, TLSTR(tlp), t->f, i, 3);
237 +                else
238 +                        tlp->width = uniftext(tlp->spc, TLSTR(tlp), t->f);
239 +                if (tlp->width > t->tl.width)
240 +                        t->tl.width = tlp->width;
241 +        }
242                                                  /* we're done */
243          tm->os = (char *)t;
244          return(t);
# Line 237 | Line 256 | OBJREC  *m;
256          tp = (TEXT *)m->os;
257          if (tp == NULL)
258                  return;
259 <        for (tlp = tp->tl.next; tlp != NULL; tlp = tlp->next);
260 <                free(TLSTR(tlp));
259 >        while ((tlp = tp->tl.next) != NULL) {
260 >                tp->tl.next = tlp->next;
261 >                free((char *)tlp->spc);
262 >                free((char *)tlp);
263 >        }
264          free((char *)tp);
265          m->os = NULL;
266   }
# Line 250 | Line 272 | OBJREC  *m;
272   {
273          register TEXT  *tp;
274          register TLINE  *tlp;
275 <        double  v[3], y, x;
276 <        int  col;
277 <        register int  lno;
275 >        FVECT  v;
276 >        double  y, x;
277 >        register int  i, h;
278                                  /* first, compute position in text */
279 +        tp = gettext(m);
280          v[0] = p[0] - m->oargs.farg[0];
281          v[1] = p[1] - m->oargs.farg[1];
282          v[2] = p[2] - m->oargs.farg[2];
283 <        col = x = DOT(v, tp->right);
284 <        lno = y = DOT(v, tp->down);
283 >        x = DOT(v, tp->right);
284 >        i = sndx(m);
285 >        if (i < m->oargs.nfargs)
286 >                x *= tp->f->mwidth + 255.*fabs(m->oargs.farg[i]);
287 >        else
288 >                x *= 255.;
289 >        h = x;
290 >        i = y = DOT(v, tp->down);
291          if (x < 0.0 || y < 0.0)
292                  return(0);
293 <        x -= (double)col;
294 <        y = (lno+1) - y;
295 <                                /* get the font character */
267 <        tp = gettext(m);
293 >        x -= (double)h;
294 >        y = ((i+1) - y)*255.;
295 >                                /* find the line position */
296          for (tlp = tp->tl.next; tlp != NULL; tlp = tlp->next)
297 <                if (--lno < 0)
297 >                if (--i < 0)
298                          break;
299 <        if (tlp == NULL || col >= strlen(TLSTR(tlp)))
299 >        if (tlp == NULL || h >= tlp->width)
300                  return(0);
301 <        return(inglyph(x, y, tp->f->fg[TLSTR(tlp)[col]]));
301 >        for (i = 0; (h -= tlp->spc[i]) >= 0; i++)
302 >                if (h < 255 && inglyph(h+x, y,
303 >                                tp->f->fg[TLSTR(tlp)[i]&0xff]))
304 >                        return(1);
305 >        return(0);
306   }
307  
308  
277 FONT *
278 getfont(fname)                          /* return font fname */
279 char  *fname;
280 {
281        char  buf[16];
282        FILE  *fp;
283        char  *pathname, *err;
284        int  gn, ngv, gv;
285        register GLYPH  *g;
286        register FONT  *f;
287
288        for (f = fontlist; f != NULL; f = f->next)
289                if (!strcmp(f->name, fname))
290                        return(f);
291                                                /* load the font file */
292        if ((pathname = getpath(fname, libpath, R_OK)) == NULL) {
293                sprintf(errmsg, "cannot find font file \"%s\"", fname);
294                error(USER, errmsg);
295        }
296        f = (FONT *)calloc(1, sizeof(FONT));
297        if (f == NULL)
298                goto memerr;
299        f->name = savestr(fname);
300        if ((fp = fopen(pathname, "r")) == NULL) {
301                sprintf(errmsg, "cannot open font file \"%s\"",
302                                pathname);
303                error(SYSTEM, errmsg);
304        }
305        while (fgetword(buf,sizeof(buf),fp) != NULL) {  /* get each glyph */
306                if (!isint(buf))
307                        goto nonint;
308                gn = atoi(buf);
309                if (gn < 0 || gn > 255) {
310                        err = "illegal";
311                        goto fonterr;
312                }
313                if (f->fg[gn] != NULL) {
314                        err = "duplicate";
315                        goto fonterr;
316                }
317                if (fgetword(buf,sizeof(buf),fp) == NULL || !isint(buf) ||
318                                (ngv = atoi(buf)) < 0 || ngv > 255) {
319                        err = "bad # vertices for";
320                        goto fonterr;
321                }
322                g = (GLYPH *)malloc((2*ngv+1)*sizeof(GLYPH));
323                if (g == NULL)
324                        goto memerr;
325                f->fg[gn] = g;
326                *g++ = ngv;
327                ngv *= 2;
328                while (ngv--) {
329                        if (fgetword(buf,sizeof(buf),fp) == NULL ||
330                                        !isint(buf) ||
331                                        (gv = atoi(buf)) < 0 || gv > 255) {
332                                err = "bad vertex for";
333                                goto fonterr;
334                        }
335                        *g++ = gv;
336                }
337        }
338        fclose(fp);
339        f->next = fontlist;
340        return(fontlist = f);
341 nonint:
342        sprintf(errmsg, "non-integer in font file \"%s\"", pathname);
343        error(USER, errmsg);
344 fonterr:
345        sprintf(errmsg, "%s character (%d) in font file \"%s\"",
346                        err, gn, pathname);
347        error(USER, errmsg);
348 memerr:
349        error(SYSTEM, "out of memory in fontglyph");
350 }
351
352
309   inglyph(x, y, gl)               /* (x,y) within font glyph gl? */
310 < double  x, y;
311 < GLYPH  *gl;
310 > double  x, y;           /* real coordinates in range [0,255) */
311 > register GLYPH  *gl;
312   {
313          int  n, ncross;
314          int  xlb, ylb;
315 <        register GLYPH  *p0, *p1;
315 >        int  tv;
316 >        register GORD  *p0, *p1;
317  
318          if (gl == NULL)
319                  return(0);
320 <        x *= 256.0;                     /* get glyph coordinates */
321 <        y *= 256.0;
322 <        xlb = x + 0.5;
323 <        ylb = y + 0.5;
324 <        n = *gl++;                      /* get # of vertices */
325 <        p0 = gl + 2*(n-1);              /* connect last to first */
326 <        p1 = gl;
320 >        xlb = x;
321 >        ylb = y;
322 >        if (gl->left > xlb || gl->right <= xlb ||       /* check extent */
323 >                        gl->bottom > ylb || gl->top <= ylb)
324 >                return(0);
325 >        xlb = xlb<<1 | 1;               /* add 1/2 to test points... */
326 >        ylb = ylb<<1 | 1;               /* ...so no equal comparisons */
327 >        n = gl->nverts;                 /* get # of vertices */
328 >        p0 = gvlist(gl) + 2*(n-1);      /* connect last to first */
329 >        p1 = gvlist(gl);
330          ncross = 0;
331                                          /* positive x axis cross test */
332          while (n--) {
333 <                if ((p0[1] > ylb) ^ (p1[1] > ylb))
334 <                        if (p0[0] > xlb && p1[0] > xlb)
333 >                if ((p0[1]<<1 > ylb) ^ (p1[1]<<1 > ylb)) {
334 >                        tv = p0[0]<<1 > xlb | (p1[0]<<1 > xlb) << 1;
335 >                        if (tv == 03)
336                                  ncross++;
337 <                        else if (p0[0] > xlb || p1[0] > xlb)
337 >                        else if (tv)
338                                  ncross += (p1[1] > p0[1]) ^
339                                                  ((p0[1]-y)*(p1[0]-x) >
340                                                  (p0[0]-x)*(p1[1]-y));
341 +                }
342                  p0 = p1;
343                  p1 += 2;
344          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines