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.13 by greg, Thu Apr 14 04:50:37 1994 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 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";
# Line 14 | Line 14 | static char SCCSid[] = "$SunId$ LBL";
14  
15   #include  "otypes.h"
16  
17 + #include  "font.h"
18 +
19   /*
20   *      A text pattern is specified as the text (a file or line),
21   *  the upper left anchor point, the right motion vector, the down
# Line 23 | Line 25 | static char SCCSid[] = "$SunId$ LBL";
25   *      modifier brighttext id
26   *      2 fontfile textfile
27   *      0
28 < *      11
28 > *      11+
29   *              Ax Ay Az
30   *              Rx Ry Rz
31   *              Dx Dy Dz
32   *              foreground background
33 + *              [spacing]
34   *
35   *  For a single line, we use:
36   *
37   *      modifier brighttext id
38   *      N+2 fontfile . This is a line with N words...
39   *      0
40 < *      11
40 > *      11+
41   *              Ax Ay Az
42   *              Rx Ry Rz
43   *              Dx Dy Dz
44   *              foreground background
45 + *              [spacing]
46   *
47   *  Colortext is identical, except colors are given rather than
48   *  brightnesses.  Mixtext has foreground and background modifiers:
# Line 46 | Line 50 | static char SCCSid[] = "$SunId$ LBL";
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
89   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 112 | Line 109 | RAY  *r;
109                          sprintf(errmsg, "undefined modifier \"%s\"", modname);
110                          objerror(m, USER, errmsg);
111                  }
112 <                raytexture(r, omod);
113 <        } else if (m->otype == PAT_BTEXT) {
112 >                if (rayshade(r, omod)) {
113 >                        if (m->omod != OVOID)
114 >                                objerror(m, USER, "inappropriate modifier");
115 >                        return(1);
116 >                }
117 >        }
118 >        if (m->otype == PAT_BTEXT) {
119                  if (foreground)
120                          scalecolor(r->pcol, m->oargs.farg[9]);
121                  else
# Line 130 | Line 132 | RAY  *r;
132                                          m->oargs.farg[14]);
133                  multcolor(r->pcol, cval);
134          }
135 +        return(0);
136   }
137  
138  
# Line 138 | Line 141 | tlalloc(s)                     /* allocate and assign text line */
141   char  *s;
142   {
143          extern char  *strcpy();
144 +        register int  siz;
145          register TLINE  *tl;
146  
147 <        tl = (TLINE *)malloc(sizeof(TLINE)+1+strlen(s));
148 <        if (tl == NULL)
147 >        siz = strlen(s) + 1;
148 >        if ((tl=(TLINE *)malloc(sizeof(TLINE)+siz)) == NULL ||
149 >                        (tl->spc=(short *)malloc(siz*sizeof(short))) == NULL)
150                  error(SYSTEM, "out of memory in tlalloc");
151          tl->next = NULL;
152          strcpy(TLSTR(tl), s);
# Line 155 | Line 160 | register OBJREC  *tm;
160   {
161   #define  R      (tm->oargs.farg+3)
162   #define  D      (tm->oargs.farg+6)
163 <        extern char  *strcpy(), *fgets();
163 >        extern char  *strcpy();
164          FVECT  DxR;
165          double  d;
166          FILE  *fp;
# Line 168 | Line 173 | register OBJREC  *tm;
173          if ((t = (TEXT *)tm->os) != NULL)
174                  return(t);
175                                                  /* check arguments */
176 <        if (tm->oargs.nsargs - tndx(tm) < 1 ||
172 <                        tm->oargs.nfargs != (tm->otype == PAT_BTEXT ? 11 :
173 <                                        tm->otype == PAT_CTEXT ? 15 : 9))
176 >        if (tm->oargs.nsargs - tndx(tm) < 1 || tm->oargs.nfargs < sndx(tm))
177                  objerror(tm, USER, "bad # arguments");
178          if ((t = (TEXT *)malloc(sizeof(TEXT))) == NULL)
179                  error(SYSTEM, "out of memory in gettext");
180                                                  /* compute vectors */
181          fcross(DxR, D, R);
182          fcross(t->right, DxR, D);
183 <        d = DOT(D,D) / DOT(t->right,t->right);
183 >        d = DOT(D,D)/DOT(t->right,t->right);
184          for (i = 0; i < 3; i++)
185                  t->right[i] *= d;
186          fcross(t->down, R, DxR);
187 <        d = DOT(R,R) / DOT(t->down,t->down);
187 >        d = DOT(R,R)/DOT(t->down,t->down);
188          for (i = 0; i < 3; i++)
189                  t->down[i] *= d;
190                                                  /* get text */
# Line 198 | Line 201 | register OBJREC  *tm;
201                  tlp = tlp->next;
202          } else {                                /* text file */
203                  if ((s = getpath(tm->oargs.sarg[tndx(tm)],
204 <                                libpath, R_OK)) == NULL) {
204 >                                getlibpath(), R_OK)) == NULL) {
205                          sprintf(errmsg, "cannot find text file \"%s\"",
206                                          tm->oargs.sarg[tndx(tm)]);
207                          error(USER, errmsg);
208                  }
209                  if ((fp = fopen(s, "r")) == NULL) {
210 <                        sprintf(errmsg, "cannot open text file \"%s\"",
208 <                                        s);
210 >                        sprintf(errmsg, "cannot open text file \"%s\"", s);
211                          error(SYSTEM, errmsg);
212                  }
213                  while (fgets(linbuf, sizeof(linbuf), fp) != NULL) {
# Line 220 | Line 222 | register OBJREC  *tm;
222          tlp->next = NULL;
223                                                  /* get the font */
224          t->f = getfont(tm->oargs.sarg[fndx(tm)]);
225 +                                                /* compute character spacing */
226 +        i = sndx(tm);
227 +        d = i < tm->oargs.nfargs ? tm->oargs.farg[i] : 0.0;
228 +        i = d * 256.0;
229 +        t->tl.width = 0;
230 +        for (tlp = t->tl.next; tlp != NULL; tlp = tlp->next) {
231 +                if (i < 0)
232 +                        tlp->width = squeeztext(tlp->spc, TLSTR(tlp), t->f, -i);
233 +                else if (i > 0)
234 +                        tlp->width = proptext(tlp->spc, TLSTR(tlp), t->f, i, 3);
235 +                else
236 +                        tlp->width = uniftext(tlp->spc, TLSTR(tlp), t->f);
237 +                if (tlp->width > t->tl.width)
238 +                        t->tl.width = tlp->width;
239 +        }
240                                                  /* we're done */
241          tm->os = (char *)t;
242          return(t);
# Line 237 | Line 254 | OBJREC  *m;
254          tp = (TEXT *)m->os;
255          if (tp == NULL)
256                  return;
257 <        for (tlp = tp->tl.next; tlp != NULL; tlp = tlp->next);
258 <                free(TLSTR(tlp));
257 >        while ((tlp = tp->tl.next) != NULL) {
258 >                tp->tl.next = tlp->next;
259 >                free((char *)tlp->spc);
260 >                free((char *)tlp);
261 >        }
262          free((char *)tp);
263          m->os = NULL;
264   }
# Line 250 | Line 270 | OBJREC  *m;
270   {
271          register TEXT  *tp;
272          register TLINE  *tlp;
273 <        double  v[3], y, x;
274 <        int  col;
275 <        register int  lno;
273 >        FVECT  v;
274 >        double  y, x;
275 >        register int  i, h;
276                                  /* first, compute position in text */
277 +        tp = gettext(m);
278          v[0] = p[0] - m->oargs.farg[0];
279          v[1] = p[1] - m->oargs.farg[1];
280          v[2] = p[2] - m->oargs.farg[2];
281 <        col = x = DOT(v, tp->right);
282 <        lno = y = DOT(v, tp->down);
281 >        x = DOT(v, tp->right);
282 >        i = sndx(m);
283 >        if (i < m->oargs.nfargs)
284 >                x *= tp->f->mwidth + 256.*fabs(m->oargs.farg[i]);
285 >        else
286 >                x *= 256.;
287 >        h = x;
288 >        i = y = DOT(v, tp->down);
289          if (x < 0.0 || y < 0.0)
290                  return(0);
291 <        x -= (double)col;
292 <        y = (lno+1) - y;
293 <                                /* get the font character */
267 <        tp = gettext(m);
291 >        x -= (double)h;
292 >        y = ((i+1) - y)*256.;
293 >                                /* find the line position */
294          for (tlp = tp->tl.next; tlp != NULL; tlp = tlp->next)
295 <                if (--lno < 0)
295 >                if (--i < 0)
296                          break;
297 <        if (tlp == NULL || col >= strlen(TLSTR(tlp)))
297 >        if (tlp == NULL || h >= tlp->width)
298                  return(0);
299 <        return(inglyph(x, y, tp->f->fg[TLSTR(tlp)[col]]));
299 >        for (i = 0; (h -= tlp->spc[i]) >= 0; i++)
300 >                if (h < 256 && inglyph(h+x, y,
301 >                                tp->f->fg[TLSTR(tlp)[i]&0xff]))
302 >                        return(1);
303 >        return(0);
304   }
305  
306  
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
307   inglyph(x, y, gl)               /* (x,y) within font glyph gl? */
308 < double  x, y;
309 < GLYPH  *gl;
308 > double  x, y;           /* real coordinates in range [0,256) */
309 > register GLYPH  *gl;
310   {
311          int  n, ncross;
312          int  xlb, ylb;
313 <        register GLYPH  *p0, *p1;
313 >        int  tv;
314 >        register GORD  *p0, *p1;
315  
316          if (gl == NULL)
317                  return(0);
318 <        x *= 256.0;                     /* get glyph coordinates */
319 <        y *= 256.0;
320 <        xlb = x + 0.5;
321 <        ylb = y + 0.5;
322 <        n = *gl++;                      /* get # of vertices */
323 <        p0 = gl + 2*(n-1);              /* connect last to first */
324 <        p1 = gl;
318 >        xlb = x;
319 >        ylb = y;
320 >        if (gl->left > xlb || gl->right <= xlb ||       /* check extent */
321 >                        gl->bottom > ylb || gl->top <= ylb)
322 >                return(0);
323 >        xlb = xlb<<1 | 1;               /* add 1/2 to test points... */
324 >        ylb = ylb<<1 | 1;               /* ...so no equal comparisons */
325 >        n = gl->nverts;                 /* get # of vertices */
326 >        p0 = gvlist(gl) + 2*(n-1);      /* connect last to first */
327 >        p1 = gvlist(gl);
328          ncross = 0;
329                                          /* positive x axis cross test */
330          while (n--) {
331 <                if ((p0[1] > ylb) ^ (p1[1] > ylb))
332 <                        if (p0[0] > xlb && p1[0] > xlb)
331 >                if ((p0[1]<<1 > ylb) ^ (p1[1]<<1 > ylb)) {
332 >                        tv = p0[0]<<1 > xlb | (p1[0]<<1 > xlb) << 1;
333 >                        if (tv == 03)
334                                  ncross++;
335 <                        else if (p0[0] > xlb || p1[0] > xlb)
335 >                        else if (tv)
336                                  ncross += (p1[1] > p0[1]) ^
337                                                  ((p0[1]-y)*(p1[0]-x) >
338                                                  (p0[0]-x)*(p1[1]-y));
339 +                }
340                  p0 = p1;
341                  p1 += 2;
342          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines