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 2.5 by greg, Wed Feb 5 09:23:38 1992 UTC vs.
Revision 2.16 by greg, Tue Mar 11 17:08:55 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 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"
# Line 18 | Line 15 | static char SCCSid[] = "$SunId$ LBL";
15  
16  
17   #define  INITFILE       "rayinit.cal"
21 #define  REFVNAME       "`FILE_REFCNT"
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,
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  
# Line 41 | Line 38 | MFUNC *
38   getfunc(m, ff, ef, dofwd)       /* get function for this modifier */
39   OBJREC  *m;
40   int  ff;
41 < unsigned  ef;
41 > unsigned int  ef;
42   int  dofwd;
43   {
47        extern EPNODE  *curfunc;
44          static char  initfile[] = INITFILE;
45          char  sbuf[MAXSTR];
46          register char  **arg;
# Line 54 | Line 50 | int  dofwd;
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;Rdot=$11;", 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=$25;Lv=$26;", 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                  initfile[0] = '\0';
74          }
# Line 80 | Line 81 | int  dofwd;
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 */
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));
# Line 133 | Line 134 | memerr:
134   }
135  
136  
137 + void
138   freefunc(m)                     /* free memory associated with modifier */
139   OBJREC  *m;
140   {
# Line 153 | Line 155 | OBJREC  *m;
155                  freestr(f->ctx);
156          }
157          if (f->b != &unitxf)
158 <                free((char *)f->b);
158 >                free((void *)f->b);
159          if (f->f != NULL && f->f != &unitxf)
160 <                free((char *)f->f);
161 <        free((char *)f);
160 >                free((void *)f->f);
161 >        free((void *)f);
162          m->os = NULL;
163   }
164  
165  
166 + int
167   setfunc(m, r)                   /* set channels for function call */
168   OBJREC  *m;
169   register RAY  *r;
170   {
171 <        static long  lastrno = -1;
171 >        static unsigned long  lastrno = ~0;
172          register MFUNC  *f;
173                                          /* get function */
174          if ((f = (MFUNC *)m->os) == NULL)
175 <                error(m, CONSISTENCY, "setfunc called before getfunc");
175 >                objerror(m, CONSISTENCY, "setfunc called before getfunc");
176                                          /* set evaluator context */
177          setcontext(f->ctx);
178                                          /* check to see if matrix set */
# Line 191 | Line 194 | register RAY  *r;
194   }
195  
196  
197 + void
198   loadfunc(fname)                 /* load definition file */
199   char  *fname;
200   {
197        extern char  *libpath;          /* library search path */
201          char  *ffname;
202  
203 <        if ((ffname = getpath(fname, libpath, R_OK)) == NULL) {
203 >        if ((ffname = getpath(fname, getlibpath(), R_OK)) == NULL) {
204                  sprintf(errmsg, "cannot find function file \"%s\"", fname);
205                  error(USER, errmsg);
206          }
# Line 208 | Line 211 | char  *fname;
211   static double
212   l_arg()                         /* return nth real argument */
213   {
211        extern double  argument();
214          register int  n;
215  
216 +        if (fobj == NULL)
217 +                syntax("arg(n) used in constant expression");
218 +
219          n = argument(1) + .5;           /* round to integer */
220  
221          if (n < 1)
# Line 246 | Line 251 | double
251   chanvalue(n)                    /* return channel n to calcomp */
252   register int  n;
253   {
254 <        double  sum;
255 <        register RAY  *r;
254 >        if (fray == NULL)
255 >                syntax("ray parameter used in constant expression");
256  
257          if (--n < 0)
258                  goto badchan;
# Line 273 | Line 278 | register int  n;
278                                  fray->rop[2]*funcxf.xfm[2][n-6] +
279                                               funcxf.xfm[3][n-6] );
280  
281 <        if (n == 9) {                   /* distance */
281 >        if (n == 9)                     /* total distance */
282 >                return(raydist(fray,PRIMARY) * funcxf.sca);
283  
278                sum = fray->rot;
279                for (r = fray->parent; r != NULL; r = r->parent)
280                        sum += r->rot;
281                return(sum * funcxf.sca);
282
283        }
284          if (n == 10)                    /* dot product (range [-1,1]) */
285                  return( fray->rod <= -1.0 ? -1.0 :
286                          fray->rod >= 1.0 ? 1.0 :
# Line 300 | Line 300 | register int  n;
300  
301          if (n < 24)                     /* k unit vector */
302                  return(funcxf.xfm[2][n-21] / funcxf.sca);
303 +
304 +        if (n < 25)                     /* single ray (shadow) distance */
305 +                return((fray->rot+raydist(fray->parent,SHADOW)) * funcxf.sca);
306 +
307 +        if (n < 27)                     /* local (u,v) coordinates */
308 +                return(fray->uv[n-26]);
309   badchan:
310          error(USER, "illegal channel number");
311 +        return(0.0);
312   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines