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.4 by greg, Thu Jan 16 12:05:20 1992 UTC vs.
Revision 2.11 by greg, Wed Jan 20 15:19:51 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 30 | Line 30 | static char SCCSid[] = "$SunId$ LBL";
30  
31   #include  "otypes.h"
32  
33 + #include  "resolu.h"
34 +
35   int  dimlist[MAXDIM];                   /* sampling dimensions */
36   int  ndims = 0;                         /* number of sampling dimensions */
37   int  samplendx = 0;                     /* index for this sample */
# Line 48 | Line 50 | double  shadthresh = .05;              /* shadow threshold */
50   double  shadcert = .5;                  /* shadow certainty */
51   int  directrelay = 1;                   /* number of source relays */
52   int  vspretest = 512;                   /* virtual source pretest density */
53 < int  directinvis = 0;                   /* sources invisible? */
53 > int  directvis = 1;                     /* sources visible? */
54   double  srcsizerat = .25;               /* maximum ratio source size/dist. */
55  
56   double  specthresh = .15;               /* specular sampling threshold */
# Line 70 | Line 72 | extern OBJREC  Lamb;                   /* a Lambertian surface */
72  
73   static RAY  thisray;                    /* for our convenience */
74  
75 < static int  oputo(), oputd(), oputv(), oputl(),
76 <                oputp(), oputn(), oputs(), oputw(), oputm();
75 > static int  oputo(), oputd(), oputv(), oputl(), oputL(),
76 >                oputp(), oputn(), oputN(), oputs(), oputw(), oputm();
77  
78   static int  (*ray_out[10])(), (*every_out[10])();
79   static int  castonly;
# Line 84 | Line 86 | static int  (*putreal)();
86   quit(code)                      /* quit program */
87   int  code;
88   {
89 + #ifndef  NIX
90 +        headclean();            /* delete header file */
91 +        pfclean();              /* clean up persist files */
92 + #endif
93          exit(code);
94   }
95  
96  
97 + char *
98 + formstr(f)                              /* return format identifier */
99 + int  f;
100 + {
101 +        switch (f) {
102 +        case 'a': return("ascii");
103 +        case 'f': return("float");
104 +        case 'd': return("double");
105 +        case 'c': return(COLRFMT);
106 +        }
107 +        return("unknown");
108 + }
109 +
110 +
111   rtrace(fname)                           /* trace rays from file */
112   char  *fname;
113   {
# Line 102 | Line 122 | char  *fname;
122                  sprintf(errmsg, "cannot open input file \"%s\"", fname);
123                  error(SYSTEM, errmsg);
124          }
125 + #ifdef MSDOS
126 +        if (inform != 'a')
127 +                setmode(fileno(fp), O_BINARY);
128 + #endif
129                                          /* set up output */
130          setoutput(outvals);
131          switch (outform) {
132          case 'a': putreal = puta; break;
133          case 'f': putreal = putf; break;
134          case 'd': putreal = putd; break;
135 +        case 'c':
136 +                if (strcmp(outvals, "v"))
137 +                        error(USER, "color format with value output only");
138 +                break;
139 +        default:
140 +                error(CONSISTENCY, "botched output format");
141          }
142 +        if (hresolu > 0 && vresolu > 0)
143 +                fprtresolu(hresolu, vresolu, stdout);
144                                          /* process file */
145          while (getvec(orig, inform, fp) == 0 &&
146                          getvec(direc, inform, fp) == 0) {
# Line 164 | Line 196 | register char  *vs;
196                          *table++ = oputv;
197                          castonly = 0;
198                          break;
199 <                case 'l':                               /* length */
199 >                case 'l':                               /* effective distance */
200                          *table++ = oputl;
201                          castonly = 0;
202                          break;
203 +                case 'L':                               /* single ray length */
204 +                        *table++ = oputL;
205 +                        break;
206                  case 'p':                               /* point */
207                          *table++ = oputp;
208                          break;
209 <                case 'n':                               /* normal */
209 >                case 'n':                               /* perturbed normal */
210                          *table++ = oputn;
211 +                        castonly = 0;
212                          break;
213 +                case 'N':                               /* unperturbed normal */
214 +                        *table++ = oputN;
215 +                        break;
216                  case 's':                               /* surface */
217                          *table++ = oputs;
218                          break;
# Line 241 | Line 280 | FILE  *fp;
280   {
281          extern char  *fgetword();
282          static float  vf[3];
283 +        static double  vd[3];
284          char  buf[32];
285          register int  i;
286  
# Line 259 | Line 299 | FILE  *fp;
299                  vec[0] = vf[0]; vec[1] = vf[1]; vec[2] = vf[2];
300                  break;
301          case 'd':                                       /* binary double */
302 <                if (fread((char *)vec, sizeof(double), 3, fp) != 3)
302 >                if (fread((char *)vd, sizeof(double), 3, fp) != 3)
303                          return(-1);
304 +                vec[0] = vd[0]; vec[1] = vd[1]; vec[2] = vd[2];
305                  break;
306 +        default:
307 +                error(CONSISTENCY, "botched input format");
308          }
309          return(0);
310   }
# Line 317 | Line 360 | static
360   oputv(r)                                /* print value */
361   register RAY  *r;
362   {
363 +        COLR  cout;
364 +        
365 +        if (outform == 'c') {
366 +                setcolr(cout,   colval(r->rcol,RED),
367 +                                colval(r->rcol,GRN),
368 +                                colval(r->rcol,BLU));
369 +                fwrite((char *)cout, sizeof(cout), 1, stdout);
370 +                return;
371 +        }
372          (*putreal)(colval(r->rcol,RED));
373          (*putreal)(colval(r->rcol,GRN));
374          (*putreal)(colval(r->rcol,BLU));
# Line 324 | Line 376 | register RAY  *r;
376  
377  
378   static
379 < oputl(r)                                /* print length */
379 > oputl(r)                                /* print effective distance */
380   register RAY  *r;
381   {
382          (*putreal)(r->rt);
# Line 332 | Line 384 | register RAY  *r;
384  
385  
386   static
387 + oputL(r)                                /* print single ray length */
388 + register RAY  *r;
389 + {
390 +        (*putreal)(r->rot);
391 + }
392 +
393 +
394 + static
395   oputp(r)                                /* print point */
396   register RAY  *r;
397   {
# Line 348 | Line 408 | register RAY  *r;
408  
409  
410   static
411 < oputn(r)                                /* print normal */
411 > oputN(r)                                /* print unperturbed normal */
412   register RAY  *r;
413   {
414          if (r->rot < FHUGE) {
# Line 360 | Line 420 | register RAY  *r;
420                  (*putreal)(0.0);
421                  (*putreal)(0.0);
422          }
423 + }
424 +
425 +
426 + static
427 + oputn(r)                                /* print perturbed normal */
428 + RAY  *r;
429 + {
430 +        FVECT  pnorm;
431 +
432 +        if (r->rot >= FHUGE) {
433 +                (*putreal)(0.0);
434 +                (*putreal)(0.0);
435 +                (*putreal)(0.0);
436 +                return;
437 +        }
438 +        raynormal(pnorm, r);
439 +        (*putreal)(pnorm[0]);
440 +        (*putreal)(pnorm[1]);
441 +        (*putreal)(pnorm[2]);
442   }
443  
444  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines