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

Comparing ray/src/rt/rview.c (file contents):
Revision 2.28 by greg, Mon Jun 13 20:07:56 2005 UTC vs.
Revision 2.35 by greg, Tue Aug 16 18:09:53 2011 UTC

# Line 15 | Line 15 | static const char      RCSid[] = "$Id$";
15   #include  "ray.h"
16   #include  "rpaint.h"
17  
18
19 CUBE  thescene;                         /* our scene */
20 OBJECT  nsceneobjs;                     /* number of objects in our scene */
21
22 int  dimlist[MAXDIM];                   /* sampling dimensions */
23 int  ndims = 0;                         /* number of sampling dimensions */
24 int  samplendx = 0;                     /* index for this sample */
25
26 extern void  ambnotify();
27 void  (*addobjnotify[])() = {ambnotify, NULL};
28
29 VIEW  ourview = STDVIEW;                /* viewing parameters */
30 int  hresolu, vresolu;                  /* image resolution */
31
32 void  (*trace)() = NULL;                /* trace call */
33
34 int  do_irrad = 0;                      /* compute irradiance? */
35
36 int  rand_samp = 0;                     /* pure Monte Carlo sampling? */
37
38 int  psample = 8;                       /* pixel sample size */
39 double  maxdiff = .15;                  /* max. sample difference */
40
41 double  exposure = 1.0;                 /* exposure for scene */
42
43 double  dstrsrc = 0.0;                  /* square source distribution */
44 double  shadthresh = .1;                /* shadow threshold */
45 double  shadcert = .25;                 /* shadow certainty */
46 int  directrelay = 0;                   /* number of source relays */
47 int  vspretest = 128;                   /* virtual source pretest density */
48 int  directvis = 1;                     /* sources visible? */
49 double  srcsizerat = 0.;                /* maximum ratio source size/dist. */
50
51 COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
52 COLOR  salbedo = BLKCOLOR;              /* global scattering albedo */
53 double  seccg = 0.;                     /* global scattering eccentricity */
54 double  ssampdist = 0.;                 /* scatter sampling distance */
55
56 double  specthresh = .3;                /* specular sampling threshold */
57 double  specjitter = 1.;                /* specular sampling jitter */
58
59 int  backvis = 1;                       /* back face visibility */
60
61 int  maxdepth = 6;                      /* maximum recursion depth */
62 double  minweight = 1e-2;               /* minimum ray weight */
63
64 char  *ambfile = NULL;                  /* ambient file name */
65 COLOR  ambval = BLKCOLOR;               /* ambient value */
66 int  ambvwt = 0;                        /* initial weight for ambient value */
67 double  ambacc = 0.3;                   /* ambient accuracy */
68 int  ambres = 32;                       /* ambient resolution */
69 int  ambdiv = 256;                      /* ambient divisions */
70 int  ambssamp = 64;                     /* ambient super-samples */
71 int  ambounce = 0;                      /* ambient bounces */
72 char  *amblist[AMBLLEN];                /* ambient include/exclude list */
73 int  ambincl = -1;                      /* include == 1, exclude == 0 */
74
75 int  greyscale = 0;                     /* map colors to brightness? */
76 char  *dvcname = dev_default;           /* output device name */
77
78 struct driver  *dev = NULL;             /* driver functions */
79
80 char  rifname[128];                     /* rad input file name */
81
82 VIEW  oldview;                          /* previous view parameters */
83
84 PNODE  ptrunk;                          /* the base of our image */
85 RECT  pframe;                           /* current frame boundaries */
86 int  pdepth;                            /* image depth in current frame */
87
88 static char  *reserve_mem = NULL;       /* pre-allocated reserve memory */
89
90 #define RESERVE_AMT     32768           /* amount of memory to reserve */
91
18   #define  CTRL(c)        ((c)-'@')
19  
20  
# Line 96 | Line 22 | void
22   quit(code)                      /* quit program */
23   int  code;
24   {
25 < #ifdef MSTATS
26 <        if (code == 2 && errno == ENOMEM)
27 <                printmemstats(stderr);
28 < #endif
103 <        devclose();
25 >        if (ray_pnprocs > 0)    /* close children if any */
26 >                ray_pclose(0);
27 >        else if (!ray_pnprocs)  /* in parent */
28 >                devclose();
29          exit(code);
30   }
31  
32  
33   void
34 < devopen(dname)                          /* open device driver */
35 < char  *dname;
34 > devopen(                                /* open device driver */
35 >        char  *dname
36 > )
37   {
38          extern char  *progname, *octname;
39          char  *id;
40 <        register int  i;
40 >        int  i;
41  
42          id = octname!=NULL ? octname : progname;
43                                                  /* check device table */
# Line 132 | Line 58 | char  *dname;
58  
59  
60   void
61 < devclose()                              /* close our device */
61 > devclose(void)                          /* close our device */
62   {
63          if (dev != NULL)
64                  (*dev->close)();
# Line 141 | Line 67 | devclose()                             /* close our device */
67  
68  
69   void
70 < printdevices()                          /* print list of output devices */
70 > printdevices(void)                      /* print list of output devices */
71   {
72 <        register int  i;
72 >        int  i;
73  
74          for (i = 0; devtable[i].name; i++)
75                  printf("%-16s # %s\n", devtable[i].name, devtable[i].descrip);
# Line 151 | Line 77 | printdevices()                         /* print list of output devices */
77  
78  
79   void
80 < rview()                         /* do a view */
80 > rview(void)                             /* do a view */
81   {
82          char  buf[32];
83  
84          devopen(dvcname);               /* open device */
85 <        newimage();                     /* start image (calls fillreserves) */
85 >        newimage(NULL);                 /* start image */
86  
87          for ( ; ; ) {                   /* quit in command() */
88                  while (hresolu <= 1<<pdepth && vresolu <= 1<<pdepth)
89                          command("done: ");
164                while (reserve_mem == NULL)
165                        command("out of memory: ");
90                  errno = 0;
91                  if (hresolu <= psample<<pdepth && vresolu <= psample<<pdepth) {
92                          sprintf(buf, "%d sampling...\n", 1<<pdepth);
# Line 171 | Line 95 | rview()                                /* do a view */
95                  } else {
96                          sprintf(buf, "%d refining...\n", 1<<pdepth);
97                          (*dev->comout)(buf);
98 <                        refine(&ptrunk, 0, 0, hresolu, vresolu, pdepth+1);
98 >                        refine(&ptrunk, pdepth+1);
99                  }
100 <                if (errno == ENOMEM)            /* ran out of memory */
177 <                        freereserves();
178 <                else if (dev->inpready)         /* noticed some input */
100 >                if (dev->inpready)              /* noticed some input */
101                          command(": ");
102                  else                            /* finished this depth */
103                          pdepth++;
# Line 184 | Line 106 | rview()                                /* do a view */
106  
107  
108   void
109 < fillreserves()                  /* fill memory reserves */
109 > command(                        /* get/execute command */
110 >        char  *prompt
111 > )
112   {
189        if (reserve_mem != NULL)
190                return;
191        reserve_mem = (char *)malloc(RESERVE_AMT);
192 }
193
194
195 void
196 freereserves()                  /* free memory reserves */
197 {
198        if (reserve_mem == NULL)
199                return;
200        free(reserve_mem);
201        reserve_mem = NULL;
202 }
203
204
205 void
206 command(prompt)                 /* get/execute command */
207 char  *prompt;
208 {
113   #define  badcom(s)      strncmp(s, inpbuf, args-inpbuf-1)
114          char  inpbuf[256];
115          char  *args;
# Line 215 | Line 119 | again:
119                  ;
120          if (*args) *args++ = '\0';
121          else *++args = '\0';
122 +
123 +        if (waitrays() < 0)                     /* clear ray queue */
124 +                quit(1);
125          
126          switch (inpbuf[0]) {
127          case 'f':                               /* new frame (|focus|free) */
# Line 268 | Line 175 | again:
175          case 'n':                               /* new picture */
176                  if (badcom("new"))
177                          goto commerr;
178 <                newimage();
178 >                newimage(args);
179                  break;
180          case 't':                               /* trace a ray */
181                  if (badcom("trace"))
# Line 282 | Line 189 | again:
189                  break;
190          case 'm':                               /* move camera (or memstats) */
191                  if (badcom("move"))
285 #ifdef  MSTATS
286                {
287                        if (badcom("memory"))
288                                goto commerr;
289                        printmemstats(stderr);
290                        break;
291                }
292 #else
192                          goto commerr;
294 #endif
193                  getmove(args);
194                  break;
195          case 'r':                               /* rotate/repaint */
# Line 356 | Line 254 | commerr:
254  
255  
256   void
257 < rsample()                       /* sample the image */
257 > rsample(void)                   /* sample the image */
258   {
259          int  xsiz, ysiz, y;
362        RECT  r;
260          PNODE  *p;
261 <        register RECT  *rl;
262 <        register PNODE  **pl;
366 <        register int  x;
261 >        PNODE   **pl;
262 >        int  x;
263          /*
264           *     We initialize the bottom row in the image at our current
265           * resolution.  During sampling, we check super-pixels to the
# Line 373 | Line 269 | rsample()                      /* sample the image */
269           */
270          xsiz = (((long)(pframe.r-pframe.l)<<pdepth)+hresolu-1) / hresolu;
271          ysiz = (((long)(pframe.u-pframe.d)<<pdepth)+vresolu-1) / vresolu;
376        rl = (RECT *)malloc(xsiz*sizeof(RECT));
377        if (rl == NULL)
378                return;
272          pl = (PNODE **)malloc(xsiz*sizeof(PNODE *));
273 <        if (pl == NULL) {
381 <                free((void *)rl);
273 >        if (pl == NULL)
274                  return;
383        }
275          /*
276           * Initialize the bottom row.
277           */
278 <        rl[0].l = rl[0].d = 0;
388 <        rl[0].r = hresolu; rl[0].u = vresolu;
389 <        pl[0] = findrect(pframe.l, pframe.d, &ptrunk, rl, pdepth);
278 >        pl[0] = findrect(pframe.l, pframe.d, &ptrunk, pdepth);
279          for (x = 1; x < xsiz; x++) {
391                rl[x].l = rl[x].d = 0;
392                rl[x].r = hresolu; rl[x].u = vresolu;
280                  pl[x] = findrect(pframe.l+((x*hresolu)>>pdepth),
281 <                                pframe.d, &ptrunk, rl+x, pdepth);
281 >                                pframe.d, &ptrunk, pdepth);
282          }
283                                                  /* sample the image */
284          for (y = 0; /* y < ysiz */ ; y++) {
285                  for (x = 0; x < xsiz-1; x++) {
286 <                        if (dev->inpready || errno == ENOMEM)
286 >                        if (dev->inpready)
287                                  goto escape;
288                          /*
289                           * Test super-pixel to the right.
290                           */
291                          if (pl[x] != pl[x+1] && bigdiff(pl[x]->v,
292                                          pl[x+1]->v, maxdiff)) {
293 <                                refine(pl[x], rl[x].l, rl[x].d,
294 <                                                rl[x].r, rl[x].u, 1);
408 <                                refine(pl[x+1], rl[x+1].l, rl[x+1].d,
409 <                                                rl[x+1].r, rl[x+1].u, 1);
293 >                                refine(pl[x], 1);
294 >                                refine(pl[x+1], 1);
295                          }
296                  }
297                  if (y >= ysiz-1)
298                          break;
299                  for (x = 0; x < xsiz; x++) {
300 <                        if (dev->inpready || errno == ENOMEM)
300 >                        if (dev->inpready)
301                                  goto escape;
302                          /*
303                           * Find super-pixel at this position in next row.
304                           */
420                        r.l = r.d = 0;
421                        r.r = hresolu; r.u = vresolu;
305                          p = findrect(pframe.l+((x*hresolu)>>pdepth),
306                                  pframe.d+(((y+1)*vresolu)>>pdepth),
307 <                                        &ptrunk, &r, pdepth);
307 >                                        &ptrunk, pdepth);
308                          /*
309                           * Test super-pixel in next row.
310                           */
311                          if (pl[x] != p && bigdiff(pl[x]->v, p->v, maxdiff)) {
312 <                                refine(pl[x], rl[x].l, rl[x].d,
313 <                                                rl[x].r, rl[x].u, 1);
431 <                                refine(p, r.l, r.d, r.r, r.u, 1);
312 >                                refine(pl[x], 1);
313 >                                refine(p, 1);
314                          }
315                          /*
316                           * Copy into super-pixel array.
317                           */
436                        rl[x].l = r.l; rl[x].d = r.d;
437                        rl[x].r = r.r; rl[x].u = r.u;
318                          pl[x] = p;
319                  }
320          }
321   escape:
442        free((void *)rl);
322          free((void *)pl);
323   }
324  
325  
326   int
327 < refine(p, xmin, ymin, xmax, ymax, pd)           /* refine a node */
328 < register PNODE  *p;
329 < int  xmin, ymin, xmax, ymax;
330 < int  pd;
327 > refine(                         /* refine a node */
328 >        PNODE   *p,
329 >        int  pd
330 > )
331   {
332          int  growth;
333          int  mx, my;
455        int  i;
334  
335          if (dev->inpready)                      /* quit for input */
336                  return(0);
# Line 460 | Line 338 | int  pd;
338          if (pd <= 0)                            /* depth limit */
339                  return(0);
340  
341 <        mx = (xmin + xmax) >> 1;
342 <        my = (ymin + ymax) >> 1;
341 >        mx = (p->xmin + p->xmax) >> 1;
342 >        my = (p->ymin + p->ymax) >> 1;
343          growth = 0;
344  
345          if (p->kid == NULL) {                   /* subdivide */
346  
347                  if ((p->kid = newptree()) == NULL)
348                          return(0);
349 +
350 +                p->kid[UR].xmin = mx;
351 +                p->kid[UR].ymin = my;
352 +                p->kid[UR].xmax = p->xmax;
353 +                p->kid[UR].ymax = p->ymax;
354 +                p->kid[UL].xmin = p->xmin;
355 +                p->kid[UL].ymin = my;
356 +                p->kid[UL].xmax = mx;
357 +                p->kid[UL].ymax = p->ymax;
358 +                p->kid[DR].xmin = mx;
359 +                p->kid[DR].ymin = p->ymin;
360 +                p->kid[DR].xmax = p->xmax;
361 +                p->kid[DR].ymax = my;
362 +                p->kid[DL].xmin = p->xmin;
363 +                p->kid[DL].ymin = p->ymin;
364 +                p->kid[DL].xmax = mx;
365 +                p->kid[DL].ymax = my;
366                  /*
367                   *  The following paint order can leave a black pixel
368                   *  if redraw() is called in (*dev->paintr)().
369                   */
370                  if (p->x >= mx && p->y >= my)
371                          pcopy(p, p->kid+UR);
372 <                else
373 <                        paint(p->kid+UR, mx, my, xmax, ymax);
372 >                else if (paint(p->kid+UR) < 0)
373 >                        quit(1);
374                  if (p->x < mx && p->y >= my)
375                          pcopy(p, p->kid+UL);
376 <                else
377 <                        paint(p->kid+UL, xmin, my, mx, ymax);
376 >                else if (paint(p->kid+UL) < 0)
377 >                        quit(1);
378                  if (p->x >= mx && p->y < my)
379                          pcopy(p, p->kid+DR);
380 <                else
381 <                        paint(p->kid+DR, mx, ymin, xmax, my);
380 >                else if (paint(p->kid+DR) < 0)
381 >                        quit(1);
382                  if (p->x < mx && p->y < my)
383                          pcopy(p, p->kid+DL);
384 <                else
385 <                        paint(p->kid+DL, xmin, ymin, mx, my);
384 >                else if (paint(p->kid+DL) < 0)
385 >                        quit(1);
386  
387                  growth++;
388          }
389                                                  /* do children */
390          if (mx > pframe.l) {
391                  if (my > pframe.d)
392 <                        growth += refine(p->kid+DL, xmin, ymin, mx, my, pd-1);
392 >                        growth += refine(p->kid+DL, pd-1);
393                  if (my < pframe.u)
394 <                        growth += refine(p->kid+UL, xmin, my, mx, ymax, pd-1);
394 >                        growth += refine(p->kid+UL, pd-1);
395          }
396          if (mx < pframe.r) {
397                  if (my > pframe.d)
398 <                        growth += refine(p->kid+DR, mx, ymin, xmax, my, pd-1);
398 >                        growth += refine(p->kid+DR, pd-1);
399                  if (my < pframe.u)
400 <                        growth += refine(p->kid+UR, mx, my, xmax, ymax, pd-1);
506 <        }
507 <                                                /* recompute sum */
508 <        if (growth) {
509 <                setcolor(p->v, 0.0, 0.0, 0.0);
510 <                for (i = 0; i < 4; i++)
511 <                        addcolor(p->v, p->kid[i].v);
512 <                scalecolor(p->v, 0.25);
400 >                        growth += refine(p->kid+UR, pd-1);
401          }
402          return(growth);
403   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines