1 |
– |
/* Copyright (c) 1995 Regents of the University of California */ |
2 |
– |
|
1 |
|
#ifndef lint |
2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
2 |
> |
static const char RCSid[] = "$Id$"; |
3 |
|
#endif |
6 |
– |
|
4 |
|
/* |
5 |
|
* Mist volumetric material. |
6 |
|
*/ |
7 |
|
|
8 |
< |
#include "ray.h" |
8 |
> |
#include "copyright.h" |
9 |
|
|
10 |
+ |
#include <string.h> |
11 |
+ |
|
12 |
+ |
#include "ray.h" |
13 |
|
#include "source.h" |
14 |
+ |
#include "rtotypes.h" |
15 |
|
|
16 |
|
/* |
17 |
|
* A mist volume is used to specify a region in the scene where a certain |
51 |
|
|
52 |
|
#define RELAYDELIM '>' /* relay delimiter character */ |
53 |
|
|
54 |
< |
extern COLOR cextinction; /* global coefficient of extinction */ |
55 |
< |
extern COLOR salbedo; /* global scattering albedo */ |
56 |
< |
extern double seccg; /* global scattering eccentricity */ |
54 |
> |
static int inslist(int *sl, int n); |
55 |
> |
static int srcmatch(SRCREC *sp, char *id); |
56 |
> |
static void add2slist(RAY *r, int *sl); |
57 |
|
|
58 |
|
|
59 |
|
static int |
60 |
< |
inslist(sl, n) /* return index of source n if it's in list sl */ |
61 |
< |
register int *sl; |
62 |
< |
register int n; |
60 |
> |
inslist( /* return index of source n if it's in list sl */ |
61 |
> |
int *sl, |
62 |
> |
int n |
63 |
> |
) |
64 |
|
{ |
65 |
< |
register int i; |
65 |
> |
int i; |
66 |
|
|
67 |
|
for (i = sl[0]; i > 0; i--) |
68 |
|
if (sl[i] == n) |
72 |
|
|
73 |
|
|
74 |
|
static int |
75 |
< |
srcmatch(sp, id) /* check for an id match on a light source */ |
76 |
< |
register SRCREC *sp; |
77 |
< |
register char *id; |
75 |
> |
srcmatch( /* check for an id match on a light source */ |
76 |
> |
SRCREC *sp, |
77 |
> |
char *id |
78 |
> |
) |
79 |
|
{ |
80 |
< |
extern char *index(); |
78 |
< |
register char *cp; |
80 |
> |
char *cp; |
81 |
|
/* check for relay sources */ |
82 |
< |
while ((cp = index(id, RELAYDELIM)) != NULL) { |
82 |
> |
while ((cp = strchr(id, RELAYDELIM)) != NULL) { |
83 |
|
if (!(sp->sflags & SVIRTUAL) || sp->so == NULL) |
84 |
|
return(0); |
85 |
|
if (strncmp(id, sp->so->oname, cp-id) || sp->so->oname[cp-id]) |
93 |
|
} |
94 |
|
|
95 |
|
|
96 |
< |
static |
97 |
< |
add2slist(r, sl) /* add source list to ray's */ |
98 |
< |
register RAY *r; |
99 |
< |
register int *sl; |
96 |
> |
static void |
97 |
> |
add2slist( /* add source list to ray's */ |
98 |
> |
RAY *r, |
99 |
> |
int *sl |
100 |
> |
) |
101 |
|
{ |
102 |
|
static int slspare[MAXSLIST+1]; /* in case of emergence */ |
103 |
< |
register int i; |
103 |
> |
int i; |
104 |
|
|
105 |
|
if (sl == NULL || sl[0] == 0) /* nothing to add */ |
106 |
|
return; |
109 |
|
for (i = sl[0]; i > 0; i--) |
110 |
|
if (!inslist(r->slights, sl[i])) { |
111 |
|
if (r->slights[0] >= MAXSLIST) |
112 |
< |
error(USER, "scattering source list overflow"); |
112 |
> |
error(INTERNAL, |
113 |
> |
"scattering source list overflow"); |
114 |
|
r->slights[++r->slights[0]] = sl[i]; |
115 |
|
} |
116 |
|
} |
117 |
|
|
118 |
|
|
119 |
< |
m_mist(m, r) /* process a ray entering or leaving some mist */ |
120 |
< |
OBJREC *m; |
121 |
< |
register RAY *r; |
119 |
> |
int |
120 |
> |
m_mist( /* process a ray entering or leaving some mist */ |
121 |
> |
OBJREC *m, |
122 |
> |
RAY *r |
123 |
> |
) |
124 |
|
{ |
125 |
|
RAY p; |
126 |
|
int *myslist = NULL; |
127 |
|
int newslist[MAXSLIST+1]; |
128 |
|
COLOR mext; |
129 |
|
double re, ge, be; |
130 |
< |
register int i, j; |
130 |
> |
int i, j; |
131 |
|
/* check arguments */ |
132 |
|
if (m->oargs.nfargs > 7) |
133 |
|
objerror(m, USER, "bad arguments"); |
134 |
|
/* get source indices */ |
135 |
|
if (m->oargs.nsargs > 0 && (myslist = (int *)m->os) == NULL) { |
136 |
|
if (m->oargs.nsargs > MAXSLIST) |
137 |
< |
objerror(m, USER, "too many sources in list"); |
137 |
> |
objerror(m, INTERNAL, "too many sources in list"); |
138 |
|
myslist = (int *)malloc((m->oargs.nsargs+1)*sizeof(int)); |
139 |
|
if (myslist == NULL) |
140 |
|
goto memerr; |
161 |
|
setcolor(mext, m->oargs.farg[0], m->oargs.farg[1], |
162 |
|
m->oargs.farg[2]); |
163 |
|
raytexture(r, m->omod); /* get modifiers */ |
164 |
< |
multcolor(mext, r->pcol); |
164 |
> |
multscolor(mext, r->pcol); |
165 |
|
} else |
166 |
|
setcolor(mext, 0., 0., 0.); |
167 |
|
/* start transmitted ray */ |
168 |
< |
if (rayorigin(&p, r, TRANS, 1.) < 0) |
168 |
> |
if (rayorigin(&p, TRANS, r, NULL) < 0) |
169 |
|
return(1); |
170 |
|
VCOPY(p.rdir, r->rdir); |
171 |
|
p.slights = newslist; |
185 |
|
} else { /* leaving ray */ |
186 |
|
if (myslist != NULL) { /* delete from list */ |
187 |
|
for (j = myslist[0]; j > 0; j--) |
188 |
< |
if (i = inslist(p.slights, myslist[j])) |
188 |
> |
if ( (i = inslist(p.slights, myslist[j])) ) |
189 |
|
p.slights[i] = -1; |
190 |
|
for (i = 0, j = 1; j <= p.slights[0]; j++) |
191 |
|
if (p.slights[j] != -1) |
217 |
|
p.gecc = seccg; |
218 |
|
} |
219 |
|
rayvalue(&p); /* calls rayparticipate() */ |
220 |
< |
copycolor(r->rcol, p.rcol); /* return value */ |
221 |
< |
r->rt = r->rot + p.rt; |
220 |
> |
copyscolor(r->rcol, p.rcol); /* return value */ |
221 |
> |
copyscolor(r->mcol, p.mcol); |
222 |
> |
r->rmt = r->rot + p.rmt; |
223 |
> |
r->rxt = r->rot + p.rxt; |
224 |
|
return(1); |
225 |
|
memerr: |
226 |
|
error(SYSTEM, "out of memory in m_mist"); |
227 |
+ |
return 0; /* pro forma return */ |
228 |
|
} |