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

Comparing ray/src/rt/func.c (file contents):
Revision 1.8 by greg, Sat Apr 7 16:12:56 1990 UTC vs.
Revision 2.21 by greg, Thu Feb 12 18:55:50 2004 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1986 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  func.c - interface to calcomp functions.
9 *
10 *     4/7/86
6   */
7  
8 + #include "copyright.h"
9 +
10   #include  "ray.h"
11  
12 + #include  "paths.h"
13 +
14   #include  "otypes.h"
15  
16 + #include  "func.h"
17  
18 typedef struct {
19        double  xfm[4][4];              /* transform matrix */
20        double  sca;                    /* scalefactor */
21 }  XF;
18  
19 < static OBJREC  *fobj;           /* current function object */
20 < static RAY  *fray;              /* current function ray */
21 < static XF  fxf;                 /* current transformation */
19 > #define  INITFILE       "rayinit.cal"
20 > #define  CALSUF         ".cal"
21 > #define  LCALSUF        4
22 > char  REFVNAME[] = "`FILE_REFCNT";
23  
24 + XF  unitxf = {                  /* identity transform */
25 +        {{1.0, 0.0, 0.0, 0.0},
26 +        {0.0, 1.0, 0.0, 0.0},
27 +        {0.0, 0.0, 1.0, 0.0},
28 +        {0.0, 0.0, 0.0, 1.0}},
29 +        1.0
30 + };
31  
32 < setmap(m, r, xfm, sca)          /* set channels for function call */
32 > XF  funcxf;                     /* current transformation */
33 > static OBJREC  *fobj = NULL;    /* current function object */
34 > static RAY  *fray = NULL;       /* current function ray */
35 >
36 > static double  l_erf(char *), l_erfc(char *), l_arg(char *);
37 >
38 >
39 > MFUNC *
40 > getfunc(m, ff, ef, dofwd)       /* get function for this modifier */
41   OBJREC  *m;
42 < register RAY  *r;
43 < double  xfm[4][4];
44 < double  sca;
42 > int  ff;
43 > unsigned int  ef;
44 > int  dofwd;
45   {
46 <        extern double  l_noise3(), l_noise3a(), l_noise3b(), l_noise3c();
47 <        extern double  l_hermite(), l_fnoise3(), l_arg();
48 <        extern long  eclock;
49 <        static char  *initfile = "rayinit.cal";
50 <
51 <        if (initfile != NULL) {
46 >        static char  initfile[] = INITFILE;
47 >        char  sbuf[MAXSTR];
48 >        register char  **arg;
49 >        register MFUNC  *f;
50 >        int  ne, na;
51 >        register int  i;
52 >                                        /* check to see if done already */
53 >        if ((f = (MFUNC *)m->os) != NULL)
54 >                return(f);
55 >        fobj = NULL; fray = NULL;
56 >        if (initfile[0]) {              /* initialize on first call */
57 >                esupport |= E_VARIABLE|E_FUNCTION|E_INCHAN|E_RCONST|E_REDEFW;
58 >                esupport &= ~(E_OUTCHAN);
59 >                setcontext("");
60 >                scompile("Dx=$1;Dy=$2;Dz=$3;", NULL, 0);
61 >                scompile("Nx=$4;Ny=$5;Nz=$6;", NULL, 0);
62 >                scompile("Px=$7;Py=$8;Pz=$9;", NULL, 0);
63 >                scompile("T=$10;Ts=$25;Rdot=$11;", NULL, 0);
64 >                scompile("S=$12;Tx=$13;Ty=$14;Tz=$15;", NULL, 0);
65 >                scompile("Ix=$16;Iy=$17;Iz=$18;", NULL, 0);
66 >                scompile("Jx=$19;Jy=$20;Jz=$21;", NULL, 0);
67 >                scompile("Kx=$22;Ky=$23;Kz=$24;", NULL, 0);
68 >                scompile("Lu=$26;Lv=$27;", NULL, 0);
69 >                funset("arg", 1, '=', l_arg);
70 >                funset("erf", 1, ':', l_erf);
71 >                funset("erfc", 1, ':', l_erfc);
72 >                setnoisefuncs();
73 >                setprismfuncs();
74                  loadfunc(initfile);
75 <                scompile(NULL, "Dx=$1;Dy=$2;Dz=$3;");
42 <                scompile(NULL, "Nx=$4;Ny=$5;Nz=$6;");
43 <                scompile(NULL, "Px=$7;Py=$8;Pz=$9;");
44 <                scompile(NULL, "T=$10;Rdot=$11;");
45 <                scompile(NULL, "S=$12;Tx=$13;Ty=$14;Tz=$15;");
46 <                scompile(NULL, "Ix=$16;Iy=$17;Iz=$18;");
47 <                scompile(NULL, "Jx=$19;Jy=$20;Jz=$21;");
48 <                scompile(NULL, "Kx=$22;Ky=$23;Kz=$24;");
49 <                funset("arg", 1, l_arg);
50 <                funset("noise3", 3, l_noise3);
51 <                funset("noise3a", 3, l_noise3a);
52 <                funset("noise3b", 3, l_noise3b);
53 <                funset("noise3c", 3, l_noise3c);
54 <                funset("hermite", 5, l_hermite);
55 <                funset("fnoise3", 3, l_fnoise3);
56 <                initfile = NULL;
75 >                initfile[0] = '\0';
76          }
77 <        fobj = m;
78 <        fray = r;
79 <        fxf.sca = r->robs * sca;
80 <        multmat4(fxf.xfm, r->robx, xfm);
81 <        eclock++;               /* notify expression evaluator */
77 >        if ((na = m->oargs.nsargs) <= ff)
78 >                goto toofew;
79 >        arg = m->oargs.sarg;
80 >        if ((f = (MFUNC *)calloc(1, sizeof(MFUNC))) == NULL)
81 >                goto memerr;
82 >        i = strlen(arg[ff]);                    /* set up context */
83 >        if (i == 1 && arg[ff][0] == '.')
84 >                setcontext(f->ctx = "");        /* "." means no file */
85 >        else {
86 >                strcpy(sbuf,arg[ff]);           /* file name is context */
87 >                if (i > LCALSUF && !strcmp(sbuf+i-LCALSUF, CALSUF))
88 >                        sbuf[i-LCALSUF] = '\0'; /* remove suffix */
89 >                setcontext(f->ctx = savestr(sbuf));
90 >                if (!vardefined(REFVNAME)) {    /* file loaded? */
91 >                        loadfunc(arg[ff]);
92 >                        varset(REFVNAME, '=', 1.0);
93 >                } else                          /* reference_count++ */
94 >                        varset(REFVNAME, '=', varvalue(REFVNAME)+1.0);
95 >        }
96 >        curfunc = NULL;                 /* parse expressions */
97 >        sprintf(sbuf, "%s \"%s\"", ofun[m->otype].funame, m->oname);
98 >        for (i=0, ne=0; ef && i < na; i++, ef>>=1)
99 >                if (ef & 1) {                   /* flagged as an expression? */
100 >                        if (ne >= MAXEXPR)
101 >                                objerror(m, INTERNAL, "too many expressions");
102 >                        initstr(arg[i], sbuf, 0);
103 >                        f->ep[ne++] = getE1();
104 >                        if (nextc != EOF)
105 >                                syntax("unexpected character");
106 >                }
107 >        if (ef)
108 >                goto toofew;
109 >        if (i <= ff)                    /* find transform args */
110 >                i = ff+1;
111 >        while (i < na && arg[i][0] != '-')
112 >                i++;
113 >        if (i == na)                    /* no transform */
114 >                f->f = f->b = &unitxf;
115 >        else {                          /* get transform */
116 >                if ((f->b = (XF *)malloc(sizeof(XF))) == NULL)
117 >                        goto memerr;
118 >                if (invxf(f->b, na-i, arg+i) != na-i)
119 >                        objerror(m, USER, "bad transform");
120 >                if (f->b->sca < 0.0)
121 >                        f->b->sca = -f->b->sca;
122 >                if (dofwd) {                    /* do both transforms */
123 >                        if ((f->f = (XF *)malloc(sizeof(XF))) == NULL)
124 >                                goto memerr;
125 >                        xf(f->f, na-i, arg+i);
126 >                        if (f->f->sca < 0.0)
127 >                                f->f->sca = -f->f->sca;
128 >                }
129 >        }
130 >        m->os = (char *)f;
131 >        return(f);
132 > toofew:
133 >        objerror(m, USER, "too few string arguments");
134 > memerr:
135 >        error(SYSTEM, "out of memory in getfunc");
136   }
137  
138  
139 < setfunc(m, r)                           /* simplified interface to setmap */
140 < register OBJREC  *m;
141 < RAY  *r;
139 > void
140 > freefunc(m)                     /* free memory associated with modifier */
141 > OBJREC  *m;
142   {
143 <        register XF  *mxf;
143 >        register MFUNC  *f;
144 >        register int  i;
145  
146 <        if ((mxf = (XF *)m->os) == NULL) {
147 <                register int  n;
148 <                register char  **sa;
149 <
150 <                for (n = m->oargs.nsargs, sa = m->oargs.sarg;
151 <                                n > 0 && **sa != '-'; n--, sa++)
152 <                        ;
153 <                mxf = (XF *)malloc(sizeof(XF));
154 <                if (mxf == NULL)
155 <                        goto memerr;
156 <                if (invxf(mxf->xfm, &mxf->sca, n, sa) != n)
157 <                        objerror(m, USER, "bad transform");
84 <                if (mxf->sca < 0.0)
85 <                        mxf->sca = -mxf->sca;
86 <                m->os = (char *)mxf;
146 >        if ((f = (MFUNC *)m->os) == NULL)
147 >                return;
148 >        for (i = 0; f->ep[i] != NULL; i++)
149 >                epfree(f->ep[i]);
150 >        if (f->ctx[0]) {                        /* done with definitions */
151 >                setcontext(f->ctx);
152 >                i = varvalue(REFVNAME)-.5;      /* reference_count-- */
153 >                if (i > 0)
154 >                        varset(REFVNAME, '=', (double)i);
155 >                else
156 >                        dcleanup(2);            /* remove definitions */
157 >                freestr(f->ctx);
158          }
159 <        setmap(m, r, mxf->xfm, mxf->sca);
160 <        return;
161 < memerr:
162 <        error(SYSTEM, "out of memory in setfunc");
163 < #undef  mxf
159 >        if (f->b != &unitxf)
160 >                free((void *)f->b);
161 >        if (f->f != NULL && f->f != &unitxf)
162 >                free((void *)f->f);
163 >        free((void *)f);
164 >        m->os = NULL;
165   }
166  
167  
168 + int
169 + setfunc(m, r)                   /* set channels for function call */
170 + OBJREC  *m;
171 + register RAY  *r;
172 + {
173 +        static unsigned long  lastrno = ~0;
174 +        register MFUNC  *f;
175 +                                        /* get function */
176 +        if ((f = (MFUNC *)m->os) == NULL)
177 +                objerror(m, CONSISTENCY, "setfunc called before getfunc");
178 +                                        /* set evaluator context */
179 +        setcontext(f->ctx);
180 +                                        /* check to see if matrix set */
181 +        if (m == fobj && r->rno == lastrno)
182 +                return(0);
183 +        fobj = m;
184 +        fray = r;
185 +        if (r->rox != NULL)
186 +                if (f->b != &unitxf) {
187 +                        funcxf.sca = r->rox->b.sca * f->b->sca;
188 +                        multmat4(funcxf.xfm, r->rox->b.xfm, f->b->xfm);
189 +                } else
190 +                        funcxf = r->rox->b;
191 +        else
192 +                funcxf = *(f->b);
193 +        lastrno = r->rno;
194 +        eclock++;               /* notify expression evaluator */
195 +        return(1);
196 + }
197 +
198 +
199 + void
200   loadfunc(fname)                 /* load definition file */
201   char  *fname;
202   {
99        extern char  *libpath;          /* library search path */
203          char  *ffname;
204  
205 <        if ((ffname = getpath(fname, libpath, R_OK)) == NULL) {
205 >        if ((ffname = getpath(fname, getrlibpath(), R_OK)) == NULL) {
206                  sprintf(errmsg, "cannot find function file \"%s\"", fname);
207                  error(USER, errmsg);
208          }
# Line 107 | Line 210 | char  *fname;
210   }
211  
212  
213 < double
214 < l_arg()                         /* return nth real argument */
213 > static double
214 > l_arg(char *nm)                 /* return nth real argument */
215   {
113        extern double  argument();
216          register int  n;
217  
218 +        if (fobj == NULL)
219 +                syntax("arg(n) used in constant expression");
220 +
221          n = argument(1) + .5;           /* round to integer */
222  
223          if (n < 1)
# Line 126 | Line 231 | l_arg()                                /* return nth real argument */
231   }
232  
233  
234 + static double
235 + l_erf(char *nm)                 /* error function */
236 + {
237 +        extern double  erf();
238 +
239 +        return(erf(argument(1)));
240 + }
241 +
242 +
243 + static double
244 + l_erfc(char *nm)                /* cumulative error function */
245 + {
246 +        extern double  erfc();
247 +
248 +        return(erfc(argument(1)));
249 + }
250 +
251 +
252   double
253   chanvalue(n)                    /* return channel n to calcomp */
254   register int  n;
255   {
256 <        double  sum;
257 <        register RAY  *r;
256 >        if (fray == NULL)
257 >                syntax("ray parameter used in constant expression");
258  
259 <        n--;                            /* for convenience */
259 >        if (--n < 0)
260 >                goto badchan;
261  
262 <        if (n < 0 || n > 23)
139 <                error(USER, "illegal channel number");
262 >        if (n <= 2)                     /* ray direction */
263  
264 <        if (n == 9) {                   /* distance */
264 >                return( (       fray->rdir[0]*funcxf.xfm[0][n] +
265 >                                fray->rdir[1]*funcxf.xfm[1][n] +
266 >                                fray->rdir[2]*funcxf.xfm[2][n]  )
267 >                         / funcxf.sca );
268  
269 <                sum = fray->rot;
144 <                for (r = fray->parent; r != NULL; r = r->parent)
145 <                        sum += r->rot;
146 <                return(sum * fxf.sca);
269 >        if (n <= 5)                     /* surface normal */
270  
271 <        }
272 <        if (n == 10)                    /* dot product */
273 <                return(fray->rod);
271 >                return( (       fray->ron[0]*funcxf.xfm[0][n-3] +
272 >                                fray->ron[1]*funcxf.xfm[1][n-3] +
273 >                                fray->ron[2]*funcxf.xfm[2][n-3] )
274 >                         / funcxf.sca );
275  
276 <        if (n < 3)                      /* ray direction */
276 >        if (n <= 8)                     /* intersection */
277  
278 <                return( (       fray->rdir[0]*fxf.xfm[0][n] +
279 <                                fray->rdir[1]*fxf.xfm[1][n] +
280 <                                fray->rdir[2]*fxf.xfm[2][n]     )
281 <                         / fxf.sca );
278 >                return( fray->rop[0]*funcxf.xfm[0][n-6] +
279 >                                fray->rop[1]*funcxf.xfm[1][n-6] +
280 >                                fray->rop[2]*funcxf.xfm[2][n-6] +
281 >                                             funcxf.xfm[3][n-6] );
282  
283 <        if (n < 6)                      /* surface normal */
283 >        if (n == 9)                     /* total distance */
284 >                return(raydist(fray,PRIMARY) * funcxf.sca);
285  
286 <                return( (       fray->ron[0]*fxf.xfm[0][n-3] +
287 <                                fray->ron[1]*fxf.xfm[1][n-3] +
288 <                                fray->ron[2]*fxf.xfm[2][n-3]    )
289 <                         / fxf.sca );
286 >        if (n == 10)                    /* dot product (range [-1,1]) */
287 >                return( fray->rod <= -1.0 ? -1.0 :
288 >                        fray->rod >= 1.0 ? 1.0 :
289 >                        fray->rod );
290  
291 <        if (n < 9)                      /* intersection */
291 >        if (n == 11)                    /* scale */
292 >                return(funcxf.sca);
293  
294 <                return( fray->rop[0]*fxf.xfm[0][n-6] +
295 <                                fray->rop[1]*fxf.xfm[1][n-6] +
170 <                                fray->rop[2]*fxf.xfm[2][n-6] +
171 <                                             fxf.xfm[3][n-6] );
294 >        if (n <= 14)                    /* origin */
295 >                return(funcxf.xfm[3][n-12]);
296  
297 <        if (n == 11)                    /* scale */
298 <                return(fxf.sca);
297 >        if (n <= 17)                    /* i unit vector */
298 >                return(funcxf.xfm[0][n-15] / funcxf.sca);
299  
300 <        if (n < 15)                     /* origin */
301 <                return(fxf.xfm[3][n-12]);
300 >        if (n <= 20)                    /* j unit vector */
301 >                return(funcxf.xfm[1][n-18] / funcxf.sca);
302  
303 <        if (n < 18)                     /* i unit vector */
304 <                return(fxf.xfm[0][n-15] / fxf.sca);
303 >        if (n <= 23)                    /* k unit vector */
304 >                return(funcxf.xfm[2][n-21] / funcxf.sca);
305  
306 <        if (n < 21)                     /* j unit vector */
307 <                return(fxf.xfm[1][n-15] / fxf.sca);
306 >        if (n == 24)                    /* single ray (shadow) distance */
307 >                return((fray->rot+raydist(fray->parent,SHADOW)) * funcxf.sca);
308  
309 <        if (n < 24)                     /* k unit vector */
310 <                return(fxf.xfm[2][n-21] / fxf.sca);
309 >        if (n <= 26)                    /* local (u,v) coordinates */
310 >                return(fray->uv[n-25]);
311 > badchan:
312 >        error(USER, "illegal channel number");
313 >        return(0.0);
314   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines