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

Comparing ray/src/rt/rtrace.c (file contents):
Revision 2.38 by greg, Fri Nov 5 17:36:56 2004 UTC vs.
Revision 2.45 by greg, Fri Jun 10 16:49:42 2005 UTC

# Line 74 | Line 74 | double  specjitter = 1.;               /* specular sampling jitter
74  
75   int  backvis = 1;                       /* back face visibility */
76  
77 < int  maxdepth = 8;                      /* maximum recursion depth */
77 > int  maxdepth = -10;                    /* maximum recursion depth */
78   double  minweight = 2e-3;               /* minimum ray weight */
79  
80   char  *ambfile = NULL;                  /* ambient file name */
# Line 96 | Line 96 | typedef void putf_t(double v);
96   static putf_t puta, putd, putf;
97  
98   typedef void oputf_t(RAY *r);
99 < static oputf_t  oputo, oputd, oputv, oputl, oputL, oputc,
100 <                oputp, oputn, oputN, oputs, oputw, oputm;
99 > static oputf_t  oputo, oputd, oputv, oputl, oputL, oputc, oputp,
100 >                oputn, oputN, oputs, oputw, oputW, oputm, oputM, oputtilde;
101  
102   static void setoutput(char *vs);
103   static void tranotify(OBJECT obj);
# Line 148 | Line 148 | rtrace(                                /* trace rays from file */
148          char  *fname
149   )
150   {
151 <        long  vcount = hresolu>1 ? hresolu*vresolu : vresolu;
151 >        unsigned long  vcount = (hresolu > 1) ? (unsigned long)hresolu*vresolu
152 >                                              : vresolu;
153          long  nextflush = hresolu;
154          FILE  *fp;
155          double  d;
# Line 160 | Line 161 | rtrace(                                /* trace rays from file */
161                  sprintf(errmsg, "cannot open input file \"%s\"", fname);
162                  error(SYSTEM, errmsg);
163          }
163 #ifdef _WIN32
164          if (inform != 'a')
165                  SET_FILE_BINARY(fp);
166 #endif
166                                          /* set up output */
167          setoutput(outvals);
168          switch (outform) {
# Line 189 | Line 188 | rtrace(                                /* trace rays from file */
188                  d = normalize(direc);
189                  if (d == 0.0) {                         /* zero ==> flush */
190                          bogusray();
191 <                        if (--nextflush <= 0 || vcount <= 0) {
191 >                        if (--nextflush <= 0 || !vcount) {
192                                  fflush(stdout);
193                                  nextflush = hresolu;
194                          }
# Line 201 | Line 200 | rtrace(                                /* trace rays from file */
200                          else
201                                  rad(orig, direc, lim_dist ? d : 0.0);
202                                                          /* flush if time */
203 <                        if (--nextflush == 0) {
203 >                        if (!--nextflush) {
204                                  fflush(stdout);
205                                  nextflush = hresolu;
206                          }
207                  }
208                  if (ferror(stdout))
209                          error(SYSTEM, "write error");
210 <                if (--vcount == 0)                      /* check for end */
210 >                if (vcount && !--vcount)                /* check for end */
211                          break;
212          }
213          fflush(stdout);
214 <        if (vcount > 0)
215 <                error(USER, "read error");
214 >        if (vcount)
215 >                error(USER, "unexpected EOF on input");
216          if (fname != NULL)
217                  fclose(fp);
218   }
219  
220  
221   static void
222 + trace_sources(void)                     /* trace rays to light sources, also */
223 + {
224 +        int     sn;
225 +        
226 +        for (sn = 0; sn < nsources; sn++)
227 +                source[sn].sflags |= SFOLLOW;
228 + }
229 +
230 +
231 + static void
232   setoutput(                              /* set up output tables */
233          register char  *vs
234   )
# Line 229 | Line 238 | setoutput(                             /* set up output tables */
238          castonly = 1;
239          while (*vs)
240                  switch (*vs++) {
241 +                case 'T':                               /* trace sources */
242 +                        if (!*vs) break;
243 +                        trace_sources();
244 +                        /* fall through */
245                  case 't':                               /* trace */
246 +                        if (!*vs) break;
247                          *table = NULL;
248                          table = every_out;
249                          trace = ourtrace;
# Line 271 | Line 285 | setoutput(                             /* set up output tables */
285                  case 'w':                               /* weight */
286                          *table++ = oputw;
287                          break;
288 +                case 'W':                               /* coefficient */
289 +                        *table++ = oputW;
290 +                        if (ambounce > 0 && (ambacc > FTINY || ambssamp > 0))
291 +                                error(WARNING,
292 +                                        "-otW accuracy depends on -aa 0 -as 0");
293 +                        break;
294                  case 'm':                               /* modifier */
295                          *table++ = oputm;
296                          break;
297 +                case 'M':                               /* material */
298 +                        *table++ = oputM;
299 +                        break;
300 +                case '~':                               /* tilde */
301 +                        *table++ = oputtilde;
302 +                        break;
303                  }
304          *table = NULL;
305   }
# Line 284 | Line 310 | bogusray(void)                 /* print out empty record */
310   {
311          thisray.rorg[0] = thisray.rorg[1] = thisray.rorg[2] =
312          thisray.rdir[0] = thisray.rdir[1] = thisray.rdir[2] = 0.0;
313 <        rayorigin(&thisray, NULL, PRIMARY, 1.0);
313 >        thisray.rmax = 0.0;
314 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
315          printvals(&thisray);
316   }
317  
# Line 299 | Line 326 | rad(           /* compute and print ray value(s) */
326          VCOPY(thisray.rorg, org);
327          VCOPY(thisray.rdir, dir);
328          thisray.rmax = dmax;
329 <        rayorigin(&thisray, NULL, PRIMARY, 1.0);
329 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
330          if (castonly) {
331                  if (!localhit(&thisray, &thescene)) {
332                          if (thisray.ro == &Aftplane) {  /* clipped */
# Line 326 | Line 353 | irrad(                 /* compute immediate irradiance value */
353                  thisray.rorg[i] = org[i] + dir[i];
354                  thisray.rdir[i] = -dir[i];
355          }
356 <        rayorigin(&thisray, NULL, PRIMARY, 1.0);
356 >        thisray.rmax = 0.0;
357 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
358                                          /* pretend we hit surface */
359          thisray.rot = 1.0-1e-4;
360          thisray.rod = 1.0;
# Line 439 | Line 467 | ourtrace(                              /* print ray values */
467          tabin(r);
468          for (tp = every_out; *tp != NULL; tp++)
469                  (**tp)(r);
470 <        putchar('\n');
470 >        if (outform == 'a')
471 >                putchar('\n');
472   }
473  
474  
# Line 448 | Line 477 | tabin(                         /* tab in appropriate amount */
477          RAY  *r
478   )
479   {
480 <        register RAY  *rp;
480 >        const RAY  *rp;
481  
482          for (rp = r->parent; rp != NULL; rp = rp->parent)
483                  putchar('\t');
# Line 482 | Line 511 | oputv(                         /* print value */
511          RAY  *r
512   )
513   {
485        COLR  cout;
486        
514          if (outform == 'c') {
515 +                COLR  cout;
516                  setcolr(cout,   colval(r->rcol,RED),
517                                  colval(r->rcol,GRN),
518                                  colval(r->rcol,BLU));
# Line 602 | Line 630 | oputw(                         /* print weight */
630  
631  
632   static void
633 + oputW(                          /* print contribution */
634 +        RAY  *r
635 + )
636 + {
637 +        COLOR   contr;
638 +
639 +        raycontrib(contr, r, PRIMARY);
640 +        (*putreal)(colval(contr,RED));
641 +        (*putreal)(colval(contr,GRN));
642 +        (*putreal)(colval(contr,BLU));
643 + }
644 +
645 +
646 + static void
647   oputm(                          /* print modifier */
648          RAY  *r
649   )
# Line 614 | Line 656 | oputm(                         /* print modifier */
656          else
657                  putchar('*');
658          putchar('\t');
659 + }
660 +
661 +
662 + static void
663 + oputM(                          /* print material */
664 +        RAY  *r
665 + )
666 + {
667 +        OBJREC  *mat;
668 +
669 +        if (r->ro != NULL) {
670 +                if ((mat = findmaterial(r->ro)) != NULL)
671 +                        fputs(mat->oname, stdout);
672 +                else
673 +                        fputs(VOIDID, stdout);
674 +        } else
675 +                putchar('*');
676 +        putchar('\t');
677 + }
678 +
679 +
680 + static void
681 + oputtilde(                      /* output tilde (spacer) */
682 +        RAY  *r
683 + )
684 + {
685 +        fputs("~\t", stdout);
686   }
687  
688  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines