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.2 by greg, Thu Dec 19 14:54:53 1991 UTC vs.
Revision 2.13 by greg, Mon Mar 8 12:37:33 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 */
57 + double  specjitter = 1.;                /* specular sampling jitter */
58 +
59   int  maxdepth = 6;                      /* maximum recursion depth */
60   double  minweight = 4e-3;               /* minimum ray weight */
61  
# Line 67 | 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  ourtrace(), tabin();
79   static int  (*ray_out[10])(), (*every_out[10])();
80   static int  castonly;
81  
# Line 81 | Line 87 | static int  (*putreal)();
87   quit(code)                      /* quit program */
88   int  code;
89   {
90 + #ifndef  NIX
91 +        headclean();            /* delete header file */
92 +        pfclean();              /* clean up persist files */
93 + #endif
94          exit(code);
95   }
96  
97  
98 + char *
99 + formstr(f)                              /* return format identifier */
100 + int  f;
101 + {
102 +        switch (f) {
103 +        case 'a': return("ascii");
104 +        case 'f': return("float");
105 +        case 'd': return("double");
106 +        case 'c': return(COLRFMT);
107 +        }
108 +        return("unknown");
109 + }
110 +
111 +
112   rtrace(fname)                           /* trace rays from file */
113   char  *fname;
114   {
# Line 99 | Line 123 | char  *fname;
123                  sprintf(errmsg, "cannot open input file \"%s\"", fname);
124                  error(SYSTEM, errmsg);
125          }
126 + #ifdef MSDOS
127 +        if (inform != 'a')
128 +                setmode(fileno(fp), O_BINARY);
129 + #endif
130                                          /* set up output */
131          setoutput(outvals);
132          switch (outform) {
133          case 'a': putreal = puta; break;
134          case 'f': putreal = putf; break;
135          case 'd': putreal = putd; break;
136 +        case 'c':
137 +                if (strcmp(outvals, "v"))
138 +                        error(USER, "color format with value output only");
139 +                break;
140 +        default:
141 +                error(CONSISTENCY, "botched output format");
142          }
143 +        if (hresolu > 0) {
144 +                if (vresolu > 0)
145 +                        fprtresolu(hresolu, vresolu, stdout);
146 +                fflush(stdout);
147 +        }
148                                          /* process file */
149          while (getvec(orig, inform, fp) == 0 &&
150                          getvec(direc, inform, fp) == 0) {
# Line 130 | Line 169 | char  *fname;
169                  if (--vcount == 0)                      /* check for end */
170                          break;
171          }
172 +        fflush(stdout);
173          if (vcount > 0)
174                  error(USER, "read error");
175 <        fclose(fp);
175 >        if (fname != NULL)
176 >                fclose(fp);
177   }
178  
179  
180   setoutput(vs)                           /* set up output tables */
181   register char  *vs;
182   {
183 <        extern int  ourtrace(), (*trace)();
183 >        extern int  (*trace)();
184          register int (**table)() = ray_out;
185  
186          castonly = 1;
# Line 161 | Line 202 | register char  *vs;
202                          *table++ = oputv;
203                          castonly = 0;
204                          break;
205 <                case 'l':                               /* length */
205 >                case 'l':                               /* effective distance */
206                          *table++ = oputl;
207                          castonly = 0;
208                          break;
209 +                case 'L':                               /* single ray length */
210 +                        *table++ = oputL;
211 +                        break;
212                  case 'p':                               /* point */
213                          *table++ = oputp;
214                          break;
215 <                case 'n':                               /* normal */
215 >                case 'n':                               /* perturbed normal */
216                          *table++ = oputn;
217 +                        castonly = 0;
218                          break;
219 +                case 'N':                               /* unperturbed normal */
220 +                        *table++ = oputN;
221 +                        break;
222                  case 's':                               /* surface */
223                          *table++ = oputs;
224                          break;
# Line 238 | Line 286 | FILE  *fp;
286   {
287          extern char  *fgetword();
288          static float  vf[3];
289 +        static double  vd[3];
290          char  buf[32];
291          register int  i;
292  
# Line 256 | Line 305 | FILE  *fp;
305                  vec[0] = vf[0]; vec[1] = vf[1]; vec[2] = vf[2];
306                  break;
307          case 'd':                                       /* binary double */
308 <                if (fread((char *)vec, sizeof(double), 3, fp) != 3)
308 >                if (fread((char *)vd, sizeof(double), 3, fp) != 3)
309                          return(-1);
310 +                vec[0] = vd[0]; vec[1] = vd[1]; vec[2] = vd[2];
311                  break;
312 +        default:
313 +                error(CONSISTENCY, "botched input format");
314          }
315          return(0);
316   }
# Line 314 | Line 366 | static
366   oputv(r)                                /* print value */
367   register RAY  *r;
368   {
369 +        COLR  cout;
370 +        
371 +        if (outform == 'c') {
372 +                setcolr(cout,   colval(r->rcol,RED),
373 +                                colval(r->rcol,GRN),
374 +                                colval(r->rcol,BLU));
375 +                fwrite((char *)cout, sizeof(cout), 1, stdout);
376 +                return;
377 +        }
378          (*putreal)(colval(r->rcol,RED));
379          (*putreal)(colval(r->rcol,GRN));
380          (*putreal)(colval(r->rcol,BLU));
# Line 321 | Line 382 | register RAY  *r;
382  
383  
384   static
385 < oputl(r)                                /* print length */
385 > oputl(r)                                /* print effective distance */
386   register RAY  *r;
387   {
388          (*putreal)(r->rt);
# Line 329 | Line 390 | register RAY  *r;
390  
391  
392   static
393 + oputL(r)                                /* print single ray length */
394 + register RAY  *r;
395 + {
396 +        (*putreal)(r->rot);
397 + }
398 +
399 +
400 + static
401   oputp(r)                                /* print point */
402   register RAY  *r;
403   {
# Line 345 | Line 414 | register RAY  *r;
414  
415  
416   static
417 < oputn(r)                                /* print normal */
417 > oputN(r)                                /* print unperturbed normal */
418   register RAY  *r;
419   {
420          if (r->rot < FHUGE) {
# Line 357 | Line 426 | register RAY  *r;
426                  (*putreal)(0.0);
427                  (*putreal)(0.0);
428          }
429 + }
430 +
431 +
432 + static
433 + oputn(r)                                /* print perturbed normal */
434 + RAY  *r;
435 + {
436 +        FVECT  pnorm;
437 +
438 +        if (r->rot >= FHUGE) {
439 +                (*putreal)(0.0);
440 +                (*putreal)(0.0);
441 +                (*putreal)(0.0);
442 +                return;
443 +        }
444 +        raynormal(pnorm, r);
445 +        (*putreal)(pnorm[0]);
446 +        (*putreal)(pnorm[1]);
447 +        (*putreal)(pnorm[2]);
448   }
449  
450  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines