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.9 by greg, Tue Mar 27 11:40:10 1990 UTC vs.
Revision 1.15 by greg, Wed Jun 19 16:36:48 1991 UTC

# 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 '-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 38 | Line 46 | int  vresolu = 0;                      /* vertical resolution */
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 */
# Line 51 | Line 60 | 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 99 | Line 111 | char  *fname;
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);
119 >                        traceray(orig, direc);
120                                                          /* flush if time */
121                  if (--nextflush == 0) {
122                          fflush(stdout);
# Line 126 | 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 141 | 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 165 | 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 173 | 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 184 | 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   {
190        static double  Lambfa[5] = {PI, PI, PI, 0.0, 0.0};
191        static OBJREC  Lamb = {
192                OVOID, MAT_PLASTIC, "Lambertian",
193                {0, 5, NULL, Lambfa}, NULL, -1,
194        };
210          register int  i;
211  
212          for (i = 0; i < 3; i++) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines