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.5 by greg, Thu Mar 12 09:46:19 1992 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 */
# Line 71 | Line 73 | extern OBJREC  Lamb;                   /* a Lambertian surface */
73   static RAY  thisray;                    /* for our convenience */
74  
75   static int  oputo(), oputd(), oputv(), oputl(), oputL(),
76 <                oputp(), oputn(), oputs(), oputw(), oputm();
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 84 | 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 102 | 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 133 | 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 174 | Line 212 | register char  *vs;
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 267 | Line 309 | FILE  *fp;
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 322 | 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 361 | 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 373 | 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