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.21 by greg, Wed Jul 2 01:15:20 2003 UTC vs.
Revision 2.36 by greg, Tue Mar 20 03:37:08 2012 UTC

# Line 12 | Line 12 | static const char      RCSid[] = "$Id$";
12   #include  <signal.h>
13   #include  <ctype.h>
14  
15 #include  "platform.h"
15   #include  "ray.h"
16   #include  "rpaint.h"
17  
19
20 CUBE  thescene;                         /* our scene */
21 OBJECT  nsceneobjs;                     /* number of objects in our scene */
22
23 int  dimlist[MAXDIM];                   /* sampling dimensions */
24 int  ndims = 0;                         /* number of sampling dimensions */
25 int  samplendx = 0;                     /* index for this sample */
26
27 extern void  ambnotify();
28 void  (*addobjnotify[])() = {ambnotify, NULL};
29
30 VIEW  ourview = STDVIEW;                /* viewing parameters */
31 int  hresolu, vresolu;                  /* image resolution */
32
33 void  (*trace)() = NULL;                /* trace call */
34
35 int  do_irrad = 0;                      /* compute irradiance? */
36
37 int  psample = 8;                       /* pixel sample size */
38 double  maxdiff = .15;                  /* max. sample difference */
39
40 double  exposure = 1.0;                 /* exposure for scene */
41
42 double  dstrsrc = 0.0;                  /* square source distribution */
43 double  shadthresh = .1;                /* shadow threshold */
44 double  shadcert = .25;                 /* shadow certainty */
45 int  directrelay = 0;                   /* number of source relays */
46 int  vspretest = 128;                   /* virtual source pretest density */
47 int  directvis = 1;                     /* sources visible? */
48 double  srcsizerat = 0.;                /* maximum ratio source size/dist. */
49
50 COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
51 COLOR  salbedo = BLKCOLOR;              /* global scattering albedo */
52 double  seccg = 0.;                     /* global scattering eccentricity */
53 double  ssampdist = 0.;                 /* scatter sampling distance */
54
55 double  specthresh = .3;                /* specular sampling threshold */
56 double  specjitter = 1.;                /* specular sampling jitter */
57
58 int  backvis = 1;                       /* back face visibility */
59
60 int  maxdepth = 4;                      /* maximum recursion depth */
61 double  minweight = 1e-2;               /* minimum ray weight */
62
63 char  *ambfile = NULL;                  /* ambient file name */
64 COLOR  ambval = BLKCOLOR;               /* ambient value */
65 int  ambvwt = 0;                        /* initial weight for ambient value */
66 double  ambacc = 0.2;                   /* ambient accuracy */
67 int  ambres = 8;                        /* ambient resolution */
68 int  ambdiv = 32;                       /* ambient divisions */
69 int  ambssamp = 0;                      /* ambient super-samples */
70 int  ambounce = 0;                      /* ambient bounces */
71 char  *amblist[128];                    /* ambient include/exclude list */
72 int  ambincl = -1;                      /* include == 1, exclude == 0 */
73
74 int  greyscale = 0;                     /* map colors to brightness? */
75 char  *dvcname = dev_default;           /* output device name */
76
77 struct driver  *dev = NULL;             /* driver functions */
78
79 char  rifname[128];                     /* rad input file name */
80
81 VIEW  oldview;                          /* previous view parameters */
82
83 PNODE  ptrunk;                          /* the base of our image */
84 RECT  pframe;                           /* current frame boundaries */
85 int  pdepth;                            /* image depth in current frame */
86
87 static char  *reserve_mem = NULL;       /* pre-allocated reserve memory */
88
89 #define RESERVE_AMT     32768           /* amount of memory to reserve */
90
18   #define  CTRL(c)        ((c)-'@')
19  
20  
# Line 95 | 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
102 <        devclose();
25 >        if (ray_pnprocs > 0)    /* close children if any */
26 >                ray_pclose(0);
27 >        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 */
44          for (i = 0; devtable[i].name; i++)
45 <                if (!strcmp(dname, devtable[i].name))
45 >                if (!strcmp(dname, devtable[i].name)) {
46                          if ((dev = (*devtable[i].init)(dname, id)) == NULL) {
47                                  sprintf(errmsg, "cannot initialize %s", dname);
48                                  error(USER, errmsg);
49                          } else
50                                  return;
51 +                }
52                                                  /* not there, try exec */
53          if ((dev = comm_init(dname, id)) == NULL) {
54                  sprintf(errmsg, "cannot start device \"%s\"", dname);
# Line 130 | 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 139 | 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 149 | 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: ");
162                while (reserve_mem == NULL)
163                        command("out of memory: ");
90                  errno = 0;
91                  if (hresolu <= psample<<pdepth && vresolu <= psample<<pdepth) {
92                          sprintf(buf, "%d sampling...\n", 1<<pdepth);
# Line 169 | 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 */
175 <                        freereserves();
176 <                else if (dev->inpready)         /* noticed some input */
100 >                if (dev->inpready)              /* noticed some input */
101                          command(": ");
102                  else                            /* finished this depth */
103                          pdepth++;
# Line 182 | 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   {
187        if (reserve_mem != NULL)
188                return;
189        reserve_mem = (char *)malloc(RESERVE_AMT);
190 }
191
192
193 void
194 freereserves()                  /* free memory reserves */
195 {
196        if (reserve_mem == NULL)
197                return;
198        free(reserve_mem);
199        reserve_mem = NULL;
200 }
201
202
203 void
204 command(prompt)                 /* get/execute command */
205 char  *prompt;
206 {
113   #define  badcom(s)      strncmp(s, inpbuf, args-inpbuf-1)
114          char  inpbuf[256];
115          char  *args;
# Line 213 | 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 (or free mem.) */
127 >        case 'f':                               /* new frame (|focus|free) */
128                  if (badcom("frame")) {
129 <                        if (badcom("free"))
130 <                                goto commerr;
131 <                        free_objmem();
129 >                        if (badcom("focus")) {
130 >                                if (badcom("free"))
131 >                                        goto commerr;
132 >                                free_objmem();
133 >                                break;
134 >                        }
135 >                        getfocus(args);
136                          break;
137                  }
138                  getframe(args);
# Line 262 | 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 276 | Line 189 | again:
189                  break;
190          case 'm':                               /* move camera (or memstats) */
191                  if (badcom("move"))
279 #ifdef  MSTATS
280                {
281                        if (badcom("memory"))
282                                goto commerr;
283                        printmemstats(stderr);
284                        break;
285                }
286 #else
192                          goto commerr;
288 #endif
193                  getmove(args);
194                  break;
195          case 'r':                               /* rotate/repaint */
# Line 345 | Line 249 | commerr:
249                  error(COMMAND, errmsg);
250                  break;
251          }
252 +        if (newparam && ray_pnprocs)            /* drop into immediate mode */
253 +                ray_pclose(0);
254   #undef  badcom
255   }
256  
257  
258   void
259 < rsample()                       /* sample the image */
259 > rsample(void)                   /* sample the image */
260   {
261          int  xsiz, ysiz, y;
356        RECT  r;
262          PNODE  *p;
263 <        register RECT  *rl;
264 <        register PNODE  **pl;
360 <        register int  x;
263 >        PNODE   **pl;
264 >        int  x;
265          /*
266           *     We initialize the bottom row in the image at our current
267           * resolution.  During sampling, we check super-pixels to the
# Line 367 | Line 271 | rsample()                      /* sample the image */
271           */
272          xsiz = (((long)(pframe.r-pframe.l)<<pdepth)+hresolu-1) / hresolu;
273          ysiz = (((long)(pframe.u-pframe.d)<<pdepth)+vresolu-1) / vresolu;
370        rl = (RECT *)malloc(xsiz*sizeof(RECT));
371        if (rl == NULL)
372                return;
274          pl = (PNODE **)malloc(xsiz*sizeof(PNODE *));
275 <        if (pl == NULL) {
375 <                free((void *)rl);
275 >        if (pl == NULL)
276                  return;
377        }
277          /*
278           * Initialize the bottom row.
279           */
280 <        rl[0].l = rl[0].d = 0;
382 <        rl[0].r = hresolu; rl[0].u = vresolu;
383 <        pl[0] = findrect(pframe.l, pframe.d, &ptrunk, rl, pdepth);
280 >        pl[0] = findrect(pframe.l, pframe.d, &ptrunk, pdepth);
281          for (x = 1; x < xsiz; x++) {
385                rl[x].l = rl[x].d = 0;
386                rl[x].r = hresolu; rl[x].u = vresolu;
282                  pl[x] = findrect(pframe.l+((x*hresolu)>>pdepth),
283 <                                pframe.d, &ptrunk, rl+x, pdepth);
283 >                                pframe.d, &ptrunk, pdepth);
284          }
285                                                  /* sample the image */
286          for (y = 0; /* y < ysiz */ ; y++) {
287                  for (x = 0; x < xsiz-1; x++) {
288 <                        if (dev->inpready || errno == ENOMEM)
288 >                        if (dev->inpready)
289                                  goto escape;
290                          /*
291                           * Test super-pixel to the right.
292                           */
293                          if (pl[x] != pl[x+1] && bigdiff(pl[x]->v,
294                                          pl[x+1]->v, maxdiff)) {
295 <                                refine(pl[x], rl[x].l, rl[x].d,
296 <                                                rl[x].r, rl[x].u, 1);
402 <                                refine(pl[x+1], rl[x+1].l, rl[x+1].d,
403 <                                                rl[x+1].r, rl[x+1].u, 1);
295 >                                refine(pl[x], 1);
296 >                                refine(pl[x+1], 1);
297                          }
298                  }
299                  if (y >= ysiz-1)
300                          break;
301                  for (x = 0; x < xsiz; x++) {
302 <                        if (dev->inpready || errno == ENOMEM)
302 >                        if (dev->inpready)
303                                  goto escape;
304                          /*
305                           * Find super-pixel at this position in next row.
306                           */
414                        r.l = r.d = 0;
415                        r.r = hresolu; r.u = vresolu;
307                          p = findrect(pframe.l+((x*hresolu)>>pdepth),
308                                  pframe.d+(((y+1)*vresolu)>>pdepth),
309 <                                        &ptrunk, &r, pdepth);
309 >                                        &ptrunk, pdepth);
310                          /*
311                           * Test super-pixel in next row.
312                           */
313                          if (pl[x] != p && bigdiff(pl[x]->v, p->v, maxdiff)) {
314 <                                refine(pl[x], rl[x].l, rl[x].d,
315 <                                                rl[x].r, rl[x].u, 1);
425 <                                refine(p, r.l, r.d, r.r, r.u, 1);
314 >                                refine(pl[x], 1);
315 >                                refine(p, 1);
316                          }
317                          /*
318                           * Copy into super-pixel array.
319                           */
430                        rl[x].l = r.l; rl[x].d = r.d;
431                        rl[x].r = r.r; rl[x].u = r.u;
320                          pl[x] = p;
321                  }
322          }
323   escape:
436        free((void *)rl);
324          free((void *)pl);
325   }
326  
327  
328   int
329 < refine(p, xmin, ymin, xmax, ymax, pd)           /* refine a node */
330 < register PNODE  *p;
331 < int  xmin, ymin, xmax, ymax;
332 < int  pd;
329 > refine(                         /* refine a node */
330 >        PNODE   *p,
331 >        int  pd
332 > )
333   {
334          int  growth;
335          int  mx, my;
449        int  i;
336  
337          if (dev->inpready)                      /* quit for input */
338                  return(0);
# Line 454 | Line 340 | int  pd;
340          if (pd <= 0)                            /* depth limit */
341                  return(0);
342  
343 <        mx = (xmin + xmax) >> 1;
344 <        my = (ymin + ymax) >> 1;
343 >        mx = (p->xmin + p->xmax) >> 1;
344 >        my = (p->ymin + p->ymax) >> 1;
345          growth = 0;
346  
347          if (p->kid == NULL) {                   /* subdivide */
348  
349                  if ((p->kid = newptree()) == NULL)
350                          return(0);
351 +
352 +                p->kid[UR].xmin = mx;
353 +                p->kid[UR].ymin = my;
354 +                p->kid[UR].xmax = p->xmax;
355 +                p->kid[UR].ymax = p->ymax;
356 +                p->kid[UL].xmin = p->xmin;
357 +                p->kid[UL].ymin = my;
358 +                p->kid[UL].xmax = mx;
359 +                p->kid[UL].ymax = p->ymax;
360 +                p->kid[DR].xmin = mx;
361 +                p->kid[DR].ymin = p->ymin;
362 +                p->kid[DR].xmax = p->xmax;
363 +                p->kid[DR].ymax = my;
364 +                p->kid[DL].xmin = p->xmin;
365 +                p->kid[DL].ymin = p->ymin;
366 +                p->kid[DL].xmax = mx;
367 +                p->kid[DL].ymax = my;
368                  /*
369                   *  The following paint order can leave a black pixel
370                   *  if redraw() is called in (*dev->paintr)().
371                   */
372                  if (p->x >= mx && p->y >= my)
373                          pcopy(p, p->kid+UR);
374 <                else
375 <                        paint(p->kid+UR, mx, my, xmax, ymax);
374 >                else if (paint(p->kid+UR) < 0)
375 >                        quit(1);
376                  if (p->x < mx && p->y >= my)
377                          pcopy(p, p->kid+UL);
378 <                else
379 <                        paint(p->kid+UL, xmin, my, mx, ymax);
378 >                else if (paint(p->kid+UL) < 0)
379 >                        quit(1);
380                  if (p->x >= mx && p->y < my)
381                          pcopy(p, p->kid+DR);
382 <                else
383 <                        paint(p->kid+DR, mx, ymin, xmax, my);
382 >                else if (paint(p->kid+DR) < 0)
383 >                        quit(1);
384                  if (p->x < mx && p->y < my)
385                          pcopy(p, p->kid+DL);
386 <                else
387 <                        paint(p->kid+DL, xmin, ymin, mx, my);
386 >                else if (paint(p->kid+DL) < 0)
387 >                        quit(1);
388  
389                  growth++;
390          }
391                                                  /* do children */
392          if (mx > pframe.l) {
393                  if (my > pframe.d)
394 <                        growth += refine(p->kid+DL, xmin, ymin, mx, my, pd-1);
394 >                        growth += refine(p->kid+DL, pd-1);
395                  if (my < pframe.u)
396 <                        growth += refine(p->kid+UL, xmin, my, mx, ymax, pd-1);
396 >                        growth += refine(p->kid+UL, pd-1);
397          }
398          if (mx < pframe.r) {
399                  if (my > pframe.d)
400 <                        growth += refine(p->kid+DR, mx, ymin, xmax, my, pd-1);
400 >                        growth += refine(p->kid+DR, pd-1);
401                  if (my < pframe.u)
402 <                        growth += refine(p->kid+UR, mx, my, xmax, ymax, pd-1);
500 <        }
501 <                                                /* recompute sum */
502 <        if (growth) {
503 <                setcolor(p->v, 0.0, 0.0, 0.0);
504 <                for (i = 0; i < 4; i++)
505 <                        addcolor(p->v, p->kid[i].v);
506 <                scalecolor(p->v, 0.25);
402 >                        growth += refine(p->kid+UR, pd-1);
403          }
404          return(growth);
405   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines