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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines