ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/func.c
Revision: 2.25
Committed: Thu Jun 7 18:56:06 2012 UTC (11 years, 10 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.24: +26 -24 lines
Log Message:
Added ability to set material to NULL in setfunc()

File Contents

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