ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rcontrib.c
(Generate patch)

Comparing ray/src/rt/rcontrib.c (file contents):
Revision 2.2 by greg, Sun Jun 10 05:25:42 2012 UTC vs.
Revision 2.14 by greg, Wed Jun 27 15:32:58 2012 UTC

# Line 7 | Line 7 | static const char RCSid[] = "$Id$";
7   */
8  
9   #include "rcontrib.h"
10 #include "source.h"
10   #include "otypes.h"
11 < #include "platform.h"
11 > #include "source.h"
12  
13   char    *shm_boundary = NULL;           /* boundary of shared memory */
14  
# Line 25 | Line 24 | void   (*trace)() = trace_contrib;
24  
25   int     do_irrad = 0;                   /* compute irradiance? */
26  
27 < int     rand_samp = 0;                  /* pure Monte Carlo sampling? */
27 > int     rand_samp = 1;                  /* pure Monte Carlo sampling? */
28  
29 < double  dstrsrc = 0.0;                  /* square source distribution */
29 > double  dstrsrc = 0.9;                  /* square source distribution */
30   double  shadthresh = .03;               /* shadow threshold */
31   double  shadcert = .75;                 /* shadow certainty */
32   int     directrelay = 3;                /* number of source relays */
# Line 45 | Line 44 | double specjitter = 1.;                /* specular sampling jitter *
44  
45   int     backvis = 1;                    /* back face visibility */
46  
47 < int     maxdepth = 8;                   /* maximum recursion depth */
48 < double  minweight = 5e-4;               /* minimum ray weight */
47 > int     maxdepth = -10;                 /* maximum recursion depth */
48 > double  minweight = 2e-3;               /* minimum ray weight */
49  
50   char    *ambfile = NULL;                /* ambient file name */
51   COLOR   ambval = BLKCOLOR;              /* ambient value */
# Line 63 | Line 62 | int    account;                        /* current accumulation count */
62   RNUMBER raysleft;                       /* number of rays left to trace */
63   long    waitflush;                      /* how long until next flush */
64  
65 < int     lastray = 0;                    /* last ray number sent */
66 < int     lastdone = 0;                   /* last ray output */
65 > RNUMBER lastray = 0;                    /* last ray number sent */
66 > RNUMBER lastdone = 0;                   /* last ray output */
67  
69 /* Close output stream and free record */
70 static void
71 closestream(void *p)
72 {
73        STREAMOUT       *sop = (STREAMOUT *)p;
74        int             status = 0;
75        if (sop->outpipe)
76                status = pclose(sop->ofp);
77        else if (sop->ofp != stdout)
78                status = fclose(sop->ofp);
79        if (status)
80                error(SYSTEM, "error closing output stream");
81        free(p);
82 }
83
84 LUTAB   ofiletab = LU_SINIT(free,closestream);  /* output file table */
85
86 #define OF_MODIFIER     01
87 #define OF_BIN          02
88
68   static void mcfree(void *p) { epfree((*(MODCONT *)p).binv); free(p); }
69  
70   LUTAB   modconttab = LU_SINIT(NULL,mcfree);     /* modifier lookup table */
71  
93 static OBJECT           traset[MAXTSET+1]={0};  /* trace include set */
94
72   /************************** INITIALIZATION ROUTINES ***********************/
73  
97 void
98 tranotify(                      /* record new modifier */
99        OBJECT  obj
100 )
101 {
102        static int      hitlimit = 0;
103        OBJREC          *o = objptr(obj);
104        int             i;
105
106        if (obj == OVOID) {             /* starting over */
107                traset[0] = 0;
108                hitlimit = 0;
109                return;
110        }
111        if (hitlimit || !ismodifier(o->otype))
112                return;
113        for (i = nmods; i-- > 0; )
114                if (!strcmp(o->oname, modname[i])) {
115                        if (traset[0] >= MAXTSET) {
116                                error(WARNING, "too many same-named modifiers");
117                                hitlimit++;
118                                return;         /* should this be fatal? */
119                        }
120                        insertelem(traset, obj);
121                        break;
122                }
123 }
124
125
74   char *
75   formstr(                                /* return format identifier */
76          int  f
# Line 188 | Line 136 | addmodifier(char *modn, char *outf, char *binv, int bi
136   }
137  
138  
139 < /* add modifiers from a file list */
139 > /* Add modifiers from a file list */
140   void
141   addmodfile(char *fname, char *outf, char *binv, int bincnt)
142   {
# Line 210 | Line 158 | quit(                  /* quit program */
158   )
159   {
160          if (nchild > 0)         /* close children if any */
161 <                end_children();
161 >                end_children(code != 0);
162          exit(code);
163   }
164  
# Line 229 | Line 177 | rcinit()
177                                          /* set shared memory boundary */
178                  shm_boundary = strcpy((char *)malloc(16), "SHM_BOUNDARY");
179          }
180 <        if ((nproc > 1) & (accumulate <= 0))
181 <                put_zero_record(0);     /* prime our queue to accumulate */
234 <
235 <        if (recover) {                  /* recover previous output? */
236 <                if (accumulate <= 0) {
237 <                        reload_output();
238 <                        if (nproc > 1)
239 <                                queue_modifiers();
240 <                } else
241 <                        recover_output();
242 <        }
180 >        for (i = 0; i < nsources; i++)  /* tracing to sources as well */
181 >                source[i].sflags |= SFOLLOW;
182          if (yres > 0) {                 /* set up flushing & ray counts */
183                  if (xres > 0)
184                          raysleft = (RNUMBER)xres*yres;
# Line 250 | Line 189 | rcinit()
189          if ((account = accumulate) > 1)
190                  raysleft *= accumulate;
191          waitflush = (yres > 0) & (xres > 1) ? 0 : xres;
253                                        /* tracing to sources as well */
254        for (i = 0; i < nsources; i++)
255                source[i].sflags |= SFOLLOW;
192  
193 <        if (nproc == 1 || in_rchild())  /* single process or child */
193 >        if (nproc > 1 && in_rchild())   /* forked child? */
194                  return;                 /* return to main processing loop */
195  
196 <        parental_loop();                /* else run controller */
196 >        if (recover) {                  /* recover previous output? */
197 >                if (accumulate <= 0)
198 >                        reload_output();
199 >                else
200 >                        recover_output();
201 >        }
202 >        if (nproc == 1)                 /* single process? */
203 >                return;
204 >                                        /* else run appropriate controller */
205 >        if (accumulate <= 0)
206 >                feeder_loop();
207 >        else
208 >                parental_loop();
209          quit(0);                        /* parent musn't return! */
210   }
211  
# Line 271 | Line 219 | trace_contrib(RAY *r)
219          int     bn;
220          RREAL   contr[3];
221  
222 <        if (r->ro == NULL || !inset(traset, r->ro->omod))
222 >        if (r->ro == NULL || r->ro->omod == OVOID)
223                  return;
224  
225          mp = (MODCONT *)lu_find(&modconttab,objptr(r->ro->omod)->oname)->data;
226  
227 <        if (mp == NULL)
228 <                error(CONSISTENCY, "unexpected modifier in trace_contrib()");
227 >        if (mp == NULL)                         /* not in our list? */
228 >                return;
229 >                                                /* shadow ray not on source? */
230 >        if (r->rsrc >= 0 && source[r->rsrc].so != r->ro)
231 >                return;
232  
233 <        worldfunc(RCCONTEXT, r);                /* get bin number */
233 >        worldfunc(RCCONTEXT, r);                /* else get bin number */
234          bn = (int)(evalue(mp->binv) + .5);
235          if ((bn < 0) | (bn >= mp->nbins)) {
236                  error(WARNING, "bad bin number (ignored)");
237                  return;
238          }
239 <        raycontrib(contr, r, PRIMARY);
239 >        raycontrib(contr, r, PRIMARY);          /* compute coefficient */
240          if (contrib)
241 <                multcolor(contr, r->rcol);
241 >                multcolor(contr, r->rcol);      /* -> contribution */
242          addcolor(mp->cbin[bn], contr);
243   }
244  
245  
246 + /* Evaluate irradiance contributions */
247   static void
248 < rayirrad(                       /* compute irradiance rather than radiance */
297 <        RAY *r
298 < )
248 > eval_irrad(FVECT org, FVECT dir)
249   {
250 <        r->rot = 1e-5;                  /* pretend we hit surface */
251 <        VSUM(r->rop, r->rorg, r->rdir, r->rot);
252 <        r->ron[0] = -r->rdir[0];
253 <        r->ron[1] = -r->rdir[1];
254 <        r->ron[2] = -r->rdir[2];
255 <        r->rod = 1.0;
256 <                                        /* compute result */
257 <        r->revf = raytrace;
258 <        (*ofun[Lamb.otype].funp)(&Lamb, r);
259 <        r->revf = rayirrad;
250 >        RAY     thisray;
251 >
252 >        VSUM(thisray.rorg, org, dir, 1.1e-4);
253 >        thisray.rdir[0] = -dir[0];
254 >        thisray.rdir[1] = -dir[1];
255 >        thisray.rdir[2] = -dir[2];
256 >        thisray.rmax = 0.0;
257 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
258 >        thisray.rot = 1e-5;             /* pretend we hit surface */
259 >        thisray.rod = 1.0;
260 >        VSUM(thisray.rop, org, dir, 1e-4);
261 >        samplendx++;                    /* compute result */
262 >        (*ofun[Lamb.otype].funp)(&Lamb, &thisray);
263   }
264  
265  
266 < /* Evaluate ray contributions */
266 > /* Evaluate radiance contributions */
267   static void
268 < eval_ray(FVECT  org, FVECT  dir, double dmax)
268 > eval_rad(FVECT org, FVECT dir, double dmax)
269   {
270          RAY     thisray;
271                                          /* set up ray */
272 +        VCOPY(thisray.rorg, org);
273 +        VCOPY(thisray.rdir, dir);
274 +        thisray.rmax = dmax;
275          rayorigin(&thisray, PRIMARY, NULL, NULL);
320        if (imm_irrad) {
321                VSUM(thisray.rorg, org, dir, 1.1e-4);
322                thisray.rdir[0] = -dir[0];
323                thisray.rdir[1] = -dir[1];
324                thisray.rdir[2] = -dir[2];
325                thisray.rmax = 0.0;
326                thisray.revf = rayirrad;
327        } else {
328                VCOPY(thisray.rorg, org);
329                VCOPY(thisray.rdir, dir);
330                thisray.rmax = dmax;
331        }
276          samplendx++;                    /* call ray evaluation */
277          rayvalue(&thisray);
278   }
# Line 370 | Line 314 | rcontrib()
314   #endif
315          while (getvec(orig) == 0 && getvec(direc) == 0) {
316                  d = normalize(direc);
317 <                if ((d == 0.0) & (accumulate != 1)) {
317 >                if (nchild != -1 && (d == 0.0) & (accumulate != 1)) {
318                          if (!ignore_warning_given++)
319                                  error(WARNING,
320                                  "dummy ray(s) ignored during accumulation\n");
# Line 382 | Line 326 | rcontrib()
326                  if (d == 0.0) {                         /* zero ==> flush */
327                          if ((yres <= 0) | (xres <= 0))
328                                  waitflush = 1;          /* flush right after */
329 <                } else {                                /* else compute */
330 <                        eval_ray(orig, direc, lim_dist ? d : 0.0);
329 >                        account = 1;
330 >                } else if (imm_irrad) {                 /* else compute */
331 >                        eval_irrad(orig, direc);
332 >                } else {
333 >                        eval_rad(orig, direc, lim_dist ? d : 0.0);
334                  }
335                  done_contrib();         /* accumulate/output */
336                  ++lastdone;
337                  if (raysleft && !--raysleft)
338                          break;          /* preemptive EOI */
339          }
340 <        if (accumulate <= 0 || account < accumulate) {
340 >        if (nchild != -1 && (accumulate <= 0) | (account < accumulate)) {
341                  if (account < accumulate) {
342                          error(WARNING, "partial accumulation in final record");
343                          accumulate -= account;
# Line 398 | Line 345 | rcontrib()
345                  account = 1;            /* output accumulated totals */
346                  done_contrib();
347          }
348 +        lu_done(&ofiletab);             /* close output files */
349          if (raysleft)
350                  error(USER, "unexpected EOF on input");
403        lu_done(&ofiletab);             /* close output files */
351   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines