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 1.12 by greg, Thu Mar 28 10:16:35 1991 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 20 | Line 20 | static char SCCSid[] = "$SunId$ LBL";
20   *  All values default to ascii representation of real
21   *  numbers.  Binary representations can be selected
22   *  with '-ff' for float or '-fd' for double.  By default,
23 < *  radiance is computed.  The '-oi' or '-oI' options indicate that
23 > *  radiance is computed.  The '-i' or '-I' options indicate that
24   *  irradiance values are desired.
25   */
26  
# 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 */
38 +
39 + int  imm_irrad = 0;                     /* compute immediate irradiance? */
40 +
41   int  inform = 'a';                      /* input format */
42   int  outform = 'a';                     /* output format */
43   char  *outvals = "v";                   /* output specification */
# Line 40 | Line 48 | int  vresolu = 0;                      /* vertical resolution */
48   double  dstrsrc = 0.0;                  /* square source distribution */
49   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  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 53 | Line 68 | int  ambounce = 0;                     /* ambient bounces */
68   char  *amblist[128];                    /* ambient include/exclude list */
69   int  ambincl = -1;                      /* include == 1, exclude == 0 */
70  
71 + 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 65 | Line 82 | static int  puta(), putf(), putd();
82  
83   static int  (*putreal)();
84  
68 static double  Lambfa[5] = {PI, PI, PI, 0.0, 0.0};
69 static OBJREC  Lamb = {
70        OVOID, MAT_PLASTIC, "Lambertian",
71        {0, 5, NULL, Lambfa}, NULL, -1,
72 };                                      /* a Lambertian surface */
85  
74
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 93 | 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 108 | Line 149 | char  *fname;
149                          fflush(stdout);
150                          continue;
151                  }
152 +                samplendx++;
153                                                          /* compute and print */
154 <                if (outvals[0] == 'i')
154 >                if (imm_irrad)
155                          irrad(orig, direc);
114                else if (outvals[0] == 'I')
115                        Irrad(orig, direc);
156                  else
157 <                        radiance(orig, direc);
157 >                        traceray(orig, direc);
158                                                          /* flush if time */
159                  if (--nextflush == 0) {
160                          fflush(stdout);
# Line 156 | 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 180 | Line 227 | register char  *vs;
227   }
228  
229  
230 < radiance(org, dir)              /* compute radiance value */
230 > traceray(org, dir)              /* compute and print ray value(s) */
231   FVECT  org, dir;
232   {
233          register int  (**tp)();
# Line 202 | Line 249 | FVECT  org, dir;
249   }
250  
251  
252 < irrad(org, dir)                 /* compute irradiance value */
252 > irrad(org, dir)                 /* compute immediate irradiance value */
253   FVECT  org, dir;
254   {
255          register int  i;
# Line 226 | Line 273 | FVECT  org, dir;
273   }
274  
275  
229 Irrad(org, dir)         /* compute irradiance value after intersection */
230 FVECT  org, dir;
231 {
232                                        /* compute intersection */
233        VCOPY(thisray.rorg, org);
234        VCOPY(thisray.rdir, dir);
235        rayorigin(&thisray, NULL, PRIMARY, 1.0);
236        localhit(&thisray, &thescene);
237        if (thisray.ro != NULL)         /* pretend we hit Lambertian surf. */
238                (*ofun[Lamb.otype].funp)(&Lamb, &thisray);
239        oputv(&thisray);
240        if (outform == 'a')
241                putchar('\n');
242 }
243
244
276   getvec(vec, fmt, fp)            /* get a vector from fp */
277   register FVECT  vec;
278   int  fmt;
279   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  
287          switch (fmt) {
288          case 'a':                                       /* ascii */
289 <                if (fscanf(fp, "%lf %lf %lf", vec, vec+1, vec+2) != 3)
290 <                        return(-1);
289 >                for (i = 0; i < 3; i++) {
290 >                        if (fgetword(buf, sizeof(buf), fp) == NULL ||
291 >                                        !isflt(buf))
292 >                                return(-1);
293 >                        vec[i] = atof(buf);
294 >                }
295                  break;
296          case 'f':                                       /* binary float */
297                  if (fread((char *)vf, sizeof(float), 3, fp) != 3)
# Line 260 | 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 318 | 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 325 | 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 333 | 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 349 | 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 361 | 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