ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/virtuals.c
Revision: 1.14
Committed: Wed Jun 26 11:54:43 1991 UTC (32 years, 10 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.13: +19 -8 lines
Log Message:
fixed bug in solid angle determination for local sources

File Contents

# Content
1 /* Copyright (c) 1991 Regents of the University of California */
2
3 #ifndef lint
4 static char SCCSid[] = "$SunId$ LBL";
5 #endif
6
7 /*
8 * Routines for simulating virtual light sources
9 * Thus far, we only support planar mirrors.
10 */
11
12 #include "ray.h"
13
14 #include "octree.h"
15
16 #include "otypes.h"
17
18 #include "source.h"
19
20 #include "random.h"
21
22 #define MINSAMPLES 3 /* minimum number of pretest samples */
23 #define STESTMAX 30 /* maximum seeks per sample */
24
25
26 double getdisk();
27
28 static OBJECT *vobject; /* virtual source objects */
29 static int nvobjects = 0; /* number of virtual source objects */
30
31
32 markvirtuals() /* find and mark virtual sources */
33 {
34 register OBJREC *o;
35 register int i;
36 /* check number of direct relays */
37 if (directrelay <= 0)
38 return;
39 /* find virtual source objects */
40 for (i = 0; i < nobjects; i++) {
41 o = objptr(i);
42 if (!issurface(o->otype) || o->omod == OVOID)
43 continue;
44 if (!isvlight(objptr(o->omod)->otype))
45 continue;
46 if (sfun[o->otype].of == NULL ||
47 sfun[o->otype].of->getpleq == NULL)
48 objerror(o, USER, "illegal material");
49 if (nvobjects == 0)
50 vobject = (OBJECT *)malloc(sizeof(OBJECT));
51 else
52 vobject = (OBJECT *)realloc((char *)vobject,
53 (unsigned)(nvobjects+1)*sizeof(OBJECT));
54 if (vobject == NULL)
55 error(SYSTEM, "out of memory in addvirtuals");
56 vobject[nvobjects++] = i;
57 }
58 if (nvobjects == 0)
59 return;
60 #ifdef DEBUG
61 fprintf(stderr, "found %d virtual source objects\n", nvobjects);
62 #endif
63 /* append virtual sources */
64 for (i = nsources; i-- > 0; )
65 addvirtuals(i, directrelay);
66 /* done with our object list */
67 free((char *)vobject);
68 nvobjects = 0;
69 }
70
71
72 addvirtuals(sn, nr) /* add virtuals associated with source */
73 int sn;
74 int nr;
75 {
76 register int i;
77 /* check relay limit first */
78 if (nr <= 0)
79 return;
80 if (source[sn].sflags & SSKIP)
81 return;
82 /* check each virtual object for projection */
83 for (i = 0; i < nvobjects; i++)
84 /* vproject() calls us recursively */
85 vproject(objptr(vobject[i]), sn, nr-1);
86 }
87
88
89 vproject(o, sn, n) /* create projected source(s) if they exist */
90 OBJREC *o;
91 int sn;
92 int n;
93 {
94 register int i;
95 register VSMATERIAL *vsmat;
96 MAT4 proj;
97 int ns;
98
99 if (o == source[sn].so) /* objects cannot project themselves */
100 return;
101 /* get virtual source material */
102 vsmat = sfun[objptr(o->omod)->otype].mf;
103 /* project virtual sources */
104 for (i = 0; i < vsmat->nproj; i++)
105 if ((*vsmat->vproj)(proj, o, &source[sn], i))
106 if ((ns = makevsrc(o, sn, proj)) >= 0) {
107 #ifdef DEBUG
108 virtverb(ns, stderr);
109 #endif
110 addvirtuals(ns, n);
111 }
112 }
113
114
115 int
116 makevsrc(op, sn, pm) /* make virtual source if reasonable */
117 OBJREC *op;
118 register int sn;
119 MAT4 pm;
120 {
121 FVECT nsloc, nsnorm, ocent, v;
122 double maxrad2, d;
123 int nsflags;
124 SPOT theirspot, ourspot;
125 register int i;
126
127 nsflags = source[sn].sflags | (SVIRTUAL|SSPOT|SFOLLOW);
128 /* get object center and max. radius */
129 maxrad2 = getdisk(ocent, op, sn);
130 if (maxrad2 <= FTINY) /* too small? */
131 return(-1);
132 /* get location and spot */
133 if (source[sn].sflags & SDISTANT) { /* distant source */
134 if (source[sn].sflags & SPROX)
135 return(-1); /* should never get here! */
136 multv3(nsloc, source[sn].sloc, pm);
137 VCOPY(ourspot.aim, ocent);
138 ourspot.siz = PI*maxrad2;
139 ourspot.flen = 0.;
140 if (source[sn].sflags & SSPOT) {
141 copystruct(&theirspot, source[sn].sl.s);
142 multp3(theirspot.aim, source[sn].sl.s->aim, pm);
143 d = ourspot.siz;
144 if (!commonbeam(&ourspot, &theirspot, nsloc))
145 return(-1); /* no overlap */
146 if (ourspot.siz < d-FTINY) { /* it shrunk */
147 d = beamdisk(v, op, &ourspot, nsloc);
148 if (d <= FTINY)
149 return(-1);
150 if (d < maxrad2) {
151 maxrad2 = d;
152 VCOPY(ocent, v);
153 }
154 }
155 }
156 } else { /* local source */
157 multp3(nsloc, source[sn].sloc, pm);
158 for (i = 0; i < 3; i++)
159 ourspot.aim[i] = ocent[i] - nsloc[i];
160 if ((d = normalize(ourspot.aim)) == 0.)
161 return(-1); /* at source!! */
162 if (source[sn].sflags & SPROX && d > source[sn].sl.prox)
163 return(-1); /* too far away */
164 ourspot.flen = 0.;
165 if (d*d > maxrad2)
166 ourspot.siz = 2.*PI*(1. - sqrt(1.-maxrad2/(d*d)));
167 else
168 nsflags &= ~SSPOT;
169 if (source[sn].sflags & SSPOT) {
170 copystruct(&theirspot, source[sn].sl.s);
171 multv3(theirspot.aim, source[sn].sl.s->aim, pm);
172 if (nsflags & SSPOT) {
173 ourspot.flen = theirspot.flen;
174 d = ourspot.siz;
175 if (!commonspot(&ourspot, &theirspot, nsloc))
176 return(-1); /* no overlap */
177 } else {
178 nsflags |= SSPOT;
179 copystruct(&ourspot, &theirspot);
180 d = 2.*ourspot.siz;
181 }
182 if (ourspot.siz < d-FTINY) { /* it shrunk */
183 d = spotdisk(v, op, &ourspot, nsloc);
184 if (d <= FTINY)
185 return(-1);
186 if (d < maxrad2) {
187 maxrad2 = d;
188 VCOPY(ocent, v);
189 }
190 }
191 }
192 if (source[sn].sflags & SFLAT) { /* behind source? */
193 multv3(nsnorm, source[sn].snorm, pm);
194 if (!checkspot(&ourspot, nsnorm))
195 return(-1);
196 }
197 }
198 /* pretest visibility */
199 nsflags = vstestvis(nsflags, op, ocent, maxrad2, sn);
200 if (nsflags & SSKIP)
201 return(-1); /* obstructed */
202 /* it all checks out, so make it */
203 if ((i = newsource()) < 0)
204 goto memerr;
205 source[i].sflags = nsflags;
206 VCOPY(source[i].sloc, nsloc);
207 if (nsflags & SFLAT)
208 VCOPY(source[i].snorm, nsnorm);
209 source[i].ss = source[sn].ss; source[i].ss2 = source[sn].ss2;
210 if (nsflags & SSPOT) {
211 if ((source[i].sl.s = (SPOT *)malloc(sizeof(SPOT))) == NULL)
212 goto memerr;
213 copystruct(source[i].sl.s, &ourspot);
214 }
215 if (nsflags & SPROX)
216 source[i].sl.prox = source[sn].sl.prox;
217 source[i].sa.svnext = sn;
218 source[i].so = op;
219 return(i);
220 memerr:
221 error(SYSTEM, "out of memory in makevsrc");
222 }
223
224
225 double
226 getdisk(oc, op, sn) /* get visible object disk */
227 FVECT oc;
228 OBJREC *op;
229 register int sn;
230 {
231 double rad2, roffs, offs, d, rd, rdoto;
232 FVECT rnrm, nrm;
233 /* first, use object getdisk function */
234 rad2 = getmaxdisk(oc, op);
235 if (!(source[sn].sflags & SVIRTUAL))
236 return(rad2); /* all done for normal source */
237 /* check for correct side of relay surface */
238 roffs = getplaneq(rnrm, source[sn].so);
239 rd = DOT(rnrm, source[sn].sloc); /* source projection */
240 if (!(source[sn].sflags & SDISTANT))
241 rd -= roffs;
242 d = DOT(rnrm, oc) - roffs; /* disk distance to relay plane */
243 if ((d > 0.) ^ (rd > 0.))
244 return(rad2); /* OK if opposite sides */
245 if (d*d >= rad2)
246 return(0.); /* no relay is possible */
247 /* we need a closer look */
248 offs = getplaneq(nrm, op);
249 rdoto = DOT(rnrm, nrm);
250 if (d*d >= rad2*(1.-rdoto*rdoto))
251 return(0.); /* disk entirely on projection side */
252 /* should shrink disk but I'm lazy */
253 return(rad2);
254 }
255
256
257 int
258 vstestvis(f, o, oc, or2, sn) /* pretest source visibility */
259 int f; /* virtual source flags */
260 OBJREC *o; /* relay object */
261 FVECT oc; /* relay object center */
262 double or2; /* relay object radius squared */
263 register int sn; /* target source number */
264 {
265 RAY sr;
266 FVECT onorm;
267 FVECT offsdir;
268 double or, d;
269 int infront;
270 int ssn;
271 int nhit, nok;
272 register int i, n;
273 /* return if pretesting disabled */
274 if (vspretest <= 0)
275 return(f);
276 /* get surface normal */
277 getplaneq(onorm, o);
278 /* set number of rays to sample */
279 if (source[sn].sflags & SDISTANT) {
280 n = (2./3.*PI*PI)*or2/(thescene.cusize*thescene.cusize)*
281 vspretest + .5;
282 infront = DOT(onorm, source[sn].sloc) > 0.;
283 } else {
284 for (i = 0; i < 3; i++)
285 offsdir[i] = source[sn].sloc[i] - oc[i];
286 n = or2/DOT(offsdir,offsdir)*vspretest + .5;
287 infront = DOT(onorm, offsdir) > 0.;
288 }
289 if (n < MINSAMPLES) n = MINSAMPLES;
290 #ifdef DEBUG
291 fprintf(stderr, "pretesting source %d in object %s with %d rays\n",
292 sn, o->oname, n);
293 #endif
294 /* sample */
295 or = sqrt(or2);
296 ssn = STESTMAX*n;
297 nhit = nok = 0;
298 while (n-- > 0) {
299 /* get sample point */
300 do {
301 if (--ssn < 0) {
302 #ifdef DEBUG
303 fprintf(stderr, "\ttoo hard to hit\n");
304 #endif
305 return(f); /* too small a target! */
306 }
307 for (i = 0; i < 3; i++)
308 offsdir[i] = or*(1. -
309 2.*urand(931*i+5827+ssn));
310 for (i = 0; i < 3; i++)
311 sr.rorg[i] = oc[i] + offsdir[i];
312 d = DOT(offsdir,onorm);
313 if (infront)
314 for (i = 0; i < 3; i++) {
315 sr.rorg[i] -= (d-.0001)*onorm[i];
316 sr.rdir[i] = -onorm[i];
317 }
318 else
319 for (i = 0; i < 3; i++) {
320 sr.rorg[i] -= (d+.0001)*onorm[i];
321 sr.rdir[i] = onorm[i];
322 }
323 rayorigin(&sr, NULL, PRIMARY, 1.0);
324 } while (!(*ofun[o->otype].funp)(o, &sr));
325 /* check against source */
326 samplendx++;
327 if (srcray(&sr, NULL, sn) == 0.)
328 continue;
329 sr.revf = srcvalue;
330 rayvalue(&sr);
331 if (bright(sr.rcol) <= FTINY)
332 continue;
333 nok++;
334 /* check against obstructions */
335 srcray(&sr, NULL, sn);
336 rayvalue(&sr);
337 if (bright(sr.rcol) > FTINY)
338 nhit++;
339 if (nhit > 0 && nhit < nok) {
340 #ifdef DEBUG
341 fprintf(stderr, "\tpartially occluded\n");
342 #endif
343 return(f); /* need to shadow test */
344 }
345 }
346 if (nhit == 0) {
347 #ifdef DEBUG
348 fprintf(stderr, "\t0%% hit rate\n");
349 #endif
350 return(f | SSKIP); /* 0% hit rate: totally occluded */
351 }
352 #ifdef DEBUG
353 fprintf(stderr, "\t100%% hit rate\n");
354 #endif
355 return(f & ~SFOLLOW); /* 100% hit rate: no occlusion */
356 }
357
358
359 #ifdef DEBUG
360 virtverb(sn, fp) /* print verbose description of virtual source */
361 register int sn;
362 FILE *fp;
363 {
364 register int i;
365
366 fprintf(fp, "%s virtual source %d in %s %s\n",
367 source[sn].sflags & SDISTANT ? "distant" : "local",
368 sn, ofun[source[sn].so->otype].funame,
369 source[sn].so->oname);
370 fprintf(fp, "\tat (%f,%f,%f)\n",
371 source[sn].sloc[0], source[sn].sloc[1], source[sn].sloc[2]);
372 fprintf(fp, "\tlinked to source %d (%s)\n",
373 source[sn].sa.svnext, source[source[sn].sa.svnext].so->oname);
374 if (source[sn].sflags & SFOLLOW)
375 fprintf(fp, "\talways followed\n");
376 else
377 fprintf(fp, "\tnever followed\n");
378 if (!(source[sn].sflags & SSPOT))
379 return;
380 fprintf(fp, "\twith spot aim (%f,%f,%f) and size %f\n",
381 source[sn].sl.s->aim[0], source[sn].sl.s->aim[1],
382 source[sn].sl.s->aim[2], source[sn].sl.s->siz);
383 }
384 #endif