--- ray/src/rt/func.c 1992/02/05 09:23:38 2.5 +++ ray/src/rt/func.c 2003/03/11 17:08:55 2.16 @@ -1,15 +1,12 @@ -/* Copyright (c) 1992 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: func.c,v 2.16 2003/03/11 17:08:55 greg Exp $"; #endif - /* * func.c - interface to calcomp functions. - * - * 4/7/86 */ +#include "copyright.h" + #include "ray.h" #include "otypes.h" @@ -18,15 +15,15 @@ static char SCCSid[] = "$SunId$ LBL"; #define INITFILE "rayinit.cal" -#define REFVNAME "`FILE_REFCNT" #define CALSUF ".cal" #define LCALSUF 4 +char REFVNAME[] = "`FILE_REFCNT"; XF unitxf = { /* identity transform */ - 1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0, + {{1.0, 0.0, 0.0, 0.0}, + {0.0, 1.0, 0.0, 0.0}, + {0.0, 0.0, 1.0, 0.0}, + {0.0, 0.0, 0.0, 1.0}}, 1.0 }; @@ -41,10 +38,9 @@ MFUNC * getfunc(m, ff, ef, dofwd) /* get function for this modifier */ OBJREC *m; int ff; -unsigned ef; +unsigned int ef; int dofwd; { - extern EPNODE *curfunc; static char initfile[] = INITFILE; char sbuf[MAXSTR]; register char **arg; @@ -54,20 +50,25 @@ int dofwd; /* check to see if done already */ if ((f = (MFUNC *)m->os) != NULL) return(f); + fobj = NULL; fray = NULL; if (initfile[0]) { /* initialize on first call */ + esupport |= E_VARIABLE|E_FUNCTION|E_INCHAN|E_RCONST|E_REDEFW; + esupport &= ~(E_OUTCHAN); setcontext(""); scompile("Dx=$1;Dy=$2;Dz=$3;", NULL, 0); scompile("Nx=$4;Ny=$5;Nz=$6;", NULL, 0); scompile("Px=$7;Py=$8;Pz=$9;", NULL, 0); - scompile("T=$10;Rdot=$11;", NULL, 0); + scompile("T=$10;Ts=$25;Rdot=$11;", NULL, 0); scompile("S=$12;Tx=$13;Ty=$14;Tz=$15;", NULL, 0); scompile("Ix=$16;Iy=$17;Iz=$18;", NULL, 0); scompile("Jx=$19;Jy=$20;Jz=$21;", NULL, 0); scompile("Kx=$22;Ky=$23;Kz=$24;", NULL, 0); + scompile("Lu=$25;Lv=$26;", NULL, 0); funset("arg", 1, '=', l_arg); funset("erf", 1, ':', l_erf); funset("erfc", 1, ':', l_erfc); setnoisefuncs(); + setprismfuncs(); loadfunc(initfile); initfile[0] = '\0'; } @@ -80,7 +81,7 @@ int dofwd; if (i == 1 && arg[ff][0] == '.') setcontext(f->ctx = ""); /* "." means no file */ else { - strcpy(sbuf,arg[ff]); /* file name is context */ + strcpy(sbuf,arg[ff]); /* file name is context */ if (i > LCALSUF && !strcmp(sbuf+i-LCALSUF, CALSUF)) sbuf[i-LCALSUF] = '\0'; /* remove suffix */ setcontext(f->ctx = savestr(sbuf)); @@ -133,6 +134,7 @@ memerr: } +void freefunc(m) /* free memory associated with modifier */ OBJREC *m; { @@ -153,23 +155,24 @@ OBJREC *m; freestr(f->ctx); } if (f->b != &unitxf) - free((char *)f->b); + free((void *)f->b); if (f->f != NULL && f->f != &unitxf) - free((char *)f->f); - free((char *)f); + free((void *)f->f); + free((void *)f); m->os = NULL; } +int setfunc(m, r) /* set channels for function call */ OBJREC *m; register RAY *r; { - static long lastrno = -1; + static unsigned long lastrno = ~0; register MFUNC *f; /* get function */ if ((f = (MFUNC *)m->os) == NULL) - error(m, CONSISTENCY, "setfunc called before getfunc"); + objerror(m, CONSISTENCY, "setfunc called before getfunc"); /* set evaluator context */ setcontext(f->ctx); /* check to see if matrix set */ @@ -191,13 +194,13 @@ register RAY *r; } +void loadfunc(fname) /* load definition file */ char *fname; { - extern char *libpath; /* library search path */ char *ffname; - if ((ffname = getpath(fname, libpath, R_OK)) == NULL) { + if ((ffname = getpath(fname, getlibpath(), R_OK)) == NULL) { sprintf(errmsg, "cannot find function file \"%s\"", fname); error(USER, errmsg); } @@ -208,9 +211,11 @@ char *fname; static double l_arg() /* return nth real argument */ { - extern double argument(); register int n; + if (fobj == NULL) + syntax("arg(n) used in constant expression"); + n = argument(1) + .5; /* round to integer */ if (n < 1) @@ -246,8 +251,8 @@ double chanvalue(n) /* return channel n to calcomp */ register int n; { - double sum; - register RAY *r; + if (fray == NULL) + syntax("ray parameter used in constant expression"); if (--n < 0) goto badchan; @@ -273,14 +278,9 @@ register int n; fray->rop[2]*funcxf.xfm[2][n-6] + funcxf.xfm[3][n-6] ); - if (n == 9) { /* distance */ + if (n == 9) /* total distance */ + return(raydist(fray,PRIMARY) * funcxf.sca); - sum = fray->rot; - for (r = fray->parent; r != NULL; r = r->parent) - sum += r->rot; - return(sum * funcxf.sca); - - } if (n == 10) /* dot product (range [-1,1]) */ return( fray->rod <= -1.0 ? -1.0 : fray->rod >= 1.0 ? 1.0 : @@ -300,6 +300,13 @@ register int n; if (n < 24) /* k unit vector */ return(funcxf.xfm[2][n-21] / funcxf.sca); + + if (n < 25) /* single ray (shadow) distance */ + return((fray->rot+raydist(fray->parent,SHADOW)) * funcxf.sca); + + if (n < 27) /* local (u,v) coordinates */ + return(fray->uv[n-26]); badchan: error(USER, "illegal channel number"); + return(0.0); }