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

Comparing ray/src/rt/raycalls.c (file contents):
Revision 2.6 by greg, Tue Aug 26 04:24:26 2003 UTC vs.
Revision 2.30 by greg, Thu May 2 15:02:08 2024 UTC

# Line 23 | Line 23 | static const char      RCSid[] = "$Id$";
23   *  sort of context, so it is impossible to simultaneously run
24   *  this library on multiple scenes or in multiple threads.
25   *  You get one scene and one thread, and if you want more, you
26 < *  will have to go with the process model used by the programs
27 < *  gen/mkillum, hd/rholo, and px/pinterp.  Finally, unrecoverable
28 < *  errors result in a call to the application-defined function
29 < *  quit().  The usual thing to do is to call exit().
26 > *  will have to go with the process model defined in raypcalls.c.
27 > *  Finally, unrecoverable errors result in a call to the application-
28 > *  defined function quit().  The usual thing to do is to call exit().
29   *  You might want to do something else instead, like
30   *  call setjmp()/longjmp() to bring you back to the calling
31   *  function for recovery.  You may also wish to define your own
# Line 91 | Line 90 | static const char      RCSid[] = "$Id$";
90   */
91  
92   #include <string.h>
93 + #include <time.h>
94  
95   #include  "ray.h"
96   #include  "source.h"
97 + #include  "bsdf.h"
98   #include  "ambient.h"
99   #include  "otypes.h"
100   #include  "random.h"
101   #include  "data.h"
102   #include  "font.h"
103 + #include  "pmapray.h"
104  
105   char    *progname = "unknown_app";      /* caller sets to argv[0] */
106  
# Line 115 | Line 117 | int    samplendx = 0;                  /* index for this sample */
117  
118   void    (*trace)() = NULL;              /* trace call */
119  
118 extern void     ambnotify();
120   void    (*addobjnotify[8])() = {ambnotify, NULL};
121  
122 + int     castonly = 0;                   /* only doing ray-casting? */
123 +
124   int     do_irrad = 0;                   /* compute irradiance? */
125  
126 + int     rand_samp = 1;                  /* pure Monte Carlo sampling? */
127 +
128   double  dstrsrc = 0.0;                  /* square source distribution */
129 < double  shadthresh = .05;               /* shadow threshold */
130 < double  shadcert = .5;                  /* shadow certainty */
129 > double  shadthresh = .03;               /* shadow threshold */
130 > double  shadcert = .75;                 /* shadow certainty */
131   int     directrelay = 2;                /* number of source relays */
132   int     vspretest = 512;                /* virtual source pretest density */
133   int     directvis = 1;                  /* sources visible? */
# Line 138 | Line 143 | double specjitter = 1.;                /* specular sampling jitter *
143  
144   int     backvis = 1;                    /* back face visibility */
145  
146 < int     maxdepth = 6;                   /* maximum recursion depth */
147 < double  minweight = 4e-3;               /* minimum ray weight */
146 > int     maxdepth = -10;                 /* maximum recursion depth */
147 > double  minweight = 1e-4;               /* minimum ray weight */
148  
149   char    *ambfile = NULL;                /* ambient file name */
150   COLOR   ambval = BLKCOLOR;              /* ambient value */
151   int     ambvwt = 0;                     /* initial weight for ambient value */
152 < double  ambacc = 0.2;                   /* ambient accuracy */
153 < int     ambres = 128;                   /* ambient resolution */
154 < int     ambdiv = 512;                   /* ambient divisions */
155 < int     ambssamp = 0;                   /* ambient super-samples */
152 > double  ambacc = 0.1;                   /* ambient accuracy */
153 > int     ambres = 256;                   /* ambient resolution */
154 > int     ambdiv = 1024;                  /* ambient divisions */
155 > int     ambssamp = 512;                 /* ambient super-samples */
156   int     ambounce = 0;                   /* ambient bounces */
157   char    *amblist[AMBLLEN+1];            /* ambient include/exclude list */
158   int     ambincl = -1;                   /* include == 1, exclude == 0 */
159  
160  
161 + static void
162 + reset_random(void)              /* re-initialize random number generator */
163 + {
164 +        if (rand_samp) {
165 +                srandom((long)time(0));
166 +                initurand(0);
167 +        } else {
168 +                srandom(0L);
169 +                initurand(2048);
170 +        }
171 + }
172 +
173 +
174   void
175 < ray_init(otnm)                  /* initialize ray-tracing calculation */
176 < char    *otnm;
175 > ray_init(                       /* initialize ray-tracing calculation */
176 >        char    *otnm
177 > )
178   {
179          if (nobjects > 0)               /* free old scene data */
180                  ray_done(0);
# Line 163 | Line 182 | char   *otnm;
182          if (ofun[OBJ_SPHERE].funp == o_default)
183                  initotypes();
184                                          /* initialize urand */
185 <        initurand(2048);
186 <                                        /* read scene octree */
187 <        readoct(octname = otnm, ~(IO_FILES|IO_INFO), &thescene, NULL);
185 >        reset_random();
186 >                                        /* initialize spectral sampling */
187 >        if (setspectrsamp(CNDX, WLPART) < 0)
188 >                error(USER, "unsupported spectral sampling");
189 >
190 >        octname = savqstr(otnm);        /* read scene octree */
191 >        readoct(octname, ~(IO_FILES|IO_INFO), &thescene, NULL);
192          nsceneobjs = nobjects;
193 <                                        /* find and mark sources */
194 <        marksources();
195 <                                        /* initialize ambient calculation */
196 <        setambient();
197 <                                        /* ready to go... */
193 >
194 >        if (!castonly) {                /* any actual ray traversal to do? */
195 >
196 >                ray_init_pmap();        /* PMAP: set up & load photon maps */
197 >
198 >                marksources();          /* find and mark sources */
199 >
200 >                setambient();           /* initialize ambient calculation */
201 >        } else
202 >                distantsources();       /* else mark only distant sources */
203   }
204  
205 +
206   void
207 < ray_trace(r)                    /* trace a primary ray */
208 < RAY     *r;
207 > ray_trace(                      /* trace a primary ray */
208 >        RAY     *r
209 > )
210   {
211 <        rayorigin(r, NULL, PRIMARY, 1.0);
211 >        rayorigin(r, PRIMARY, NULL, NULL);
212          samplendx++;
213          rayvalue(r);            /* assumes origin and direction are set */
214   }
215  
216  
217   void
218 < ray_done(freall)                /* free ray-tracing data */
219 < int     freall;
218 > ray_done(               /* free ray-tracing data */
219 >        int     freall
220 > )
221   {
222          retainfonts = 1;
223          ambdone();
# Line 196 | Line 227 | int    freall;
227          donesets();
228          octdone();
229          thescene.cutree = EMPTY;
230 <        octname = NULL;
230 >        freeqstr(octname); octname = NULL;
231 >        retainfonts = 0;
232          if (freall) {
201                retainfonts = 0;
233                  freefont(NULL);
234                  freedata(NULL);
235 +                SDfreeCache(NULL);
236                  initurand(0);
237          }
238          if (nobjects > 0) {
239 <                sprintf(errmsg, "%d objects left after call to ray_done()",
240 <                                nobjects);
239 >                sprintf(errmsg, "%ld objects left after call to ray_done()",
240 >                                (long)nobjects);
241                  error(WARNING, errmsg);
242          }
243 +        
244 +        ray_done_pmap();
245   }
246  
247  
248   void
249 < ray_save(rp)                    /* save current parameter settings */
250 < RAYPARAMS       *rp;
249 > ray_save(                       /* save current parameter settings */
250 >        RAYPARAMS       *rp
251 > )
252   {
253          int     i, ndx;
254  
255          if (rp == NULL)
256                  return;
257          rp->do_irrad = do_irrad;
258 +        rp->rand_samp = rand_samp;
259          rp->dstrsrc = dstrsrc;
260          rp->shadthresh = shadthresh;
261          rp->shadcert = shadcert;
# Line 236 | Line 272 | RAYPARAMS      *rp;
272          rp->backvis = backvis;
273          rp->maxdepth = maxdepth;
274          rp->minweight = minweight;
239        copycolor(rp->ambval, ambval);
240        memset(rp->ambfile, '\0', sizeof(rp->ambfile));
275          if (ambfile != NULL)
276                  strncpy(rp->ambfile, ambfile, sizeof(rp->ambfile)-1);
277 +        else
278 +                memset(rp->ambfile, '\0', sizeof(rp->ambfile));
279 +        copycolor(rp->ambval, ambval);
280          rp->ambvwt = ambvwt;
281          rp->ambacc = ambacc;
282          rp->ambres = ambres;
# Line 254 | Line 291 | RAYPARAMS      *rp;
291                  if (ndx+len >= sizeof(rp->amblval))
292                          break;
293                  strcpy(rp->amblval+ndx, amblist[i]);
294 +                rp->amblndx[i] = ndx;
295                  ndx += len+1;
296          }
297          while (i <= AMBLLEN)
298                  rp->amblndx[i++] = -1;
299 +                
300 +        /* PMAP: save photon mapping params */
301 +        ray_save_pmap(rp);
302   }
303  
304  
305   void
306 < ray_restore(rp)                 /* restore parameter settings */
307 < RAYPARAMS       *rp;
306 > ray_restore(                    /* restore parameter settings */
307 >        RAYPARAMS       *rp
308 > )
309   {
310 <        register int    i;
310 >        int     i;
311  
312          if (rp == NULL) {               /* restore defaults */
313                  RAYPARAMS       dflt;
# Line 275 | Line 317 | RAYPARAMS      *rp;
317          }
318                                          /* restore saved settings */
319          do_irrad = rp->do_irrad;
320 +        if (!rand_samp != !rp->rand_samp) {
321 +                rand_samp = rp->rand_samp;
322 +                reset_random();
323 +        }
324          dstrsrc = rp->dstrsrc;
325          shadthresh = rp->shadthresh;
326          shadcert = rp->shadcert;
# Line 296 | Line 342 | RAYPARAMS      *rp;
342          ambdiv = rp->ambdiv;
343          ambssamp = rp->ambssamp;
344          ambounce = rp->ambounce;
345 +                                        /* a bit dangerous if not static */
346          for (i = 0; rp->amblndx[i] >= 0; i++)
347                  amblist[i] = rp->amblval + rp->amblndx[i];
348          while (i <= AMBLLEN)
# Line 303 | Line 350 | RAYPARAMS      *rp;
350          ambincl = rp->ambincl;
351                                          /* update ambient calculation */
352          ambnotify(OVOID);
353 <        if (thescene.cutree != EMPTY) {
353 >        if ((thescene.cutree != EMPTY) & !castonly) {
354                  int     newamb = (ambfile == NULL) ?  rp->ambfile[0] :
355                                          strcmp(ambfile, rp->ambfile) ;
356  
# Line 325 | Line 372 | RAYPARAMS      *rp;
372                  ambres = rp->ambres;
373                  ambacc = rp->ambacc;
374          }
375 +        
376 +        /* PMAP: restore photon mapping params */
377 +        ray_restore_pmap(rp);
378   }
379  
380  
381   void
382 < ray_defaults(rp)                /* get default parameter values */
383 < RAYPARAMS       *rp;
382 > ray_defaults(           /* get default parameter values */
383 >        RAYPARAMS       *rp
384 > )
385   {
386          int     i;
387  
# Line 338 | Line 389 | RAYPARAMS      *rp;
389                  return;
390  
391          rp->do_irrad = 0;
392 +        rp->rand_samp = 1;
393          rp->dstrsrc = 0.0;
394 <        rp->shadthresh = .05;
395 <        rp->shadcert = .5;
394 >        rp->shadthresh = 0.03;
395 >        rp->shadcert = 0.75;
396          rp->directrelay = 2;
397          rp->vspretest = 512;
398          rp->directvis = 1;
# Line 349 | Line 401 | RAYPARAMS      *rp;
401          setcolor(rp->salbedo, 0., 0., 0.);
402          rp->seccg = 0.;
403          rp->ssampdist = 0.;
404 <        rp->specthresh = .15;
404 >        rp->specthresh = 0.15;
405          rp->specjitter = 1.;
406          rp->backvis = 1;
407 <        rp->maxdepth = 6;
408 <        rp->minweight = 4e-3;
357 <        setcolor(rp->ambval, 0., 0., 0.);
407 >        rp->maxdepth = -10;
408 >        rp->minweight = 1e-4;
409          memset(rp->ambfile, '\0', sizeof(rp->ambfile));
410 +        setcolor(rp->ambval, 0., 0., 0.);
411          rp->ambvwt = 0;
412 <        rp->ambres = 128;
413 <        rp->ambacc = 0.2;
414 <        rp->ambdiv = 512;
415 <        rp->ambssamp = 0;
412 >        rp->ambres = 256;
413 >        rp->ambacc = 0.1;
414 >        rp->ambdiv = 1024;
415 >        rp->ambssamp = 512;
416          rp->ambounce = 0;
417          rp->ambincl = -1;
418          memset(rp->amblval, '\0', sizeof(rp->amblval));
419          for (i = AMBLLEN+1; i--; )
420                  rp->amblndx[i] = -1;
421 +        
422 +        /* PMAP: restore photon mapping defaults */
423 +        ray_defaults_pmap(rp);
424   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines