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.20 by schorsch, Mon Jun 30 14:59:13 2003 UTC vs.
Revision 2.38 by greg, Sat Jun 7 05:09:46 2025 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  "paths.h"
17   #include  "rpaint.h"
18  
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
19   #define  CTRL(c)        ((c)-'@')
20  
21  
# Line 95 | Line 23 | void
23   quit(code)                      /* quit program */
24   int  code;
25   {
26 < #ifdef MSTATS
27 <        if (code == 2 && errno == ENOMEM)
28 <                printmemstats(stderr);
29 < #endif
102 <        devclose();
26 >        if (ray_pnprocs > 0)    /* close children if any */
27 >                ray_pclose(0);
28 >        if (!ray_pnprocs)       /* in parent */
29 >                devclose();
30          exit(code);
31   }
32  
33  
34   void
35 < devopen(dname)                          /* open device driver */
36 < char  *dname;
35 > devopen(                                /* open device driver */
36 >        char  *dname
37 > )
38   {
39 <        extern char  *progname, *octname;
39 >        extern char  *octname;
40          char  *id;
41 <        register int  i;
41 >        int  i;
42  
43          id = octname!=NULL ? octname : progname;
44                                                  /* check device table */
45          for (i = 0; devtable[i].name; i++)
46 <                if (!strcmp(dname, devtable[i].name))
46 >                if (!strcmp(dname, devtable[i].name)) {
47                          if ((dev = (*devtable[i].init)(dname, id)) == NULL) {
48                                  sprintf(errmsg, "cannot initialize %s", dname);
49                                  error(USER, errmsg);
50                          } else
51                                  return;
52 < #ifndef RHAS_FORK_EXEC /* XXX otherwise we do nothing? */
52 >                }
53                                                  /* not there, try exec */
54          if ((dev = comm_init(dname, id)) == NULL) {
55                  sprintf(errmsg, "cannot start device \"%s\"", dname);
56                  error(USER, errmsg);
57          }
130 #endif
58   }
59  
60  
61   void
62 < devclose()                              /* close our device */
62 > devclose(void)                          /* close our device */
63   {
64          if (dev != NULL)
65                  (*dev->close)();
# Line 141 | Line 68 | devclose()                             /* close our device */
68  
69  
70   void
71 < printdevices()                          /* print list of output devices */
71 > printdevices(void)                      /* print list of output devices */
72   {
73 <        register int  i;
73 >        int  i;
74  
75          for (i = 0; devtable[i].name; i++)
76                  printf("%-16s # %s\n", devtable[i].name, devtable[i].descrip);
# Line 151 | Line 78 | printdevices()                         /* print list of output devices */
78  
79  
80   void
81 < rview()                         /* do a view */
81 > rview(void)                             /* do a view */
82   {
83          char  buf[32];
84  
85          devopen(dvcname);               /* open device */
86 <        newimage();                     /* start image (calls fillreserves) */
86 >        newimage(NULL);                 /* start image */
87  
88          for ( ; ; ) {                   /* quit in command() */
89                  while (hresolu <= 1<<pdepth && vresolu <= 1<<pdepth)
90                          command("done: ");
164                while (reserve_mem == NULL)
165                        command("out of memory: ");
91                  errno = 0;
92                  if (hresolu <= psample<<pdepth && vresolu <= psample<<pdepth) {
93                          sprintf(buf, "%d sampling...\n", 1<<pdepth);
# Line 171 | Line 96 | rview()                                /* do a view */
96                  } else {
97                          sprintf(buf, "%d refining...\n", 1<<pdepth);
98                          (*dev->comout)(buf);
99 <                        refine(&ptrunk, 0, 0, hresolu, vresolu, pdepth+1);
99 >                        refine(&ptrunk, pdepth+1);
100                  }
101 <                if (errno == ENOMEM)            /* ran out of memory */
177 <                        freereserves();
178 <                else if (dev->inpready)         /* noticed some input */
101 >                if (dev->inpready)              /* noticed some input */
102                          command(": ");
103                  else                            /* finished this depth */
104                          pdepth++;
# Line 184 | Line 107 | rview()                                /* do a view */
107  
108  
109   void
110 < fillreserves()                  /* fill memory reserves */
110 > command(                        /* get/execute command */
111 >        char  *prompt
112 > )
113   {
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 {
114   #define  badcom(s)      strncmp(s, inpbuf, args-inpbuf-1)
115          char  inpbuf[256];
116          char  *args;
# Line 215 | Line 120 | again:
120                  ;
121          if (*args) *args++ = '\0';
122          else *++args = '\0';
123 +
124 +        if (waitrays() < 0)                     /* clear ray queue */
125 +                quit(1);
126          
127          switch (inpbuf[0]) {
128 <        case 'f':                               /* new frame (or free mem.) */
128 >        case 'f':                               /* new frame (|focus|free) */
129                  if (badcom("frame")) {
130 <                        if (badcom("free"))
131 <                                goto commerr;
132 <                        free_objmem();
130 >                        if (badcom("focus")) {
131 >                                if (badcom("free"))
132 >                                        goto commerr;
133 >                                free_objmem();
134 >                                break;
135 >                        }
136 >                        getfocus(args);
137                          break;
138                  }
139                  getframe(args);
# Line 264 | Line 176 | again:
176          case 'n':                               /* new picture */
177                  if (badcom("new"))
178                          goto commerr;
179 <                newimage();
179 >                newimage(args);
180                  break;
181          case 't':                               /* trace a ray */
182                  if (badcom("trace"))
# Line 278 | Line 190 | again:
190                  break;
191          case 'm':                               /* move camera (or memstats) */
192                  if (badcom("move"))
281 #ifdef  MSTATS
282                {
283                        if (badcom("memory"))
284                                goto commerr;
285                        printmemstats(stderr);
286                        break;
287                }
288 #else
193                          goto commerr;
290 #endif
194                  getmove(args);
195                  break;
196          case 'r':                               /* rotate/repaint */
# Line 311 | Line 214 | again:
214                  }
215                  getpivot(args);
216                  break;
217 +        case 'o':                               /* origin view */
218 +                if (badcom("origin"))
219 +                        goto commerr;
220 +                getorigin(args);
221 +                break;
222          case CTRL('R'):                         /* redraw */
223                  redraw();
224                  break;
# Line 347 | Line 255 | commerr:
255                  error(COMMAND, errmsg);
256                  break;
257          }
258 +        if (newparam && ray_pnprocs)            /* drop into immediate mode */
259 +                ray_pclose(0);
260   #undef  badcom
261   }
262  
263  
264   void
265 < rsample()                       /* sample the image */
265 > rsample(void)                   /* sample the image */
266   {
267          int  xsiz, ysiz, y;
358        RECT  r;
268          PNODE  *p;
269 <        register RECT  *rl;
270 <        register PNODE  **pl;
362 <        register int  x;
269 >        PNODE   **pl;
270 >        int  x;
271          /*
272           *     We initialize the bottom row in the image at our current
273           * resolution.  During sampling, we check super-pixels to the
# Line 369 | Line 277 | rsample()                      /* sample the image */
277           */
278          xsiz = (((long)(pframe.r-pframe.l)<<pdepth)+hresolu-1) / hresolu;
279          ysiz = (((long)(pframe.u-pframe.d)<<pdepth)+vresolu-1) / vresolu;
372        rl = (RECT *)malloc(xsiz*sizeof(RECT));
373        if (rl == NULL)
374                return;
280          pl = (PNODE **)malloc(xsiz*sizeof(PNODE *));
281 <        if (pl == NULL) {
377 <                free((void *)rl);
281 >        if (pl == NULL)
282                  return;
379        }
283          /*
284           * Initialize the bottom row.
285           */
286 <        rl[0].l = rl[0].d = 0;
384 <        rl[0].r = hresolu; rl[0].u = vresolu;
385 <        pl[0] = findrect(pframe.l, pframe.d, &ptrunk, rl, pdepth);
286 >        pl[0] = findrect(pframe.l, pframe.d, &ptrunk, pdepth);
287          for (x = 1; x < xsiz; x++) {
387                rl[x].l = rl[x].d = 0;
388                rl[x].r = hresolu; rl[x].u = vresolu;
288                  pl[x] = findrect(pframe.l+((x*hresolu)>>pdepth),
289 <                                pframe.d, &ptrunk, rl+x, pdepth);
289 >                                pframe.d, &ptrunk, pdepth);
290          }
291                                                  /* sample the image */
292          for (y = 0; /* y < ysiz */ ; y++) {
293                  for (x = 0; x < xsiz-1; x++) {
294 <                        if (dev->inpready || errno == ENOMEM)
294 >                        if (dev->inpready)
295                                  goto escape;
296                          /*
297                           * Test super-pixel to the right.
298                           */
299                          if (pl[x] != pl[x+1] && bigdiff(pl[x]->v,
300                                          pl[x+1]->v, maxdiff)) {
301 <                                refine(pl[x], rl[x].l, rl[x].d,
302 <                                                rl[x].r, rl[x].u, 1);
404 <                                refine(pl[x+1], rl[x+1].l, rl[x+1].d,
405 <                                                rl[x+1].r, rl[x+1].u, 1);
301 >                                refine(pl[x], 1);
302 >                                refine(pl[x+1], 1);
303                          }
304                  }
305                  if (y >= ysiz-1)
306                          break;
307                  for (x = 0; x < xsiz; x++) {
308 <                        if (dev->inpready || errno == ENOMEM)
308 >                        if (dev->inpready)
309                                  goto escape;
310                          /*
311                           * Find super-pixel at this position in next row.
312                           */
416                        r.l = r.d = 0;
417                        r.r = hresolu; r.u = vresolu;
313                          p = findrect(pframe.l+((x*hresolu)>>pdepth),
314                                  pframe.d+(((y+1)*vresolu)>>pdepth),
315 <                                        &ptrunk, &r, pdepth);
315 >                                        &ptrunk, pdepth);
316                          /*
317                           * Test super-pixel in next row.
318                           */
319                          if (pl[x] != p && bigdiff(pl[x]->v, p->v, maxdiff)) {
320 <                                refine(pl[x], rl[x].l, rl[x].d,
321 <                                                rl[x].r, rl[x].u, 1);
427 <                                refine(p, r.l, r.d, r.r, r.u, 1);
320 >                                refine(pl[x], 1);
321 >                                refine(p, 1);
322                          }
323                          /*
324                           * Copy into super-pixel array.
325                           */
432                        rl[x].l = r.l; rl[x].d = r.d;
433                        rl[x].r = r.r; rl[x].u = r.u;
326                          pl[x] = p;
327                  }
328          }
329   escape:
438        free((void *)rl);
330          free((void *)pl);
331   }
332  
333  
334   int
335 < refine(p, xmin, ymin, xmax, ymax, pd)           /* refine a node */
336 < register PNODE  *p;
337 < int  xmin, ymin, xmax, ymax;
338 < int  pd;
335 > refine(                         /* refine a node */
336 >        PNODE   *p,
337 >        int  pd
338 > )
339   {
340          int  growth;
341          int  mx, my;
451        int  i;
342  
343          if (dev->inpready)                      /* quit for input */
344                  return(0);
# Line 456 | Line 346 | int  pd;
346          if (pd <= 0)                            /* depth limit */
347                  return(0);
348  
349 <        mx = (xmin + xmax) >> 1;
350 <        my = (ymin + ymax) >> 1;
349 >        mx = (p->xmin + p->xmax) >> 1;
350 >        my = (p->ymin + p->ymax) >> 1;
351          growth = 0;
352  
353          if (p->kid == NULL) {                   /* subdivide */
354  
355                  if ((p->kid = newptree()) == NULL)
356                          return(0);
357 +
358 +                p->kid[UR].xmin = mx;
359 +                p->kid[UR].ymin = my;
360 +                p->kid[UR].xmax = p->xmax;
361 +                p->kid[UR].ymax = p->ymax;
362 +                p->kid[UL].xmin = p->xmin;
363 +                p->kid[UL].ymin = my;
364 +                p->kid[UL].xmax = mx;
365 +                p->kid[UL].ymax = p->ymax;
366 +                p->kid[DR].xmin = mx;
367 +                p->kid[DR].ymin = p->ymin;
368 +                p->kid[DR].xmax = p->xmax;
369 +                p->kid[DR].ymax = my;
370 +                p->kid[DL].xmin = p->xmin;
371 +                p->kid[DL].ymin = p->ymin;
372 +                p->kid[DL].xmax = mx;
373 +                p->kid[DL].ymax = my;
374                  /*
375                   *  The following paint order can leave a black pixel
376                   *  if redraw() is called in (*dev->paintr)().
377                   */
378                  if (p->x >= mx && p->y >= my)
379                          pcopy(p, p->kid+UR);
380 <                else
381 <                        paint(p->kid+UR, mx, my, xmax, ymax);
380 >                else if (paint(p->kid+UR) < 0)
381 >                        quit(1);
382                  if (p->x < mx && p->y >= my)
383                          pcopy(p, p->kid+UL);
384 <                else
385 <                        paint(p->kid+UL, xmin, my, mx, ymax);
384 >                else if (paint(p->kid+UL) < 0)
385 >                        quit(1);
386                  if (p->x >= mx && p->y < my)
387                          pcopy(p, p->kid+DR);
388 <                else
389 <                        paint(p->kid+DR, mx, ymin, xmax, my);
388 >                else if (paint(p->kid+DR) < 0)
389 >                        quit(1);
390                  if (p->x < mx && p->y < my)
391                          pcopy(p, p->kid+DL);
392 <                else
393 <                        paint(p->kid+DL, xmin, ymin, mx, my);
392 >                else if (paint(p->kid+DL) < 0)
393 >                        quit(1);
394  
395                  growth++;
396          }
397                                                  /* do children */
398          if (mx > pframe.l) {
399                  if (my > pframe.d)
400 <                        growth += refine(p->kid+DL, xmin, ymin, mx, my, pd-1);
400 >                        growth += refine(p->kid+DL, pd-1);
401                  if (my < pframe.u)
402 <                        growth += refine(p->kid+UL, xmin, my, mx, ymax, pd-1);
402 >                        growth += refine(p->kid+UL, pd-1);
403          }
404          if (mx < pframe.r) {
405                  if (my > pframe.d)
406 <                        growth += refine(p->kid+DR, mx, ymin, xmax, my, pd-1);
406 >                        growth += refine(p->kid+DR, pd-1);
407                  if (my < pframe.u)
408 <                        growth += refine(p->kid+UR, mx, my, xmax, ymax, pd-1);
502 <        }
503 <                                                /* recompute sum */
504 <        if (growth) {
505 <                setcolor(p->v, 0.0, 0.0, 0.0);
506 <                for (i = 0; i < 4; i++)
507 <                        addcolor(p->v, p->kid[i].v);
508 <                scalecolor(p->v, 0.25);
408 >                        growth += refine(p->kid+UR, pd-1);
409          }
410          return(growth);
411   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines