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.2 by greg, Fri May 15 16:38:47 1992 UTC vs.
Revision 2.6 by greg, Sun Nov 22 12:11:48 1992 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 20 | Line 20 | static char SCCSid[] = "$SunId$ LBL";
20  
21   #include  <errno.h>
22  
23 + #include  <math.h>
24 +
25   #include  "calcomp.h"
26  
27                                  /* bits in argument flag (better be right!) */
# Line 153 | Line 155 | int  nargs;
155   int  assign;
156   double  (*fptr)();
157   {
158 +    int  oldlibsize = libsize;
159      register LIBR  *lp;
160  
161      if ((lp = liblookup(fname)) == NULL) {      /* insert */
# Line 185 | Line 188 | double  (*fptr)();
188          lp[0].atyp = assign;
189          lp[0].f = fptr;
190      }
191 <    libupdate(fname);                   /* relink library */
191 >    if (libsize != oldlibsize)
192 >        libupdate(fname);                       /* relink library */
193   }
194  
195  
# Line 337 | Line 341 | char  *fname;
341  
342  
343   #ifndef  VARIABLE
344 + static VARDEF  *varlist = NULL;         /* our list of dummy variables */
345 +
346 +
347   VARDEF *
348   varinsert(vname)                /* dummy variable insert */
349   char  *vname;
# Line 347 | Line 354 | char  *vname;
354      vp->name = savestr(vname);
355      vp->nlinks = 1;
356      vp->def = NULL;
357 <    vp->lib = NULL;
358 <    vp->next = NULL;
357 >    vp->lib = liblookup(vname);
358 >    vp->next = varlist;
359 >    varlist = vp;
360      return(vp);
361   }
362  
# Line 356 | Line 364 | char  *vname;
364   varfree(vp)                     /* free dummy variable */
365   register VARDEF  *vp;
366   {
367 +    register VARDEF  *vp2;
368 +
369 +    if (vp == varlist)
370 +        varlist = vp->next;
371 +    else {
372 +        for (vp2 = varlist; vp2->next != vp; vp2 = vp2->next)
373 +                ;
374 +        vp2->next = vp->next;
375 +    }
376      freestr(vp->name);
377      efree((char *)vp);
378   }
379 +
380 +
381 + libupdate(nm)                   /* update library */
382 + char  *nm;
383 + {
384 +    register VARDEF  *vp;
385 +
386 +    for (vp = varlist; vp != NULL; vp = vp->next)
387 +        vp->lib = liblookup(vp->name);
388 + }
389   #endif
390  
391  
# Line 371 | Line 398 | register VARDEF  *vp;
398   static double
399   libfunc(fname, vp)                      /* execute library function */
400   char  *fname;
401 < register VARDEF  *vp;
401 > VARDEF  *vp;
402   {
403 <    VARDEF  dumdef;
403 >    register LIBR  *lp;
404      double  d;
405      int  lasterrno;
406  
407 <    if (vp == NULL) {
408 <        vp = &dumdef;
409 <        vp->lib = liblookup(fname);
410 <    }
411 <    if (vp->lib == NULL) {
407 >    if (vp != NULL)
408 >        lp = vp->lib;
409 >    else
410 >        lp = liblookup(fname);
411 >    if (lp == NULL) {
412          eputs(fname);
413          eputs(": undefined function\n");
414          quit(1);
415      }
416      lasterrno = errno;
417      errno = 0;
418 <    d = (*vp->lib->f)(vp->lib->fname);
418 >    d = (*lp->f)(lp->fname);
419   #ifdef  IEEE
420      if (errno == 0)
421          if (isnan(d))
# Line 446 | Line 473 | l_select()             /* return argument #(A1+1) */
473   static double
474   l_rand()                /* random function between 0 and 1 */
475   {
449    extern double  floor();
476      double  x;
477  
478      x = argument(1);
# Line 460 | Line 486 | l_rand()               /* random function between 0 and 1 */
486   static double
487   l_floor()               /* return largest integer not greater than arg1 */
488   {
463    extern double  floor();
464
489      return(floor(argument(1)));
490   }
491  
# Line 469 | Line 493 | l_floor()              /* return largest integer not greater than
493   static double
494   l_ceil()                /* return smallest integer not less than arg1 */
495   {
472    extern double  ceil();
473
496      return(ceil(argument(1)));
497   }
498  
# Line 479 | Line 501 | l_ceil()               /* return smallest integer not less than arg
501   static double
502   l_sqrt()
503   {
482    extern double  sqrt();
483
504      return(sqrt(argument(1)));
505   }
506  
# Line 488 | Line 508 | l_sqrt()
508   static double
509   l_sin()
510   {
491    extern double  sin();
492
511      return(sin(argument(1)));
512   }
513  
# Line 497 | Line 515 | l_sin()
515   static double
516   l_cos()
517   {
500    extern double  cos();
501
518      return(cos(argument(1)));
519   }
520  
# Line 506 | Line 522 | l_cos()
522   static double
523   l_tan()
524   {
509    extern double  tan();
510
525      return(tan(argument(1)));
526   }
527  
# Line 515 | Line 529 | l_tan()
529   static double
530   l_asin()
531   {
518    extern double  asin();
519
532      return(asin(argument(1)));
533   }
534  
# Line 524 | Line 536 | l_asin()
536   static double
537   l_acos()
538   {
527    extern double  acos();
528
539      return(acos(argument(1)));
540   }
541  
# Line 533 | Line 543 | l_acos()
543   static double
544   l_atan()
545   {
536    extern double  atan();
537
546      return(atan(argument(1)));
547   }
548  
# Line 542 | Line 550 | l_atan()
550   static double
551   l_atan2()
552   {
545    extern double  atan2();
546
553      return(atan2(argument(1), argument(2)));
554   }
555  
# Line 551 | Line 557 | l_atan2()
557   static double
558   l_exp()
559   {
554    extern double  exp();
555
560      return(exp(argument(1)));
561   }
562  
# Line 560 | Line 564 | l_exp()
564   static double
565   l_log()
566   {
563    extern double  log();
564
567      return(log(argument(1)));
568   }
569  
# Line 569 | Line 571 | l_log()
571   static double
572   l_log10()
573   {
572    extern double  log10();
573
574      return(log10(argument(1)));
575   }
576   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines