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.12 by greg, Fri Jan 22 09:51:20 1993 UTC vs.
Revision 2.17 by greg, Tue Dec 20 20:18:34 1994 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1992 Regents of the University of California */
1 > /* Copyright (c) 1994 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  
# Line 75 | Line 80 | static RAY  thisray;                   /* for our convenience */
80   static int  oputo(), oputd(), oputv(), oputl(), oputL(),
81                  oputp(), oputn(), oputN(), oputs(), oputw(), oputm();
82  
83 < static int  (*ray_out[10])(), (*every_out[10])();
84 < static int  castonly;
83 > static int  ourtrace(), tabin();
84 > static int  (*ray_out[16])(), (*every_out[16])();
85 > static int  castonly = 0;
86  
87   static int  puta(), putf(), putd();
88  
# Line 157 | Line 163 | char  *fname;
163                  if (imm_irrad)
164                          irrad(orig, direc);
165                  else
166 <                        traceray(orig, direc);
166 >                        rad(orig, direc);
167                                                          /* flush if time */
168                  if (--nextflush == 0) {
169                          fflush(stdout);
# Line 179 | Line 185 | char  *fname;
185   setoutput(vs)                           /* set up output tables */
186   register char  *vs;
187   {
188 <        extern int  ourtrace(), (*trace)();
188 >        extern int  (*trace)();
189          register int (**table)() = ray_out;
190  
191          castonly = 1;
# Line 232 | Line 238 | register char  *vs;
238   }
239  
240  
241 < traceray(org, dir)              /* compute and print ray value(s) */
241 > rad(org, dir)                   /* compute and print ray value(s) */
242   FVECT  org, dir;
243   {
238        register int  (**tp)();
239
244          VCOPY(thisray.rorg, org);
245          VCOPY(thisray.rdir, dir);
246 +        thisray.rmax = 0.0;
247          rayorigin(&thisray, NULL, PRIMARY, 1.0);
248          if (castonly)
249                  localhit(&thisray, &thescene) || sourcehit(&thisray);
250          else
251                  rayvalue(&thisray);
252 <
248 <        if (ray_out[0] == NULL)
249 <                return;
250 <        for (tp = ray_out; *tp != NULL; tp++)
251 <                (**tp)(&thisray);
252 <        if (outform == 'a')
253 <                putchar('\n');
252 >        printvals(&thisray);
253   }
254  
255  
# Line 265 | Line 264 | FVECT  org, dir;
264          }
265          rayorigin(&thisray, NULL, PRIMARY, 1.0);
266                                          /* pretend we hit surface */
267 <        thisray.rot = 1.0;
267 >        thisray.rot = 1.0-1e-4;
268          thisray.rod = 1.0;
269          VCOPY(thisray.ron, dir);
270          for (i = 0; i < 3; i++)         /* fudge factor */
271                  thisray.rop[i] = org[i] + 1e-4*dir[i];
272                                          /* compute and print */
273          (*ofun[Lamb.otype].funp)(&Lamb, &thisray);
274 <        oputv(&thisray);
274 >        printvals(&thisray);
275 > }
276 >
277 >
278 > printvals(r)                    /* print requested ray values */
279 > RAY  *r;
280 > {
281 >        register int  (**tp)();
282 >
283 >        if (ray_out[0] == NULL)
284 >                return;
285 >        for (tp = ray_out; *tp != NULL; tp++)
286 >                (**tp)(r);
287          if (outform == 'a')
288                  putchar('\n');
289   }
# Line 315 | Line 326 | FILE  *fp;
326   }
327  
328  
329 + tranotify(obj)                  /* record new modifier */
330 + OBJECT  obj;
331 + {
332 +        static int  hitlimit = 0;
333 +        register OBJREC  *o = objptr(obj);
334 +        register char  **tralp;
335 +
336 +        if (hitlimit || !ismodifier(o->otype))
337 +                return;
338 +        for (tralp = tralist; *tralp != NULL; tralp++)
339 +                if (!strcmp(o->oname, *tralp)) {
340 +                        if (traset[0] >= MAXTSET) {
341 +                                error(WARNING, "too many modifiers in trace list");
342 +                                hitlimit++;
343 +                                return;         /* should this be fatal? */
344 +                        }
345 +                        insertelem(traset, obj);
346 +                        return;
347 +                }
348 + }
349 +
350 +
351   static
352   ourtrace(r)                             /* print ray values */
353   RAY  *r;
# Line 322 | Line 355 | RAY  *r;
355          register int  (**tp)();
356  
357          if (every_out[0] == NULL)
358 +                return;
359 +        if (r->ro == NULL) {
360 +                if (traincl == 1)
361 +                        return;
362 +        } else if (traincl != -1 && traincl != inset(traset, r->ro->omod))
363                  return;
364          tabin(r);
365          for (tp = every_out; *tp != NULL; tp++)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines