ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rcontrib.c
Revision: 2.26
Committed: Wed Jul 15 23:38:37 2015 UTC (8 years, 10 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R0
Changes since 2.25: +5 -1 lines
Log Message:
Added check for 'void' modifier in -m or -M option

File Contents

# User Rev Content
1 greg 2.1 #ifndef lint
2 greg 2.26 static const char RCSid[] = "$Id: rcontrib.c,v 2.25 2015/05/20 13:16:20 greg Exp $";
3 greg 2.1 #endif
4     /*
5     * Accumulate ray contributions for a set of materials
6     * Initialization and calculation routines
7     */
8    
9 greg 2.20 #include "copyright.h"
10    
11 greg 2.1 #include "rcontrib.h"
12     #include "otypes.h"
13 greg 2.14 #include "source.h"
14 greg 2.1
15 greg 2.2 char *shm_boundary = NULL; /* boundary of shared memory */
16    
17 greg 2.1 CUBE thescene; /* our scene */
18     OBJECT nsceneobjs; /* number of objects in our scene */
19    
20     int dimlist[MAXDIM]; /* sampling dimensions */
21     int ndims = 0; /* number of sampling dimensions */
22     int samplendx = 0; /* index for this sample */
23    
24     static void trace_contrib(RAY *r); /* our trace callback */
25     void (*trace)() = trace_contrib;
26    
27     int do_irrad = 0; /* compute irradiance? */
28    
29 greg 2.3 int rand_samp = 1; /* pure Monte Carlo sampling? */
30 greg 2.1
31 greg 2.8 double dstrsrc = 0.9; /* square source distribution */
32 greg 2.1 double shadthresh = .03; /* shadow threshold */
33     double shadcert = .75; /* shadow certainty */
34     int directrelay = 3; /* number of source relays */
35     int vspretest = 512; /* virtual source pretest density */
36     int directvis = 1; /* sources visible? */
37     double srcsizerat = .2; /* maximum ratio source size/dist. */
38    
39     COLOR cextinction = BLKCOLOR; /* global extinction coefficient */
40     COLOR salbedo = BLKCOLOR; /* global scattering albedo */
41     double seccg = 0.; /* global scattering eccentricity */
42     double ssampdist = 0.; /* scatter sampling distance */
43    
44     double specthresh = .15; /* specular sampling threshold */
45     double specjitter = 1.; /* specular sampling jitter */
46    
47     int backvis = 1; /* back face visibility */
48    
49 greg 2.3 int maxdepth = -10; /* maximum recursion depth */
50     double minweight = 2e-3; /* minimum ray weight */
51 greg 2.1
52     char *ambfile = NULL; /* ambient file name */
53     COLOR ambval = BLKCOLOR; /* ambient value */
54     int ambvwt = 0; /* initial weight for ambient value */
55     double ambacc = 0; /* ambient accuracy */
56     int ambres = 256; /* ambient resolution */
57     int ambdiv = 350; /* ambient divisions */
58     int ambssamp = 0; /* ambient super-samples */
59     int ambounce = 1; /* ambient bounces */
60     char *amblist[AMBLLEN+1]; /* ambient include/exclude list */
61     int ambincl = -1; /* include == 1, exclude == 0 */
62    
63     int account; /* current accumulation count */
64     RNUMBER raysleft; /* number of rays left to trace */
65     long waitflush; /* how long until next flush */
66    
67 greg 2.4 RNUMBER lastray = 0; /* last ray number sent */
68     RNUMBER lastdone = 0; /* last ray output */
69 greg 2.1
70     static void mcfree(void *p) { epfree((*(MODCONT *)p).binv); free(p); }
71    
72     LUTAB modconttab = LU_SINIT(NULL,mcfree); /* modifier lookup table */
73    
74     /************************** INITIALIZATION ROUTINES ***********************/
75    
76     char *
77     formstr( /* return format identifier */
78     int f
79     )
80     {
81     switch (f) {
82     case 'a': return("ascii");
83     case 'f': return("float");
84     case 'd': return("double");
85     case 'c': return(COLRFMT);
86     }
87     return("unknown");
88     }
89    
90    
91     /* Add modifier to our list to track */
92     MODCONT *
93 greg 2.20 addmodifier(char *modn, char *outf, char *prms, char *binv, int bincnt)
94 greg 2.1 {
95     LUENT *lep = lu_find(&modconttab,modn);
96     MODCONT *mp;
97     EPNODE *ebinv;
98     int i;
99    
100     if (lep->data != NULL) {
101     sprintf(errmsg, "duplicate modifier '%s'", modn);
102     error(USER, errmsg);
103     }
104     if (nmods >= MAXMODLIST)
105     error(INTERNAL, "too many modifiers");
106 greg 2.26 if (!strcmp(modn, VOIDID)) {
107     sprintf(errmsg, "cannot track '%s' modifier", VOIDID);
108     error(USER, errmsg);
109     }
110 greg 2.1 modname[nmods++] = modn; /* XXX assumes static string */
111     lep->key = modn; /* XXX assumes static string */
112     if (binv == NULL)
113     binv = "0"; /* use single bin if unspecified */
114     ebinv = eparse(binv);
115     if (ebinv->type == NUM) { /* check value if constant */
116     bincnt = (int)(evalue(ebinv) + 1.5);
117     if (bincnt != 1) {
118     sprintf(errmsg, "illegal non-zero constant for bin (%s)",
119     binv);
120     error(USER, errmsg);
121     }
122     } else if (bincnt <= 0) {
123     sprintf(errmsg,
124     "unspecified or illegal bin count for modifier '%s'",
125     modn);
126     error(USER, errmsg);
127     }
128     /* initialize results holder */
129     mp = (MODCONT *)malloc(sizeof(MODCONT)+sizeof(DCOLOR)*(bincnt-1));
130     if (mp == NULL)
131     error(SYSTEM, "out of memory in addmodifier");
132     mp->outspec = outf; /* XXX assumes static string */
133     mp->modname = modn; /* XXX assumes static string */
134 greg 2.20 mp->params = prms;
135 greg 2.1 mp->binv = ebinv;
136     mp->nbins = bincnt;
137     memset(mp->cbin, 0, sizeof(DCOLOR)*bincnt);
138     /* allocate output streams */
139     for (i = bincnt; i-- > 0; )
140     getostream(mp->outspec, mp->modname, i, 1);
141     lep->data = (char *)mp;
142     return(mp);
143     }
144    
145    
146 greg 2.10 /* Add modifiers from a file list */
147 greg 2.1 void
148 greg 2.20 addmodfile(char *fname, char *outf, char *prms, char *binv, int bincnt)
149 greg 2.1 {
150     char *mname[MAXMODLIST];
151     int i;
152     /* find the file & store strings */
153     if (wordfile(mname, getpath(fname, getrlibpath(), R_OK)) < 0) {
154     sprintf(errmsg, "cannot find modifier file '%s'", fname);
155     error(SYSTEM, errmsg);
156     }
157     for (i = 0; mname[i]; i++) /* add each one */
158 greg 2.20 addmodifier(mname[i], outf, prms, binv, bincnt);
159 greg 2.1 }
160    
161    
162     void
163     quit( /* quit program */
164     int code
165     )
166     {
167     if (nchild > 0) /* close children if any */
168 greg 2.10 end_children(code != 0);
169 greg 2.1 exit(code);
170     }
171    
172    
173     /* Initialize our process(es) */
174     static void
175     rcinit()
176     {
177     int i;
178    
179     if (nproc > MAXPROCESS)
180     sprintf(errmsg, "too many processes requested -- reducing to %d",
181     nproc = MAXPROCESS);
182 greg 2.2 if (nproc > 1) {
183     preload_objs(); /* preload auxiliary data */
184     /* set shared memory boundary */
185     shm_boundary = strcpy((char *)malloc(16), "SHM_BOUNDARY");
186     }
187 greg 2.14 for (i = 0; i < nsources; i++) /* tracing to sources as well */
188     source[i].sflags |= SFOLLOW;
189 greg 2.1 if (yres > 0) { /* set up flushing & ray counts */
190     if (xres > 0)
191     raysleft = (RNUMBER)xres*yres;
192     else
193     raysleft = yres;
194     } else
195     raysleft = 0;
196     if ((account = accumulate) > 1)
197     raysleft *= accumulate;
198     waitflush = (yres > 0) & (xres > 1) ? 0 : xres;
199    
200 greg 2.5 if (nproc > 1 && in_rchild()) /* forked child? */
201 greg 2.1 return; /* return to main processing loop */
202    
203 greg 2.5 if (recover) { /* recover previous output? */
204 greg 2.8 if (accumulate <= 0)
205 greg 2.5 reload_output();
206 greg 2.8 else
207 greg 2.5 recover_output();
208     }
209     if (nproc == 1) /* single process? */
210     return;
211 greg 2.8 /* else run appropriate controller */
212     if (accumulate <= 0)
213     feeder_loop();
214     else
215     parental_loop();
216 greg 2.1 quit(0); /* parent musn't return! */
217     }
218    
219     /************************** MAIN CALCULATION PROCESS ***********************/
220    
221     /* Our trace call to sum contributions */
222     static void
223     trace_contrib(RAY *r)
224     {
225     MODCONT *mp;
226 greg 2.19 double bval;
227 greg 2.1 int bn;
228     RREAL contr[3];
229    
230 greg 2.6 if (r->ro == NULL || r->ro->omod == OVOID)
231 greg 2.1 return;
232 greg 2.20 /* shadow ray not on source? */
233     if (r->rsrc >= 0 && source[r->rsrc].so != r->ro)
234     return;
235 greg 2.1
236     mp = (MODCONT *)lu_find(&modconttab,objptr(r->ro->omod)->oname)->data;
237    
238 greg 2.6 if (mp == NULL) /* not in our list? */
239     return;
240 greg 2.1
241 greg 2.21 worldfunc(RCCONTEXT, r); /* else set context */
242 greg 2.22 set_eparams((char *)mp->params);
243 greg 2.21 if ((bval = evalue(mp->binv)) <= -.5) /* and get bin number */
244     return; /* silently ignore negatives */
245 greg 2.19 if ((bn = (int)(bval + .5)) >= mp->nbins) {
246 greg 2.23 sprintf(errmsg, "bad bin number (%d ignored)", bn);
247     error(WARNING, errmsg);
248 greg 2.1 return;
249     }
250 greg 2.14 raycontrib(contr, r, PRIMARY); /* compute coefficient */
251 greg 2.1 if (contrib)
252 greg 2.14 multcolor(contr, r->rcol); /* -> contribution */
253 greg 2.1 addcolor(mp->cbin[bn], contr);
254     }
255    
256    
257 greg 2.7 /* Evaluate irradiance contributions */
258 greg 2.1 static void
259 greg 2.7 eval_irrad(FVECT org, FVECT dir)
260 greg 2.1 {
261 greg 2.7 RAY thisray;
262    
263     VSUM(thisray.rorg, org, dir, 1.1e-4);
264     thisray.rdir[0] = -dir[0];
265     thisray.rdir[1] = -dir[1];
266     thisray.rdir[2] = -dir[2];
267     thisray.rmax = 0.0;
268     rayorigin(&thisray, PRIMARY, NULL, NULL);
269 greg 2.16 /* pretend we hit surface */
270     thisray.rt = thisray.rot = 1e-5;
271 greg 2.7 thisray.rod = 1.0;
272 greg 2.15 VCOPY(thisray.ron, dir);
273 greg 2.7 VSUM(thisray.rop, org, dir, 1e-4);
274     samplendx++; /* compute result */
275     (*ofun[Lamb.otype].funp)(&Lamb, &thisray);
276 greg 2.1 }
277    
278    
279 greg 2.7 /* Evaluate radiance contributions */
280 greg 2.1 static void
281 greg 2.7 eval_rad(FVECT org, FVECT dir, double dmax)
282 greg 2.1 {
283     RAY thisray;
284     /* set up ray */
285 greg 2.7 VCOPY(thisray.rorg, org);
286     VCOPY(thisray.rdir, dir);
287     thisray.rmax = dmax;
288 greg 2.1 rayorigin(&thisray, PRIMARY, NULL, NULL);
289     samplendx++; /* call ray evaluation */
290     rayvalue(&thisray);
291     }
292    
293    
294     /* Accumulate and/or output ray contributions (child or only process) */
295     static void
296     done_contrib()
297     {
298     MODCONT *mp;
299     int i;
300    
301     if (account <= 0 || --account)
302     return; /* not time yet */
303    
304     for (i = 0; i < nmods; i++) { /* output records & clear */
305     mp = (MODCONT *)lu_find(&modconttab,modname[i])->data;
306     mod_output(mp);
307     memset(mp->cbin, 0, sizeof(DCOLOR)*mp->nbins);
308     }
309     end_record(); /* end lines & flush if time */
310    
311     account = accumulate; /* reset accumulation counter */
312     }
313    
314    
315     /* Principal calculation loop (called by main) */
316     void
317     rcontrib()
318     {
319     static int ignore_warning_given = 0;
320     FVECT orig, direc;
321     double d;
322 greg 2.2 /* initialize (& fork more of us) */
323 greg 2.1 rcinit();
324     /* load rays from stdin & process */
325     #ifdef getc_unlocked
326 greg 2.2 flockfile(stdin); /* avoid mutex overhead */
327 greg 2.1 #endif
328     while (getvec(orig) == 0 && getvec(direc) == 0) {
329     d = normalize(direc);
330 greg 2.17 if (nchild != -1 && (d == 0.0) & (accumulate == 0)) {
331 greg 2.1 if (!ignore_warning_given++)
332     error(WARNING,
333     "dummy ray(s) ignored during accumulation\n");
334     continue;
335     }
336     if (lastray+1 < lastray)
337     lastray = lastdone = 0;
338     ++lastray;
339     if (d == 0.0) { /* zero ==> flush */
340 greg 2.18 if ((yres <= 0) | (xres <= 1))
341 greg 2.17 waitflush = 1; /* flush after */
342     if (nchild == -1)
343     account = 1;
344 greg 2.7 } else if (imm_irrad) { /* else compute */
345     eval_irrad(orig, direc);
346     } else {
347     eval_rad(orig, direc, lim_dist ? d : 0.0);
348 greg 2.1 }
349     done_contrib(); /* accumulate/output */
350     ++lastdone;
351     if (raysleft && !--raysleft)
352     break; /* preemptive EOI */
353     }
354 greg 2.11 if (nchild != -1 && (accumulate <= 0) | (account < accumulate)) {
355 greg 2.1 if (account < accumulate) {
356     error(WARNING, "partial accumulation in final record");
357     accumulate -= account;
358     }
359     account = 1; /* output accumulated totals */
360     done_contrib();
361     }
362 greg 2.9 lu_done(&ofiletab); /* close output files */
363 greg 2.1 if (raysleft)
364     error(USER, "unexpected EOF on input");
365     }