--- ray/src/rt/func.c 1995/11/02 17:38:05 2.13 +++ ray/src/rt/func.c 2003/02/25 02:47:22 2.15 @@ -1,15 +1,12 @@ -/* Copyright (c) 1995 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: func.c,v 2.15 2003/02/25 02:47:22 greg Exp $"; #endif - /* * func.c - interface to calcomp functions. - * - * 4/7/86 */ +#include "copyright.h" + #include "ray.h" #include "otypes.h" @@ -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; @@ -56,6 +52,8 @@ int dofwd; 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); @@ -82,7 +80,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)); @@ -135,6 +133,7 @@ memerr: } +void freefunc(m) /* free memory associated with modifier */ OBJREC *m; { @@ -155,14 +154,15 @@ 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; @@ -171,7 +171,7 @@ register RAY *r; 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 */ @@ -193,10 +193,10 @@ register RAY *r; } +void loadfunc(fname) /* load definition file */ char *fname; { - extern char *getlibpath(); /* library search path */ char *ffname; if ((ffname = getpath(fname, getlibpath(), R_OK)) == NULL) { @@ -210,7 +210,6 @@ char *fname; static double l_arg() /* return nth real argument */ { - extern double argument(); register int n; if (fobj == NULL)