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.26 by gregl, Thu Oct 30 11:01:16 1997 UTC vs.
Revision 2.32 by greg, Wed Jul 16 01:32:53 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1997 Silicon Graphics, Inc. */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ SGI";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  rtrace.c - program and variables for individual ray tracing.
9 *
10 *     6/11/86
6   */
7  
8 + #include "copyright.h"
9 +
10   /*
11   *  Input is in the form:
12   *
# Line 24 | Line 21 | static char SCCSid[] = "$SunId$ SGI";
21   *  irradiance values are desired.
22   */
23  
24 < #include  "ray.h"
24 > #include  <time.h>
25  
26 < #include  "octree.h"
27 <
26 > #include  "platform.h"
27 > #include  "ray.h"
28   #include  "otypes.h"
32
29   #include  "resolu.h"
30  
31 + CUBE  thescene;                         /* our scene */
32 + OBJECT  nsceneobjs;                     /* number of objects in our scene */
33 +
34   int  dimlist[MAXDIM];                   /* sampling dimensions */
35   int  ndims = 0;                         /* number of sampling dimensions */
36   int  samplendx = 0;                     /* index for this sample */
# Line 43 | Line 42 | int  inform = 'a';                     /* input format */
42   int  outform = 'a';                     /* output format */
43   char  *outvals = "v";                   /* output specification */
44  
45 + int  do_irrad = 0;                      /* compute irradiance? */
46 +
47 + void  (*trace)() = NULL;                /* trace call */
48 +
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 72 | Line 77 | int  backvis = 1;                      /* back face visibility */
77   int  maxdepth = 6;                      /* maximum recursion depth */
78   double  minweight = 4e-3;               /* minimum ray weight */
79  
80 + char  *ambfile = NULL;                  /* ambient file name */
81   COLOR  ambval = BLKCOLOR;               /* ambient value */
82   int  ambvwt = 0;                        /* initial weight for ambient value */
83   double  ambacc = 0.2;                   /* ambient accuracy */
# Line 82 | Line 88 | int  ambounce = 0;                     /* ambient bounces */
88   char  *amblist[128];                    /* ambient include/exclude list */
89   int  ambincl = -1;                      /* include == 1, exclude == 0 */
90  
85 extern OBJREC  Lamb;                    /* a Lambertian surface */
86 extern OBJREC  Aftplane;                /* aft clipping object */
91  
88
92   static RAY  thisray;                    /* for our convenience */
93  
94 < static int  oputo(), oputd(), oputv(), oputl(), oputL(),
94 > static void  oputo(), oputd(), oputv(), oputl(), oputL(), oputc(),
95                  oputp(), oputn(), oputN(), oputs(), oputw(), oputm();
96  
97 < static int  ourtrace(), tabin();
98 < static int  (*ray_out[16])(), (*every_out[16])();
97 > static void  ourtrace(), tabin();
98 > static void  (*ray_out[16])(), (*every_out[16])();
99   static int  castonly = 0;
100  
101 < static int  puta(), putf(), putd();
101 > static void  puta(), putf(), putd();
102  
103 < static int  (*putreal)();
103 > static void  (*putreal)();
104  
105 + void    bogusray(), rad(), irrad(), printvals();
106  
107 +
108 + void
109   quit(code)                      /* quit program */
110   int  code;
111   {
112 < #ifndef  NIX
112 > #ifndef  NON_POSIX /* XXX we don't clean up elsewhere? */
113          headclean();            /* delete header file */
114          pfclean();              /* clean up persist files */
115   #endif
# Line 125 | Line 131 | int  f;
131   }
132  
133  
134 + void
135   rtrace(fname)                           /* trace rays from file */
136   char  *fname;
137   {
# Line 140 | Line 147 | char  *fname;
147                  sprintf(errmsg, "cannot open input file \"%s\"", fname);
148                  error(SYSTEM, errmsg);
149          }
150 < #ifdef MSDOS
150 > #ifdef _WIN32
151          if (inform != 'a')
152 <                setmode(fileno(fp), O_BINARY);
152 >                SET_FILE_BINARY(fp);
153   #endif
154                                          /* set up output */
155          setoutput(outvals);
# Line 202 | Line 209 | char  *fname;
209   setoutput(vs)                           /* set up output tables */
210   register char  *vs;
211   {
212 <        extern int  (*trace)();
213 <        register int (**table)() = ray_out;
212 >        extern void  (*trace)();
213 >        register void (**table)() = ray_out;
214  
215          castonly = 1;
216          while (*vs)
# Line 228 | Line 235 | register char  *vs;
235                          *table++ = oputl;
236                          castonly = 0;
237                          break;
238 +                case 'c':                               /* local coordinates */
239 +                        *table++ = oputc;
240 +                        break;
241                  case 'L':                               /* single ray length */
242                          *table++ = oputL;
243                          break;
# Line 255 | Line 265 | register char  *vs;
265   }
266  
267  
268 + void
269   bogusray()                      /* print out empty record */
270   {
271          thisray.rorg[0] = thisray.rorg[1] = thisray.rorg[2] =
# Line 264 | Line 275 | bogusray()                     /* print out empty record */
275   }
276  
277  
278 + void
279   rad(org, dir, dmax)             /* compute and print ray value(s) */
280   FVECT  org, dir;
281   double  dmax;
# Line 285 | Line 297 | double dmax;
297   }
298  
299  
300 + void
301   irrad(org, dir)                 /* compute immediate irradiance value */
302   FVECT  org, dir;
303   {
# Line 307 | Line 320 | FVECT  org, dir;
320   }
321  
322  
323 + void
324   printvals(r)                    /* print requested ray values */
325   RAY  *r;
326   {
327 <        register int  (**tp)();
327 >        register void  (**tp)();
328  
329          if (ray_out[0] == NULL)
330                  return;
# Line 321 | Line 335 | RAY  *r;
335   }
336  
337  
338 + int
339   getvec(vec, fmt, fp)            /* get a vector from fp */
340   register FVECT  vec;
341   int  fmt;
342   FILE  *fp;
343   {
329        extern char  *fgetword();
344          static float  vf[3];
345          static double  vd[3];
346          char  buf[32];
# Line 358 | Line 372 | FILE  *fp;
372   }
373  
374  
375 + void
376   tranotify(obj)                  /* record new modifier */
377   OBJECT  obj;
378   {
# Line 365 | Line 380 | OBJECT obj;
380          register OBJREC  *o = objptr(obj);
381          register char  **tralp;
382  
383 +        if (obj == OVOID) {             /* starting over */
384 +                traset[0] = 0;
385 +                hitlimit = 0;
386 +                return;
387 +        }
388          if (hitlimit || !ismodifier(o->otype))
389                  return;
390          for (tralp = tralist; *tralp != NULL; tralp++)
# Line 380 | Line 400 | OBJECT obj;
400   }
401  
402  
403 < static
403 > static void
404   ourtrace(r)                             /* print ray values */
405   RAY  *r;
406   {
407 <        register int  (**tp)();
407 >        register void  (**tp)();
408  
409          if (every_out[0] == NULL)
410                  return;
# Line 400 | Line 420 | RAY  *r;
420   }
421  
422  
423 < static
423 > static void
424   tabin(r)                                /* tab in appropriate amount */
425   RAY  *r;
426   {
# Line 411 | Line 431 | RAY  *r;
431   }
432  
433  
434 < static
434 > static void
435   oputo(r)                                /* print origin */
436 < register RAY  *r;
436 > RAY  *r;
437   {
438          (*putreal)(r->rorg[0]);
439          (*putreal)(r->rorg[1]);
# Line 421 | Line 441 | register RAY  *r;
441   }
442  
443  
444 < static
444 > static void
445   oputd(r)                                /* print direction */
446 < register RAY  *r;
446 > RAY  *r;
447   {
448          (*putreal)(r->rdir[0]);
449          (*putreal)(r->rdir[1]);
# Line 431 | Line 451 | register RAY  *r;
451   }
452  
453  
454 < static
454 > static void
455   oputv(r)                                /* print value */
456 < register RAY  *r;
456 > RAY  *r;
457   {
458          COLR  cout;
459          
# Line 450 | Line 470 | register RAY  *r;
470   }
471  
472  
473 < static
473 > static void
474   oputl(r)                                /* print effective distance */
475 < register RAY  *r;
475 > RAY  *r;
476   {
477          (*putreal)(r->rt);
478   }
479  
480  
481 < static
481 > static void
482   oputL(r)                                /* print single ray length */
483 < register RAY  *r;
483 > RAY  *r;
484   {
485          (*putreal)(r->rot);
486   }
487  
488  
489 < static
489 > static void
490 > oputc(r)                                /* print local coordinates */
491 > RAY  *r;
492 > {
493 >        (*putreal)(r->uv[0]);
494 >        (*putreal)(r->uv[1]);
495 > }
496 >
497 >
498 > static void
499   oputp(r)                                /* print point */
500 < register RAY  *r;
500 > RAY  *r;
501   {
502          if (r->rot < FHUGE) {
503                  (*putreal)(r->rop[0]);
# Line 482 | Line 511 | register RAY  *r;
511   }
512  
513  
514 < static
514 > static void
515   oputN(r)                                /* print unperturbed normal */
516 < register RAY  *r;
516 > RAY  *r;
517   {
518          if (r->rot < FHUGE) {
519                  (*putreal)(r->ron[0]);
# Line 498 | Line 527 | register RAY  *r;
527   }
528  
529  
530 < static
530 > static void
531   oputn(r)                                /* print perturbed normal */
532   RAY  *r;
533   {
# Line 517 | Line 546 | RAY  *r;
546   }
547  
548  
549 < static
549 > static void
550   oputs(r)                                /* print name */
551 < register RAY  *r;
551 > RAY  *r;
552   {
553          if (r->ro != NULL)
554                  fputs(r->ro->oname, stdout);
# Line 529 | Line 558 | register RAY  *r;
558   }
559  
560  
561 < static
561 > static void
562   oputw(r)                                /* print weight */
563 < register RAY  *r;
563 > RAY  *r;
564   {
565          (*putreal)(r->rweight);
566   }
567  
568  
569 < static
569 > static void
570   oputm(r)                                /* print modifier */
571 < register RAY  *r;
571 > RAY  *r;
572   {
573          if (r->ro != NULL)
574                  if (r->ro->omod != OVOID)
# Line 552 | Line 581 | register RAY  *r;
581   }
582  
583  
584 < static
584 > static void
585   puta(v)                         /* print ascii value */
586   double  v;
587   {
# Line 560 | Line 589 | double  v;
589   }
590  
591  
592 < static
592 > static void
593   putd(v)                         /* print binary double */
594   double  v;
595   {
# Line 568 | Line 597 | double  v;
597   }
598  
599  
600 < static
600 > static void
601   putf(v)                         /* print binary float */
602   double  v;
603   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines