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.36 by greg, Sun Mar 28 16:31:14 2004 UTC vs.
Revision 2.37 by schorsch, Tue Mar 30 16:13:01 2004 UTC

# Line 25 | Line 25 | static const char      RCSid[] = "$Id$";
25  
26   #include  "platform.h"
27   #include  "ray.h"
28 + #include  "ambient.h"
29 + #include  "source.h"
30   #include  "otypes.h"
31   #include  "resolu.h"
32  
# Line 46 | Line 48 | int  do_irrad = 0;                     /* compute irradiance? */
48  
49   void  (*trace)() = NULL;                /* trace call */
50  
49 extern void  ambnotify(), tranotify();
50 void  (*addobjnotify[])() = {ambnotify, tranotify, NULL};
51   char  *tralist[128];                    /* list of modifers to trace (or no) */
52   int  traincl = -1;                      /* include == 1, exclude == 0 */
53   #define  MAXTSET        511             /* maximum number in trace set */
# Line 88 | Line 88 | int  ambounce = 0;                     /* ambient bounces */
88   char  *amblist[128];                    /* ambient include/exclude list */
89   int  ambincl = -1;                      /* include == 1, exclude == 0 */
90  
91 + static int  castonly = 0;
92  
93   static RAY  thisray;                    /* for our convenience */
94  
95 < static void  oputo(), oputd(), oputv(), oputl(), oputL(), oputc(),
96 <                oputp(), oputn(), oputN(), oputs(), oputw(), oputm();
95 > typedef void putf_t(double v);
96 > static putf_t puta, putd, putf;
97  
98 < static void  ourtrace(), tabin();
99 < static void  (*ray_out[16])(), (*every_out[16])();
100 < static int  castonly = 0;
98 > typedef void oputf_t(RAY *r);
99 > static oputf_t  oputo, oputd, oputv, oputl, oputL, oputc,
100 >                oputp, oputn, oputN, oputs, oputw, oputm;
101  
102 < static void  puta(), putf(), putd();
102 > static void setoutput(char *vs);
103 > static void tranotify(OBJECT obj);
104 > static void bogusray(void);
105 > static void rad(FVECT  org, FVECT  dir, double  dmax);
106 > static void irrad(FVECT  org, FVECT  dir);
107 > static void printvals(RAY  *r);
108 > static int getvec(FVECT  vec, int  fmt, FILE  *fp);
109 > static void tabin(RAY  *r);
110 > static void ourtrace(RAY  *r);
111  
112 < static void  (*putreal)();
112 > static oputf_t *ray_out[16], *every_out[16];
113 > static putf_t *putreal;
114  
115 < void    bogusray(), rad(), irrad(), printvals();
115 > void  (*addobjnotify[])() = {ambnotify, tranotify, NULL};
116  
117  
118   void
119 < quit(code)                      /* quit program */
120 < int  code;
119 > quit(                   /* quit program */
120 >        int  code
121 > )
122   {
123   #ifndef  NON_POSIX /* XXX we don't clean up elsewhere? */
124          headclean();            /* delete header file */
# Line 117 | Line 128 | int  code;
128   }
129  
130  
131 < char *
132 < formstr(f)                              /* return format identifier */
133 < int  f;
131 > extern char *
132 > formstr(                                /* return format identifier */
133 >        int  f
134 > )
135   {
136          switch (f) {
137          case 'a': return("ascii");
# Line 131 | Line 143 | int  f;
143   }
144  
145  
146 < void
147 < rtrace(fname)                           /* trace rays from file */
148 < char  *fname;
146 > extern void
147 > rtrace(                         /* trace rays from file */
148 >        char  *fname
149 > )
150   {
151          long  vcount = hresolu>1 ? hresolu*vresolu : vresolu;
152          long  nextflush = hresolu;
# Line 206 | Line 219 | char  *fname;
219   }
220  
221  
222 < setoutput(vs)                           /* set up output tables */
223 < register char  *vs;
222 > static void
223 > setoutput(                              /* set up output tables */
224 >        register char  *vs
225 > )
226   {
227 <        extern void  (*trace)();
213 <        register void (**table)() = ray_out;
227 >        register oputf_t **table = ray_out;
228  
229          castonly = 1;
230          while (*vs)
# Line 265 | Line 279 | register char  *vs;
279   }
280  
281  
282 < void
283 < bogusray()                      /* print out empty record */
282 > static void
283 > bogusray(void)                  /* print out empty record */
284   {
285          thisray.rorg[0] = thisray.rorg[1] = thisray.rorg[2] =
286          thisray.rdir[0] = thisray.rdir[1] = thisray.rdir[2] = 0.0;
# Line 275 | Line 289 | bogusray()                     /* print out empty record */
289   }
290  
291  
292 < void
293 < rad(org, dir, dmax)             /* compute and print ray value(s) */
294 < FVECT  org, dir;
295 < double  dmax;
292 > static void
293 > rad(            /* compute and print ray value(s) */
294 >        FVECT  org,
295 >        FVECT  dir,
296 >        double  dmax
297 > )
298   {
299          VCOPY(thisray.rorg, org);
300          VCOPY(thisray.rdir, dir);
# Line 298 | Line 314 | double dmax;
314   }
315  
316  
317 < void
318 < irrad(org, dir)                 /* compute immediate irradiance value */
319 < FVECT  org, dir;
317 > static void
318 > irrad(                  /* compute immediate irradiance value */
319 >        FVECT  org,
320 >        FVECT  dir
321 > )
322   {
323          register int  i;
324  
# Line 321 | Line 339 | FVECT  org, dir;
339   }
340  
341  
342 < void
343 < printvals(r)                    /* print requested ray values */
344 < RAY  *r;
342 > static void
343 > printvals(                      /* print requested ray values */
344 >        RAY  *r
345 > )
346   {
347 <        register void  (**tp)();
347 >        register oputf_t **tp;
348  
349          if (ray_out[0] == NULL)
350                  return;
# Line 336 | Line 355 | RAY  *r;
355   }
356  
357  
358 < int
359 < getvec(vec, fmt, fp)            /* get a vector from fp */
360 < register FVECT  vec;
361 < int  fmt;
362 < FILE  *fp;
358 > static int
359 > getvec(         /* get a vector from fp */
360 >        register FVECT  vec,
361 >        int  fmt,
362 >        FILE  *fp
363 > )
364   {
365          static float  vf[3];
366          static double  vd[3];
# Line 373 | Line 393 | FILE  *fp;
393   }
394  
395  
396 < void
397 < tranotify(obj)                  /* record new modifier */
398 < OBJECT  obj;
396 > static void
397 > tranotify(                      /* record new modifier */
398 >        OBJECT  obj
399 > )
400   {
401          static int  hitlimit = 0;
402          register OBJREC  *o = objptr(obj);
# Line 402 | Line 423 | OBJECT obj;
423  
424  
425   static void
426 < ourtrace(r)                             /* print ray values */
427 < RAY  *r;
426 > ourtrace(                               /* print ray values */
427 >        RAY  *r
428 > )
429   {
430 <        register void  (**tp)();
430 >        register oputf_t **tp;
431  
432          if (every_out[0] == NULL)
433                  return;
# Line 422 | Line 444 | RAY  *r;
444  
445  
446   static void
447 < tabin(r)                                /* tab in appropriate amount */
448 < RAY  *r;
447 > tabin(                          /* tab in appropriate amount */
448 >        RAY  *r
449 > )
450   {
451          register RAY  *rp;
452  
# Line 433 | Line 456 | RAY  *r;
456  
457  
458   static void
459 < oputo(r)                                /* print origin */
460 < RAY  *r;
459 > oputo(                          /* print origin */
460 >        RAY  *r
461 > )
462   {
463          (*putreal)(r->rorg[0]);
464          (*putreal)(r->rorg[1]);
# Line 443 | Line 467 | RAY  *r;
467  
468  
469   static void
470 < oputd(r)                                /* print direction */
471 < RAY  *r;
470 > oputd(                          /* print direction */
471 >        RAY  *r
472 > )
473   {
474          (*putreal)(r->rdir[0]);
475          (*putreal)(r->rdir[1]);
# Line 453 | Line 478 | RAY  *r;
478  
479  
480   static void
481 < oputv(r)                                /* print value */
482 < RAY  *r;
481 > oputv(                          /* print value */
482 >        RAY  *r
483 > )
484   {
485          COLR  cout;
486          
# Line 472 | Line 498 | RAY  *r;
498  
499  
500   static void
501 < oputl(r)                                /* print effective distance */
502 < RAY  *r;
501 > oputl(                          /* print effective distance */
502 >        RAY  *r
503 > )
504   {
505          (*putreal)(r->rt);
506   }
507  
508  
509   static void
510 < oputL(r)                                /* print single ray length */
511 < RAY  *r;
510 > oputL(                          /* print single ray length */
511 >        RAY  *r
512 > )
513   {
514          (*putreal)(r->rot);
515   }
516  
517  
518   static void
519 < oputc(r)                                /* print local coordinates */
520 < RAY  *r;
519 > oputc(                          /* print local coordinates */
520 >        RAY  *r
521 > )
522   {
523          (*putreal)(r->uv[0]);
524          (*putreal)(r->uv[1]);
# Line 497 | Line 526 | RAY  *r;
526  
527  
528   static void
529 < oputp(r)                                /* print point */
530 < RAY  *r;
529 > oputp(                          /* print point */
530 >        RAY  *r
531 > )
532   {
533          if (r->rot < FHUGE) {
534                  (*putreal)(r->rop[0]);
# Line 513 | Line 543 | RAY  *r;
543  
544  
545   static void
546 < oputN(r)                                /* print unperturbed normal */
547 < RAY  *r;
546 > oputN(                          /* print unperturbed normal */
547 >        RAY  *r
548 > )
549   {
550          if (r->rot < FHUGE) {
551                  (*putreal)(r->ron[0]);
# Line 529 | Line 560 | RAY  *r;
560  
561  
562   static void
563 < oputn(r)                                /* print perturbed normal */
564 < RAY  *r;
563 > oputn(                          /* print perturbed normal */
564 >        RAY  *r
565 > )
566   {
567          FVECT  pnorm;
568  
# Line 548 | Line 580 | RAY  *r;
580  
581  
582   static void
583 < oputs(r)                                /* print name */
584 < RAY  *r;
583 > oputs(                          /* print name */
584 >        RAY  *r
585 > )
586   {
587          if (r->ro != NULL)
588                  fputs(r->ro->oname, stdout);
# Line 560 | Line 593 | RAY  *r;
593  
594  
595   static void
596 < oputw(r)                                /* print weight */
597 < RAY  *r;
596 > oputw(                          /* print weight */
597 >        RAY  *r
598 > )
599   {
600          (*putreal)(r->rweight);
601   }
602  
603  
604   static void
605 < oputm(r)                                /* print modifier */
606 < RAY  *r;
605 > oputm(                          /* print modifier */
606 >        RAY  *r
607 > )
608   {
609          if (r->ro != NULL)
610                  if (r->ro->omod != OVOID)
# Line 583 | Line 618 | RAY  *r;
618  
619  
620   static void
621 < puta(v)                         /* print ascii value */
622 < double  v;
621 > puta(                           /* print ascii value */
622 >        double  v
623 > )
624   {
625          printf("%e\t", v);
626   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines