--- ray/src/rt/func.c 1990/12/15 15:03:26 1.12 +++ ray/src/rt/func.c 1992/01/04 19:53:25 2.4 @@ -1,4 +1,4 @@ -/* Copyright (c) 1990 Regents of the University of California */ +/* Copyright (c) 1992 Regents of the University of California */ #ifndef lint static char SCCSid[] = "$SunId$ LBL"; @@ -14,28 +14,48 @@ static char SCCSid[] = "$SunId$ LBL"; #include "otypes.h" +#include "func.h" + +#define INITFILE "rayinit.cal" +#define REFVNAME "`FILE_REFCNT" +#define CALSUF ".cal" +#define LCALSUF 4 + +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 +}; + XF funcxf; /* current transformation */ static OBJREC *fobj = NULL; /* current function object */ static RAY *fray = NULL; /* current function ray */ +static double l_erf(), l_erfc(), l_arg(); -setmap(m, r, bx) /* set channels for function call */ + +MFUNC * +getfunc(m, ff, ef, dofwd) /* get function for this modifier */ OBJREC *m; -register RAY *r; -XF *bx; +int ff; +unsigned ef; +int dofwd; { - extern double l_noise3(), l_noise3a(), l_noise3b(), l_noise3c(); - extern double l_hermite(), l_fnoise3(), l_arg(); - extern long eclock; - static char *initfile = "rayinit.cal"; - static long lastrno = -1; - /* check to see if already set */ - if (m == fobj && r->rno == lastrno) - return; - /* initialize if first call */ - if (initfile != NULL) { - loadfunc(initfile); + extern EPNODE *curfunc; + static char initfile[] = INITFILE; + char sbuf[MAXSTR]; + register char **arg; + register MFUNC *f; + int ne, na; + register int i; + /* check to see if done already */ + if ((f = (MFUNC *)m->os) != NULL) + return(f); + if (initfile[0]) { /* initialize on first call */ + 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); @@ -44,56 +64,133 @@ XF *bx; 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); - funset("arg", 1, l_arg); - funset("noise3", 3, l_noise3); - funset("noise3a", 3, l_noise3a); - funset("noise3b", 3, l_noise3b); - funset("noise3c", 3, l_noise3c); - funset("hermite", 5, l_hermite); - funset("fnoise3", 3, l_fnoise3); - initfile = NULL; + funset("arg", 1, '=', l_arg); + funset("erf", 1, ':', l_erf); + funset("erfc", 1, ':', l_erfc); + setnoisefuncs(); + loadfunc(initfile); + initfile[0] = '\0'; } - fobj = m; - fray = r; - lastrno = r->rno; - if (r->rox != NULL) { - funcxf.sca = r->rox->b.sca * bx->sca; - multmat4(funcxf.xfm, r->rox->b.xfm, bx->xfm); - } else - copystruct(&funcxf, bx); - eclock++; /* notify expression evaluator */ + if ((na = m->oargs.nsargs) <= ff) + goto toofew; + arg = m->oargs.sarg; + if ((f = (MFUNC *)calloc(1, sizeof(MFUNC))) == NULL) + goto memerr; + i = strlen(arg[ff]); /* set up context */ + if (i == 1 && arg[ff][0] == '.') + setcontext(f->ctx = ""); /* "." means no file */ + else { + strcpy(sbuf,m->oargs.sarg[ff]); /* file name is context */ + if (i > LCALSUF && !strcmp(sbuf+i-LCALSUF, CALSUF)) + sbuf[i-LCALSUF] = '\0'; /* remove suffix */ + setcontext(f->ctx = savestr(sbuf)); + if (!vardefined(REFVNAME)) { /* file loaded? */ + loadfunc(m->oargs.sarg[ff]); + varset(REFVNAME, '=', 1.0); + } else /* reference_count++ */ + varset(REFVNAME, '=', varvalue(REFVNAME)+1.0); + } + curfunc = NULL; /* parse expressions */ + sprintf(sbuf, "%s \"%s\"", ofun[m->otype].funame, m->oname); + for (i=0, ne=0; ef && i < na; i++, ef>>=1) + if (ef & 1) { /* flagged as an expression? */ + if (ne >= MAXEXPR) + objerror(m, INTERNAL, "too many expressions"); + initstr(arg[i], sbuf, 0); + f->ep[ne++] = getE1(); + if (nextc != EOF) + syntax("unexpected character"); + } + if (ef) + goto toofew; + if (i <= ff) /* find transform args */ + i = ff+1; + while (i < na && arg[i][0] != '-') + i++; + if (i == na) /* no transform */ + f->f = f->b = &unitxf; + else { /* get transform */ + if ((f->b = (XF *)malloc(sizeof(XF))) == NULL) + goto memerr; + if (invxf(f->b, na-i, arg+i) != na-i) + objerror(m, USER, "bad transform"); + if (f->b->sca < 0.0) + f->b->sca = -f->b->sca; + if (dofwd) { /* do both transforms */ + if ((f->f = (XF *)malloc(sizeof(XF))) == NULL) + goto memerr; + xf(f->f, na-i, arg+i); + if (f->f->sca < 0.0) + f->f->sca = -f->f->sca; + } + } + m->os = (char *)f; + return(f); +toofew: + objerror(m, USER, "too few string arguments"); +memerr: + error(SYSTEM, "out of memory in getfunc"); } -setfunc(m, r) /* simplified interface to setmap */ -register OBJREC *m; -RAY *r; +freefunc(m) /* free memory associated with modifier */ +OBJREC *m; { - register XF *mxf; + register MFUNC *f; + register int i; - if ((mxf = (XF *)m->os) == NULL) { - register int n; - register char **sa; - - for (n = m->oargs.nsargs, sa = m->oargs.sarg; - n > 0 && **sa != '-'; n--, sa++) - ; - mxf = (XF *)malloc(sizeof(XF)); - if (mxf == NULL) - goto memerr; - if (invxf(mxf, n, sa) != n) - objerror(m, USER, "bad transform"); - if (mxf->sca < 0.0) - mxf->sca = -mxf->sca; - m->os = (char *)mxf; + if ((f = (MFUNC *)m->os) == NULL) + return; + for (i = 0; f->ep[i] != NULL; i++) + epfree(f->ep[i]); + if (f->ctx[0]) { /* done with definitions */ + setcontext(f->ctx); + i = varvalue(REFVNAME)-.5; /* reference_count-- */ + if (i > 0) + varset(REFVNAME, '=', (double)i); + else + dcleanup(2); /* remove definitions */ + freestr(f->ctx); } - setmap(m, r, mxf); - return; -memerr: - error(SYSTEM, "out of memory in setfunc"); + if (f->b != &unitxf) + free((char *)f->b); + if (f->f != NULL && f->f != &unitxf) + free((char *)f->f); + free((char *)f); + m->os = NULL; } +setfunc(m, r) /* set channels for function call */ +OBJREC *m; +register RAY *r; +{ + static long lastrno = -1; + register MFUNC *f; + /* get function */ + if ((f = (MFUNC *)m->os) == NULL) + error(m, CONSISTENCY, "setfunc called before getfunc"); + /* set evaluator context */ + setcontext(f->ctx); + /* check to see if matrix set */ + if (m == fobj && r->rno == lastrno) + return(0); + fobj = m; + fray = r; + if (r->rox != NULL) + if (f->b != &unitxf) { + funcxf.sca = r->rox->b.sca * f->b->sca; + multmat4(funcxf.xfm, r->rox->b.xfm, f->b->xfm); + } else + copystruct(&funcxf, &r->rox->b); + else + copystruct(&funcxf, f->b); + lastrno = r->rno; + eclock++; /* notify expression evaluator */ + return(1); +} + + loadfunc(fname) /* load definition file */ char *fname; { @@ -108,7 +205,7 @@ char *fname; } -double +static double l_arg() /* return nth real argument */ { extern double argument(); @@ -127,6 +224,24 @@ l_arg() /* return nth real argument */ } +static double +l_erf() /* error function */ +{ + extern double erf(); + + return(erf(argument(1))); +} + + +static double +l_erfc() /* cumulative error function */ +{ + extern double erfc(); + + return(erfc(argument(1))); +} + + double chanvalue(n) /* return channel n to calcomp */ register int n; @@ -166,8 +281,10 @@ register int n; return(sum * funcxf.sca); } - if (n == 10) /* dot product */ - return(fray->rod); + if (n == 10) /* dot product (range [-1,1]) */ + return( fray->rod <= -1.0 ? -1.0 : + fray->rod >= 1.0 ? 1.0 : + fray->rod ); if (n == 11) /* scale */ return(funcxf.sca);