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

Comparing ray/src/util/rad.c (file contents):
Revision 2.1 by greg, Thu Mar 11 09:11:00 1993 UTC vs.
Revision 2.8 by greg, Tue May 18 13:07:56 1993 UTC

# Line 76 | Line 76 | VARIABLE       *matchvar();
76   char    *nvalue();
77   int     vscale();
78  
79 + #define UPPER(c)        ((c)&~0x20)     /* ASCII trick */
80 +
81   #define vnam(vc)        (vv[vc].name)
82   #define vdef(vc)        (vv[vc].nass)
83   #define vval(vc)        (vv[vc].value)
84   #define vint(vc)        atoi(vval(vc))
85 < #define vlet(vc)        (vval(vc)[0]&~0x20)
85 > #define vlet(vc)        UPPER(vval(vc)[0])
86   #define vbool(vc)       (vlet(vc)=='T')
87  
88   #define HIGH            2
# Line 92 | Line 94 | int    (*setqopts[3])() = {lowqopts, medqopts, hiqopts};
94  
95   #define renderopts      (*setqopts[vscale(QUALITY)])
96  
97 < extern long     fdate();
97 >                                /* overture calculation file */
98 > #ifdef NIX
99 > char    overfile[] = "overture.raw";
100 > #else
101 > char    overfile[] = "/dev/null";
102 > #endif
103  
104 + extern long     fdate(), time();
105 +
106   long    scenedate;              /* date of latest scene or object file */
107   long    octreedate;             /* date of octree */
108  
# Line 157 | Line 166 | char   *argv[];
166                                  /* print all values if requested */
167          if (explicate)
168                  printvals();
169 <                                /* run simulation */
169 >                                /* build octree */
170          oconv();
171 +                                /* check date on ambient file */
172 +        checkambfile();
173 +                                /* run simulation */
174          renderopts(ropts);
175          xferopts(ropts);
176          if (rvdevice != NULL)
# Line 168 | Line 180 | char   *argv[];
180          exit(0);
181   userr:
182          fprintf(stderr,
183 <        "Usage: %s [-s][-n][-v view][-o dev] rfile [VAR=value ..]\n",
183 >        "Usage: %s [-s][-n][-e][-v view][-o dev] rfile [VAR=value ..]\n",
184                          progname);
185          exit(1);
186   }
# Line 193 | Line 205 | load(rfname)                   /* load Radiance simulation file */
205   char    *rfname;
206   {
207          FILE    *fp;
208 <        char    buf[256];
208 >        char    buf[512];
209          register char   *cp;
210  
211          if (rfname == NULL)
212                  fp = stdin;
213 <        else if ((fp = fopen(rfname, "r")) == NULL) {
214 <                perror(rfname);
203 <                exit(1);
204 <        }
213 >        else if ((fp = fopen(rfname, "r")) == NULL)
214 >                syserr(rfname);
215          while (fgetline(buf, sizeof(buf), fp) != NULL) {
216                  for (cp = buf; *cp; cp++) {
217                          switch (*cp) {
# Line 212 | Line 222 | char   *rfname;
222                          case '#':
223                                  *cp = '\0';
224                                  break;
225 +                        default:
226 +                                continue;
227                          }
228                          break;
229                  }
# Line 260 | Line 272 | register char  *ass;
272                  exit(1);
273          }
274                                          /* assign new value */
275 <        cp = vp->value; i = vp->nass;
276 <        while (i--)
277 <                while (*cp++)
278 <                        ;
279 <        i = cp - vp->value;
280 <        vp->value = realloc(vp->value, i+n+1);
281 <        if (vp->value == NULL) {
282 <                perror(progname);
283 <                exit(1);
284 <        }
275 >        if (i = vp->nass) {
276 >                cp = vp->value;
277 >                while (i--)
278 >                        while (*cp++)
279 >                                ;
280 >                i = cp - vp->value;
281 >                vp->value = realloc(vp->value, i+n+1);
282 >        } else
283 >                vp->value = malloc(n+1);
284 >        if (vp->value == NULL)
285 >                syserr(progname);
286          strcpy(vp->value+i, ass);
287          vp->nass++;
288   }
# Line 318 | Line 331 | int    vc;
331          case 'L':
332                  return(LOW);
333          }
334 <        fprintf(stderr, "%s: illegal value for variable '%s' (%s)\n",
322 <                        progname, vnam(vc), vval(vc));
323 <        exit(1);
334 >        badvalue(vc);
335   }
336  
337  
# Line 341 | Line 352 | register VARIABLE      *vp;
352                  return;
353          fprintf(stderr, "%s: warning - multiple assignment of variable '%s'\n",
354                          progname, vp->name);
355 <        while (vp->nass-- > 1)
355 >        do
356                  vp->value += strlen(vp->value)+1;
357 +        while (--vp->nass > 1);
358   }
359  
360  
# Line 372 | Line 384 | register char  *fnames;
384          while (*fnames) {
385                  while (isspace(*fnames)) fnames++;
386                  cp = thisfile;
387 <                while (*fnames && !isspace(*fnames)) *cp++ = *fnames++;
387 >                while (*fnames && !isspace(*fnames))
388 >                        *cp++ = *fnames++;
389                  *cp = '\0';
390 <                if ((thisdate = fdate(thisfile)) < 0) {
391 <                        perror(thisfile);
379 <                        exit(1);
380 <                }
390 >                if ((thisdate = fdate(thisfile)) < 0)
391 >                        syserr(thisfile);
392                  if (thisdate > lastdate)
393                          lastdate = thisdate;
394          }
# Line 387 | Line 398 | register char  *fnames;
398  
399   checkfiles()                    /* check for existence and modified times */
400   {
401 +        char    *cp;
402          long    objdate;
403  
404 <        octreedate = vdef(OCTREE) ? fdate(vval(OCTREE)) : -1;
404 >        if (!vdef(OCTREE)) {
405 >                if ((cp = bmalloc(strlen(radname)+5)) == NULL)
406 >                        syserr(progname);
407 >                sprintf(cp, "%s.oct", radname);
408 >                vval(OCTREE) = cp;
409 >                vdef(OCTREE)++;
410 >        }
411 >        octreedate = fdate(vval(OCTREE));
412          scenedate = -1;
413          if (vdef(SCENE)) {
414                  scenedate = checklast(vval(SCENE));
# Line 400 | Line 419 | checkfiles()                   /* check for existence and modified tim
419                  }
420          }
421          if (octreedate < 0 & scenedate < 0) {
422 <                fprintf(stderr, "%s: need scene or octree\n", progname);
422 >                fprintf(stderr, "%s: need '%s' or '%s'\n", progname,
423 >                                vnam(OCTREE), vnam(SCENE));
424                  exit(1);
425          }
426   }      
427  
428  
429 < setdefaults()                   /* set default values for unassigned var's */
429 > getoctcube(org, sizp)           /* get octree bounding cube */
430 > double  org[3], *sizp;
431   {
432 +        extern FILE     *popen();
433 +        static double   oorg[3], osiz = 0.;
434 +        char    buf[MAXPATH+16];
435          FILE    *fp;
412        double  xmin, ymin, zmin, size;
413        char    buf[512];
414        char    *cp;
436  
437 <        if (!vdef(OCTREE)) {
438 <                sprintf(buf, "%s.oct", radname);
439 <                vval(OCTREE) = savqstr(buf);
440 <                vdef(OCTREE)++;
437 >        if (osiz <= FTINY) {
438 >                oconv();                /* does nothing if done already */
439 >                sprintf(buf, "getinfo -d < %s", vval(OCTREE));
440 >                if ((fp = popen(buf, "r")) == NULL)
441 >                        syserr("getinfo");
442 >                if (fscanf(fp, "%lf %lf %lf %lf", &oorg[0], &oorg[1],
443 >                                &oorg[2], &osiz) != 4) {
444 >                        fprintf(stderr,
445 >                        "%s: error reading bounding cube from getinfo\n",
446 >                                        progname);
447 >                        exit(1);
448 >                }
449 >                pclose(fp);
450          }
451 +        org[0] = oorg[0]; org[1] = oorg[1]; org[2] = oorg[2]; *sizp = osiz;
452 + }
453 +
454 +
455 + setdefaults()                   /* set default values for unassigned var's */
456 + {
457 +        double  org[3], size;
458 +        char    buf[128];
459 +
460          if (!vdef(ZONE)) {
461 <                if (scenedate > octreedate) {
462 <                        sprintf(buf, "getbbox -w -h %s", vval(SCENE));
463 <                        if (!silent) {
425 <                                printf("\t%s\n", buf);
426 <                                fflush(stdout);
427 <                        }
428 <                        if ((fp = popen(buf, "r")) == NULL) {
429 <                                perror("getbbox");
430 <                                exit(1);
431 <                        }
432 <                        buf[0] = 'E'; buf[1] = ' ';
433 <                        fgetline(buf+2, sizeof(buf)-2, fp);
434 <                        pclose(fp);
435 <                } else {
436 <                        sprintf(buf, "getinfo -d < %s", vval(OCTREE));
437 <                        if ((fp = popen(buf, "r")) == NULL) {
438 <                                perror("getinfo");
439 <                                exit(1);
440 <                        }
441 <                        fscanf(fp, "%lf %lf %lf %lf",
442 <                                        &xmin, &ymin, &zmin, &size);
443 <                        sprintf(buf, "E %g %g %g %g %g %g", xmin, xmin+size,
444 <                                        ymin, ymin+size, zmin, zmin+size);
445 <                        pclose(fp);
446 <                }
461 >                getoctcube(org, &size);
462 >                sprintf(buf, "E %g %g %g %g %g %g", org[0], org[0]+size,
463 >                                org[1], org[1]+size, org[2], org[2]+size);
464                  vval(ZONE) = savqstr(buf);
465                  vdef(ZONE)++;
466          }
450        if (!vdef(UP)) {
451                vval(UP) = "Z";
452                vdef(UP)++;
453        }
467          if (!vdef(INDIRECT)) {
468                  vval(INDIRECT) = "0";
469                  vdef(INDIRECT)++;
# Line 467 | Line 480 | setdefaults()                  /* set default values for unassigned v
480                  vval(PICTURE) = radname;
481                  vdef(PICTURE)++;
482          }
470        if (!vdef(AMBFILE)) {
471                sprintf(buf, "%s.amb", radname);
472                vval(AMBFILE) = savqstr(buf);
473                vdef(AMBFILE)++;
474        }
483          if (!vdef(VIEW)) {
484                  vval(VIEW) = "X";
485                  vdef(VIEW)++;
# Line 496 | Line 504 | printvals()                    /* print variable values */
504          register int    i, j;
505  
506          for (i = 0; i < NVARS; i++)
507 <                for (j = 0; j < vv[i].nass; j++)
508 <                        printf("%s= %s\n", vv[i].name, nvalue(vv+i, j));
507 >                for (j = 0; j < vdef(i); j++)
508 >                        printf("%s= %s\n", vnam(i), nvalue(vv+i, j));
509          fflush(stdout);
510   }
511  
# Line 506 | Line 514 | oconv()                                /* run oconv if necessary */
514   {
515          char    combuf[512], ocopts[64];
516  
517 <        if (octreedate > scenedate)     /* check dates */
517 >        if (octreedate >= scenedate)    /* check dates */
518                  return;
519                                          /* build command */
520          oconvopts(ocopts);
521 <        sprintf(combuf, "oconv%s %s > %s", ocopts, vval(SCENE), vval(OCTREE));
522 <        if (!silent) {                  /* echo it */
523 <                printf("\t%s\n", combuf);
524 <                fflush(stdout);
525 <        }
526 <        if (noaction)
527 <                return;
528 <        if (system(combuf)) {           /* run it */
521 >        if (vdef(MATERIAL))
522 >                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
523 >                                vval(MATERIAL), vval(SCENE), vval(OCTREE));
524 >        else
525 >                sprintf(combuf, "oconv%s %s > %s", ocopts,
526 >                                vval(SCENE), vval(OCTREE));
527 >        
528 >        if (runcom(combuf)) {           /* run it */
529                  fprintf(stderr, "%s: error generating octree\n\t%s removed\n",
530                                  progname, vval(OCTREE));
531                  unlink(vval(OCTREE));
532                  exit(1);
533          }
534 +        octreedate = time(0);
535   }
536  
537  
# Line 538 | Line 547 | register char  *op, *arg;
547  
548  
549   oconvopts(oo)                           /* get oconv options */
550 < char    *oo;
550 > register char   *oo;
551   {
552 +        /* BEWARE:  This may be called via setdefaults(), so no assumptions */
553 +
554          *oo = '\0';
555          if (vdef(OCONV))
556                  addarg(oo, vval(OCONV));
557   }
558  
559  
560 < lowqopts(ro)                            /* low quality rendering options */
550 < char    *ro;
560 > checkambfile()                  /* check date on ambient file */
561   {
562 <        register char   *op = ro;
562 >        long    afdate;
563  
564 +        if (vdef(AMBFILE)) {
565 +                afdate = fdate(vval(AMBFILE));
566 +                if (afdate >= 0 & octreedate > afdate)
567 +                        rmfile(vval(AMBFILE));
568 +        }
569 + }
570 +
571 +
572 + double
573 + ambval()                                /* compute ambient value */
574 + {
575 +        if (vdef(EXPOSURE)) {
576 +                if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
577 +                        return(.5/pow(2.,atof(vval(EXPOSURE))));
578 +                if (isdigit(vval(EXPOSURE)[0]) || vval(EXPOSURE)[0] == '.')
579 +                        return(.5/atof(vval(EXPOSURE)));
580 +                badvalue(EXPOSURE);
581 +        }
582 +        if (vlet(ZONE) == 'E')
583 +                return(10.);
584 +        if (vlet(ZONE) == 'I')
585 +                return(.01);
586 +        badvalue(ZONE);
587 + }
588 +
589 +
590 + lowqopts(op)                            /* low quality rendering options */
591 + register char   *op;
592 + {
593 +        double  d, org[3], siz[3];
594 +
595          *op = '\0';
596 +        if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
597 +                        &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
598 +                badvalue(ZONE);
599 +        siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
600 +        getoctcube(org, &d);
601 +        d *= 3./(siz[0]+siz[1]+siz[2]);
602 +        switch (vscale(DETAIL)) {
603 +        case LOW:
604 +                op = addarg(op, "-ps 16 -dp 16");
605 +                sprintf(op, " -ar %d", (int)(4*d));
606 +                op += strlen(op);
607 +                break;
608 +        case MEDIUM:
609 +                op = addarg(op, "-ps 8 -dp 32");
610 +                sprintf(op, " -ar %d", (int)(8*d));
611 +                op += strlen(op);
612 +                break;
613 +        case HIGH:
614 +                op = addarg(op, "-ps 4 -dp 64");
615 +                sprintf(op, " -ar %d", (int)(16*d));
616 +                op += strlen(op);
617 +                break;
618 +        }
619 +        op = addarg(op, "-pt .16");
620 +        if (vbool(PENUMBRAS))
621 +                op = addarg(op, "-ds .4");
622 +        else
623 +                op = addarg(op, "-ds 0");
624 +        op = addarg(op, "-dt .2 -dc .25 -dr 0 -sj 0 -st .7");
625 +        if (vdef(AMBFILE)) {
626 +                sprintf(op, " -af %s", vval(AMBFILE));
627 +                op += strlen(op);
628 +        } else
629 +                overture = 0;
630 +        switch (vscale(VARIABILITY)) {
631 +        case LOW:
632 +                op = addarg(op, "-aa .4 -ad 32");
633 +                break;
634 +        case MEDIUM:
635 +                op = addarg(op, "-aa .3 -ad 64");
636 +                break;
637 +        case HIGH:
638 +                op = addarg(op, "-aa .25 -ad 128");
639 +                break;
640 +        }
641 +        op = addarg(op, "-as 0");
642 +        d = ambval();
643 +        sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
644 +        op += strlen(op);
645 +        op = addarg(op, "-lr 3 -lw .02");
646          if (vdef(RENDER))
647                  op = addarg(op, vval(RENDER));
648   }
649  
650  
651 < medqopts(ro)                            /* medium quality rendering options */
652 < char    *ro;
651 > medqopts(op)                            /* medium quality rendering options */
652 > register char   *op;
653   {
654 <        register char   *op = ro;
654 >        double  d, org[3], siz[3];
655  
656          *op = '\0';
657 +        if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
658 +                        &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
659 +                badvalue(ZONE);
660 +        siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
661 +        getoctcube(org, &d);
662 +        d *= 3./(siz[0]+siz[1]+siz[2]);
663 +        switch (vscale(DETAIL)) {
664 +        case LOW:
665 +                op = addarg(op, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
666 +                op = addarg(op, "-dp 64");
667 +                sprintf(op, " -ar %d", (int)(8*d));
668 +                op += strlen(op);
669 +                break;
670 +        case MEDIUM:
671 +                op = addarg(op, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
672 +                op = addarg(op, "-dp 128");
673 +                sprintf(op, " -ar %d", (int)(16*d));
674 +                op += strlen(op);
675 +                break;
676 +        case HIGH:
677 +                op = addarg(op, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
678 +                op = addarg(op, "-dp 256");
679 +                sprintf(op, " -ar %d", (int)(32*d));
680 +                op += strlen(op);
681 +                break;
682 +        }
683 +        op = addarg(op, "-pt .08");
684 +        if (vbool(PENUMBRAS))
685 +                op = addarg(op, "-ds .2 -dj .35");
686 +        else
687 +                op = addarg(op, "-ds .3");
688 +        op = addarg(op, "-dt .1 -dc .5 -dr 1 -sj .7 -st .15");
689 +        if (overture = vint(INDIRECT)) {
690 +                sprintf(op, " -ab %d", overture);
691 +                op += strlen(op);
692 +        }
693 +        if (vdef(AMBFILE)) {
694 +                sprintf(op, " -af %s", vval(AMBFILE));
695 +                op += strlen(op);
696 +        } else
697 +                overture = 0;
698 +        switch (vscale(VARIABILITY)) {
699 +        case LOW:
700 +                op = addarg(op, "-aa .25 -ad 128 -as 0");
701 +                break;
702 +        case MEDIUM:
703 +                op = addarg(op, "-aa .2 -ad 300 -as 64");
704 +                break;
705 +        case HIGH:
706 +                op = addarg(op, "-aa .15 -ad 500 -as 128");
707 +                break;
708 +        }
709 +        d = ambval();
710 +        sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
711 +        op += strlen(op);
712 +        op = addarg(op, "-lr 6 -lw .002");
713          if (vdef(RENDER))
714                  op = addarg(op, vval(RENDER));
715   }
716  
717  
718 < hiqopts(ro)                             /* high quality rendering options */
719 < char    *ro;
718 > hiqopts(op)                             /* high quality rendering options */
719 > register char   *op;
720   {
721 <        register char   *op = ro;
721 >        double  d, org[3], siz[3];
722  
723          *op = '\0';
724 +        if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
725 +                        &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
726 +                badvalue(ZONE);
727 +        siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
728 +        getoctcube(org, &d);
729 +        d *= 3./(siz[0]+siz[1]+siz[2]);
730 +        switch (vscale(DETAIL)) {
731 +        case LOW:
732 +                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
733 +                op = addarg(op, "-dp 256");
734 +                sprintf(op, " -ar %d", (int)(16*d));
735 +                op += strlen(op);
736 +                break;
737 +        case MEDIUM:
738 +                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
739 +                op = addarg(op, "-dp 512");
740 +                sprintf(op, " -ar %d", (int)(32*d));
741 +                op += strlen(op);
742 +                break;
743 +        case HIGH:
744 +                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
745 +                op = addarg(op, "-dp 1024");
746 +                sprintf(op, " -ar %d", (int)(64*d));
747 +                op += strlen(op);
748 +                break;
749 +        }
750 +        op = addarg(op, "-pt .04");
751 +        if (vbool(PENUMBRAS))
752 +                op = addarg(op, "-ds .1 -dj .7");
753 +        else
754 +                op = addarg(op, "-ds .2");
755 +        op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .03");
756 +        sprintf(op, " -ab %d", overture=vint(INDIRECT)+1);
757 +        op += strlen(op);
758 +        if (vdef(AMBFILE)) {
759 +                sprintf(op, " -af %s", vval(AMBFILE));
760 +                op += strlen(op);
761 +        } else
762 +                overture = 0;
763 +        switch (vscale(VARIABILITY)) {
764 +        case LOW:
765 +                op = addarg(op, "-aa .15 -ad 200 -as 0");
766 +                break;
767 +        case MEDIUM:
768 +                op = addarg(op, "-aa .125 -ad 512 -as 128");
769 +                break;
770 +        case HIGH:
771 +                op = addarg(op, "-aa .08 -ad 850 -as 256");
772 +                break;
773 +        }
774 +        d = ambval();
775 +        sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
776 +        op += strlen(op);
777 +        op = addarg(op, "-lr 12 -lw .0005");
778          if (vdef(RENDER))
779                  op = addarg(op, vval(RENDER));
780   }
# Line 588 | Line 789 | char   *ro;
789          if (n < 2)
790                  return;
791          if (vdef(OPTFILE)) {
792 <                if ((fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666)) == -1) {
793 <                        perror(vval(OPTFILE));
794 <                        exit(1);
795 <                }
595 <                if (write(fd, ro+1, n-1) != n-1) {
596 <                        perror(vval(OPTFILE));
597 <                        exit(1);
598 <                }
792 >                if ((fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666)) == -1)
793 >                        syserr(vval(OPTFILE));
794 >                if (write(fd, ro+1, n-1) != n-1)
795 >                        syserr(vval(OPTFILE));
796                  write(fd, "\n", 1);
797                  close(fd);
798 <                ro[0] = ' ';
602 <                ro[1] = '^';
603 <                strcpy(ro+2, vval(OPTFILE));
798 >                sprintf(ro, " \"^%s\"", vval(OPTFILE));
799          }
800   #ifdef MSDOS
801          else if (n > 50) {
802 <                register char   *evp = bmalloc(n+6);
608 <                if (evp == NULL) {
609 <                        perror(progname);
610 <                        exit(1);
611 <                }
612 <                strcpy(evp, "ROPT=");
613 <                strcat(evp, ro);
614 <                putenv(evp);
802 >                setenv("ROPT", ro+1);
803                  strcpy(ro, " $ROPT");
804          }
805   #endif
# Line 649 | Line 837 | char *
837   specview(vs)                            /* get proper view spec from vs */
838   register char   *vs;
839   {
840 +        static char     vup[7][12] = {"-vu 0 0 -1","-vu 0 -1 0","-vu -1 0 0",
841 +                        "-vu 0 0 1", "-vu 1 0 0","-vu 0 1 0","-vu 0 0 1"};
842          static char     viewopts[128];
843          register char   *cp;
844 <        int     xpos, ypos, zpos, viewtype;
845 <        int     exterior;
844 >        int     xpos, ypos, zpos, viewtype, upax;
845 >        register int    i;
846          double  cent[3], dim[3], mult, d;
847  
848 <        if (vs == NULL || *vs == '-')
848 >        if (*vs == '-')
849                  return(vs);
850 +        upax = 0;                       /* get the up vector */
851 +        if (vdef(UP)) {
852 +                if (vval(UP)[0] == '-' || vval(UP)[0] == '+')
853 +                        upax = 1-'X'+UPPER(vval(UP)[1]);
854 +                else
855 +                        upax = 1-'X'+vlet(UP);
856 +                if (upax < 1 | upax > 3)
857 +                        badvalue(UP);
858 +                if (vval(UP)[0] == '-')
859 +                        upax = -upax;
860 +        }
861                                          /* check standard view names */
862          xpos = ypos = zpos = 0;
662        viewtype = 0;
863          if (*vs == 'X') {
864                  xpos = 1; vs++;
865          } else if (*vs == 'x') {
# Line 675 | Line 875 | register char  *vs;
875          } else if (*vs == 'z') {
876                  zpos = -1; vs++;
877          }
878 +        viewtype = 'v';
879          if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h')
880                  viewtype = *vs++;
680        else if (!*vs || isspace(*vs))
681                viewtype = 'v';
881          cp = viewopts;
882 <        if (viewtype && (xpos|ypos|zpos)) {     /* got standard view */
882 >        if ((!*vs || isspace(*vs)) && (xpos|ypos|zpos)) {       /* got one! */
883                  *cp++ = '-'; *cp++ = 'v'; *cp++ = 't'; *cp++ = viewtype;
884                  if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
885                                  &cent[0], &dim[0], &cent[1], &dim[1],
886 <                                &cent[2], &dim[2]) != 6) {
887 <                        fprintf(stderr, "%s: bad zone specification\n",
888 <                                        progname);
889 <                        exit(1);
886 >                                &cent[2], &dim[2]) != 6)
887 >                        badvalue(ZONE);
888 >                for (i = 0; i < 3; i++) {
889 >                        dim[i] -= cent[i];
890 >                        cent[i] += .5*dim[i];
891                  }
892 <                dim[0] -= cent[0];
693 <                dim[1] -= cent[1];
694 <                dim[2] -= cent[2];
695 <                exterior = vlet(ZONE) == 'E';
696 <                mult = exterior ? 2. : .45 ;
892 >                mult = vlet(ZONE)=='E' ? 2. : .45 ;
893                  sprintf(cp, " -vp %.2g %.2g %.2g -vd %.2g %.2g %.2g",
894                                  cent[0]+xpos*mult*dim[0],
895                                  cent[1]+ypos*mult*dim[1],
896                                  cent[2]+zpos*mult*dim[2],
897                                  -xpos*dim[0], -ypos*dim[1], -zpos*dim[2]);
898                  cp += strlen(cp);
899 <                switch (vlet(UP)) {
900 <                case 'Z':
901 <                        if (xpos|ypos) {
902 <                                cp = addarg(cp, "-vu 0 0 1");
903 <                                break;
904 <                        }
905 <                /* fall through */
710 <                case 'Y':
711 <                        if (xpos|zpos) {
712 <                                cp = addarg(cp, "-vu 0 1 0");
713 <                                break;
714 <                        }
715 <                /* fall through */
716 <                case 'X':
717 <                        if (ypos|zpos)
718 <                                cp = addarg(cp, "-vu 1 0 0");
719 <                        else
720 <                                cp = addarg(cp, "-vu 0 0 1");
899 >                                        /* redirect up axis if necessary */
900 >                switch (upax) {
901 >                case 3:                 /* plus or minus Z axis */
902 >                case -3:
903 >                case 0:
904 >                        if (!(xpos|ypos))
905 >                                upax = 2;
906                          break;
907 <                default:
908 <                        fprintf(stderr, "%s: illegal value for variable '%s'\n",
909 <                                        progname, vnam(UP));
910 <                        exit(1);
907 >                case 2:                 /* plus or minus Y axis */
908 >                case -2:
909 >                        if (!(xpos|zpos))
910 >                                upax = 1;
911 >                        break;
912 >                case 1:                 /* plus or minus X axis */
913 >                case -1:
914 >                        if (!(ypos|zpos))
915 >                                upax = 3;
916 >                        break;
917                  }
918 +                cp = addarg(cp, vup[upax+3]);
919                  switch (viewtype) {
920                  case 'v':
921                          cp = addarg(cp, "-vh 45 -vv 45");
# Line 738 | Line 930 | register char  *vs;
930                          cp = addarg(cp, "-vh 180 -vv 180");
931                          break;
932                  }
933 <        } else
934 <                while (*vs && !isspace(*vs))    /* else skip id */
935 <                        vs++;
936 <                                        /* append any additional options */
937 <        while (isspace(*vs)) vs++;
938 <        strcpy(cp, vs);
933 >        } else {
934 >                while (!isspace(*vs))           /* else skip id */
935 >                        if (!*vs++)
936 >                                return(NULL);
937 >                if (upax) {                     /* specify up vector */
938 >                        strcpy(cp, vup[upax+3]);
939 >                        cp += strlen(cp);
940 >                }
941 >        }
942 >        strcpy(cp, vs);                 /* append any additional options */
943 > #ifdef MSDOS
944 >        if (strlen(viewopts) > 40) {
945 >                setenv("VIEW", viewopts);
946 >                return("$VIEW");
947 >        }
948 > #endif
949          return(viewopts);
950   }
951  
# Line 751 | Line 953 | register char  *vs;
953   char *
954   getview(n, vn)                          /* get view n, or NULL if none */
955   int     n;
956 < char    *vn;
956 > char    *vn;            /* returned view name */
957   {
958 <        register char   *mv;
958 >        register char   *mv = NULL;
959  
960 <        if (viewselect != NULL) {
960 >        if (viewselect != NULL) {               /* command-line selected */
961                  if (n)                          /* only do one */
962                          return(NULL);
963                  if (viewselect[0] == '-') {     /* already specified */
# Line 774 | Line 976 | char   *vn;
976                                  return(specview(mv));
977                  return(specview(viewselect));   /* standard view? */
978          }
979 <        if (vn != NULL && (mv = nvalue(vv+VIEW, n)) != NULL) {
979 >        mv = nvalue(vv+VIEW, n);                /* use view n */
980 >        if (vn != NULL & mv != NULL) {
981                  if (*mv != '-')
982                          while (*mv && !isspace(*mv))
983                                  *vn++ = *mv++;
984                  *vn = '\0';
985          }
986 <        return(specview(nvalue(vv+VIEW, n)));   /* use view n */
986 >        return(specview(mv));
987   }
988  
989  
# Line 793 | Line 996 | char   *opts;
996          if (rvdevice != NULL)
997                  sprintf(combuf+strlen(combuf), "-o %s ", rvdevice);
998          strcat(combuf, vval(OCTREE));
999 <        if (!silent) {                  /* echo it */
797 <                printf("\t%s\n", combuf);
798 <                fflush(stdout);
799 <        }
800 <        if (noaction)
801 <                return;
802 <        if (system(combuf)) {           /* run it */
999 >        if (runcom(combuf)) {           /* run it */
1000                  fprintf(stderr, "%s: error running rview\n", progname);
1001                  exit(1);
1002          }
# Line 809 | Line 1006 | char   *opts;
1006   rpict(opts)                             /* run rpict and pfilt for each view */
1007   char    *opts;
1008   {
1009 <        char    combuf[512];
1010 <        char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH], res[32];
1011 <        char    pfopts[64];
1009 >        char    combuf[1024];
1010 >        char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH+16], res[32];
1011 >        char    pfopts[128];
1012          char    vs[32], *vw;
1013          int     vn, mult;
1014                                          /* get pfilt options */
# Line 829 | Line 1026 | char   *opts;
1026                  else if (n) {
1027                          if (n == 1) yres = xres;
1028                          sprintf(res, "-x %d -y %d", mult*xres, mult*yres);
1029 <                } else {
1030 <                        fprintf(stderr, "%s: bad value for variable '%s'\n",
834 <                                        progname, vnam(RESOLUTION));
835 <                        exit(1);
836 <                }
1029 >                } else
1030 >                        badvalue(RESOLUTION);
1031          }
1032          rep[0] = '\0';
1033          if (vdef(REPORT)) {
# Line 844 | Line 1038 | char   *opts;
1038                          sprintf(rep, " -t %d -e %s", (int)(minutes*60), rawfile);
1039                  else if (n == 1)
1040                          sprintf(rep, " -t %d", (int)(minutes*60));
1041 <                else {
1042 <                        fprintf(stderr, "%s: bad value for variable '%s'\n",
849 <                                        progname, vnam(REPORT));
850 <                        exit(1);
851 <                }
1041 >                else
1042 >                        badvalue(REPORT);
1043          }
1044                                          /* do each view */
1045          vn = 0;
# Line 869 | Line 1060 | char   *opts;
1060                                  sprintf(combuf,
1061                                  "rpict%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1062                                                  rep, vw, opts,
1063 <                                                vval(OCTREE), rawfile);
1064 <                                if (!silent) {
874 <                                        printf("\t%s\n", combuf);
875 <                                        fflush(stdout);
876 <                                }
877 <                                if (!noaction && system(combuf)) {
1063 >                                                vval(OCTREE), overfile);
1064 >                                if (runcom(combuf)) {
1065                                          fprintf(stderr,
1066 <                        "%s: error in overture for view %s\n\t%s removed\n",
1067 <                                                progname, vs, rawfile);
881 <                                        unlink(rawfile);
1066 >                                        "%s: error in overture for view %s\n",
1067 >                                                progname, vs);
1068                                          exit(1);
1069                                  }
1070 + #ifdef NIX
1071 +                                rmfile(overfile);
1072 + #endif
1073                          }
1074                          sprintf(combuf, "rpict%s %s %s%s %s > %s",
1075                                          rep, vw, res, opts,
1076                                          vval(OCTREE), rawfile);
1077                  }
1078 <                if (!silent) {                  /* echo rpict command */
890 <                        printf("\t%s\n", combuf);
891 <                        fflush(stdout);
892 <                }
893 <                if (!noaction && system(combuf)) {      /* run rpict */
1078 >                if (runcom(combuf)) {           /* run rpict */
1079                          fprintf(stderr, "%s: error rendering view %s\n",
1080                                          progname, vs);
1081                          exit(1);
# Line 902 | Line 1087 | char   *opts;
1087                  else
1088                          sprintf(combuf, "pfilt%s %s > %s", pfopts,
1089                                          rawfile, picfile);
1090 <                if (!silent) {                  /* echo pfilt command */
906 <                        printf("\t%s\n", combuf);
907 <                        fflush(stdout);
908 <                }
909 <                if (!noaction && system(combuf)) {      /* run pfilt */
1090 >                if (runcom(combuf)) {           /* run pfilt */
1091                          fprintf(stderr,
1092                          "%s: error filtering view %s\n\t%s removed\n",
1093                                          progname, vs, picfile);
# Line 914 | Line 1095 | char   *opts;
1095                          exit(1);
1096                  }
1097                                                  /* remove raw file */
1098 <                if (!silent)
1098 >                rmfile(rawfile);
1099 >        }
1100 > }
1101 >
1102 >
1103 > runcom(cs)                      /* run command */
1104 > char    *cs;
1105 > {
1106 >        if (!silent)            /* echo it */
1107 >                printf("\t%s\n", cs);
1108 >        if (noaction)
1109 >                return(0);
1110 >        fflush(stdout);         /* flush output and pass to shell */
1111 >        return(system(cs));
1112 > }
1113 >
1114 >
1115 > rmfile(fn)                      /* remove a file */
1116 > char    *fn;
1117 > {
1118 >        if (!silent)
1119   #ifdef MSDOS
1120 <                        printf("\tdel %s\n", rawfile);
1120 >                printf("\tdel %s\n", fn);
1121   #else
1122 <                        printf("\trm %s\n", rawfile);
1122 >                printf("\trm -f %s\n", fn);
1123   #endif
1124 <                if (!noaction)
1125 <                        unlink(rawfile);
1124 >        if (noaction)
1125 >                return(0);
1126 >        return(unlink(fn));
1127 > }
1128 >
1129 >
1130 > #ifdef MSDOS
1131 > setenv(vname, value)            /* set an environment variable */
1132 > char    *vname, *value;
1133 > {
1134 >        register char   *evp;
1135 >
1136 >        evp = bmalloc(strlen(vname)+strlen(value)+2);
1137 >        if (evp == NULL)
1138 >                syserr(progname);
1139 >        sprintf(evp, "%s=%s", vname, value);
1140 >        if (putenv(evp) != 0) {
1141 >                fprintf(stderr, "%s: out of environment space\n", progname);
1142 >                exit(1);
1143          }
1144 +        if (!silent)
1145 +                printf("set %s\n", evp);
1146 + }
1147 + #endif
1148 +
1149 +
1150 + badvalue(vc)                    /* report bad variable value and exit */
1151 + int     vc;
1152 + {
1153 +        fprintf(stderr, "%s: bad value for variable '%s'\n",
1154 +                        progname, vnam(vc));
1155 +        exit(1);
1156 + }
1157 +
1158 +
1159 + syserr(s)                       /* report a system error and exit */
1160 + char    *s;
1161 + {
1162 +        perror(s);
1163 +        exit(1);
1164   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines