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.6 by greg, Mon Jul 22 13:02:27 1991 UTC vs.
Revision 2.11 by greg, Fri Jun 4 17:03:11 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1990 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  
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  
74 < typedef struct font {
75 <        GLYPH  *fg[256];                /* font glyphs */
76 <        char  *name;                    /* font file name */
77 <        struct font  *next;             /* next font in list */
78 < }  FONT;
74 > typedef struct {
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  *libpath;
81 +
82   extern char  *fgetword();
83  
84 < extern GLYPH  *getglyph();
84 > TEXT  *gettext();
85  
86 < extern FONT  *getfont();
86 > TLINE  *tlalloc();
87  
74 static FONT  *fontlist = NULL;          /* our font list */
88  
76
89   text(m, r)
90   register OBJREC  *m;
91   RAY  *r;
92   {
93 <        double  v[3], y, x;
82 <        int  col, lno;
93 >        FVECT  v;
94          int  foreground;
95 <        GLYPH  *g;
85 <        register double  *ap;
86 <
87 <        if (m->oargs.nsargs - tndx(m) < 1 ||
88 <                        m->oargs.nfargs != (m->otype == PAT_BTEXT ? 11 :
89 <                                        m->otype == PAT_CTEXT ? 15 : 9))
90 <                objerror(m, USER, "bad # arguments");
91 <
92 <                                /* first, discover position in text */
93 <        ap = m->oargs.farg;
95 >                                /* get transformed position */
96          if (r->rox != NULL)
97                  multp3(v, r->rop, r->rox->b.xfm);
98          else
99                  VCOPY(v, r->rop);
100 <        v[0] -= ap[0];
101 <        v[1] -= ap[1];
100 <        v[2] -= ap[2];
101 <        col = x = DOT(v, ap+3) / DOT(ap+3, ap+3);
102 <        lno = y = DOT(v, ap+6) / DOT(ap+6, ap+6);
103 <        x -= col;
104 <        y = (lno+1) - y;
105 <                                /* get the font character, check it */
106 <        if ((g = getglyph(m, lno, col)) == NULL)
107 <                foreground = 0;
108 <        else
109 <                foreground = inglyph(x, y, g);
100 >                                /* check if we are within a text glyph */
101 >        foreground = intext(v, m);
102                                  /* modify */
103          if (m->otype == MIX_TEXT) {
104                  OBJECT  omod;
# Line 117 | Line 109 | RAY  *r;
109                          sprintf(errmsg, "undefined modifier \"%s\"", modname);
110                          objerror(m, USER, errmsg);
111                  }
112 <                raymixture(r, omod, OVOID, 1.0);
112 >                raytexture(r, omod);
113          } else if (m->otype == PAT_BTEXT) {
114                  if (foreground)
115 <                        scalecolor(r->pcol, ap[9]);
115 >                        scalecolor(r->pcol, m->oargs.farg[9]);
116                  else
117 <                        scalecolor(r->pcol, ap[10]);
117 >                        scalecolor(r->pcol, m->oargs.farg[10]);
118          } else { /* PAT_CTEXT */
119                  COLOR  cval;
120                  if (foreground)
121 <                        setcolor(cval, ap[9], ap[10], ap[11]);
121 >                        setcolor(cval, m->oargs.farg[9],
122 >                                        m->oargs.farg[10],
123 >                                        m->oargs.farg[11]);
124                  else
125 <                        setcolor(cval, ap[12], ap[13], ap[14]);
125 >                        setcolor(cval, m->oargs.farg[12],
126 >                                        m->oargs.farg[13],
127 >                                        m->oargs.farg[14]);
128                  multcolor(r->pcol, cval);
129          }
130   }
131  
132  
133 < GLYPH *
134 < getglyph(tm, lno, col)          /* get a glyph from a text description */
133 > TLINE *
134 > 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 >        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->next = NULL;
146 >        strcpy(TLSTR(tl), s);
147 >        return(tl);
148 > }
149 >
150 >
151 > TEXT *
152 > gettext(tm)                     /* get text structure for material */
153   register OBJREC  *tm;
140 int  lno;
141 int  col;
154   {
155 <        extern char  *strcpy(), *fgets();
155 > #define  R      (tm->oargs.farg+3)
156 > #define  D      (tm->oargs.farg+6)
157 >        extern char  *strcpy();
158 >        FVECT  DxR;
159 >        double  d;
160          FILE  *fp;
161          char  linbuf[512];
162 +        TEXT  *t;
163          register int  i;
164 <        register char  **txt;
164 >        register TLINE  *tlp;
165          register char  *s;
166  
167 <        if (lno < 0 || col < 0)
168 <                return(NULL);
169 <        if (tm->os == NULL) {
170 <                txt = (char **)malloc(2*sizeof(char **));
171 <                if (txt == NULL)
172 <                        goto memerr;
173 <                if (tm->oargs.nsargs - tndx(tm) > 1) {  /* single line */
174 <                        s = linbuf;
175 <                        for (i = tndx(tm)+1; i < tm->oargs.nsargs; i++) {
176 <                                strcpy(s, tm->oargs.sarg[i]);
177 <                                s += strlen(s);
178 <                                *s++ = ' ';
179 <                        }
180 <                        *--s = '\0';
181 <                        txt[0] = savqstr(linbuf);
182 <                        txt[1] = NULL;
183 <                } else {                                /* text file */
184 <                        if ((s = getpath(tm->oargs.sarg[tndx(tm)],
185 <                                        libpath, R_OK)) == NULL) {
186 <                                sprintf(errmsg, "cannot find text file \"%s\"",
187 <                                                tm->oargs.sarg[tndx(tm)]);
188 <                                error(USER, errmsg);
189 <                        }
190 <                        if ((fp = fopen(s, "r")) == NULL) {
191 <                                sprintf(errmsg, "cannot open text file \"%s\"",
175 <                                                s);
176 <                                error(SYSTEM, errmsg);
177 <                        }
178 <                        for (i=0; fgets(linbuf,sizeof(linbuf),fp)!=NULL; i++) {
179 <                                s = linbuf + strlen(linbuf) - 1;
180 <                                if (*s == '\n')
181 <                                        *s = '\0';
182 <                                txt=(char **)realloc(txt,(i+2)*sizeof(char **));
183 <                                if (txt == NULL)
184 <                                        goto memerr;
185 <                                txt[i] = savqstr(linbuf);
186 <                        }
187 <                        txt[i] = NULL;
188 <                        fclose(fp);
167 >        if ((t = (TEXT *)tm->os) != NULL)
168 >                return(t);
169 >                                                /* check arguments */
170 >        if (tm->oargs.nsargs - tndx(tm) < 1 || tm->oargs.nfargs < sndx(tm))
171 >                objerror(tm, USER, "bad # arguments");
172 >        if ((t = (TEXT *)malloc(sizeof(TEXT))) == NULL)
173 >                error(SYSTEM, "out of memory in gettext");
174 >                                                /* compute vectors */
175 >        fcross(DxR, D, R);
176 >        fcross(t->right, DxR, D);
177 >        d = DOT(D,D)/DOT(t->right,t->right);
178 >        for (i = 0; i < 3; i++)
179 >                t->right[i] *= d;
180 >        fcross(t->down, R, DxR);
181 >        d = DOT(R,R)/DOT(t->down,t->down);
182 >        for (i = 0; i < 3; i++)
183 >                t->down[i] *= d;
184 >                                                /* get text */
185 >        tlp = &t->tl;
186 >        if (tm->oargs.nsargs - tndx(tm) > 1) {  /* single line */
187 >                s = linbuf;
188 >                for (i = tndx(tm)+1; i < tm->oargs.nsargs; i++) {
189 >                        strcpy(s, tm->oargs.sarg[i]);
190 >                        s += strlen(s);
191 >                        *s++ = ' ';
192                  }
193 <                tm->os = (char *)txt;
193 >                *--s = '\0';
194 >                tlp->next = tlalloc(linbuf);
195 >                tlp = tlp->next;
196 >        } else {                                /* text file */
197 >                if ((s = getpath(tm->oargs.sarg[tndx(tm)],
198 >                                libpath, R_OK)) == NULL) {
199 >                        sprintf(errmsg, "cannot find text file \"%s\"",
200 >                                        tm->oargs.sarg[tndx(tm)]);
201 >                        error(USER, errmsg);
202 >                }
203 >                if ((fp = fopen(s, "r")) == NULL) {
204 >                        sprintf(errmsg, "cannot open text file \"%s\"", s);
205 >                        error(SYSTEM, errmsg);
206 >                }
207 >                while (fgets(linbuf, sizeof(linbuf), fp) != NULL) {
208 >                        s = linbuf + strlen(linbuf) - 1;
209 >                        if (*s == '\n')
210 >                                *s = '\0';
211 >                        tlp->next = tlalloc(linbuf);
212 >                        tlp = tlp->next;
213 >                }
214 >                fclose(fp);
215          }
216 <        txt = (char **)tm->os;
217 <        for (i = 0; i < lno; i++)
218 <                if (txt[i] == NULL)
219 <                        break;
220 <        if ((s = txt[i]) == NULL || col >= strlen(s))
221 <                return(NULL);
222 <        else
223 <                return(getfont(tm->oargs.sarg[fndx(tm)])->fg[s[col]]);
224 < memerr:
225 <        error(SYSTEM, "out of memory in getglyph");
216 >        tlp->next = NULL;
217 >                                                /* get the font */
218 >        t->f = getfont(tm->oargs.sarg[fndx(tm)]);
219 >                                                /* compute character spacing */
220 >        i = sndx(tm);
221 >        d = i < tm->oargs.nfargs ? tm->oargs.farg[i] : 0.0;
222 >        i = d * 256.0;
223 >        t->tl.width = 0;
224 >        for (tlp = t->tl.next; tlp != NULL; tlp = tlp->next) {
225 >                if (i < 0)
226 >                        tlp->width = squeeztext(tlp->spc, TLSTR(tlp), t->f, -i);
227 >                else if (i > 0)
228 >                        tlp->width = proptext(tlp->spc, TLSTR(tlp), t->f, i, 3);
229 >                else
230 >                        tlp->width = uniftext(tlp->spc, TLSTR(tlp), t->f);
231 >                if (tlp->width > t->tl.width)
232 >                        t->tl.width = tlp->width;
233 >        }
234 >                                                /* we're done */
235 >        tm->os = (char *)t;
236 >        return(t);
237 > #undef  R
238 > #undef  D
239   }
240  
241  
242 < FONT *
243 < getfont(fname)                          /* return font fname */
207 < char  *fname;
242 > freetext(m)                     /* free text structures associated with m */
243 > OBJREC  *m;
244   {
245 <        char  buf[16];
246 <        FILE  *fp;
211 <        char  *pathname, *err;
212 <        int  gn, ngv, gv;
213 <        register GLYPH  *g;
214 <        register FONT  *f;
245 >        register TEXT  *tp;
246 >        register TLINE  *tlp;
247  
248 <        for (f = fontlist; f != NULL; f = f->next)
249 <                if (!strcmp(f->name, fname))
250 <                        return(f);
251 <                                                /* load the font file */
252 <        if ((pathname = getpath(fname, libpath, R_OK)) == NULL) {
253 <                sprintf(errmsg, "cannot find font file \"%s\"", fname);
254 <                error(USER, errmsg);
248 >        tp = (TEXT *)m->os;
249 >        if (tp == NULL)
250 >                return;
251 >        while ((tlp = tp->tl.next) != NULL) {
252 >                tp->tl.next = tlp->next;
253 >                free((char *)tlp->spc);
254 >                free((char *)tlp);
255          }
256 <        f = (FONT *)calloc(1, sizeof(FONT));
257 <        if (f == NULL)
226 <                goto memerr;
227 <        f->name = savestr(fname);
228 <        if ((fp = fopen(pathname, "r")) == NULL) {
229 <                sprintf(errmsg, "cannot open font file \"%s\"",
230 <                                pathname);
231 <                error(SYSTEM, errmsg);
232 <        }
233 <        while (fgetword(buf,sizeof(buf),fp) != NULL) {  /* get each glyph */
234 <                if (!isint(buf))
235 <                        goto nonint;
236 <                gn = atoi(buf);
237 <                if (gn < 0 || gn > 255) {
238 <                        err = "illegal";
239 <                        goto fonterr;
240 <                }
241 <                if (f->fg[gn] != NULL) {
242 <                        err = "duplicate";
243 <                        goto fonterr;
244 <                }
245 <                if (fgetword(buf,sizeof(buf),fp) == NULL || !isint(buf) ||
246 <                                (ngv = atoi(buf)) < 0 || ngv > 255) {
247 <                        err = "bad # vertices for";
248 <                        goto fonterr;
249 <                }
250 <                g = (GLYPH *)malloc((2*ngv+1)*sizeof(GLYPH));
251 <                if (g == NULL)
252 <                        goto memerr;
253 <                f->fg[gn] = g;
254 <                *g++ = ngv;
255 <                ngv *= 2;
256 <                while (ngv--) {
257 <                        if (fgetword(buf,sizeof(buf),fp) == NULL ||
258 <                                        !isint(buf) ||
259 <                                        (gv = atoi(buf)) < 0 || gv > 255) {
260 <                                err = "bad vertex for";
261 <                                goto fonterr;
262 <                        }
263 <                        *g++ = gv;
264 <                }
265 <        }
266 <        fclose(fp);
267 <        f->next = fontlist;
268 <        return(fontlist = f);
269 < nonint:
270 <        sprintf(errmsg, "non-integer in font file \"%s\"", pathname);
271 <        error(USER, errmsg);
272 < fonterr:
273 <        sprintf(errmsg, "%s character (%d) in font file \"%s\"",
274 <                        err, gn, pathname);
275 <        error(USER, errmsg);
276 < memerr:
277 <        error(SYSTEM, "out of memory in fontglyph");
256 >        free((char *)tp);
257 >        m->os = NULL;
258   }
259  
260  
261 + intext(p, m)                    /* check to see if p is in text glyph */
262 + FVECT  p;
263 + OBJREC  *m;
264 + {
265 +        register TEXT  *tp;
266 +        register TLINE  *tlp;
267 +        FVECT  v;
268 +        double  y, x;
269 +        register int  i, h;
270 +                                /* first, compute position in text */
271 +        tp = gettext(m);
272 +        v[0] = p[0] - m->oargs.farg[0];
273 +        v[1] = p[1] - m->oargs.farg[1];
274 +        v[2] = p[2] - m->oargs.farg[2];
275 +        x = DOT(v, tp->right);
276 +        i = sndx(m);
277 +        if (i < m->oargs.nfargs)
278 +                x *= tp->f->mwidth + 256.*fabs(m->oargs.farg[i]);
279 +        else
280 +                x *= 256.;
281 +        h = x;
282 +        i = y = DOT(v, tp->down);
283 +        if (x < 0.0 || y < 0.0)
284 +                return(0);
285 +        x -= (double)h;
286 +        y = ((i+1) - y)*256.;
287 +                                /* find the line position */
288 +        for (tlp = tp->tl.next; tlp != NULL; tlp = tlp->next)
289 +                if (--i < 0)
290 +                        break;
291 +        if (tlp == NULL || h >= tlp->width)
292 +                return(0);
293 +        for (i = 0; (h -= tlp->spc[i]) >= 0; i++)
294 +                if (h < 256 && inglyph(h+x, y,
295 +                                tp->f->fg[TLSTR(tlp)[i]&0xff]))
296 +                        return(1);
297 +        return(0);
298 + }
299 +
300 +
301   inglyph(x, y, gl)               /* (x,y) within font glyph gl? */
302 < double  x, y;
303 < GLYPH  *gl;
302 > double  x, y;           /* real coordinates in range [0,256) */
303 > register GLYPH  *gl;
304   {
305          int  n, ncross;
306          int  xlb, ylb;
307 <        register GLYPH  *p0, *p1;
307 >        int  tv;
308 >        register GORD  *p0, *p1;
309  
310 <        if (x < 0.0 || y < 0.0)
310 >        if (gl == NULL)
311                  return(0);
312 <        x *= 256.0;                     /* get glyph coordinates */
313 <        y *= 256.0;
314 <        xlb = x + 0.5;
315 <        ylb = y + 0.5;
316 <        n = *gl++;                      /* get # of vertices */
317 <        p0 = gl + 2*(n-1);              /* connect last to first */
318 <        p1 = gl;
312 >        xlb = x;
313 >        ylb = y;
314 >        if (gl->left > xlb || gl->right <= xlb ||       /* check extent */
315 >                        gl->bottom > ylb || gl->top <= ylb)
316 >                return(0);
317 >        xlb = xlb<<1 | 1;               /* add 1/2 to test points... */
318 >        ylb = ylb<<1 | 1;               /* ...so no equal comparisons */
319 >        n = gl->nverts;                 /* get # of vertices */
320 >        p0 = gvlist(gl) + 2*(n-1);      /* connect last to first */
321 >        p1 = gvlist(gl);
322          ncross = 0;
323                                          /* positive x axis cross test */
324          while (n--) {
325 <                if ((p0[1] > ylb) ^ (p1[1] > ylb))
326 <                        if (p0[0] > xlb && p1[0] > xlb)
325 >                if ((p0[1]<<1 > ylb) ^ (p1[1]<<1 > ylb)) {
326 >                        tv = p0[0]<<1 > xlb | (p1[0]<<1 > xlb) << 1;
327 >                        if (tv == 03)
328                                  ncross++;
329 <                        else if (p0[0] > xlb || p1[0] > xlb)
329 >                        else if (tv)
330                                  ncross += (p1[1] > p0[1]) ^
331                                                  ((p0[1]-y)*(p1[0]-x) >
332                                                  (p0[0]-x)*(p1[1]-y));
333 +                }
334                  p0 = p1;
335                  p1 += 2;
336          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines