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.18 by greg, Sat Feb 22 02:07:29 2003 UTC vs.
Revision 2.33 by greg, Sat Dec 12 23:08:13 2009 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7   *  External symbols declared in rpaint.h
8   */
9  
10 < /* ====================================================================
11 < * The Radiance Software License, Version 1.0
12 < *
13 < * Copyright (c) 1990 - 2002 The Regents of the University of California,
14 < * through Lawrence Berkeley National Laboratory.   All rights reserved.
15 < *
16 < * Redistribution and use in source and binary forms, with or without
17 < * modification, are permitted provided that the following conditions
18 < * are met:
19 < *
20 < * 1. Redistributions of source code must retain the above copyright
21 < *         notice, this list of conditions and the following disclaimer.
22 < *
23 < * 2. Redistributions in binary form must reproduce the above copyright
24 < *       notice, this list of conditions and the following disclaimer in
25 < *       the documentation and/or other materials provided with the
26 < *       distribution.
27 < *
28 < * 3. The end-user documentation included with the redistribution,
29 < *           if any, must include the following acknowledgment:
30 < *             "This product includes Radiance software
31 < *                 (http://radsite.lbl.gov/)
32 < *                 developed by the Lawrence Berkeley National Laboratory
33 < *               (http://www.lbl.gov/)."
34 < *       Alternately, this acknowledgment may appear in the software itself,
35 < *       if and wherever such third-party acknowledgments normally appear.
36 < *
37 < * 4. The names "Radiance," "Lawrence Berkeley National Laboratory"
38 < *       and "The Regents of the University of California" must
39 < *       not be used to endorse or promote products derived from this
40 < *       software without prior written permission. For written
41 < *       permission, please contact [email protected].
42 < *
43 < * 5. Products derived from this software may not be called "Radiance",
44 < *       nor may "Radiance" appear in their name, without prior written
45 < *       permission of Lawrence Berkeley National Laboratory.
46 < *
47 < * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
48 < * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
49 < * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
50 < * DISCLAIMED.   IN NO EVENT SHALL Lawrence Berkeley National Laboratory OR
51 < * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
52 < * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
53 < * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
54 < * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
55 < * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
56 < * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
57 < * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 < * SUCH DAMAGE.
59 < * ====================================================================
60 < *
61 < * This software consists of voluntary contributions made by many
62 < * individuals on behalf of Lawrence Berkeley National Laboratory.   For more
63 < * information on Lawrence Berkeley National Laboratory, please see
64 < * <http://www.lbl.gov/>.
65 < */
10 > #include "copyright.h"
11  
67 #include  "ray.h"
68
69 #include  "rpaint.h"
70
12   #include  <signal.h>
72
13   #include  <ctype.h>
14  
15 < CUBE  thescene;                         /* our scene */
16 < OBJECT  nsceneobjs;                     /* number of objects in our scene */
15 > #include  "ray.h"
16 > #include  "rpaint.h"
17  
78 int  dimlist[MAXDIM];                   /* sampling dimensions */
79 int  ndims = 0;                         /* number of sampling dimensions */
80 int  samplendx = 0;                     /* index for this sample */
81
82 extern void  ambnotify();
83 void  (*addobjnotify[])() = {ambnotify, NULL};
84
85 VIEW  ourview = STDVIEW;                /* viewing parameters */
86 int  hresolu, vresolu;                  /* image resolution */
87
88 void  (*trace)() = NULL;                /* trace call */
89
90 int  do_irrad = 0;                      /* compute irradiance? */
91
92 int  psample = 8;                       /* pixel sample size */
93 double  maxdiff = .15;                  /* max. sample difference */
94
95 double  exposure = 1.0;                 /* exposure for scene */
96
97 double  dstrsrc = 0.0;                  /* square source distribution */
98 double  shadthresh = .1;                /* shadow threshold */
99 double  shadcert = .25;                 /* shadow certainty */
100 int  directrelay = 0;                   /* number of source relays */
101 int  vspretest = 128;                   /* virtual source pretest density */
102 int  directvis = 1;                     /* sources visible? */
103 double  srcsizerat = 0.;                /* maximum ratio source size/dist. */
104
105 COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
106 COLOR  salbedo = BLKCOLOR;              /* global scattering albedo */
107 double  seccg = 0.;                     /* global scattering eccentricity */
108 double  ssampdist = 0.;                 /* scatter sampling distance */
109
110 double  specthresh = .3;                /* specular sampling threshold */
111 double  specjitter = 1.;                /* specular sampling jitter */
112
113 int  backvis = 1;                       /* back face visibility */
114
115 int  maxdepth = 4;                      /* maximum recursion depth */
116 double  minweight = 1e-2;               /* minimum ray weight */
117
118 char  *ambfile = NULL;                  /* ambient file name */
119 COLOR  ambval = BLKCOLOR;               /* ambient value */
120 int  ambvwt = 0;                        /* initial weight for ambient value */
121 double  ambacc = 0.2;                   /* ambient accuracy */
122 int  ambres = 8;                        /* ambient resolution */
123 int  ambdiv = 32;                       /* ambient divisions */
124 int  ambssamp = 0;                      /* ambient super-samples */
125 int  ambounce = 0;                      /* ambient bounces */
126 char  *amblist[128];                    /* ambient include/exclude list */
127 int  ambincl = -1;                      /* include == 1, exclude == 0 */
128
129 int  greyscale = 0;                     /* map colors to brightness? */
130 char  *dvcname = dev_default;           /* output device name */
131
132 struct driver  *dev = NULL;             /* driver functions */
133
134 char  rifname[128];                     /* rad input file name */
135
136 VIEW  oldview;                          /* previous view parameters */
137
138 PNODE  ptrunk;                          /* the base of our image */
139 RECT  pframe;                           /* current frame boundaries */
140 int  pdepth;                            /* image depth in current frame */
141
142 static char  *reserve_mem = NULL;       /* pre-allocated reserve memory */
143
144 #define RESERVE_AMT     32768           /* amount of memory to reserve */
145
18   #define  CTRL(c)        ((c)-'@')
19  
20  
# Line 154 | Line 26 | int  code;
26          if (code == 2 && errno == ENOMEM)
27                  printmemstats(stderr);
28   #endif
29 <        devclose();
29 >        if (ray_pnprocs > 0)    /* close children if any */
30 >                ray_pclose(0);
31 >        else if (!ray_pnprocs)  /* in parent */
32 >                devclose();
33          exit(code);
34   }
35  
36  
37   void
38 < devopen(dname)                          /* open device driver */
39 < char  *dname;
38 > devopen(                                /* open device driver */
39 >        char  *dname
40 > )
41   {
42          extern char  *progname, *octname;
43          char  *id;
44 <        register int  i;
44 >        int  i;
45  
46          id = octname!=NULL ? octname : progname;
47                                                  /* check device table */
48          for (i = 0; devtable[i].name; i++)
49 <                if (!strcmp(dname, devtable[i].name))
49 >                if (!strcmp(dname, devtable[i].name)) {
50                          if ((dev = (*devtable[i].init)(dname, id)) == NULL) {
51                                  sprintf(errmsg, "cannot initialize %s", dname);
52                                  error(USER, errmsg);
53                          } else
54                                  return;
55 < #ifndef NIX                                                
55 >                }
56                                                  /* not there, try exec */
57          if ((dev = comm_init(dname, id)) == NULL) {
58                  sprintf(errmsg, "cannot start device \"%s\"", dname);
59                  error(USER, errmsg);
60          }
185 #endif
61   }
62  
63  
64   void
65 < devclose()                              /* close our device */
65 > devclose(void)                          /* close our device */
66   {
67          if (dev != NULL)
68                  (*dev->close)();
# Line 196 | Line 71 | devclose()                             /* close our device */
71  
72  
73   void
74 < printdevices()                          /* print list of output devices */
74 > printdevices(void)                      /* print list of output devices */
75   {
76 <        register int  i;
76 >        int  i;
77  
78          for (i = 0; devtable[i].name; i++)
79                  printf("%-16s # %s\n", devtable[i].name, devtable[i].descrip);
# Line 206 | Line 81 | printdevices()                         /* print list of output devices */
81  
82  
83   void
84 < rview()                         /* do a view */
84 > rview(void)                             /* do a view */
85   {
86          char  buf[32];
87  
88          devopen(dvcname);               /* open device */
89 <        newimage();                     /* start image (calls fillreserves) */
89 >        newimage(NULL);                 /* start image */
90  
91          for ( ; ; ) {                   /* quit in command() */
92                  while (hresolu <= 1<<pdepth && vresolu <= 1<<pdepth)
93                          command("done: ");
219                while (reserve_mem == NULL)
220                        command("out of memory: ");
94                  errno = 0;
95                  if (hresolu <= psample<<pdepth && vresolu <= psample<<pdepth) {
96                          sprintf(buf, "%d sampling...\n", 1<<pdepth);
# Line 226 | Line 99 | rview()                                /* do a view */
99                  } else {
100                          sprintf(buf, "%d refining...\n", 1<<pdepth);
101                          (*dev->comout)(buf);
102 <                        refine(&ptrunk, 0, 0, hresolu, vresolu, pdepth+1);
102 >                        refine(&ptrunk, pdepth+1);
103                  }
104 <                if (errno == ENOMEM)            /* ran out of memory */
232 <                        freereserves();
233 <                else if (dev->inpready)         /* noticed some input */
104 >                if (dev->inpready)              /* noticed some input */
105                          command(": ");
106                  else                            /* finished this depth */
107                          pdepth++;
# Line 239 | Line 110 | rview()                                /* do a view */
110  
111  
112   void
113 < fillreserves()                  /* fill memory reserves */
113 > command(                        /* get/execute command */
114 >        char  *prompt
115 > )
116   {
244        if (reserve_mem != NULL)
245                return;
246        reserve_mem = (char *)malloc(RESERVE_AMT);
247 }
248
249
250 void
251 freereserves()                  /* free memory reserves */
252 {
253        if (reserve_mem == NULL)
254                return;
255        free(reserve_mem);
256        reserve_mem = NULL;
257 }
258
259
260 void
261 command(prompt)                 /* get/execute command */
262 char  *prompt;
263 {
117   #define  badcom(s)      strncmp(s, inpbuf, args-inpbuf-1)
118          char  inpbuf[256];
119          char  *args;
# Line 270 | Line 123 | again:
123                  ;
124          if (*args) *args++ = '\0';
125          else *++args = '\0';
126 +
127 +        if (waitrays() < 0)                     /* clear ray queue */
128 +                quit(1);
129          
130          switch (inpbuf[0]) {
131 <        case 'f':                               /* new frame (or free mem.) */
131 >        case 'f':                               /* new frame (|focus|free) */
132                  if (badcom("frame")) {
133 <                        if (badcom("free"))
134 <                                goto commerr;
135 <                        free_objmem();
133 >                        if (badcom("focus")) {
134 >                                if (badcom("free"))
135 >                                        goto commerr;
136 >                                free_objmem();
137 >                                break;
138 >                        }
139 >                        getfocus(args);
140                          break;
141                  }
142                  getframe(args);
# Line 319 | Line 179 | again:
179          case 'n':                               /* new picture */
180                  if (badcom("new"))
181                          goto commerr;
182 <                newimage();
182 >                newimage(args);
183                  break;
184          case 't':                               /* trace a ray */
185                  if (badcom("trace"))
# Line 407 | Line 267 | commerr:
267  
268  
269   void
270 < rsample()                       /* sample the image */
270 > rsample(void)                   /* sample the image */
271   {
272          int  xsiz, ysiz, y;
413        RECT  r;
273          PNODE  *p;
274 <        register RECT  *rl;
275 <        register PNODE  **pl;
417 <        register int  x;
274 >        PNODE   **pl;
275 >        int  x;
276          /*
277           *     We initialize the bottom row in the image at our current
278           * resolution.  During sampling, we check super-pixels to the
# Line 424 | Line 282 | rsample()                      /* sample the image */
282           */
283          xsiz = (((long)(pframe.r-pframe.l)<<pdepth)+hresolu-1) / hresolu;
284          ysiz = (((long)(pframe.u-pframe.d)<<pdepth)+vresolu-1) / vresolu;
427        rl = (RECT *)malloc(xsiz*sizeof(RECT));
428        if (rl == NULL)
429                return;
285          pl = (PNODE **)malloc(xsiz*sizeof(PNODE *));
286 <        if (pl == NULL) {
432 <                free((void *)rl);
286 >        if (pl == NULL)
287                  return;
434        }
288          /*
289           * Initialize the bottom row.
290           */
291 <        rl[0].l = rl[0].d = 0;
439 <        rl[0].r = hresolu; rl[0].u = vresolu;
440 <        pl[0] = findrect(pframe.l, pframe.d, &ptrunk, rl, pdepth);
291 >        pl[0] = findrect(pframe.l, pframe.d, &ptrunk, pdepth);
292          for (x = 1; x < xsiz; x++) {
442                rl[x].l = rl[x].d = 0;
443                rl[x].r = hresolu; rl[x].u = vresolu;
293                  pl[x] = findrect(pframe.l+((x*hresolu)>>pdepth),
294 <                                pframe.d, &ptrunk, rl+x, pdepth);
294 >                                pframe.d, &ptrunk, pdepth);
295          }
296                                                  /* sample the image */
297          for (y = 0; /* y < ysiz */ ; y++) {
# Line 454 | Line 303 | rsample()                      /* sample the image */
303                           */
304                          if (pl[x] != pl[x+1] && bigdiff(pl[x]->v,
305                                          pl[x+1]->v, maxdiff)) {
306 <                                refine(pl[x], rl[x].l, rl[x].d,
307 <                                                rl[x].r, rl[x].u, 1);
459 <                                refine(pl[x+1], rl[x+1].l, rl[x+1].d,
460 <                                                rl[x+1].r, rl[x+1].u, 1);
306 >                                refine(pl[x], 1);
307 >                                refine(pl[x+1], 1);
308                          }
309                  }
310                  if (y >= ysiz-1)
# Line 468 | Line 315 | rsample()                      /* sample the image */
315                          /*
316                           * Find super-pixel at this position in next row.
317                           */
471                        r.l = r.d = 0;
472                        r.r = hresolu; r.u = vresolu;
318                          p = findrect(pframe.l+((x*hresolu)>>pdepth),
319                                  pframe.d+(((y+1)*vresolu)>>pdepth),
320 <                                        &ptrunk, &r, pdepth);
320 >                                        &ptrunk, pdepth);
321                          /*
322                           * Test super-pixel in next row.
323                           */
324                          if (pl[x] != p && bigdiff(pl[x]->v, p->v, maxdiff)) {
325 <                                refine(pl[x], rl[x].l, rl[x].d,
326 <                                                rl[x].r, rl[x].u, 1);
482 <                                refine(p, r.l, r.d, r.r, r.u, 1);
325 >                                refine(pl[x], 1);
326 >                                refine(p, 1);
327                          }
328                          /*
329                           * Copy into super-pixel array.
330                           */
487                        rl[x].l = r.l; rl[x].d = r.d;
488                        rl[x].r = r.r; rl[x].u = r.u;
331                          pl[x] = p;
332                  }
333          }
334   escape:
493        free((void *)rl);
335          free((void *)pl);
336   }
337  
338  
339   int
340 < refine(p, xmin, ymin, xmax, ymax, pd)           /* refine a node */
341 < register PNODE  *p;
342 < int  xmin, ymin, xmax, ymax;
343 < int  pd;
340 > refine(                         /* refine a node */
341 >        PNODE   *p,
342 >        int  pd
343 > )
344   {
345          int  growth;
346          int  mx, my;
# Line 511 | Line 352 | int  pd;
352          if (pd <= 0)                            /* depth limit */
353                  return(0);
354  
355 <        mx = (xmin + xmax) >> 1;
356 <        my = (ymin + ymax) >> 1;
355 >        mx = (p->xmin + p->xmax) >> 1;
356 >        my = (p->ymin + p->ymax) >> 1;
357          growth = 0;
358  
359          if (p->kid == NULL) {                   /* subdivide */
360  
361                  if ((p->kid = newptree()) == NULL)
362                          return(0);
363 +
364 +                p->kid[UR].xmin = mx;
365 +                p->kid[UR].ymin = my;
366 +                p->kid[UR].xmax = p->xmax;
367 +                p->kid[UR].ymax = p->ymax;
368 +                p->kid[UL].xmin = p->xmin;
369 +                p->kid[UL].ymin = my;
370 +                p->kid[UL].xmax = mx;
371 +                p->kid[UL].ymax = p->ymax;
372 +                p->kid[DR].xmin = mx;
373 +                p->kid[DR].ymin = p->ymin;
374 +                p->kid[DR].xmax = p->xmax;
375 +                p->kid[DR].ymax = my;
376 +                p->kid[DL].xmin = p->xmin;
377 +                p->kid[DL].ymin = p->ymin;
378 +                p->kid[DL].xmax = mx;
379 +                p->kid[DL].ymax = my;
380                  /*
381                   *  The following paint order can leave a black pixel
382                   *  if redraw() is called in (*dev->paintr)().
383                   */
384                  if (p->x >= mx && p->y >= my)
385                          pcopy(p, p->kid+UR);
386 <                else
387 <                        paint(p->kid+UR, mx, my, xmax, ymax);
386 >                else if (paint(p->kid+UR) < 0)
387 >                        quit(1);
388                  if (p->x < mx && p->y >= my)
389                          pcopy(p, p->kid+UL);
390 <                else
391 <                        paint(p->kid+UL, xmin, my, mx, ymax);
390 >                else if (paint(p->kid+UL) < 0)
391 >                        quit(1);
392                  if (p->x >= mx && p->y < my)
393                          pcopy(p, p->kid+DR);
394 <                else
395 <                        paint(p->kid+DR, mx, ymin, xmax, my);
394 >                else if (paint(p->kid+DR) < 0)
395 >                        quit(1);
396                  if (p->x < mx && p->y < my)
397                          pcopy(p, p->kid+DL);
398 <                else
399 <                        paint(p->kid+DL, xmin, ymin, mx, my);
398 >                else if (paint(p->kid+DL) < 0)
399 >                        quit(1);
400  
401                  growth++;
402          }
403                                                  /* do children */
404          if (mx > pframe.l) {
405                  if (my > pframe.d)
406 <                        growth += refine(p->kid+DL, xmin, ymin, mx, my, pd-1);
406 >                        growth += refine(p->kid+DL, pd-1);
407                  if (my < pframe.u)
408 <                        growth += refine(p->kid+UL, xmin, my, mx, ymax, pd-1);
408 >                        growth += refine(p->kid+UL, pd-1);
409          }
410          if (mx < pframe.r) {
411                  if (my > pframe.d)
412 <                        growth += refine(p->kid+DR, mx, ymin, xmax, my, pd-1);
412 >                        growth += refine(p->kid+DR, pd-1);
413                  if (my < pframe.u)
414 <                        growth += refine(p->kid+UR, mx, my, xmax, ymax, pd-1);
557 <        }
558 <                                                /* recompute sum */
559 <        if (growth) {
560 <                setcolor(p->v, 0.0, 0.0, 0.0);
561 <                for (i = 0; i < 4; i++)
562 <                        addcolor(p->v, p->kid[i].v);
563 <                scalecolor(p->v, 0.25);
414 >                        growth += refine(p->kid+UR, pd-1);
415          }
416          return(growth);
417   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines