8 |
|
#include "copyright.h" |
9 |
|
|
10 |
|
#include "ray.h" |
11 |
< |
|
11 |
> |
#include "paths.h" |
12 |
|
#include "otypes.h" |
13 |
– |
|
13 |
|
#include "func.h" |
14 |
|
|
15 |
|
|
30 |
|
static OBJREC *fobj = NULL; /* current function object */ |
31 |
|
static RAY *fray = NULL; /* current function ray */ |
32 |
|
|
33 |
< |
static double l_erf(), l_erfc(), l_arg(); |
33 |
> |
static double l_erf(char *), l_erfc(char *), l_arg(char *); |
34 |
|
|
35 |
|
|
36 |
|
MFUNC * |
37 |
< |
getfunc(m, ff, ef, dofwd) /* get function for this modifier */ |
38 |
< |
OBJREC *m; |
39 |
< |
int ff; |
40 |
< |
unsigned int ef; |
41 |
< |
int dofwd; |
37 |
> |
getfunc( /* get function for this modifier */ |
38 |
> |
OBJREC *m, |
39 |
> |
int ff, |
40 |
> |
unsigned int ef, |
41 |
> |
int dofwd |
42 |
> |
) |
43 |
|
{ |
44 |
|
static char initfile[] = INITFILE; |
45 |
|
char sbuf[MAXSTR]; |
46 |
< |
register char **arg; |
47 |
< |
register MFUNC *f; |
46 |
> |
char **arg; |
47 |
> |
MFUNC *f; |
48 |
|
int ne, na; |
49 |
< |
register int i; |
49 |
> |
int i; |
50 |
|
/* check to see if done already */ |
51 |
|
if ((f = (MFUNC *)m->os) != NULL) |
52 |
|
return(f); |
131 |
|
objerror(m, USER, "too few string arguments"); |
132 |
|
memerr: |
133 |
|
error(SYSTEM, "out of memory in getfunc"); |
134 |
+ |
return NULL; /* pro forma return */ |
135 |
|
} |
136 |
|
|
137 |
|
|
138 |
|
void |
139 |
< |
freefunc(m) /* free memory associated with modifier */ |
140 |
< |
OBJREC *m; |
139 |
> |
freefunc( /* free memory associated with modifier */ |
140 |
> |
OBJREC *m |
141 |
> |
) |
142 |
|
{ |
143 |
< |
register MFUNC *f; |
144 |
< |
register int i; |
143 |
> |
MFUNC *f; |
144 |
> |
int i; |
145 |
|
|
146 |
|
if ((f = (MFUNC *)m->os) == NULL) |
147 |
|
return; |
158 |
|
} |
159 |
|
if (f->b != &unitxf) |
160 |
|
free((void *)f->b); |
161 |
< |
if (f->f != NULL && f->f != &unitxf) |
161 |
> |
if ((f->f != NULL) & (f->f != &unitxf)) |
162 |
|
free((void *)f->f); |
163 |
|
free((void *)f); |
164 |
|
m->os = NULL; |
166 |
|
|
167 |
|
|
168 |
|
int |
169 |
< |
setfunc(m, r) /* set channels for function call */ |
170 |
< |
OBJREC *m; |
171 |
< |
register RAY *r; |
169 |
> |
setfunc( /* set channels for function call */ |
170 |
> |
OBJREC *m, /* can be NULL */ |
171 |
> |
RAY *r |
172 |
> |
) |
173 |
|
{ |
174 |
< |
static unsigned long lastrno = ~0; |
175 |
< |
register MFUNC *f; |
176 |
< |
/* get function */ |
177 |
< |
if ((f = (MFUNC *)m->os) == NULL) |
178 |
< |
objerror(m, CONSISTENCY, "setfunc called before getfunc"); |
179 |
< |
/* set evaluator context */ |
180 |
< |
setcontext(f->ctx); |
174 |
> |
static RNUMBER lastrno = ~0; |
175 |
> |
MFUNC *f; |
176 |
> |
/* get function if any */ |
177 |
> |
if (m != NULL) { |
178 |
> |
if ((f = (MFUNC *)m->os) == NULL) |
179 |
> |
objerror(m, CONSISTENCY, "setfunc called before getfunc"); |
180 |
> |
setcontext(f->ctx); /* set evaluator context */ |
181 |
> |
} else |
182 |
> |
setcontext(""); |
183 |
|
/* check to see if matrix set */ |
184 |
< |
if (m == fobj && r->rno == lastrno) |
184 |
> |
if ((m == fobj) & (r->rno == lastrno)) |
185 |
|
return(0); |
186 |
|
fobj = m; |
187 |
|
fray = r; |
190 |
|
funcxf.sca = r->rox->b.sca * f->b->sca; |
191 |
|
multmat4(funcxf.xfm, r->rox->b.xfm, f->b->xfm); |
192 |
|
} else |
193 |
< |
copystruct(&funcxf, &r->rox->b); |
193 |
> |
funcxf = r->rox->b; |
194 |
|
else |
195 |
< |
copystruct(&funcxf, f->b); |
195 |
> |
funcxf = *(f->b); |
196 |
|
lastrno = r->rno; |
197 |
|
eclock++; /* notify expression evaluator */ |
198 |
|
return(1); |
200 |
|
|
201 |
|
|
202 |
|
void |
203 |
< |
loadfunc(fname) /* load definition file */ |
204 |
< |
char *fname; |
203 |
> |
loadfunc( /* load definition file */ |
204 |
> |
char *fname |
205 |
> |
) |
206 |
|
{ |
207 |
|
char *ffname; |
208 |
|
|
209 |
< |
if ((ffname = getpath(fname, getlibpath(), R_OK)) == NULL) { |
209 |
> |
if ((ffname = getpath(fname, getrlibpath(), R_OK)) == NULL) { |
210 |
|
sprintf(errmsg, "cannot find function file \"%s\"", fname); |
211 |
|
error(USER, errmsg); |
212 |
|
} |
215 |
|
|
216 |
|
|
217 |
|
static double |
218 |
< |
l_arg() /* return nth real argument */ |
218 |
> |
l_arg(char *nm) /* return nth real argument */ |
219 |
|
{ |
220 |
< |
register int n; |
220 |
> |
int n; |
221 |
|
|
222 |
|
if (fobj == NULL) |
223 |
< |
syntax("arg(n) used in constant expression"); |
223 |
> |
error(USER, "arg(n) called without a context"); |
224 |
|
|
225 |
|
n = argument(1) + .5; /* round to integer */ |
226 |
|
|
236 |
|
|
237 |
|
|
238 |
|
static double |
239 |
< |
l_erf() /* error function */ |
239 |
> |
l_erf(char *nm) /* error function */ |
240 |
|
{ |
235 |
– |
extern double erf(); |
236 |
– |
|
241 |
|
return(erf(argument(1))); |
242 |
|
} |
243 |
|
|
244 |
|
|
245 |
|
static double |
246 |
< |
l_erfc() /* cumulative error function */ |
246 |
> |
l_erfc(char *nm) /* cumulative error function */ |
247 |
|
{ |
244 |
– |
extern double erfc(); |
245 |
– |
|
248 |
|
return(erfc(argument(1))); |
249 |
|
} |
250 |
|
|
251 |
|
|
252 |
|
double |
253 |
< |
chanvalue(n) /* return channel n to calcomp */ |
254 |
< |
register int n; |
253 |
> |
chanvalue( /* return channel n to calcomp */ |
254 |
> |
int n |
255 |
> |
) |
256 |
|
{ |
257 |
|
if (fray == NULL) |
258 |
|
syntax("ray parameter used in constant expression"); |