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.94 by greg, Mon Apr 6 21:09:07 2020 UTC vs.
Revision 2.103 by greg, Sun Apr 24 15:40:33 2022 UTC

# Line 52 | Line 52 | int  castonly = 0;                     /* only doing ray-casting? */
52   #endif
53   OBJECT  traset[MAXTSET+1]={0};          /* trace include/exclude set */
54  
55 + static int  Tflag = 0;                  /* source tracing enabled? */
56 +
57   static RAY  thisray;                    /* for our convenience */
58  
59   static FILE  *inpfp = NULL;             /* input stream pointer */
# Line 69 | Line 71 | static oputf_t  oputo, oputd, oputv, oputV, oputl, opu
71                  oputw, oputW, oputm, oputM, oputtilde;
72  
73   extern void tranotify(OBJECT obj);
72 static void setoutput(char *vs);
74   static int is_fifo(FILE *fp);
75   static void bogusray(void);
76   static void raycast(RAY *r);
# Line 93 | Line 94 | quit(                  /* quit program */
94   {
95          if (ray_pnprocs > 0)    /* close children if any */
96                  ray_pclose(0);          
97 +        else if (ray_pnprocs < 0)
98 +                _exit(code);    /* avoid flush() in child */
99   #ifndef  NON_POSIX
100 <        else if (!ray_pnprocs) {
100 >        else {
101                  headclean();    /* delete header file */
102                  pfclean();      /* clean up persist files */
103          }
# Line 118 | Line 121 | formstr(                               /* return format identifier */
121   }
122  
123  
124 + static void
125 + trace_sources(void)                     /* trace rays to light sources, also */
126 + {
127 +        int     sn;
128 +
129 +        for (sn = 0; sn < nsources; sn++)
130 +                source[sn].sflags |= SFOLLOW;
131 + }
132 +
133 +
134   void
135   rtrace(                         /* trace rays from file */
136          char  *fname,
# Line 147 | Line 160 | rtrace(                                /* trace rays from file */
160                                          /* set up output */
161          if (castonly || every_out[0] != NULL)
162                  nproc = 1;              /* don't bother multiprocessing */
163 +        if (Tflag && every_out[0] != NULL)
164 +                trace_sources();        /* asking to trace light sources */
165          if ((nextflush > 0) & (nproc > nextflush)) {
166                  error(WARNING, "reducing number of processes to match flush interval");
167                  nproc = nextflush;
168          }
154        switch (outform) {
155        case 'a': putreal = puta; break;
156        case 'f': putreal = putf; break;
157        case 'd': putreal = putd; break;
158        case 'c':
159                if (outvals[1] || !strchr("vrx", outvals[0]))
160                        error(USER, "color format only with -ov, -or, -ox");
161                putreal = putrgbe; break;
162        default:
163                error(CONSISTENCY, "botched output format");
164        }
169          if (nproc > 1) {                /* start multiprocessing */
170                  ray_popen(nproc);
171                  ray_fifo_out = printvals;
# Line 216 | Line 220 | rtrace(                                /* trace rays from file */
220   }
221  
222  
219 static void
220 trace_sources(void)                     /* trace rays to light sources, also */
221 {
222        int     sn;
223        
224        for (sn = 0; sn < nsources; sn++)
225                source[sn].sflags |= SFOLLOW;
226 }
227
228
223   int
224   setrtoutput(void)                       /* set up output tables, return #comp */
225   {
# Line 236 | Line 230 | setrtoutput(void)                      /* set up output tables, return #c
230          if (!*vs)
231                  error(USER, "empty output specification");
232  
233 +        switch (outform) {      /* make sure (*putreal)() calls someone! */
234 +        case 'a': putreal = puta; break;
235 +        case 'f': putreal = putf; break;
236 +        case 'd': putreal = putd; break;
237 +        case 'c':
238 +                if (outvals[1] || !strchr("vrx", outvals[0]))
239 +                        error(USER, "color format only with -ov, -or, -ox");
240 +                putreal = putrgbe; break;
241 +        default:
242 +                error(CONSISTENCY, "botched output format");
243 +        }
244          castonly = 1;                   /* sets castonly as side-effect */
245          do
246                  switch (*vs) {
247                  case 'T':                               /* trace sources */
248 <                        if (!vs[1]) break;
244 <                        trace_sources();
248 >                        Tflag++;
249                          /* fall through */
250                  case 't':                               /* trace */
251                          if (!vs[1]) break;
# Line 419 | Line 423 | rtcompute(                     /* compute and print ray value(s) */
423   )
424   {
425                                          /* set up ray */
422        rayorigin(&thisray, PRIMARY, NULL, NULL);
426          if (imm_irrad) {
427                  VSUM(thisray.rorg, org, dir, 1.1e-4);
428                  thisray.rdir[0] = -dir[0];
429                  thisray.rdir[1] = -dir[1];
430                  thisray.rdir[2] = -dir[2];
431                  thisray.rmax = 0.0;
429                thisray.revf = rayirrad;
432          } else {
433                  VCOPY(thisray.rorg, org);
434                  VCOPY(thisray.rdir, dir);
435                  thisray.rmax = dmax;
434                if (castonly)
435                        thisray.revf = raycast;
436          }
437 +        rayorigin(&thisray, PRIMARY, NULL, NULL);
438 +        if (imm_irrad)
439 +                thisray.revf = rayirrad;
440 +        else if (castonly)
441 +                thisray.revf = raycast;
442          if (ray_pnprocs > 1) {          /* multiprocessing FIFO? */
443                  if (ray_fifo_in(&thisray) < 0)
444                          error(USER, "lost children");
# Line 764 | Line 769 | static RREAL   vdummy[3] = {0.0, 0.0, 0.0};
769  
770  
771   static void
772 < oputp(                          /* print point */
772 > oputp(                          /* print intersection point */
773          RAY  *r
774   )
775   {
776 <        if (r->rot < FHUGE*.99)
772 <                (*putreal)(r->rop, 3);
773 <        else
774 <                (*putreal)(vdummy, 3);
776 >        (*putreal)(r->rop, 3);  /* set to ray origin if distant or no hit */
777   }
778  
779  
# Line 780 | Line 782 | oputN(                         /* print unperturbed normal */
782          RAY  *r
783   )
784   {
785 <        if (r->rot < FHUGE*.99) {
784 <                if (r->rflips & 1) {    /* undo any flippin' flips */
785 <                        FVECT   unrm;
786 <                        unrm[0] = -r->ron[0];
787 <                        unrm[1] = -r->ron[1];
788 <                        unrm[2] = -r->ron[2];
789 <                        (*putreal)(unrm, 3);
790 <                } else
791 <                        (*putreal)(r->ron, 3);
792 <        } else
785 >        if (r->ro == NULL) {    /* zero vector if clipped or no hit */
786                  (*putreal)(vdummy, 3);
787 +                return;
788 +        }
789 +        if (r->rflips & 1) {    /* undo any flippin' flips */
790 +                FVECT   unrm;
791 +                unrm[0] = -r->ron[0];
792 +                unrm[1] = -r->ron[1];
793 +                unrm[2] = -r->ron[2];
794 +                (*putreal)(unrm, 3);
795 +        } else
796 +                (*putreal)(r->ron, 3);
797   }
798  
799  
# Line 801 | Line 804 | oputn(                         /* print perturbed normal */
804   {
805          FVECT  pnorm;
806  
807 <        if (r->rot >= FHUGE*.99) {
807 >        if (r->ro == NULL) {    /* clipped or no hit */
808                  (*putreal)(vdummy, 3);
809                  return;
810          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines