ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rv3.c
(Generate patch)

Comparing ray/src/rt/rv3.c (file contents):
Revision 2.30 by greg, Tue Sep 16 21:14:11 2008 UTC vs.
Revision 2.41 by greg, Wed Nov 7 18:34:58 2018 UTC

# Line 13 | Line 13 | static const char      RCSid[] = "$Id$";
13  
14   #include  "ray.h"
15   #include  "rpaint.h"
16 + #include  "otypes.h"
17 + #include  "otspecial.h"
18 + #include  "source.h"
19   #include  "random.h"
20  
21   #ifndef WFLUSH
# Line 29 | Line 32 | static const char      RCSid[] = "$Id$";
32   #define  sscanvec(s,v)  (sscanf(s,"%lf %lf %lf",v,v+1,v+2)==3)
33   #endif
34  
35 < static unsigned long  niflush;          /* flushes since newimage() */
35 > extern int      ray_pnprocs;
36  
37 + static RNUMBER  niflush;                /* flushes since newimage() */
38 +
39   int
40   getrect(                                /* get a box */
41          char  *s,
# Line 112 | Line 117 | getinterest(           /* get area of interest */
117                  }
118                  if (!direc || ourview.type == VT_PAR) {
119                          rayorigin(&thisray, PRIMARY, NULL, NULL);
120 <                        if (!localhit(&thisray, &thescene)) {
120 >                        while (localhit(&thisray, &thescene)) {
121 >                                OBJREC  *m = findmaterial(thisray.ro);
122 >                                if (m != NULL && !istransp(m->otype) &&
123 >                                                !isBSDFproxy(m) &&
124 >                                                (thisray.clipset == NULL ||
125 >                                                        !inset(thisray.clipset,
126 >                                                            thisray.ro->omod)))
127 >                                        break;          /* found something */
128 >                                VCOPY(thisray.rorg, thisray.rop);
129 >                                rayclear(&thisray);     /* skip invisible */
130 >                        }
131 >                        if (thisray.ro == NULL) {
132                                  error(COMMAND, "not a local object");
133                                  return(-1);
134                          }
# Line 137 | Line 153 | getinterest(           /* get area of interest */
153   }
154  
155  
156 < float *         /* keep consistent with COLOR typedef */
156 > COLORV *
157   greyof(                         /* convert color to greyscale */
158          COLOR  col
159   )
# Line 192 | Line 208 | paint(                 /* compute and paint a rectangle */
208          if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir, &ourview,
209                          h/hresolu, v/vresolu)) < -FTINY) {
210                  setcolor(thisray.rcol, 0.0, 0.0, 0.0);
211 <        } else if (nproc == 1) {                /* immediate mode */
211 >        } else if (!ray_pnprocs) {              /* immediate mode */
212                  ray_trace(&thisray);
213          } else {                                /* queuing mode */
214                  int     rval;
215                  rayorigin(&thisray, PRIMARY, NULL, NULL);
216 <                thisray.rno = (unsigned long)p;
216 >                thisray.rno = (RNUMBER)p;
217                  rval = ray_pqueue(&thisray);
218                  if (!rval)
219                          return(0);
220                  if (rval < 0)
221                          return(-1);
222 +                                                /* get node for returned ray */
223                  p = (PNODE *)thisray.rno;
224          }
225  
# Line 212 | Line 229 | paint(                 /* compute and paint a rectangle */
229          recolor(p);                             /* paint it */
230  
231          if (dev->flush != NULL) {               /* shall we check for input? */
232 <                static unsigned long    lastflush = 0;
233 <                unsigned long           counter = raynum;
234 <                int                     flushintvl;
235 <                if (nproc == 1) {
232 >                static RNUMBER  lastflush = 0;
233 >                RNUMBER         counter = raynum;
234 >                int             flushintvl;
235 >                if (!ray_pnprocs) {
236                          counter = nrays;
237                          flushintvl = WFLUSH1;
238                  } else if (ambounce == 0)
239 <                        flushintvl = nproc*WFLUSH;
239 >                        flushintvl = ray_pnprocs*WFLUSH;
240                  else if (niflush < WFLUSH)
241 <                        flushintvl = nproc*niflush/(ambounce+1);
241 >                        flushintvl = ray_pnprocs*niflush/(ambounce*(ambounce>0)+1);
242                  else
243 <                        flushintvl = nproc*WFLUSH/(ambounce+1);
243 >                        flushintvl = ray_pnprocs*WFLUSH/(ambounce*(ambounce>0)+1);
244 >                if (lastflush > counter)
245 >                        lastflush = 0;          /* counter wrapped */
246  
247                  if (counter - lastflush >= flushintvl) {
248                          lastflush = counter;
# Line 242 | Line 261 | waitrays(void)                                 /* finish up pending rays */
261          int     rval;
262          RAY     raydone;
263  
264 <        if (nproc <= 1)                         /* immediate mode? */
264 >        if (!ray_pnprocs)                       /* immediate mode? */
265                  return(0);
266          while ((rval = ray_presult(&raydone, 0)) > 0) {
267                  PNODE  *p = (PNODE *)raydone.rno;
# Line 262 | Line 281 | newimage(                                      /* start a new image */
281          char *s
282   )
283   {
284 <        extern int      ray_pnprocs;
285 <        int             newnp;
286 <                                                /* change in nproc? */
287 <        if (s != NULL && sscanf(s, "%d", &newnp) == 1 &&
269 <                        (newnp > 0) & (newnp != nproc)) {
270 <                if (!newparam) {
271 <                        if (newnp == 1)
272 <                                ray_pclose(0);
273 <                        else if (newnp < ray_pnprocs)
274 <                                ray_pclose(ray_pnprocs - newnp);
275 <                        else
276 <                                ray_popen(newnp - ray_pnprocs);
277 <                }
278 <                nproc = newnp;
279 <        }
284 >        int             newnp = 0;
285 >                                                /* # rendering procs arg? */
286 >        if (s != NULL)
287 >                sscanf(s, "%d", &newnp);
288                                                  /* free old image */
289          freepkids(&ptrunk);
290                                                  /* compute resolution */
# Line 291 | Line 299 | newimage(                                      /* start a new image */
299          (*dev->clear)(hresolu, vresolu);
300  
301          if (newparam) {                         /* (re)start rendering procs */
302 <                if (ray_pnprocs > 0)
303 <                        ray_pclose(0);
302 >                if (ray_pnprocs)
303 >                        ray_pclose(0);          /* should already be closed */
304 >                if (newnp > 0)
305 >                        nproc = newnp;
306                  if (nproc > 1)
307                          ray_popen(nproc);
308                  newparam = 0;
309 +        } else if ((newnp > 0) & (newnp != nproc)) {
310 +                if (newnp == 1)                 /* change # rendering procs */
311 +                        ray_pclose(0);
312 +                else if (newnp < ray_pnprocs)
313 +                        ray_pclose(ray_pnprocs - newnp);
314 +                else
315 +                        ray_popen(newnp - ray_pnprocs);
316 +                nproc = newnp;
317          }
318          niflush = 0;                            /* get first value */
319          paint(&ptrunk);
# Line 513 | Line 531 | moveview(                                      /* move viewpoint */
531   )
532   {
533          double  d;
516        FVECT  v1;
534          VIEW  nv = ourview;
535          int  i;
536  
537          spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.));
538 <        if (elev != 0.0) {
539 <                fcross(v1, ourview.vup, nv.vdir);
540 <                normalize(v1);
524 <                spinvector(nv.vdir, nv.vdir, v1, elev*(PI/180.));
525 <        }
538 >        if (elev != 0.0)
539 >                geodesic(nv.vdir, nv.vdir, nv.vup, elev*(-PI/180.), GEOD_RAD);
540 >
541          if (nv.type == VT_PAR) {
542                  nv.horiz /= mag;
543                  nv.vert /= mag;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines