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.13 by greg, Mon Mar 8 12:37:33 1993 UTC vs.
Revision 2.20 by greg, Fri Dec 8 18:49:12 1995 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1992 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 42 | Line 42 | int  inform = 'a';                     /* input format */
42   int  outform = 'a';                     /* output format */
43   char  *outvals = "v";                   /* output specification */
44  
45 + char  *tralist[128];                    /* list of modifers to trace (or no) */
46 + int  traincl = -1;                      /* include == 1, exclude == 0 */
47 + #define  MAXTSET        511             /* maximum number in trace set */
48 + OBJECT  traset[MAXTSET+1]={0};          /* trace include/exclude set */
49 +
50   int  hresolu = 0;                       /* horizontal (scan) size */
51   int  vresolu = 0;                       /* vertical resolution */
52  
53   double  dstrsrc = 0.0;                  /* square source distribution */
54   double  shadthresh = .05;               /* shadow threshold */
55   double  shadcert = .5;                  /* shadow certainty */
56 < int  directrelay = 1;                   /* number of source relays */
56 > int  directrelay = 2;                   /* number of source relays */
57   int  vspretest = 512;                   /* virtual source pretest density */
58   int  directvis = 1;                     /* sources visible? */
59 < double  srcsizerat = .25;               /* maximum ratio source size/dist. */
59 > double  srcsizerat = .2;                /* maximum ratio source size/dist. */
60  
61 + COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
62 + double  salbedo = 0.;                   /* global scattering albedo */
63 + double  seccg = 0.;                     /* global scattering eccentricity */
64 + double  ssampdist = 0.;                 /* scatter sampling distance */
65 +
66   double  specthresh = .15;               /* specular sampling threshold */
67   double  specjitter = 1.;                /* specular sampling jitter */
68  
69 + int  backvis = 1;                       /* back face visibility */
70 +
71   int  maxdepth = 6;                      /* maximum recursion depth */
72   double  minweight = 4e-3;               /* minimum ray weight */
73  
74   COLOR  ambval = BLKCOLOR;               /* ambient value */
75   double  ambacc = 0.2;                   /* ambient accuracy */
76 < int  ambres = 32;                       /* ambient resolution */
77 < int  ambdiv = 128;                      /* ambient divisions */
76 > int  ambres = 128;                      /* ambient resolution */
77 > int  ambdiv = 512;                      /* ambient divisions */
78   int  ambssamp = 0;                      /* ambient super-samples */
79   int  ambounce = 0;                      /* ambient bounces */
80   char  *amblist[128];                    /* ambient include/exclude list */
# Line 76 | Line 88 | static int  oputo(), oputd(), oputv(), oputl(), oputL(
88                  oputp(), oputn(), oputN(), oputs(), oputw(), oputm();
89  
90   static int  ourtrace(), tabin();
91 < static int  (*ray_out[10])(), (*every_out[10])();
92 < static int  castonly;
91 > static int  (*ray_out[16])(), (*every_out[16])();
92 > static int  castonly = 0;
93  
94   static int  puta(), putf(), putd();
95  
# Line 158 | Line 170 | char  *fname;
170                  if (imm_irrad)
171                          irrad(orig, direc);
172                  else
173 <                        traceray(orig, direc);
173 >                        rad(orig, direc);
174                                                          /* flush if time */
175                  if (--nextflush == 0) {
176                          fflush(stdout);
# Line 233 | Line 245 | register char  *vs;
245   }
246  
247  
248 < traceray(org, dir)              /* compute and print ray value(s) */
248 > rad(org, dir)                   /* compute and print ray value(s) */
249   FVECT  org, dir;
250   {
239        register int  (**tp)();
240
251          VCOPY(thisray.rorg, org);
252          VCOPY(thisray.rdir, dir);
253 +        thisray.rmax = 0.0;
254          rayorigin(&thisray, NULL, PRIMARY, 1.0);
255          if (castonly)
256                  localhit(&thisray, &thescene) || sourcehit(&thisray);
257          else
258                  rayvalue(&thisray);
259 <
249 <        if (ray_out[0] == NULL)
250 <                return;
251 <        for (tp = ray_out; *tp != NULL; tp++)
252 <                (**tp)(&thisray);
253 <        if (outform == 'a')
254 <                putchar('\n');
259 >        printvals(&thisray);
260   }
261  
262  
# Line 266 | Line 271 | FVECT  org, dir;
271          }
272          rayorigin(&thisray, NULL, PRIMARY, 1.0);
273                                          /* pretend we hit surface */
274 <        thisray.rot = 1.0;
274 >        thisray.rot = 1.0-1e-4;
275          thisray.rod = 1.0;
276          VCOPY(thisray.ron, dir);
277          for (i = 0; i < 3; i++)         /* fudge factor */
278                  thisray.rop[i] = org[i] + 1e-4*dir[i];
279                                          /* compute and print */
280          (*ofun[Lamb.otype].funp)(&Lamb, &thisray);
281 <        oputv(&thisray);
281 >        printvals(&thisray);
282 > }
283 >
284 >
285 > printvals(r)                    /* print requested ray values */
286 > RAY  *r;
287 > {
288 >        register int  (**tp)();
289 >
290 >        if (ray_out[0] == NULL)
291 >                return;
292 >        for (tp = ray_out; *tp != NULL; tp++)
293 >                (**tp)(r);
294          if (outform == 'a')
295                  putchar('\n');
296   }
# Line 316 | Line 333 | FILE  *fp;
333   }
334  
335  
336 + tranotify(obj)                  /* record new modifier */
337 + OBJECT  obj;
338 + {
339 +        static int  hitlimit = 0;
340 +        register OBJREC  *o = objptr(obj);
341 +        register char  **tralp;
342 +
343 +        if (hitlimit || !ismodifier(o->otype))
344 +                return;
345 +        for (tralp = tralist; *tralp != NULL; tralp++)
346 +                if (!strcmp(o->oname, *tralp)) {
347 +                        if (traset[0] >= MAXTSET) {
348 +                                error(WARNING, "too many modifiers in trace list");
349 +                                hitlimit++;
350 +                                return;         /* should this be fatal? */
351 +                        }
352 +                        insertelem(traset, obj);
353 +                        return;
354 +                }
355 + }
356 +
357 +
358   static
359   ourtrace(r)                             /* print ray values */
360   RAY  *r;
# Line 323 | Line 362 | RAY  *r;
362          register int  (**tp)();
363  
364          if (every_out[0] == NULL)
365 +                return;
366 +        if (r->ro == NULL) {
367 +                if (traincl == 1)
368 +                        return;
369 +        } else if (traincl != -1 && traincl != inset(traset, r->ro->omod))
370                  return;
371          tabin(r);
372          for (tp = every_out; *tp != NULL; tp++)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines