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

Comparing ray/src/hd/rholo.c (file contents):
Revision 3.14 by gregl, Mon Dec 1 16:34:21 1997 UTC vs.
Revision 3.17 by gregl, Mon Dec 8 18:51:15 1997 UTC

# Line 26 | Line 26 | char   froot[MAXPATH];         /* root file name */
26  
27   int     nowarn = 0;             /* turn warnings off? */
28  
29 double  expval = 1.;            /* global exposure value */
30
29   int     ncprocs = 0;            /* desired number of compute processes */
30  
31   char    *outdev = NULL;         /* output device name */
32  
33 + int     readinp = 0;            /* read commands from stdin */
34 +
35   time_t  starttime;              /* time we got started */
36   time_t  endtime;                /* time we should end by */
37   time_t  reporttime;             /* time for next report */
# Line 72 | Line 72 | char   *argv[];
72                  case 'f':                       /* force overwrite */
73                          force++;
74                          break;
75 +                case 'i':                       /* read input from stdin */
76 +                        readinp++;
77 +                        break;
78                  case 'n':                       /* compute processes */
79                          if (i >= argc-2)
80                                  goto userr;
# Line 115 | Line 118 | char   *argv[];
118                  creatholo(&hdg);
119          } else {                                /* else load holodeck */
120                  loadholo();
121 <                if (vdef(RIF))                          /* load RIF if any */
121 >                                                        /* check settings */
122 >                checkvalues();
123 >                                                        /* load RIF if any */
124 >                if (vdef(RIF))
125                          getradfile(vval(RIF));
126 +                                                        /* set defaults */
127 +                setdefaults(NULL);
128          }
129                                                  /* initialize */
130          initrholo();
131 <                                                /* run */
131 >                                                /* main loop */
132          while (rholo())
133                  ;
134                                                  /* done */
# Line 184 | Line 192 | initrholo()                    /* get our holodeck running */
192   {
193          extern int      global_packet();
194          register int    i;
195 +                                                /* close holodeck on exec() */
196 +        fcntl(hdlist[0]->fd, F_SETFD, FD_CLOEXEC);
197  
198          if (outdev != NULL)                     /* open output device */
199                  disp_open(outdev);
# Line 335 | Line 345 | register HDGRID        *gp;
345                  sprintf(errmsg, "ignoring all but first %s", vnam(SECTION));
346                  error(WARNING, errmsg);
347          }
338        if (sscanf(vval(SECTION),
339                        "%lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf",
340                        &gp->orig[0], &gp->orig[1], &gp->orig[2],
341                        &gp->xv[0][0], &gp->xv[0][1], &gp->xv[0][2],
342                        &gp->xv[1][0], &gp->xv[1][1], &gp->xv[1][2],
343                        &gp->xv[2][0], &gp->xv[2][1], &gp->xv[2][2]) != 12)
344                badvalue(SECTION);
345        maxlen = 0.;
346        for (i = 0; i < 3; i++)
347                if ((len[i] = VLEN(gp->xv[i])) > maxlen)
348                        maxlen = len[i];
349        if (!vdef(GRID)) {
350                sprintf(buf, "%.4f", maxlen/8.);
351                vval(GRID) = savqstr(buf);
352                vdef(GRID)++;
353        }
354        if ((d = vflt(GRID)) <= FTINY)
355                badvalue(GRID);
356        for (i = 0; i < 3; i++)
357                gp->grid[i] = len[i]/d + (1.-FTINY);
358        if (!vdef(EXPOSURE)) {
359                sprintf(errmsg, "%s must be defined", vnam(EXPOSURE));
360                error(USER, errmsg);
361        }
362        expval = vval(EXPOSURE)[0] == '-' || vval(EXPOSURE)[0] == '+' ?
363                        pow(2., vflt(EXPOSURE)) : vflt(EXPOSURE);
348          if (!vdef(OCTREE)) {
349                  if ((vval(OCTREE) = bmalloc(strlen(froot)+5)) == NULL)
350                          error(SYSTEM, "out of memory");
# Line 382 | Line 366 | register HDGRID        *gp;
366                                  /* append rendering options */
367          if (vdef(RENDER))
368                  rtargc += wordstring(rtargv+rtargc, vval(RENDER));
369 +        
370 +        if (gp == NULL)         /* already initialized? */
371 +                return;
372 +                                /* set grid parameters */
373 +        gp->grid[0] = gp->grid[1] = gp->grid[2] = 0;
374 +        if (sscanf(vval(SECTION),
375 +                "%lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %hd %hd %hd",
376 +                        &gp->orig[0], &gp->orig[1], &gp->orig[2],
377 +                        &gp->xv[0][0], &gp->xv[0][1], &gp->xv[0][2],
378 +                        &gp->xv[1][0], &gp->xv[1][1], &gp->xv[1][2],
379 +                        &gp->xv[2][0], &gp->xv[2][1], &gp->xv[2][2],
380 +                        &gp->grid[0], &gp->grid[1], &gp->grid[2]) < 12)
381 +                badvalue(SECTION);
382 +        maxlen = 0.;
383 +        for (i = 0; i < 3; i++)
384 +                if ((len[i] = VLEN(gp->xv[i])) > maxlen)
385 +                        maxlen = len[i];
386 +        if (!vdef(GRID)) {
387 +                sprintf(buf, "%.4f", maxlen/8.);
388 +                vval(GRID) = savqstr(buf);
389 +                vdef(GRID)++;
390 +        }
391 +        if ((d = vflt(GRID)) <= FTINY)
392 +                badvalue(GRID);
393 +        for (i = 0; i < 3; i++)
394 +                if (gp->grid[i] <= 0)
395 +                        gp->grid[i] = len[i]/d + (1.-FTINY);
396   }
397  
398  
# Line 499 | Line 510 | PACKET *pl;
510   getradfile(rfargs)              /* run rad and get needed variables */
511   char    *rfargs;
512   {
513 <        static short    mvar[] = {OCTREE,EXPOSURE,-1};
513 >        static short    mvar[] = {OCTREE,-1};
514          static char     tf1[] = TEMPLATE;
515          char    tf2[64];
516          char    combuf[256];

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines