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 1.9 by greg, Mon Jan 8 13:38:12 1990 UTC vs.
Revision 2.22 by greg, Thu Jul 3 15:00:19 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1987 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  rview.c - routines and variables for interactive view generation.
6   *
7 < *     3/24/87
7 > *  External symbols declared in rpaint.h
8   */
9  
10 < #include  "standard.h"
10 > #include "copyright.h"
11  
12 < #include  "color.h"
12 > #include  <signal.h>
13 > #include  <ctype.h>
14  
15 + #include  "ray.h"
16   #include  "rpaint.h"
17  
19 #include  <signal.h>
18  
19 < #include  <ctype.h>
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  psample = 8;                       /* pixel sample size */
37 < double  maxdiff = .15;                  /* max. sample difference */
37 > double  maxdiff = .15;                  /* max. sample difference */
38  
39 < double  exposure = 1.0;                 /* exposure for scene */
39 > double  exposure = 1.0;                 /* exposure for scene */
40  
41 < double  dstrsrc = 0.0;                  /* square source distribution */
42 < double  shadthresh = .1;                /* shadow threshold */
43 < double  shadcert = .25;                 /* shadow certainty */
41 > double  dstrsrc = 0.0;                  /* square source distribution */
42 > double  shadthresh = .1;                /* shadow threshold */
43 > double  shadcert = .25;                 /* shadow certainty */
44 > int  directrelay = 0;                   /* number of source relays */
45 > int  vspretest = 128;                   /* virtual source pretest density */
46 > int  directvis = 1;                     /* sources visible? */
47 > double  srcsizerat = 0.;                /* maximum ratio source size/dist. */
48  
49 + COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
50 + COLOR  salbedo = BLKCOLOR;              /* global scattering albedo */
51 + double  seccg = 0.;                     /* global scattering eccentricity */
52 + double  ssampdist = 0.;                 /* scatter sampling distance */
53 +
54 + double  specthresh = .3;                /* specular sampling threshold */
55 + double  specjitter = 1.;                /* specular sampling jitter */
56 +
57 + int  backvis = 1;                       /* back face visibility */
58 +
59   int  maxdepth = 4;                      /* maximum recursion depth */
60 < double  minweight = 1e-2;               /* minimum ray weight */
60 > double  minweight = 1e-2;               /* minimum ray weight */
61  
62 + char  *ambfile = NULL;                  /* ambient file name */
63   COLOR  ambval = BLKCOLOR;               /* ambient value */
64 < double  ambacc = 0.2;                   /* ambient accuracy */
64 > int  ambvwt = 0;                        /* initial weight for ambient value */
65 > double  ambacc = 0.2;                   /* ambient accuracy */
66   int  ambres = 8;                        /* ambient resolution */
67   int  ambdiv = 32;                       /* ambient divisions */
68   int  ambssamp = 0;                      /* ambient super-samples */
# Line 45 | Line 71 | char  *amblist[128];                   /* ambient include/exclude list
71   int  ambincl = -1;                      /* include == 1, exclude == 0 */
72  
73   int  greyscale = 0;                     /* map colors to brightness? */
74 < char  *devname = "X";                   /* output device name */
74 > char  *dvcname = dev_default;           /* output device name */
75  
76   struct driver  *dev = NULL;             /* driver functions */
77  
78 + char  rifname[128];                     /* rad input file name */
79 +
80   VIEW  oldview;                          /* previous view parameters */
81  
82   PNODE  ptrunk;                          /* the base of our image */
83   RECT  pframe;                           /* current frame boundaries */
84   int  pdepth;                            /* image depth in current frame */
85  
86 < #define  CTRL(c)        ('c'-'@')
86 > static char  *reserve_mem = NULL;       /* pre-allocated reserve memory */
87  
88 + #define RESERVE_AMT     32768           /* amount of memory to reserve */
89  
90 + #define  CTRL(c)        ((c)-'@')
91 +
92 +
93 + void
94   quit(code)                      /* quit program */
95   int  code;
96   {
97 + #ifdef MSTATS
98 +        if (code == 2 && errno == ENOMEM)
99 +                printmemstats(stderr);
100 + #endif
101          devclose();
102          exit(code);
103   }
104  
105  
106 + void
107   devopen(dname)                          /* open device driver */
108   char  *dname;
109   {
# Line 90 | Line 128 | char  *dname;
128   }
129  
130  
131 + void
132   devclose()                              /* close our device */
133   {
134          if (dev != NULL)
# Line 98 | Line 137 | devclose()                             /* close our device */
137   }
138  
139  
140 + void
141   printdevices()                          /* print list of output devices */
142   {
143          register int  i;
# Line 107 | Line 147 | printdevices()                         /* print list of output devices */
147   }
148  
149  
150 + void
151   rview()                         /* do a view */
152   {
153          char  buf[32];
154  
155 <        devopen(devname);               /* open device */
156 <        newimage();                     /* set up image */
155 >        devopen(dvcname);               /* open device */
156 >        newimage();                     /* start image (calls fillreserves) */
157  
158          for ( ; ; ) {                   /* quit in command() */
159 <                while (hresolu <= 1<<pdepth &&
119 <                                vresolu <= 1<<pdepth)
159 >                while (hresolu <= 1<<pdepth && vresolu <= 1<<pdepth)
160                          command("done: ");
161 <
162 <                if (hresolu <= psample<<pdepth &&
163 <                                vresolu <= psample<<pdepth) {
161 >                while (reserve_mem == NULL)
162 >                        command("out of memory: ");
163 >                errno = 0;
164 >                if (hresolu <= psample<<pdepth && vresolu <= psample<<pdepth) {
165                          sprintf(buf, "%d sampling...\n", 1<<pdepth);
166                          (*dev->comout)(buf);
167                          rsample();
# Line 129 | Line 170 | rview()                                /* do a view */
170                          (*dev->comout)(buf);
171                          refine(&ptrunk, 0, 0, hresolu, vresolu, pdepth+1);
172                  }
173 <                if (dev->inpready)
173 >                if (errno == ENOMEM)            /* ran out of memory */
174 >                        freereserves();
175 >                else if (dev->inpready)         /* noticed some input */
176                          command(": ");
177 <                else
177 >                else                            /* finished this depth */
178                          pdepth++;
179          }
180   }
181  
182  
183 + void
184 + fillreserves()                  /* fill memory reserves */
185 + {
186 +        if (reserve_mem != NULL)
187 +                return;
188 +        reserve_mem = (char *)malloc(RESERVE_AMT);
189 + }
190 +
191 +
192 + void
193 + freereserves()                  /* free memory reserves */
194 + {
195 +        if (reserve_mem == NULL)
196 +                return;
197 +        free(reserve_mem);
198 +        reserve_mem = NULL;
199 + }
200 +
201 +
202 + void
203   command(prompt)                 /* get/execute command */
204   char  *prompt;
205   {
206 < #define  badcom(s)      strncmp(s, inpbuf, args-inpbuf-1)
144 <        double  atof();
206 > #define  badcom(s)      strncmp(s, inpbuf, args-inpbuf-1)
207          char  inpbuf[256];
208          char  *args;
209   again:
210 <        (*dev->comout)(prompt);                 /* get command + arguments */
149 <        (*dev->comin)(inpbuf);
210 >        (*dev->comin)(inpbuf, prompt);          /* get command + arguments */
211          for (args = inpbuf; *args && *args != ' '; args++)
212                  ;
213          if (*args) *args++ = '\0';
214          else *++args = '\0';
215          
216          switch (inpbuf[0]) {
217 <        case 'f':                               /* new frame */
218 <                if (badcom("frame"))
219 <                        goto commerr;
217 >        case 'f':                               /* new frame (or free mem.) */
218 >                if (badcom("frame")) {
219 >                        if (badcom("free"))
220 >                                goto commerr;
221 >                        free_objmem();
222 >                        break;
223 >                }
224                  getframe(args);
225                  break;
226          case 'v':                               /* view */
# Line 168 | Line 233 | again:
233                          goto commerr;
234                  lastview(args);
235                  break;
236 +        case 'V':                               /* save view */
237 +                if (badcom("V"))
238 +                        goto commerr;
239 +                saveview(args);
240 +                break;
241 +        case 'L':                               /* load view */
242 +                if (badcom("L"))
243 +                        goto commerr;
244 +                loadview(args);
245 +                break;
246          case 'e':                               /* exposure */
247                  if (badcom("exposure"))
248                          goto commerr;
249                  getexposure(args);
250                  break;
251          case 's':                               /* set a parameter */
252 <                if (badcom("set"))
252 >                if (badcom("set")) {
253 > #ifdef  SIGTSTP
254 >                        if (!badcom("stop"))
255 >                                goto dostop;
256 > #endif
257                          goto commerr;
258 +                }
259                  setparam(args);
260                  break;
261          case 'n':                               /* new picture */
# Line 193 | Line 273 | again:
273                          goto commerr;
274                  getaim(args);
275                  break;
276 <        case 'm':                               /* move camera */
276 >        case 'm':                               /* move camera (or memstats) */
277                  if (badcom("move"))
278 + #ifdef  MSTATS
279 +                {
280 +                        if (badcom("memory"))
281 +                                goto commerr;
282 +                        printmemstats(stderr);
283 +                        break;
284 +                }
285 + #else
286                          goto commerr;
287 + #endif
288                  getmove(args);
289                  break;
290          case 'r':                               /* rotate/repaint */
291                  if (badcom("rotate")) {
292 <                        if (badcom("repaint"))
293 <                                goto commerr;
292 >                        if (badcom("repaint")) {
293 >                                if (badcom("redraw"))
294 >                                        goto commerr;
295 >                                redraw();
296 >                                break;
297 >                        }
298                          getrepaint(args);
299                          break;
300                  }
301                  getrotate(args);
302                  break;
303          case 'p':                               /* pivot view */
304 <                if (badcom("pivot"))
305 <                        goto commerr;
304 >                if (badcom("pivot")) {
305 >                        if (badcom("pause"))
306 >                                goto commerr;
307 >                        goto again;
308 >                }
309                  getpivot(args);
310                  break;
311 <        case CTRL(R):                           /* redraw */
311 >        case CTRL('R'):                         /* redraw */
312                  redraw();
313                  break;
314          case 'w':                               /* write */
# Line 224 | Line 320 | again:
320                  if (badcom("quit"))
321                          goto commerr;
322                  quit(0);
323 <        case CTRL(C):                           /* interrupt */
323 >        case CTRL('C'):                         /* interrupt */
324                  goto again;
325 < #ifdef  SIGTSTP
326 <        case CTRL(Z):                           /* stop */
325 > #ifdef  SIGTSTP
326 >        case CTRL('Z'):;                        /* stop */
327 > dostop:
328                  devclose();
329                  kill(0, SIGTSTP);
330                  /* pc stops here */
331 <                devopen(devname);
331 >                devopen(dvcname);
332                  redraw();
333                  break;
334   #endif
# Line 247 | Line 344 | commerr:
344                  error(COMMAND, errmsg);
345                  break;
346          }
347 < #undef  badcom
347 > #undef  badcom
348   }
349  
350  
351 + void
352   rsample()                       /* sample the image */
353   {
354          int  xsiz, ysiz, y;
355          RECT  r;
356          PNODE  *p;
357          register RECT  *rl;
358 <        register PNODE  **pl;
358 >        register PNODE  **pl;
359          register int  x;
360          /*
361           *     We initialize the bottom row in the image at our current
362 <         * resolution.  During sampling, we check super-pixels to the
362 >         * resolution.  During sampling, we check super-pixels to the
363           * right and above by calling bigdiff().  If there is a significant
364           * difference, we subsample the super-pixels.  The testing process
365           * includes initialization of the next row.
366           */
367 <        xsiz = (((pframe.r-pframe.l)<<pdepth)+hresolu-1) / hresolu;
368 <        ysiz = (((pframe.u-pframe.d)<<pdepth)+vresolu-1) / vresolu;
367 >        xsiz = (((long)(pframe.r-pframe.l)<<pdepth)+hresolu-1) / hresolu;
368 >        ysiz = (((long)(pframe.u-pframe.d)<<pdepth)+vresolu-1) / vresolu;
369          rl = (RECT *)malloc(xsiz*sizeof(RECT));
370 +        if (rl == NULL)
371 +                return;
372          pl = (PNODE **)malloc(xsiz*sizeof(PNODE *));
373 <        if (rl == NULL || pl == NULL)
374 <                error(SYSTEM, "out of memory in rsample");
373 >        if (pl == NULL) {
374 >                free((void *)rl);
375 >                return;
376 >        }
377          /*
378           * Initialize the bottom row.
379           */
# Line 287 | Line 389 | rsample()                      /* sample the image */
389                                                  /* sample the image */
390          for (y = 0; /* y < ysiz */ ; y++) {
391                  for (x = 0; x < xsiz-1; x++) {
392 <                        if (dev->inpready)
392 >                        if (dev->inpready || errno == ENOMEM)
393                                  goto escape;
394                          /*
395                           * Test super-pixel to the right.
# Line 303 | Line 405 | rsample()                      /* sample the image */
405                  if (y >= ysiz-1)
406                          break;
407                  for (x = 0; x < xsiz; x++) {
408 <                        if (dev->inpready)
408 >                        if (dev->inpready || errno == ENOMEM)
409                                  goto escape;
410                          /*
411                           * Find super-pixel at this position in next row.
# Line 330 | Line 432 | rsample()                      /* sample the image */
432                  }
433          }
434   escape:
435 <        free((char *)rl);
436 <        free((char *)pl);
435 >        free((void *)rl);
436 >        free((void *)pl);
437   }
438  
439  
440   int
441   refine(p, xmin, ymin, xmax, ymax, pd)           /* refine a node */
442 < register PNODE  *p;
442 > register PNODE  *p;
443   int  xmin, ymin, xmax, ymax;
444   int  pd;
445   {
# Line 358 | Line 460 | int  pd;
460          if (p->kid == NULL) {                   /* subdivide */
461  
462                  if ((p->kid = newptree()) == NULL)
463 <                        error(SYSTEM, "out of memory in refine");
463 >                        return(0);
464                  /*
465                   *  The following paint order can leave a black pixel
466 <                 *  when redraw() is called in (*dev->paintr)().
466 >                 *  if redraw() is called in (*dev->paintr)().
467                   */
468                  if (p->x >= mx && p->y >= my)
469                          pcopy(p, p->kid+UR);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines