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

Comparing ray/src/common/calfunc.c (file contents):
Revision 2.16 by greg, Wed Oct 24 00:39:09 2012 UTC vs.
Revision 2.27 by greg, Mon Sep 27 23:30:53 2021 UTC

# Line 22 | Line 22 | static const char      RCSid[] = "$Id$";
22  
23                                  /* bits in argument flag (better be right!) */
24   #define  AFLAGSIZ       (8*sizeof(unsigned long))
25 < #define  ALISTSIZ       6       /* maximum saved argument list */
25 > #define  ALISTSIZ       8       /* maximum saved argument list */
26  
27   typedef struct activation {
28      char  *name;                /* function name */
# Line 40 | Line 40 | static double  libfunc(char *fname, VARDEF *vp);
40   #define  MAXLIB         64      /* maximum number of library functions */
41   #endif
42  
43 < static double  l_if(char *), l_select(char *), l_rand(char *);
43 > static double  l_if(char *), l_select(char *);
44 > static double  l_min(char *), l_max(char *);
45 > static double  l_rand(char *);
46   static double  l_floor(char *), l_ceil(char *);
47   static double  l_sqrt(char *);
48   static double  l_sin(char *), l_cos(char *), l_tan(char *);
# Line 60 | Line 62 | static LIBR  library[MAXLIB] = {
62      { "if", 3, ':', l_if },
63      { "log", 1, ':', l_log },
64      { "log10", 1, ':', l_log10 },
65 +    { "max", 1, ':', l_max },
66 +    { "min", 1, ':', l_min },
67      { "rand", 1, ':', l_rand },
68      { "select", 1, ':', l_select },
69      { "sin", 1, ':', l_sin },
# Line 67 | Line 71 | static LIBR  library[MAXLIB] = {
71      { "tan", 1, ':', l_tan },
72   };
73  
74 < static int  libsize = 16;
74 > static int  libsize = 18;
75  
76   #define  resolve(ep)    ((ep)->type==VAR?(ep)->v.ln:argf((ep)->v.chan))
77  
78  
79   int
80 < fundefined(                     /* return # of arguments for function */
80 > fundefined(                     /* return # of req'd arguments for function */
81          char  *fname
82   )
83   {
# Line 104 | Line 108 | funvalue(                      /* return a function value to the user */
108      act.name = fname;
109      act.prev = curact;
110      act.ap = a;
111 <    if (n >= AFLAGSIZ)
108 <        act.an = ~0;
109 <    else
111 >    if (n < AFLAGSIZ)
112          act.an = (1L<<n)-1;
113 +    else {
114 +        act.an = ~0;
115 +        if (n > AFLAGSIZ)
116 +            wputs("Excess arguments in funvalue()\n");
117 +    }
118      act.fun = NULL;
119      curact = &act;
120  
# Line 138 | Line 145 | funset(                                /* set a library function */
145          ;
146      if (cp == fname)
147          return;
148 <    if (cp[-1] == CNTXMARK)
148 >    while (cp[-1] == CNTXMARK) {
149          *--cp = '\0';
150 +        if (cp == fname) return;
151 +    }
152      if ((lp = liblookup(fname)) == NULL) {      /* insert */
153 +        if (fptr == NULL)
154 +                return;                         /* nothing! */
155          if (libsize >= MAXLIB) {
156              eputs("Too many library functons!\n");
157              quit(1);
158          }
159          for (lp = &library[libsize]; lp > library; lp--)
160 <            if (strcmp(lp[-1].fname, fname) > 0) {
161 <                lp[0].fname = lp[-1].fname;
162 <                lp[0].nargs = lp[-1].nargs;
152 <                lp[0].atyp = lp[-1].atyp;
153 <                lp[0].f = lp[-1].f;
154 <            } else
160 >            if (strcmp(lp[-1].fname, fname) > 0)
161 >                lp[0] = lp[-1];
162 >            else
163                  break;
164          libsize++;
165      }
166      if (fptr == NULL) {                         /* delete */
167          while (lp < &library[libsize-1]) {
168 <            lp[0].fname = lp[1].fname;
161 <            lp[0].nargs = lp[1].nargs;
162 <            lp[0].atyp = lp[1].atyp;
163 <            lp[0].f = lp[1].f;
168 >            lp[0] = lp[1];
169              lp++;
170          }
171          libsize--;
# Line 198 | Line 203 | argument(int n)                        /* return nth argument for active fu
203      EPNODE  *ep = NULL;
204      double  aval;
205  
206 <    if (actp == NULL || --n < 0) {
206 >    if (!n)                                     /* asking for # arguments? */
207 >        return((double)nargum());
208 >
209 >    if (!actp | (--n < 0)) {
210          eputs("Bad call to argument!\n");
211          quit(1);
212      }
213 <                                                /* already computed? */
206 <    if (n < AFLAGSIZ && 1L<<n & actp->an)
213 >    if ((n < AFLAGSIZ) & actp->an >> n)         /* already computed? */
214          return(actp->ap[n]);
215  
216 <    if (actp->fun == NULL || (ep = ekid(actp->fun, n+1)) == NULL) {
216 >    if (!actp->fun || !(ep = ekid(actp->fun, n+1))) {
217          eputs(actp->name);
218          eputs(": too few arguments\n");
219          quit(1);
220      }
221 <    curact = actp->prev;                        /* pop environment */
221 >    curact = actp->prev;                        /* previous context */
222      aval = evalue(ep);                          /* compute argument */
223 <    curact = actp;                              /* push back environment */
224 <    if (n < ALISTSIZ) {                         /* save value */
223 >    curact = actp;                              /* put back calling context */
224 >    if (n < ALISTSIZ) {                         /* save value if room */
225          actp->ap[n] = aval;
226          actp->an |= 1L<<n;
227      }
# Line 344 | Line 351 | libfunc(                               /* execute library function */
351      errno = 0;
352      d = (*lp->f)(lp->fname);
353   #ifdef  isnan
354 <    if (errno == 0)
354 >    if (errno == 0) {
355          if (isnan(d))
356              errno = EDOM;
357          else if (isinf(d))
358              errno = ERANGE;
359 +    }
360   #endif
361      if (errno == EDOM || errno == ERANGE) {
362          wputs(fname);
# Line 384 | Line 392 | l_if(char *nm)         /* if(cond, then, else) conditional ex
392   static double
393   l_select(char *nm)      /* return argument #(A1+1) */
394   {
395 <        int  n;
395 >        int     narg = nargum();
396 >        double  a1 = argument(1);
397 >        int  n = (int)(a1 + .5);
398  
399 <        n = (int)(argument(1) + .5);
390 <        if (n == 0)
391 <                return(nargum()-1);
392 <        if (n < 1 || n > nargum()-1) {
399 >        if (a1 < -.5 || n >= narg) {
400                  errno = EDOM;
401                  return(0.0);
402          }
403 +        if (!n)         /* asking max index? */
404 +                return(narg-1);
405          return(argument(n+1));
406 + }
407 +
408 +
409 + static double
410 + l_max(char *nm)         /* general maximum function */
411 + {
412 +        int  n = nargum();
413 +        double  vmax = argument(1);
414 +
415 +        while (n > 1) {
416 +                double  v = argument(n--);
417 +                if (vmax < v)
418 +                        vmax = v;
419 +        }
420 +        return(vmax);
421 + }
422 +
423 +
424 + static double
425 + l_min(char *nm)         /* general minimum function */
426 + {
427 +        int  n = nargum();
428 +        double  vmin = argument(1);
429 +
430 +        while (n > 1) {
431 +                double  v = argument(n--);
432 +                if (vmin > v)
433 +                        vmin = v;
434 +        }
435 +        return(vmin);
436   }
437  
438  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines