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.21 by gregl, Fri Dec 12 18:12:40 1997 UTC vs.
Revision 3.31 by gregl, Fri Dec 19 10:47:27 1997 UTC

# Line 10 | Line 10 | static char SCCSid[] = "$SunId$ SGI";
10  
11   #include "rholo.h"
12   #include "random.h"
13 #include "paths.h"
13   #include <signal.h>
14   #include <sys/types.h>
15   #include <sys/stat.h>
# Line 22 | Line 21 | VARIABLE       vv[] = RHVINIT;         /* variable-value pairs */
21  
22   char    *progname;              /* our program name */
23   char    *hdkfile;               /* holodeck file name */
24 < char    froot[MAXPATH];         /* root file name */
24 > char    froot[256];             /* root file name */
25  
26   int     nowarn = 0;             /* turn warnings off? */
27  
# Line 59 | Line 58 | main(argc, argv)
58   int     argc;
59   char    *argv[];
60   {
62        HDGRID  hdg;
61          int     i;
62                                                  /* mark start time */
63          starttime = time(NULL);
# Line 89 | Line 87 | char   *argv[];
87                  default:
88                          goto userr;
89                  }
92                                                /* do we have a job? */
93        if (outdev == NULL && ncprocs <= 0)
94                goto userr;
90                                                  /* get root file name */
91          rootname(froot, hdkfile=argv[i++]);
92 <                                                /* load... */
93 <        if (i < argc) {                         /* variables */
94 <                loadvars(argv[i++]);
95 <                                                        /* cmdline settings */
96 <                for ( ; i < argc; i++)
97 <                        if (setvariable(argv[i], matchvar) < 0) {
98 <                                sprintf(errmsg, "unknown variable: %s",
99 <                                                argv[i]);
100 <                                error(USER, errmsg);
101 <                        }
102 <                                                        /* check settings */
103 <                checkvalues();
104 <                                                        /* load RIF if any */
105 <                if (vdef(RIF))
106 <                        getradfile(vval(RIF));
92 >                                                /* load variables? */
93 >        if (i < argc)
94 >                if (argv[i][0] != '-' && argv[i][0] != '+')
95 >                        loadvars(argv[i]);      /* load variables from file */
96 >
97 >        if (i >= argc || argv[i][0] == '+')
98 >                loadholo();                     /* load existing holodeck */
99 >
100 >        while (++i < argc)                      /* get command line settings */
101 >                if (setvariable(argv[i], matchvar) < 0) {
102 >                        sprintf(errmsg, "unknown variable: %s", argv[i]);
103 >                        error(USER, errmsg);
104 >                }
105 >                                                /* check settings */
106 >        checkvalues();
107 >                                                /* load RIF if any */
108 >        getradfile();
109 >
110 >        if (hdlist[0] == NULL) {                /* create new holodeck */
111 >                HDGRID  hdg[HDMAX];
112                                                          /* set defaults */
113 <                setdefaults(&hdg);
113 >                setdefaults(hdg);
114                                                          /* holodeck exists? */
115                  if (!force && access(hdkfile, R_OK|W_OK) == 0)
116                          error(USER,
117                                  "holodeck file exists -- use -f to overwrite");
118                                                          /* create holodeck */
119 <                creatholo(&hdg);
120 <        } else {                                /* else load holodeck */
121 <                loadholo();
122 <                                                        /* check settings */
123 <                checkvalues();
124 <                                                        /* load RIF if any */
125 <                if (vdef(RIF))
126 <                        getradfile(vval(RIF));
127 <                                                        /* set defaults */
119 >                creatholo(hdg);
120 >        } else                                  /* else just set defaults */
121                  setdefaults(NULL);
129        }
122                                                  /* initialize */
123          initrholo();
124                                                  /* main loop */
# Line 136 | Line 128 | char   *argv[];
128          quit(0);
129   userr:
130          fprintf(stderr,
131 < "Usage: %s {-n nprocs|-o disp} [-w][-f] output.hdk [control.hif [VAR=val ..]]\n",
131 > "Usage: %s [-n nprocs][-o disp][-w][-f] output.hdk [control.hif|+|- [VAR=val ..]]\n",
132                          progname);
133          quit(1);
134   }
# Line 150 | Line 142 | int  signo;
142          if (gotsig++)                   /* two signals and we're gone! */
143                  _exit(signo);
144  
145 <        alarm(30);                      /* allow 30 seconds to clean up */
145 >        alarm(60);                      /* allow 60 seconds to clean up */
146          signal(SIGALRM, SIG_DFL);       /* make certain we do die */
147          eputs("signal - ");
148          eputs(sigerr[signo]);
# Line 209 | Line 201 | initrholo()                    /* get our holodeck running */
201          if (!vdef(TIME) || vflt(TIME) <= FTINY)
202                  endtime = 0;
203          else
204 <                endtime = starttime + vflt(TIME)*3600.;
204 >                endtime = starttime + vflt(TIME)*3600. + .5;
205                                                  /* set up memory cache */
206          if (outdev == NULL)
207                  hdcachesize = 0;        /* manual flushing */
# Line 236 | Line 228 | initrholo()                    /* get our holodeck running */
228                          goto memerr;
229                  freepacks[--i].nr = 0;
230                  freepacks[i].next = NULL;
231 <                if (!vbool(OBSTRUCTIONS)) {
231 >                if (!vdef(OBSTRUCTIONS) || !vbool(OBSTRUCTIONS)) {
232                          freepacks[i].offset = (float *)bmalloc(
233                                          RPACKSIZ*sizeof(float)*(i+1) );
234                          if (freepacks[i].offset == NULL)
# Line 270 | Line 262 | memerr:
262  
263   rholo()                         /* holodeck main loop */
264   {
265 <        static int      idle = 1;
265 >        static int      idle = 0;
266          PACKET  *pl = NULL, *plend;
267          register PACKET *p;
268          time_t  t;
269          long    l;
270 <
279 <        if (outdev != NULL)             /* check display */
280 <                if (!disp_check(idle))
281 <                        return(0);
282 <                                        /* display only? */
270 >                                        /* check display */
271          if (nprocs <= 0)
272 <                return(outdev != NULL);
272 >                idle = 1;
273 >        if (outdev != NULL) {
274 >                if (!disp_check(idle))
275 >                        return(0);      /* quit request */
276 >                if (nprocs <= 0)
277 >                        return(1);
278 >        } else if (idle)
279 >                return(0);              /* all done */
280                                          /* check file size */
281          if (maxdisk > 0 && hdfilen(hdlist[0]->fd) >= maxdisk) {
282                  error(WARNING, "file limit exceeded");
283                  done_rtrace();
289                idle = 1;
284                  return(1);      /* comes back */
285          }
286                                          /* check time */
# Line 295 | Line 289 | rholo()                                /* holodeck main loop */
289          if (endtime > 0 && t >= endtime) {
290                  error(WARNING, "time limit exceeded");
291                  done_rtrace();
298                idle = 1;
292                  return(1);      /* comes back */
293          }
294          if (reporttime > 0 && t >= reporttime)
295                  report(t);
296 <                                        /* get packets to process */
296 >        idle = 0;                       /* get packets to process */
297          while (freepacks != NULL) {
298                  p = freepacks; freepacks = p->next; p->next = NULL;
299                  if (!next_packet(p)) {
# Line 318 | Line 311 | rholo()                                /* holodeck main loop */
311   }
312  
313  
321 report(t)                       /* report progress so far */
322 time_t  t;
323 {
324        static time_t   seconds2go = 1000000;
325
326        if (t == 0L)
327                t = time(NULL);
328        sprintf(errmsg, "%ld packets (%ld rays) done after %.2f hours\n",
329                        npacksdone, nraysdone, (t-starttime)/3600.);
330        eputs(errmsg);
331        if (seconds2go == 1000000)
332                seconds2go = vdef(REPORT) ? (long)(vflt(REPORT)*60. + .5) : 0L;
333        if (seconds2go)
334                reporttime = t + seconds2go;
335 }
336
337
314   setdefaults(gp)                 /* set default values */
315   register HDGRID *gp;
316   {
317          extern char     *atos();
318          register int    i;
319 +        int     n;
320          double  len[3], maxlen, d;
321          char    buf[64];
322  
# Line 347 | Line 324 | register HDGRID        *gp;
324                  sprintf(errmsg, "%s must be defined", vnam(SECTION));
325                  error(USER, errmsg);
326          }
350        if (vdef(SECTION) > 1) {
351                sprintf(errmsg, "ignoring all but first %s", vnam(SECTION));
352                error(WARNING, errmsg);
353        }
327          if (!vdef(OCTREE)) {
328                  if ((vval(OCTREE) = bmalloc(strlen(froot)+5)) == NULL)
329                          error(SYSTEM, "out of memory");
330                  sprintf(vval(OCTREE), "%s.oct", froot);
331                  vdef(OCTREE)++;
332          }
360        if (!vdef(OBSTRUCTIONS)) {
361                vval(OBSTRUCTIONS) = "T";
362                vdef(OBSTRUCTIONS)++;
363        }
333          if (!vdef(VDIST)) {
334                  vval(VDIST) = "F";
335                  vdef(VDIST)++;
336          }
368        if (!vdef(OCCUPANCY)) {
369                vval(OCCUPANCY) = "U";
370                vdef(OCCUPANCY)++;
371        }
337                                  /* append rendering options */
338          if (vdef(RENDER))
339                  rtargc += wordstring(rtargv+rtargc, vval(RENDER));
# Line 376 | Line 341 | register HDGRID        *gp;
341          if (gp == NULL)         /* already initialized? */
342                  return;
343                                  /* set grid parameters */
344 <        gp->grid[0] = gp->grid[1] = gp->grid[2] = 0;
345 <        if (sscanf(vval(SECTION),
344 >        for (n = 0; n < vdef(SECTION); n++, gp++) {
345 >                gp->grid[0] = gp->grid[1] = gp->grid[2] = 0;
346 >                if (sscanf(nvalue(SECTION, n),
347                  "%lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %hd %hd %hd",
348 <                        &gp->orig[0], &gp->orig[1], &gp->orig[2],
349 <                        &gp->xv[0][0], &gp->xv[0][1], &gp->xv[0][2],
350 <                        &gp->xv[1][0], &gp->xv[1][1], &gp->xv[1][2],
351 <                        &gp->xv[2][0], &gp->xv[2][1], &gp->xv[2][2],
352 <                        &gp->grid[0], &gp->grid[1], &gp->grid[2]) < 12)
353 <                badvalue(SECTION);
354 <        maxlen = 0.;
355 <        for (i = 0; i < 3; i++)
356 <                if ((len[i] = VLEN(gp->xv[i])) > maxlen)
357 <                        maxlen = len[i];
358 <        if (!vdef(GRID)) {
359 <                sprintf(buf, "%.4f", maxlen/8.);
360 <                vval(GRID) = savqstr(buf);
361 <                vdef(GRID)++;
348 >                                &gp->orig[0], &gp->orig[1], &gp->orig[2],
349 >                                &gp->xv[0][0], &gp->xv[0][1], &gp->xv[0][2],
350 >                                &gp->xv[1][0], &gp->xv[1][1], &gp->xv[1][2],
351 >                                &gp->xv[2][0], &gp->xv[2][1], &gp->xv[2][2],
352 >                                &gp->grid[0], &gp->grid[1], &gp->grid[2]) < 12)
353 >                        badvalue(SECTION);
354 >                maxlen = 0.;
355 >                for (i = 0; i < 3; i++)
356 >                        if ((len[i] = VLEN(gp->xv[i])) > maxlen)
357 >                                maxlen = len[i];
358 >                if (!vdef(GRID))
359 >                        d = 0.125*maxlen;
360 >                else if ((d = vflt(GRID)) <= FTINY)
361 >                        badvalue(GRID);
362 >                for (i = 0; i < 3; i++)
363 >                        if (gp->grid[i] <= 0)
364 >                                gp->grid[i] = len[i]/d + (1.-FTINY);
365          }
397        if ((d = vflt(GRID)) <= FTINY)
398                badvalue(GRID);
399        for (i = 0; i < 3; i++)
400                if (gp->grid[i] <= 0)
401                        gp->grid[i] = len[i]/d + (1.-FTINY);
366   }
367  
368  
# Line 406 | Line 370 | creatholo(gp)                  /* create a holodeck output file */
370   HDGRID  *gp;
371   {
372          extern char     VersionID[];
373 <        long    endloc = 0;
373 >        int4    lastloc, nextloc;
374 >        int     n;
375          int     fd;
376          FILE    *fp;
377                                          /* open & truncate file */
# Line 420 | Line 385 | HDGRID *gp;
385          printvars(fp);
386          fputformat(HOLOFMT, fp);
387          fputc('\n', fp);
388 <        putw(HOLOMAGIC, fp);            /* put magic number & terminus */
424 <        fwrite(&endloc, sizeof(long), 1, fp);
388 >        putw(HOLOMAGIC, fp);            /* put magic number */
389          fd = dup(fileno(fp));
390          fclose(fp);                     /* flush and close stdio stream */
391 <        hdinit(fd, gp);                 /* allocate and initialize index */
391 >        lastloc = lseek(fd, 0L, 2);
392 >        for (n = vdef(SECTION); n--; gp++) {    /* initialize each section */
393 >                nextloc = 0L;
394 >                write(fd, (char *)&nextloc, sizeof(nextloc));
395 >                hdinit(fd, gp);                 /* writes beam index */
396 >                if (!n)
397 >                        break;
398 >                nextloc = hdfilen(fd);          /* write section pointer */
399 >                if (lseek(fd, (long)lastloc, 0) < 0)
400 >                        error(SYSTEM,
401 >                                "cannot seek on holodeck file in creatholo");
402 >                write(fd, (char *)&nextloc, sizeof(nextloc));
403 >                lseek(fd, (long)(lastloc=nextloc), 0);
404 >        }
405   }
406  
407  
# Line 457 | Line 434 | loadholo()                     /* start loading a holodeck from fname */
434          extern long     ftell();
435          FILE    *fp;
436          int     fd;
437 <        long    fpos;
437 >        int     n;
438 >        int4    nextloc;
439                                          /* open holodeck file */
440          if ((fp = fopen(hdkfile, ncprocs>0 ? "r+" : "r")) == NULL) {
441                  sprintf(errmsg, "cannot open \"%s\" for %s", hdkfile,
# Line 472 | Line 450 | loadholo()                     /* start loading a holodeck from fname */
450                                  hdkfile);
451                  error(USER, errmsg);
452          }
453 <        fread(&fpos, sizeof(long), 1, fp);
476 <        if (fpos != 0)
477 <                error(WARNING, "ignoring multiple sections in holodeck file");
478 <        fpos = ftell(fp);                       /* get stdio position */
453 >        nextloc = ftell(fp);                    /* get stdio position */
454          fd = dup(fileno(fp));
455          fclose(fp);                             /* done with stdio */
456 <        lseek(fd, fpos, 0);                     /* align system file pointer */
457 <        hdinit(fd, NULL);                       /* allocate and load index */
456 >        for (n = 0; nextloc > 0L; n++) {        /* initialize each section */
457 >                lseek(fd, (long)nextloc, 0);
458 >                read(fd, (char *)&nextloc, sizeof(nextloc));
459 >                hdinit(fd, NULL);
460 >        }
461 >        if (n != vdef(SECTION)) {
462 >                sprintf(errmsg, "number of sections does not match %s setting",
463 >                                vnam(SECTION));
464 >                error(WARNING, errmsg);
465 >        }
466   }
467  
468  
# Line 506 | Line 489 | PACKET *pl;
489                  p->next = freepacks;
490                  freepacks = p;
491          }
492 <        if (n2flush > 512*RPACKSIZ*nprocs) {
492 >        if (n2flush > 1024*RPACKSIZ*nprocs) {
493                  hdflush(NULL);                  /* flush holodeck buffers */
494                  n2flush = 0;
495          }
496   }
497  
498  
516 int
517 done_rtrace()                   /* clean up and close rtrace calculation */
518 {
519        int     status;
520                                        /* already closed? */
521        if (!nprocs)
522                return;
523                                        /* report activity */
524        wputs("closing rtrace process...\n");
525                                        /* flush beam queue */
526        done_packets(flush_queue());
527                                        /* close rtrace */
528        if ((status = end_rtrace()))
529                error(WARNING, "bad exit status from rtrace");
530        if (vdef(REPORT))               /* report time */
531                report(0);
532        return(status);                 /* return status */
533 }
534
535
536 new_rtrace()                    /* restart rtrace calculation */
537 {
538        char    combuf[128];
539
540        if (nprocs > 0)                 /* already running? */
541                return;
542        wputs("restarting rtrace process...\n");
543        if (vdef(RIF)) {                /* rerun rad to update octree */
544                sprintf(combuf, "rad -v 0 -s -w %s", vval(RIF));
545                if (system(combuf))
546                        error(WARNING, "error running rad");
547        }
548        if (start_rtrace() < 1)         /* start rtrace */
549                error(WARNING, "cannot restart rtrace");
550        else if (vdef(REPORT))
551                report(0);
552 }
553
554
555 getradfile(rfargs)              /* run rad and get needed variables */
556 char    *rfargs;
557 {
558        static short    mvar[] = {OCTREE,-1};
559        static char     tf1[] = TEMPLATE;
560        char    tf2[64];
561        char    combuf[256];
562        char    *pippt;
563        register int    i;
564        register char   *cp;
565                                        /* create rad command */
566        mktemp(tf1);
567        sprintf(tf2, "%s.rif", tf1);
568        sprintf(combuf,
569                "rad -v 0 -s -e -w %s OPTFILE=%s | egrep '^[ \t]*(NOMATCH",
570                        rfargs, tf1);
571        cp = combuf;
572        while (*cp){
573                if (*cp == '|') pippt = cp;
574                cp++;
575        }                               /* match unset variables */
576        for (i = 0; mvar[i] >= 0; i++)
577                if (!vdef(mvar[i])) {
578                        *cp++ = '|';
579                        strcpy(cp, vnam(mvar[i]));
580                        while (*cp) cp++;
581                        pippt = NULL;
582                }
583        if (pippt != NULL)
584                strcpy(pippt, "> /dev/null");   /* nothing to match */
585        else
586                sprintf(cp, ")[ \t]*=' > %s", tf2);
587        if (system(combuf)) {
588                unlink(tf2);                    /* clean up */
589                unlink(tf1);
590                error(SYSTEM, "cannot execute rad command");
591        }
592        if (pippt == NULL) {
593                loadvars(tf2);                  /* load variables */
594                unlink(tf2);
595        }
596        rtargc += wordfile(rtargv+rtargc, tf1); /* get rtrace options */
597        unlink(tf1);                    /* clean up */
598 }
599
600
499   rootname(rn, fn)                /* remove tail from end of fn */
500   register char   *rn, *fn;
501   {
502          char    *tp, *dp;
503  
504          for (tp = NULL, dp = rn; *rn = *fn++; rn++)
505 <                if (ISDIRSEP(*rn))
505 >                if (*rn == '/')
506                          dp = rn;
507                  else if (*rn == '.')
508                          tp = rn;
# Line 653 | Line 551 | int    ec;
551   {
552          int     status = 0;
553  
554 <        if (hdlist[0] != NULL) {        /* flush holodeck */
554 >        if (hdlist[0] != NULL) {        /* close holodeck */
555                  if (nprocs > 0)
556 <                        status = done_rtrace();
659 <                hdflush(NULL);
556 >                        status = done_rtrace();         /* calls hdsync() */
557                  if (ncprocs > 0 && vdef(REPORT)) {
558                          long    fsiz, fuse;
559                          fsiz = hdfilen(hdlist[0]->fd);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines