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.7 by greg, Thu Oct 5 07:23:22 1989 UTC vs.
Revision 2.24 by greg, Tue Feb 22 16:45:12 2011 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  "ray.h"
8 > #include "copyright.h"
9  
10 + #include  "ray.h"
11 + #include  "paths.h"
12   #include  "otypes.h"
13 + #include  "func.h"
14  
15  
16 < typedef struct {
17 <        double  xfm[4][4];              /* transform matrix */
18 <        double  sca;                    /* scalefactor */
19 < }  XF;
16 > #define  INITFILE       "rayinit.cal"
17 > #define  CALSUF         ".cal"
18 > #define  LCALSUF        4
19 > char  REFVNAME[] = "`FILE_REFCNT";
20  
21 < static OBJREC  *fobj;           /* current function object */
22 < static RAY  *fray;              /* current function ray */
23 < static XF  fxf;                 /* current transformation */
21 > XF  unitxf = {                  /* identity transform */
22 >        {{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 >        1.0
27 > };
28  
29 + XF  funcxf;                     /* current transformation */
30 + static OBJREC  *fobj = NULL;    /* current function object */
31 + static RAY  *fray = NULL;       /* current function ray */
32  
33 < setmap(m, r, xfm, sca)          /* set channels for function call */
29 < OBJREC  *m;
30 < register RAY  *r;
31 < double  xfm[4][4];
32 < double  sca;
33 < {
34 <        extern double  l_noise3(), l_noise3a(), l_noise3b(), l_noise3c();
35 <        extern double  l_hermite(), l_fnoise3(), l_arg();
36 <        extern long  eclock;
37 <        static char  *initfile = "rayinit.cal";
33 > static double  l_erf(char *), l_erfc(char *), l_arg(char *);
34  
35 <        if (initfile != NULL) {
35 >
36 > extern MFUNC *
37 > getfunc(        /* get function for this modifier */
38 >        OBJREC  *m,
39 >        int  ff,
40 >        unsigned int  ef,
41 >        int  dofwd
42 > )
43 > {
44 >        static char  initfile[] = INITFILE;
45 >        char  sbuf[MAXSTR];
46 >        register char  **arg;
47 >        register MFUNC  *f;
48 >        int  ne, na;
49 >        register int  i;
50 >                                        /* check to see if done already */
51 >        if ((f = (MFUNC *)m->os) != NULL)
52 >                return(f);
53 >        fobj = NULL; fray = NULL;
54 >        if (initfile[0]) {              /* initialize on first call */
55 >                esupport |= E_VARIABLE|E_FUNCTION|E_INCHAN|E_RCONST|E_REDEFW;
56 >                esupport &= ~(E_OUTCHAN);
57 >                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 >                scompile("T=$10;Ts=$25;Rdot=$11;", NULL, 0);
62 >                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 >                scompile("Lu=$26;Lv=$27;", NULL, 0);
67 >                funset("arg", 1, '=', l_arg);
68 >                funset("erf", 1, ':', l_erf);
69 >                funset("erfc", 1, ':', l_erfc);
70 >                setnoisefuncs();
71 >                setprismfuncs();
72                  loadfunc(initfile);
73 <                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 <                funset("arg", 1, l_arg);
46 <                funset("noise3", 3, l_noise3);
47 <                funset("noise3a", 3, l_noise3a);
48 <                funset("noise3b", 3, l_noise3b);
49 <                funset("noise3c", 3, l_noise3c);
50 <                funset("hermite", 5, l_hermite);
51 <                funset("fnoise3", 3, l_fnoise3);
52 <                initfile = NULL;
73 >                initfile[0] = '\0';
74          }
75 <        fobj = m;
76 <        fray = r;
77 <        fxf.sca = r->robs * sca;
78 <        multmat4(fxf.xfm, r->robx, xfm);
79 <        eclock++;               /* notify expression evaluator */
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 >                strcpy(sbuf,arg[ff]);           /* file name is context */
85 >                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 >                        loadfunc(arg[ff]);
90 >                        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 >                        goto memerr;
116 >                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 >                                goto memerr;
123 >                        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 >        objerror(m, USER, "too few string arguments");
132 > memerr:
133 >        error(SYSTEM, "out of memory in getfunc");
134 >        return NULL; /* pro forma return */
135   }
136  
137  
138 < setfunc(m, r)                           /* simplified interface to setmap */
139 < register OBJREC  *m;
140 < RAY  *r;
138 > extern void
139 > freefunc(                       /* free memory associated with modifier */
140 >        OBJREC  *m
141 > )
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");
80 <                if (mxf->sca < 0.0)
81 <                        mxf->sca = -mxf->sca;
82 <                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 < loadfunc(fname)                 /* load definition file */
169 < char  *fname;
168 > extern int
169 > setfunc(                        /* set channels for function call */
170 >        OBJREC  *m,
171 >        register RAY  *r
172 > )
173   {
174 <        extern char  *libpath;          /* library search path */
174 >        static RNUMBER  lastrno = ~0;
175 >        register MFUNC  *f;
176 >                                        /* get function */
177 >        if ((f = (MFUNC *)m->os) == NULL)
178 >                objerror(m, CONSISTENCY, "setfunc called before getfunc");
179 >                                        /* set evaluator context */
180 >        setcontext(f->ctx);
181 >                                        /* check to see if matrix set */
182 >        if (m == fobj && r->rno == lastrno)
183 >                return(0);
184 >        fobj = m;
185 >        fray = r;
186 >        if (r->rox != NULL)
187 >                if (f->b != &unitxf) {
188 >                        funcxf.sca = r->rox->b.sca * f->b->sca;
189 >                        multmat4(funcxf.xfm, r->rox->b.xfm, f->b->xfm);
190 >                } else
191 >                        funcxf = r->rox->b;
192 >        else
193 >                funcxf = *(f->b);
194 >        lastrno = r->rno;
195 >        eclock++;               /* notify expression evaluator */
196 >        return(1);
197 > }
198 >
199 >
200 > extern void
201 > loadfunc(                       /* load definition file */
202 >        char  *fname
203 > )
204 > {
205          char  *ffname;
206  
207 <        if ((ffname = getpath(fname, libpath, R_OK)) == NULL) {
207 >        if ((ffname = getpath(fname, getrlibpath(), R_OK)) == NULL) {
208                  sprintf(errmsg, "cannot find function file \"%s\"", fname);
209                  error(USER, errmsg);
210          }
# Line 103 | Line 212 | char  *fname;
212   }
213  
214  
215 < double
216 < l_arg()                         /* return nth real argument */
215 > static double
216 > l_arg(char *nm)                 /* return nth real argument */
217   {
109        extern double  argument();
218          register int  n;
219  
220 +        if (fobj == NULL)
221 +                syntax("arg(n) used in constant expression");
222 +
223          n = argument(1) + .5;           /* round to integer */
224  
225          if (n < 1)
# Line 122 | Line 233 | l_arg()                                /* return nth real argument */
233   }
234  
235  
236 < double
237 < chanvalue(n)                    /* return channel n to calcomp */
127 < register int  n;
236 > static double
237 > l_erf(char *nm)                 /* error function */
238   {
239 <        double  res;
240 <        register RAY  *r;
239 >        return(erf(argument(1)));
240 > }
241  
132        n--;                                    /* for convenience */
242  
243 <        if (n < 0 || n > 10)
244 <                error(USER, "illegal channel number");
243 > static double
244 > l_erfc(char *nm)                /* cumulative error function */
245 > {
246 >        return(erfc(argument(1)));
247 > }
248  
137        if (n == 9) {                           /* distance */
249  
250 <                res = fray->rot;
251 <                for (r = fray->parent; r != NULL; r = r->parent)
252 <                        res += r->rot;
253 <                res *= fxf.sca;
250 > extern double
251 > chanvalue(                      /* return channel n to calcomp */
252 >        register int  n
253 > )
254 > {
255 >        if (fray == NULL)
256 >                syntax("ray parameter used in constant expression");
257  
258 <        } else if (n == 10) {                   /* dot product */
258 >        if (--n < 0)
259 >                goto badchan;
260  
261 <                res = fray->rod;
261 >        if (n <= 2)                     /* ray direction */
262  
263 <        } else if (n < 3) {                     /* ray direction */
264 <                        res = ( fray->rdir[0]*fxf.xfm[0][n] +
265 <                                        fray->rdir[1]*fxf.xfm[1][n] +
266 <                                        fray->rdir[2]*fxf.xfm[2][n]     )
152 <                                 / fxf.sca ;
153 <        } else if (n < 6) {                     /* surface normal */
154 <                        res = ( fray->ron[0]*fxf.xfm[0][n-3] +
155 <                                        fray->ron[1]*fxf.xfm[1][n-3] +
156 <                                        fray->ron[2]*fxf.xfm[2][n-3]    )
157 <                                 / fxf.sca ;
158 <        } else {                                /* intersection */
159 <                        res =   fray->rop[0]*fxf.xfm[0][n-6] +
160 <                                        fray->rop[1]*fxf.xfm[1][n-6] +
161 <                                        fray->rop[2]*fxf.xfm[2][n-6] +
162 <                                                     fxf.xfm[3][n-6] ;
163 <        }
263 >                return( (       fray->rdir[0]*funcxf.xfm[0][n] +
264 >                                fray->rdir[1]*funcxf.xfm[1][n] +
265 >                                fray->rdir[2]*funcxf.xfm[2][n]  )
266 >                         / funcxf.sca );
267  
268 <        return(res);
268 >        if (n <= 5)                     /* surface normal */
269 >
270 >                return( (       fray->ron[0]*funcxf.xfm[0][n-3] +
271 >                                fray->ron[1]*funcxf.xfm[1][n-3] +
272 >                                fray->ron[2]*funcxf.xfm[2][n-3] )
273 >                         / funcxf.sca );
274 >
275 >        if (n <= 8)                     /* intersection */
276 >
277 >                return( fray->rop[0]*funcxf.xfm[0][n-6] +
278 >                                fray->rop[1]*funcxf.xfm[1][n-6] +
279 >                                fray->rop[2]*funcxf.xfm[2][n-6] +
280 >                                             funcxf.xfm[3][n-6] );
281 >
282 >        if (n == 9)                     /* total distance */
283 >                return(raydist(fray,PRIMARY) * funcxf.sca);
284 >
285 >        if (n == 10)                    /* dot product (range [-1,1]) */
286 >                return( fray->rod <= -1.0 ? -1.0 :
287 >                        fray->rod >= 1.0 ? 1.0 :
288 >                        fray->rod );
289 >
290 >        if (n == 11)                    /* scale */
291 >                return(funcxf.sca);
292 >
293 >        if (n <= 14)                    /* origin */
294 >                return(funcxf.xfm[3][n-12]);
295 >
296 >        if (n <= 17)                    /* i unit vector */
297 >                return(funcxf.xfm[0][n-15] / funcxf.sca);
298 >
299 >        if (n <= 20)                    /* j unit vector */
300 >                return(funcxf.xfm[1][n-18] / funcxf.sca);
301 >
302 >        if (n <= 23)                    /* k unit vector */
303 >                return(funcxf.xfm[2][n-21] / funcxf.sca);
304 >
305 >        if (n == 24)                    /* single ray (shadow) distance */
306 >                return((fray->rot+raydist(fray->parent,SHADOW)) * funcxf.sca);
307 >
308 >        if (n <= 26)                    /* local (u,v) coordinates */
309 >                return(fray->uv[n-25]);
310 > badchan:
311 >        error(USER, "illegal channel number");
312 >        return(0.0);
313   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines