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 2.2 by greg, Sat Jun 6 07:40:23 1992 UTC vs.
Revision 2.7 by greg, Fri Oct 2 16:20:26 1992 UTC

# Line 25 | 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 48 | 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  
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  
# Line 70 | Line 77 | typedef struct {
77          TLINE  tl;                      /* line list */
78   }  TEXT;
79  
80 + extern char  *libpath;
81 +
82   extern char  *fgetword();
83  
84   TEXT  *gettext();
# Line 126 | Line 135 | tlalloc(s)                     /* allocate and assign text line */
135   char  *s;
136   {
137          extern char  *strcpy();
138 +        register int  siz;
139          register TLINE  *tl;
140  
141 <        tl = (TLINE *)malloc(sizeof(TLINE)+1+strlen(s));
142 <        if (tl == NULL)
141 >        siz = strlen(s) + 1;
142 >        if ((tl=(TLINE *)malloc(sizeof(TLINE)+siz)) == NULL ||
143 >                        (tl->spc=(short *)malloc(siz*sizeof(short))) == NULL)
144                  error(SYSTEM, "out of memory in tlalloc");
145 +        tl->spc = NULL;
146          tl->next = NULL;
147          strcpy(TLSTR(tl), s);
148          return(tl);
# Line 156 | Line 168 | register OBJREC  *tm;
168          if ((t = (TEXT *)tm->os) != NULL)
169                  return(t);
170                                                  /* check arguments */
171 <        if (tm->oargs.nsargs - tndx(tm) < 1 ||
160 <                        tm->oargs.nfargs != (tm->otype == PAT_BTEXT ? 11 :
161 <                                        tm->otype == PAT_CTEXT ? 15 : 9))
171 >        if (tm->oargs.nsargs - tndx(tm) < 1 || tm->oargs.nfargs < sndx(tm))
172                  objerror(tm, USER, "bad # arguments");
173          if ((t = (TEXT *)malloc(sizeof(TEXT))) == NULL)
174 <                error(SYSTEM, "out of memory in gettext");
174 >                goto memerr;
175                                                  /* compute vectors */
176          fcross(DxR, D, R);
177          fcross(t->right, DxR, D);
# Line 192 | Line 202 | register OBJREC  *tm;
202                          error(USER, errmsg);
203                  }
204                  if ((fp = fopen(s, "r")) == NULL) {
205 <                        sprintf(errmsg, "cannot open text file \"%s\"",
196 <                                        s);
205 >                        sprintf(errmsg, "cannot open text file \"%s\"", s);
206                          error(SYSTEM, errmsg);
207                  }
208                  while (fgets(linbuf, sizeof(linbuf), fp) != NULL) {
# Line 208 | Line 217 | register OBJREC  *tm;
217          tlp->next = NULL;
218                                                  /* get the font */
219          t->f = getfont(tm->oargs.sarg[fndx(tm)]);
220 +                                                /* compute character spacing */
221 +        i = sndx(tm);
222 +        d = i < tm->oargs.nfargs ? tm->oargs.farg[i] : 0.0;
223 +        i = d * 256.0;
224 +        t->tl.width = 0;
225 +        for (tlp = t->tl.next; tlp != NULL; tlp = tlp->next) {
226 +                if ((tlp->spc = (short *)malloc(
227 +                                (strlen(TLSTR(tlp))+1)*sizeof(short))) == NULL)
228 +                        goto memerr;
229 +                if (i < 0)
230 +                        tlp->width = squeeztext(tlp->spc, TLSTR(tlp), t->f, -i);
231 +                else if (i > 0)
232 +                        tlp->width = proptext(tlp->spc, TLSTR(tlp), t->f, i, 3);
233 +                else
234 +                        tlp->width = uniftext(tlp->spc, TLSTR(tlp), t->f);
235 +                if (tlp->width > t->tl.width)
236 +                        t->tl.width = tlp->width;
237 +        }
238                                                  /* we're done */
239          tm->os = (char *)t;
240          return(t);
241 + memerr:
242 +        error(SYSTEM, "out of memory in gettext");
243   #undef  R
244   #undef  D
245   }
# Line 225 | 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);
257 >        for (tlp = tp->tl.next; tlp != NULL; tlp = tlp->next) {
258 >                free((char *)tlp->spc);
259                  free((char *)tlp);
260 +        }
261          free((char *)tp);
262          m->os = NULL;
263   }
# Line 240 | Line 271 | OBJREC  *m;
271          register TLINE  *tlp;
272          FVECT  v;
273          double  y, x;
274 <        int  col;
244 <        register int  lno;
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 + 256.*fabs(m->oargs.farg[i]);
284 >        else
285 >                x *= 256.;
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 */
290 >        x -= (double)h;
291 >        y = ((i+1) - y)*256.;
292 >                                /* find the line position */
293          for (tlp = tp->tl.next; tlp != NULL; tlp = tlp->next)
294 <                if (--lno < 0)
294 >                if (--i < 0)
295                          break;
296 <        if (tlp == NULL || col >= strlen(TLSTR(tlp)))
296 >        if (tlp == NULL || h >= tlp->width)
297                  return(0);
298 <        return(inglyph(x, y, tp->f->fg[TLSTR(tlp)[col]&0xff]));
298 >        for (i = 0; (h -= tlp->spc[i]) >= 0; i++)
299 >                if (h < 256 && inglyph(h+x, y,
300 >                                tp->f->fg[TLSTR(tlp)[i]&0xff]))
301 >                        return(1);
302 >        return(0);
303   }
304  
305  
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,256) */
308 > register GLYPH  *gl;
309   {
310          int  n, ncross;
311          int  xlb, ylb;
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;
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