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.1 by greg, Thu Feb 2 10:41:37 1989 UTC vs.
Revision 1.15 by greg, Wed Jun 19 16:36:48 1991 UTC

# Line 16 | Line 16 | static char SCCSid[] = "$SunId$ LBL";
16   *      xorg    yorg    zorg    xdir    ydir    zdir
17   *
18   *  The direction need not be normalized.  Output is flexible.
19 + *  If the direction vector is (0,0,0), then the output is flushed.
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 '-i' option indicates that
23 > *  radiance is computed.  The '-i' or '-I' options indicate that
24   *  irradiance values are desired.
25   */
26  
27   #include  "ray.h"
28  
29 + #include  "octree.h"
30 +
31   #include  "otypes.h"
32  
33 + int  dimlist[MAXDIM];                   /* sampling dimensions */
34 + int  ndims = 0;                         /* number of sampling dimensions */
35 + int  samplendx = 0;                     /* index for this sample */
36 +
37 + int  imm_irrad = 0;                     /* compute immediate irradiance? */
38 +
39   int  inform = 'a';                      /* input format */
40   int  outform = 'a';                     /* output format */
41   char  *outvals = "v";                   /* output specification */
# Line 35 | Line 44 | int  hresolu = 0;                      /* horizontal (scan) size */
44   int  vresolu = 0;                       /* vertical resolution */
45  
46   double  dstrsrc = 0.0;                  /* square source distribution */
47 + double  shadthresh = .05;               /* shadow threshold */
48 + double  shadcert = .5;                  /* shadow certainty */
49 + int  directrelay = 0;                   /* number of source relays */
50  
51   int  maxdepth = 6;                      /* maximum recursion depth */
52   double  minweight = 4e-3;               /* minimum ray weight */
53  
54   COLOR  ambval = BLKCOLOR;               /* ambient value */
55   double  ambacc = 0.2;                   /* ambient accuracy */
56 < int  ambres = 128;                      /* ambient resolution */
56 > int  ambres = 32;                       /* ambient resolution */
57   int  ambdiv = 128;                      /* ambient divisions */
58   int  ambssamp = 0;                      /* ambient super-samples */
59   int  ambounce = 0;                      /* ambient bounces */
60   char  *amblist[128];                    /* ambient include/exclude list */
61   int  ambincl = -1;                      /* include == 1, exclude == 0 */
62  
63 + extern OBJREC  Lamb;                    /* a Lambertian surface */
64 +
65   static RAY  thisray;                    /* for our convenience */
66  
67 < extern int  oputo(), oputd(), oputv(), oputl(),
67 > static int  oputo(), oputd(), oputv(), oputl(),
68                  oputp(), oputn(), oputs(), oputw(), oputm();
69  
70   static int  (*ray_out[10])(), (*every_out[10])();
71 + static int  castonly;
72  
73 < extern int  puta(), putf(), putd();
73 > static int  puta(), putf(), putd();
74  
75   static int  (*putreal)();
76  
# Line 73 | Line 88 | char  *fname;
88          long  vcount = hresolu>1 ? hresolu*vresolu : vresolu;
89          long  nextflush = hresolu;
90          FILE  *fp;
91 <        FVECT  orig, direc, vcol;
91 >        FVECT  orig, direc;
92                                          /* set up input */
93          if (fname == NULL)
94                  fp = stdin;
# Line 92 | Line 107 | char  *fname;
107          while (getvec(orig, inform, fp) == 0 &&
108                          getvec(direc, inform, fp) == 0) {
109  
110 <                if (normalize(direc) == 0.0)
111 <                        error(USER, "zero direction vector");
110 >                if (normalize(direc) == 0.0) {          /* zero ==> flush */
111 >                        fflush(stdout);
112 >                        continue;
113 >                }
114 >                samplendx++;
115                                                          /* compute and print */
116 <                if (outvals[0] == 'i')
116 >                if (imm_irrad)
117                          irrad(orig, direc);
118                  else
119 <                        radiance(orig, direc);
120 <                                                        /* flush if requested */
119 >                        traceray(orig, direc);
120 >                                                        /* flush if time */
121                  if (--nextflush == 0) {
122                          fflush(stdout);
123                          nextflush = hresolu;
# Line 121 | Line 139 | register char  *vs;
139          extern int  ourtrace(), (*trace)();
140          register int (**table)() = ray_out;
141  
142 +        castonly = 1;
143          while (*vs)
144                  switch (*vs++) {
145                  case 't':                               /* trace */
146                          *table = NULL;
147                          table = every_out;
148                          trace = ourtrace;
149 +                        castonly = 0;
150                          break;
151                  case 'o':                               /* origin */
152                          *table++ = oputo;
# Line 136 | Line 156 | register char  *vs;
156                          break;
157                  case 'v':                               /* value */
158                          *table++ = oputv;
159 +                        castonly = 0;
160                          break;
161                  case 'l':                               /* length */
162                          *table++ = oputl;
163 +                        castonly = 0;
164                          break;
165                  case 'p':                               /* point */
166                          *table++ = oputp;
# Line 160 | Line 182 | register char  *vs;
182   }
183  
184  
185 < radiance(org, dir)              /* compute radiance value */
185 > traceray(org, dir)              /* compute and print ray value(s) */
186   FVECT  org, dir;
187   {
188          register int  (**tp)();
# Line 168 | Line 190 | FVECT  org, dir;
190          VCOPY(thisray.rorg, org);
191          VCOPY(thisray.rdir, dir);
192          rayorigin(&thisray, NULL, PRIMARY, 1.0);
193 <        rayvalue(&thisray);
193 >        if (castonly)
194 >                localhit(&thisray, &thescene) || sourcehit(&thisray);
195 >        else
196 >                rayvalue(&thisray);
197  
198          if (ray_out[0] == NULL)
199                  return;
# Line 179 | Line 204 | FVECT  org, dir;
204   }
205  
206  
207 < irrad(org, dir)                 /* compute irradiance value */
207 > irrad(org, dir)                 /* compute immediate irradiance value */
208   FVECT  org, dir;
209   {
185        static double  Lambfa[5] = {PI, PI, PI, 0.0, 0.0};
186        static OBJREC  Lamb = {
187                OVOID, MAT_PLASTIC, "Lambertian",
188                {0, 5, NULL, Lambfa}, NULL, -1,
189        };
210          register int  i;
211  
212          for (i = 0; i < 3; i++) {
# Line 221 | Line 241 | FILE  *fp;
241                          return(-1);
242                  break;
243          case 'f':                                       /* binary float */
244 <                if (fread(vf, sizeof(float), 3, fp) != 3)
244 >                if (fread((char *)vf, sizeof(float), 3, fp) != 3)
245                          return(-1);
246                  vec[0] = vf[0]; vec[1] = vf[1]; vec[2] = vf[2];
247                  break;
248          case 'd':                                       /* binary double */
249 <                if (fread(vec, sizeof(double), 3, fp) != 3)
249 >                if (fread((char *)vec, sizeof(double), 3, fp) != 3)
250                          return(-1);
251                  break;
252          }
# Line 294 | Line 314 | static
314   oputl(r)                                /* print length */
315   register RAY  *r;
316   {
317 <        if (r->rot < FHUGE)
298 <                (*putreal)(r->rot);
299 <        else
300 <                (*putreal)(0.0);
317 >        (*putreal)(r->rt);
318   }
319  
320  
# Line 377 | Line 394 | static
394   putd(v)                         /* print binary double */
395   double  v;
396   {
397 <        fwrite(&v, sizeof(v), 1, stdout);
397 >        fwrite((char *)&v, sizeof(v), 1, stdout);
398   }
399  
400  
# Line 387 | Line 404 | double  v;
404   {
405          float f = v;
406  
407 <        fwrite(&f, sizeof(f), 1, stdout);
407 >        fwrite((char *)&f, sizeof(f), 1, stdout);
408   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines