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.3 by greg, Thu Mar 11 17:23:33 1993 UTC vs.
Revision 2.25 by greg, Wed Sep 15 15:11:47 1993 UTC

# Line 94 | Line 94 | int    (*setqopts[3])() = {lowqopts, medqopts, hiqopts};
94  
95   #define renderopts      (*setqopts[vscale(QUALITY)])
96  
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 + long    matdate;                /* date of latest material file */
109  
110   int     explicate = 0;          /* explicate variables */
111   int     silent = 0;             /* do work silently */
112   int     noaction = 0;           /* don't do anything */
113 + int     sayview = 0;            /* print view out */
114   char    *rvdevice = NULL;       /* rview output device */
115   char    *viewselect = NULL;     /* specific view only */
116  
117   int     overture = 0;           /* overture calculation needed */
118  
119   char    *progname;              /* global argv[0] */
120 + char    *rifname;               /* global rad input file name */
121  
122   char    radname[MAXPATH];       /* root Radiance file name */
123  
# Line 135 | Line 145 | char   *argv[];
145                  case 'o':
146                          rvdevice = argv[++i];
147                          break;
148 +                case 'V':
149 +                        sayview++;
150 +                        break;
151                  case 'v':
152                          viewselect = argv[++i];
153                          break;
# Line 143 | Line 156 | char   *argv[];
156                  }
157          if (i >= argc)
158                  goto userr;
159 +        rifname = argv[i];
160                                  /* assign Radiance root file name */
161 <        rootname(radname, argv[i]);
161 >        rootname(radname, rifname);
162                                  /* load variable values */
163 <        load(argv[i]);
163 >        load(rifname);
164                                  /* get any additional assignments */
165          for (i++; i < argc; i++)
166                  setvariable(argv[i]);
# Line 159 | Line 173 | char   *argv[];
173                                  /* print all values if requested */
174          if (explicate)
175                  printvals();
176 <                                /* run simulation */
176 >                                /* build octree */
177          oconv();
178 +                                /* check date on ambient file */
179 +        checkambfile();
180 +                                /* run simulation */
181          renderopts(ropts);
182          xferopts(ropts);
183          if (rvdevice != NULL)
# Line 191 | Line 208 | register char  *rn, *fn;
208   }
209  
210  
211 + #define NOCHAR  127             /* constant for character to delete */
212 +
213 +
214   load(rfname)                    /* load Radiance simulation file */
215   char    *rfname;
216   {
217          FILE    *fp;
218 <        char    buf[256];
218 >        char    buf[512];
219          register char   *cp;
220  
221          if (rfname == NULL)
# Line 206 | Line 226 | char   *rfname;
226                  for (cp = buf; *cp; cp++) {
227                          switch (*cp) {
228                          case '\\':
229 <                        case '\n':
210 <                                *cp = ' ';
229 >                                *cp++ = NOCHAR;
230                                  continue;
231                          case '#':
232                                  *cp = '\0';
233                                  break;
234 +                        default:
235 +                                continue;
236                          }
237                          break;
238                  }
# Line 225 | Line 246 | setvariable(ass)               /* assign variable according to stri
246   register char   *ass;
247   {
248          char    varname[32];
249 +        char    varval[512];
250 +        int     n;
251          register char   *cp;
252          register VARIABLE       *vp;
253          register int    i;
231        int     n;
254  
255          while (isspace(*ass))           /* skip leading space */
256                  ass++;
# Line 242 | Line 264 | register char  *ass;
264                                          /* trim value */
265          while (isspace(*ass) || *ass == '=')
266                  ass++;
267 <        cp = ass + strlen(ass);
268 <        do
269 <                *cp-- = '\0';
248 <        while (cp >= ass && isspace(*cp));
249 <        n = cp - ass + 1;
267 >        for (n = strlen(ass); n > 0; n--)
268 >                if (!isspace(ass[n-1]))
269 >                        break;
270          if (!n) {
271                  fprintf(stderr, "%s: warning - missing value for variable '%s'\n",
272                                  progname, varname);
# Line 260 | Line 280 | register char  *ass;
280                  exit(1);
281          }
282                                          /* assign new value */
283 <        cp = vp->value; i = vp->nass;
284 <        while (i--)
285 <                while (*cp++)
286 <                        ;
287 <        i = cp - vp->value;
288 <        vp->value = realloc(vp->value, i+n+1);
283 >        if (i = vp->nass) {
284 >                cp = vp->value;
285 >                while (i--)
286 >                        while (*cp++)
287 >                                ;
288 >                i = cp - vp->value;
289 >                vp->value = realloc(vp->value, i+n+1);
290 >        } else
291 >                vp->value = malloc(n+1);
292          if (vp->value == NULL)
293                  syserr(progname);
294 <        strcpy(vp->value+i, ass);
294 >        cp = vp->value+i;               /* copy value, squeezing spaces */
295 >        *cp = *ass;
296 >        for (i = 1; i <= n; i++) {
297 >                if (ass[i] == NOCHAR)
298 >                        continue;
299 >                if (isspace(*cp))
300 >                        while (isspace(ass[i]))
301 >                                i++;
302 >                *++cp = ass[i];
303 >        }
304 >        *++cp = '\0';
305          vp->nass++;
306   }
307  
# Line 294 | Line 327 | register int   n;
327   {
328          register char   *cp;
329  
330 <        if (vp == NULL || n < 0 || n >= vp->nass)
330 >        if (vp == NULL | n < 0 | n >= vp->nass)
331                  return(NULL);
332          cp = vp->value;
333          while (n--)
# Line 369 | Line 402 | register char  *fnames;
402          while (*fnames) {
403                  while (isspace(*fnames)) fnames++;
404                  cp = thisfile;
405 <                while (*fnames && !isspace(*fnames)) *cp++ = *fnames++;
405 >                while (*fnames && !isspace(*fnames))
406 >                        *cp++ = *fnames++;
407                  *cp = '\0';
408                  if ((thisdate = fdate(thisfile)) < 0)
409                          syserr(thisfile);
# Line 407 | Line 441 | checkfiles()                   /* check for existence and modified tim
441                                  vnam(OCTREE), vnam(SCENE));
442                  exit(1);
443          }
444 +        matdate = -1;
445 +        if (vdef(MATERIAL))
446 +                matdate = checklast(vval(MATERIAL));
447   }      
448  
449  
# Line 488 | Line 525 | printvals()                    /* print variable values */
525          register int    i, j;
526  
527          for (i = 0; i < NVARS; i++)
528 <                for (j = 0; j < vv[i].nass; j++)
529 <                        printf("%s= %s\n", vv[i].name, nvalue(vv+i, j));
528 >                for (j = 0; j < vdef(i); j++)
529 >                        printf("%s= %s\n", vnam(i), nvalue(vv+i, j));
530          fflush(stdout);
531   }
532  
# Line 502 | Line 539 | oconv()                                /* run oconv if necessary */
539                  return;
540                                          /* build command */
541          oconvopts(ocopts);
542 <        sprintf(combuf, "oconv%s %s %s > %s", ocopts,
543 <                        vdef(MATERIAL) ? vval(MATERIAL) : "",
544 <                        vval(SCENE), vval(OCTREE));
545 <        if (!silent) {                  /* echo it */
546 <                printf("\t%s\n", combuf);
547 <                fflush(stdout);
548 <        }
549 <        if (noaction)
513 <                return;
514 <        if (system(combuf)) {           /* run it */
542 >        if (vdef(MATERIAL))
543 >                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
544 >                                vval(MATERIAL), vval(SCENE), vval(OCTREE));
545 >        else
546 >                sprintf(combuf, "oconv%s %s > %s", ocopts,
547 >                                vval(SCENE), vval(OCTREE));
548 >        
549 >        if (runcom(combuf)) {           /* run it */
550                  fprintf(stderr, "%s: error generating octree\n\t%s removed\n",
551                                  progname, vval(OCTREE));
552                  unlink(vval(OCTREE));
# Line 543 | Line 578 | register char  *oo;
578   }
579  
580  
581 + checkambfile()                  /* check date on ambient file */
582 + {
583 +        long    afdate;
584 +
585 +        if (!vdef(AMBFILE))
586 +                return;
587 +        if ((afdate = fdate(vval(AMBFILE))) < 0)
588 +                return;
589 +        if (octreedate > afdate | matdate > afdate)
590 +                rmfile(vval(AMBFILE));
591 + }
592 +
593 +
594   double
595   ambval()                                /* compute ambient value */
596   {
597          if (vdef(EXPOSURE)) {
598 +                if (!isflt(vval(EXPOSURE)))
599 +                        badvalue(EXPOSURE);
600                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
601                          return(.5/pow(2.,atof(vval(EXPOSURE))));
602 <                if (isdigit(vval(EXPOSURE)[0]) || vval(EXPOSURE)[0] == '.')
553 <                        return(.5/atof(vval(EXPOSURE)));
554 <                badvalue(EXPOSURE);
602 >                return(.5/atof(vval(EXPOSURE)));
603          }
604          if (vlet(ZONE) == 'E')
605                  return(10.);
# Line 575 | Line 623 | register char  *op;
623          d *= 3./(siz[0]+siz[1]+siz[2]);
624          switch (vscale(DETAIL)) {
625          case LOW:
626 <                op = addarg(op, "-ps 16");
579 <                op = addarg(op, "-dp 16");
626 >                op = addarg(op, "-ps 16 -dp 64");
627                  sprintf(op, " -ar %d", (int)(4*d));
628                  op += strlen(op);
629                  break;
630          case MEDIUM:
631 <                op = addarg(op, "-ps 8");
585 <                op = addarg(op, "-dp 32");
631 >                op = addarg(op, "-ps 8 -dp 128");
632                  sprintf(op, " -ar %d", (int)(8*d));
633                  op += strlen(op);
634                  break;
635          case HIGH:
636 <                op = addarg(op, "-ps 4");
591 <                op = addarg(op, "-dp 64");
636 >                op = addarg(op, "-ps 4 -dp 256");
637                  sprintf(op, " -ar %d", (int)(16*d));
638                  op += strlen(op);
639                  break;
# Line 596 | Line 641 | register char  *op;
641          op = addarg(op, "-pt .16");
642          if (vbool(PENUMBRAS))
643                  op = addarg(op, "-ds .4");
644 <        op = addarg(op, "-dt .2");
645 <        op = addarg(op, "-dc .25");
646 <        op = addarg(op, "-dr 0");
602 <        op = addarg(op, "-sj 0");
603 <        op = addarg(op, "-st .7");
604 <        op = addarg(op, "-ab 0");
644 >        else
645 >                op = addarg(op, "-ds 0");
646 >        op = addarg(op, "-dt .2 -dc .25 -dr 0 -sj 0 -st .5");
647          if (vdef(AMBFILE)) {
648                  sprintf(op, " -af %s", vval(AMBFILE));
649                  op += strlen(op);
# Line 609 | Line 651 | register char  *op;
651                  overture = 0;
652          switch (vscale(VARIABILITY)) {
653          case LOW:
654 <                op = addarg(op, "-aa .4");
613 <                op = addarg(op, "-ad 32");
654 >                op = addarg(op, "-aa .4 -ad 64");
655                  break;
656          case MEDIUM:
657 <                op = addarg(op, "-aa .3");
617 <                op = addarg(op, "-ad 64");
657 >                op = addarg(op, "-aa .3 -ad 128");
658                  break;
659          case HIGH:
660 <                op = addarg(op, "-aa .25");
621 <                op = addarg(op, "-ad 128");
660 >                op = addarg(op, "-aa .25 -ad 256");
661                  break;
662          }
663          op = addarg(op, "-as 0");
664          d = ambval();
665          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
666          op += strlen(op);
667 <        op = addarg(op, "-lr 3");
629 <        op = addarg(op, "-lw .02");
667 >        op = addarg(op, "-lr 3 -lw .02");
668          if (vdef(RENDER))
669                  op = addarg(op, vval(RENDER));
670   }
# Line 647 | Line 685 | register char  *op;
685          switch (vscale(DETAIL)) {
686          case LOW:
687                  op = addarg(op, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
688 <                op = addarg(op, "-dp 64");
688 >                op = addarg(op, "-dp 256");
689                  sprintf(op, " -ar %d", (int)(8*d));
690                  op += strlen(op);
691                  break;
692          case MEDIUM:
693                  op = addarg(op, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
694 <                op = addarg(op, "-dp 128");
694 >                op = addarg(op, "-dp 512");
695                  sprintf(op, " -ar %d", (int)(16*d));
696                  op += strlen(op);
697                  break;
698          case HIGH:
699                  op = addarg(op, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
700 <                op = addarg(op, "-dp 256");
700 >                op = addarg(op, "-dp 1024");
701                  sprintf(op, " -ar %d", (int)(32*d));
702                  op += strlen(op);
703                  break;
704          }
705          op = addarg(op, "-pt .08");
706 <        if (vbool(PENUMBRAS)) {
707 <                op = addarg(op, "-ds .2");
708 <                op = addarg(op, "-dj .35");
671 <        } else
706 >        if (vbool(PENUMBRAS))
707 >                op = addarg(op, "-ds .2 -dj .35");
708 >        else
709                  op = addarg(op, "-ds .3");
710 <        op = addarg(op, "-dt .1");
711 <        op = addarg(op, "-dc .5");
712 <        op = addarg(op, "-dr 1");
713 <        op = addarg(op, "-sj .7");
714 <        op = addarg(op, "-st .15");
678 <        sprintf(op, " -ab %d", overture=vint(INDIRECT));
679 <        op += strlen(op);
710 >        op = addarg(op, "-dt .1 -dc .5 -dr 1 -sj .7 -st .1");
711 >        if (overture = vint(INDIRECT)) {
712 >                sprintf(op, " -ab %d", overture);
713 >                op += strlen(op);
714 >        }
715          if (vdef(AMBFILE)) {
716                  sprintf(op, " -af %s", vval(AMBFILE));
717                  op += strlen(op);
# Line 684 | Line 719 | register char  *op;
719                  overture = 0;
720          switch (vscale(VARIABILITY)) {
721          case LOW:
722 <                op = addarg(op, "-aa .25");
688 <                op = addarg(op, "-ad 128");
689 <                op = addarg(op, "-as 0");
722 >                op = addarg(op, "-aa .25 -ad 196 -as 0");
723                  break;
724          case MEDIUM:
725 <                op = addarg(op, "-aa .2");
693 <                op = addarg(op, "-ad 300");
694 <                op = addarg(op, "-as 64");
725 >                op = addarg(op, "-aa .2 -ad 400 -as 64");
726                  break;
727          case HIGH:
728 <                op = addarg(op, "-aa .15");
698 <                op = addarg(op, "-ad 500");
699 <                op = addarg(op, "-as 128");
728 >                op = addarg(op, "-aa .15 -ad 768 -as 196");
729                  break;
730          }
731          d = ambval();
732          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
733          op += strlen(op);
734 <        op = addarg(op, "-lr 6");
706 <        op = addarg(op, "-lw .002");
734 >        op = addarg(op, "-lr 6 -lw .002");
735          if (vdef(RENDER))
736                  op = addarg(op, vval(RENDER));
737   }
# Line 724 | Line 752 | register char  *op;
752          switch (vscale(DETAIL)) {
753          case LOW:
754                  op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
755 <                op = addarg(op, "-dp 256");
755 >                op = addarg(op, "-dp 1024");
756                  sprintf(op, " -ar %d", (int)(16*d));
757                  op += strlen(op);
758                  break;
759          case MEDIUM:
760                  op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
761 <                op = addarg(op, "-dp 512");
761 >                op = addarg(op, "-dp 2048");
762                  sprintf(op, " -ar %d", (int)(32*d));
763                  op += strlen(op);
764                  break;
765          case HIGH:
766                  op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
767 <                op = addarg(op, "-dp 1024");
767 >                op = addarg(op, "-dp 4096");
768                  sprintf(op, " -ar %d", (int)(64*d));
769                  op += strlen(op);
770                  break;
771          }
772          op = addarg(op, "-pt .04");
773 <        if (vbool(PENUMBRAS)) {
774 <                op = addarg(op, "-ds .1");
775 <                op = addarg(op, "-dj .7");
748 <        } else
773 >        if (vbool(PENUMBRAS))
774 >                op = addarg(op, "-ds .1 -dj .7");
775 >        else
776                  op = addarg(op, "-ds .2");
777 <        op = addarg(op, "-dt .05");
751 <        op = addarg(op, "-dc .75");
752 <        op = addarg(op, "-dr 3");
753 <        op = addarg(op, "-sj 1");
754 <        op = addarg(op, "-st .03");
777 >        op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .01");
778          sprintf(op, " -ab %d", overture=vint(INDIRECT)+1);
779          op += strlen(op);
780          if (vdef(AMBFILE)) {
# Line 761 | Line 784 | register char  *op;
784                  overture = 0;
785          switch (vscale(VARIABILITY)) {
786          case LOW:
787 <                op = addarg(op, "-aa .15");
765 <                op = addarg(op, "-ad 200");
766 <                op = addarg(op, "-as 0");
787 >                op = addarg(op, "-aa .15 -ad 256 -as 0");
788                  break;
789          case MEDIUM:
790 <                op = addarg(op, "-aa .125");
770 <                op = addarg(op, "-ad 512");
771 <                op = addarg(op, "-as 128");
790 >                op = addarg(op, "-aa .125 -ad 512 -as 256");
791                  break;
792          case HIGH:
793 <                op = addarg(op, "-aa .08");
775 <                op = addarg(op, "-ad 850");
776 <                op = addarg(op, "-as 256");
793 >                op = addarg(op, "-aa .08 -ad 1024 -as 512");
794                  break;
795          }
796          d = ambval();
797          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
798          op += strlen(op);
799 <        op = addarg(op, "-lr 12");
783 <        op = addarg(op, "-lw .0005");
799 >        op = addarg(op, "-lr 12 -lw .0005");
800          if (vdef(RENDER))
801                  op = addarg(op, vval(RENDER));
802   }
# Line 790 | Line 806 | xferopts(ro)                           /* transfer options if indicated */
806   char    *ro;
807   {
808          int     fd, n;
809 +        register char   *cp;
810          
811          n = strlen(ro);
812          if (n < 2)
813                  return;
814          if (vdef(OPTFILE)) {
815 <                if ((fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666)) == -1)
815 >                for (cp = ro; cp[1]; cp++)
816 >                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
817 >                                *cp = '\n';
818 >                        else
819 >                                *cp = cp[1];
820 >                *cp = '\n';
821 >                fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666);
822 >                if (fd < 0 || write(fd, ro, n) != n || close(fd) < 0)
823                          syserr(vval(OPTFILE));
824 <                if (write(fd, ro+1, n-1) != n-1)
801 <                        syserr(vval(OPTFILE));
802 <                write(fd, "\n", 1);
803 <                close(fd);
804 <                ro[0] = ' ';
805 <                ro[1] = '^';
806 <                strcpy(ro+2, vval(OPTFILE));
824 >                sprintf(ro, " @%s", vval(OPTFILE));
825          }
826   #ifdef MSDOS
827          else if (n > 50) {
828 <                register char   *evp = bmalloc(n+6);
811 <                if (evp == NULL)
812 <                        syserr(progname);
813 <                strcpy(evp, "ROPT=");
814 <                strcat(evp, ro);
815 <                if (putenv(evp) != 0) {
816 <                        fprintf(stderr, "%s: out of environment space\n",
817 <                                        progname);
818 <                        exit(1);
819 <                }
828 >                setenv("ROPT", ro+1);
829                  strcpy(ro, " $ROPT");
830          }
831   #endif
# Line 831 | Line 840 | register char  *po;
840                  po = addarg(po, "-1 -e");
841                  po = addarg(po, vval(EXPOSURE));
842          }
843 <        if (vscale(QUALITY) == HIGH)
844 <                po = addarg(po, "-r .65");
843 >        switch (vscale(QUALITY)) {
844 >        case MEDIUM:
845 >                po = addarg(po, "-r 1");
846 >                break;
847 >        case HIGH:
848 >                po = addarg(po, "-m .25");
849 >                break;
850 >        }
851          if (vdef(PFILT))
852                  po = addarg(po, vval(PFILT));
853   }
# Line 948 | Line 963 | register char  *vs;
963                          break;
964                  }
965          } else {
966 <                while (*vs && !isspace(*vs))    /* else skip id */
967 <                        vs++;
966 >                while (!isspace(*vs))           /* else skip id */
967 >                        if (!*vs++)
968 >                                return(NULL);
969                  if (upax) {                     /* specify up vector */
970                          strcpy(cp, vup[upax+3]);
971                          cp += strlen(cp);
972                  }
973          }
974 <                                        /* append any additional options */
975 <        strcpy(cp, vs);
974 >        strcpy(cp, vs);                 /* append any additional options */
975 > #ifdef MSDOS
976 >        if (strlen(viewopts) > 40) {
977 >                setenv("VIEW", viewopts);
978 >                return("$VIEW");
979 >        }
980 > #endif
981          return(viewopts);
982   }
983  
# Line 964 | Line 985 | register char  *vs;
985   char *
986   getview(n, vn)                          /* get view n, or NULL if none */
987   int     n;
988 < char    *vn;
988 > char    *vn;            /* returned view name */
989   {
990          register char   *mv;
991  
992 <        if (viewselect != NULL) {
992 >        if (viewselect != NULL) {               /* command-line selected */
993                  if (n)                          /* only do one */
994                          return(NULL);
995                  if (viewselect[0] == '-') {     /* already specified */
# Line 981 | Line 1002 | char   *vn;
1002                                  ;
1003                          *vn = '\0';
1004                  }
1005 +                                                /* view number? */
1006 +                if (isint(viewselect))
1007 +                        return(specview(nvalue(vv+VIEW, atoi(viewselect)-1)));
1008                                                  /* check list */
1009                  while ((mv = nvalue(vv+VIEW, n++)) != NULL)
1010                          if (matchword(viewselect, mv))
1011                                  return(specview(mv));
1012                  return(specview(viewselect));   /* standard view? */
1013          }
1014 <        if (vn != NULL && (mv = nvalue(vv+VIEW, n)) != NULL) {
1015 <                if (*mv != '-')
1016 <                        while (*mv && !isspace(*mv))
1017 <                                *vn++ = *mv++;
1014 >        mv = nvalue(vv+VIEW, n);                /* use view n */
1015 >        if (vn != NULL & mv != NULL) {
1016 >                register char   *mv2 = mv;
1017 >                if (*mv2 != '-')
1018 >                        while (*mv2 && !isspace(*mv2))
1019 >                                *vn++ = *mv2++;
1020                  *vn = '\0';
1021          }
1022 <        return(specview(nvalue(vv+VIEW, n)));   /* use view n */
1022 >        return(specview(mv));
1023   }
1024  
1025  
1026 + printview(vopts)                        /* print out selected view */
1027 + register char   *vopts;
1028 + {
1029 +        extern char     *atos(), *getenv();
1030 +        char    buf[256];
1031 +        FILE    *fp;
1032 +        register char   *cp;
1033 +
1034 +        if (vopts == NULL)
1035 +                return(-1);
1036 +        fputs("VIEW=", stdout);
1037 +        do {
1038 +                if (matchword(vopts, "-vf")) {          /* expand view file */
1039 +                        vopts = sskip(vopts);
1040 +                        if (!*atos(buf, sizeof(buf), vopts))
1041 +                                return(-1);
1042 +                        if ((fp = fopen(buf, "r")) == NULL)
1043 +                                return(-1);
1044 +                        for (buf[sizeof(buf)-2] = '\n';
1045 +                                        fgets(buf, sizeof(buf), fp) != NULL &&
1046 +                                                buf[0] != '\n';
1047 +                                        buf[sizeof(buf)-2] = '\n') {
1048 +                                if (buf[sizeof(buf)-2] != '\n') {
1049 +                                        ungetc(buf[sizeof(buf)-2], fp);
1050 +                                        buf[sizeof(buf)-2] = '\0';
1051 +                                }
1052 +                                if (matchword(buf, "VIEW=") ||
1053 +                                                matchword(buf, "rview")) {
1054 +                                        for (cp = sskip(buf); *cp && *cp != '\n'; cp++)
1055 +                                                putchar(*cp);
1056 +                                }
1057 +                        }
1058 +                        fclose(fp);
1059 +                        vopts = sskip(vopts);
1060 +                } else {
1061 +                        while (isspace(*vopts))
1062 +                                vopts++;
1063 +                        putchar(' ');
1064 + #ifdef MSDOS
1065 +                        if (*vopts == '$') {            /* expand env. var. */
1066 +                                if (!*atos(buf, sizeof(buf), vopts+1))
1067 +                                        return(-1);
1068 +                                if ((cp = getenv(buf)) == NULL)
1069 +                                        return(-1);
1070 +                                fputs(cp, stdout);
1071 +                                vopts = sskip(vopts);
1072 +                        } else
1073 + #endif
1074 +                                while (*vopts && !isspace(*vopts))
1075 +                                        putchar(*vopts++);
1076 +                }
1077 +        } while (*vopts++);
1078 +        putchar('\n');
1079 +        return(0);
1080 + }
1081 +
1082 +
1083   rview(opts)                             /* run rview with first view */
1084   char    *opts;
1085   {
1086 +        char    *vw;
1087          char    combuf[512];
1088                                          /* build command */
1089 <        sprintf(combuf, "rview %s%s ", getview(0, NULL), opts);
1089 >        if ((vw = getview(0, NULL)) == NULL)
1090 >                return;
1091 >        if (sayview)
1092 >                printview(vw);
1093 >        sprintf(combuf, "rview %s%s -R %s ", vw, opts, rifname);
1094          if (rvdevice != NULL)
1095                  sprintf(combuf+strlen(combuf), "-o %s ", rvdevice);
1096          strcat(combuf, vval(OCTREE));
1097 <        if (!silent) {                  /* echo it */
1010 <                printf("\t%s\n", combuf);
1011 <                fflush(stdout);
1012 <        }
1013 <        if (noaction)
1014 <                return;
1015 <        if (system(combuf)) {           /* run it */
1097 >        if (runcom(combuf)) {           /* run it */
1098                  fprintf(stderr, "%s: error running rview\n", progname);
1099                  exit(1);
1100          }
# Line 1027 | Line 1109 | char   *opts;
1109          char    pfopts[128];
1110          char    vs[32], *vw;
1111          int     vn, mult;
1112 +        long    lastdate;
1113                                          /* get pfilt options */
1114          pfiltopts(pfopts);
1115                                          /* get resolution, reporting */
# Line 1057 | Line 1140 | char   *opts;
1140                  else
1141                          badvalue(REPORT);
1142          }
1143 <                                        /* check date on ambient file */
1144 <        if (vdef(AMBFILE)) {
1062 <                long    afdate = fdate(vval(AMBFILE));
1063 <                if (afdate >= 0 & octreedate > afdate) {
1064 <                        if (!silent)
1065 < #ifdef MSDOS
1066 <                                printf("\tdel %s\n", vval(AMBFILE));
1067 < #else
1068 <                                printf("\trm %s\n", vval(AMBFILE));
1069 < #endif
1070 <                        if (!noaction)
1071 <                                unlink(vval(AMBFILE));
1072 <                }
1073 <        }
1143 >                                        /* get update time */
1144 >        lastdate = octreedate > matdate ? octreedate : matdate;
1145                                          /* do each view */
1146          vn = 0;
1147          while ((vw = getview(vn++, vs)) != NULL) {
1148 +                if (sayview)
1149 +                        printview(vw);
1150                  if (!vs[0])
1151                          sprintf(vs, "%d", vn);
1152                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1153                                                  /* check date on picture */
1154 <                if (fdate(picfile) > octreedate)
1154 >                if (fdate(picfile) >= lastdate)
1155                          continue;
1156                                                  /* build rpict command */
1157                  sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1158 <                if (fdate(rawfile) > octreedate)        /* recover */
1158 >                if (fdate(rawfile) >= octreedate)       /* recover */
1159                          sprintf(combuf, "rpict%s%s -ro %s %s",
1160                                          rep, opts, rawfile, vval(OCTREE));
1161                  else {
# Line 1090 | Line 1163 | char   *opts;
1163                                  sprintf(combuf,
1164                                  "rpict%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1165                                                  rep, vw, opts,
1166 <                                                vval(OCTREE), rawfile);
1167 <                                if (!silent) {
1095 <                                        printf("\t%s\n", combuf);
1096 <                                        fflush(stdout);
1097 <                                }
1098 <                                if (!noaction && system(combuf)) {
1166 >                                                vval(OCTREE), overfile);
1167 >                                if (runcom(combuf)) {
1168                                          fprintf(stderr,
1169 <                        "%s: error in overture for view %s\n\t%s removed\n",
1170 <                                                progname, vs, rawfile);
1102 <                                        unlink(rawfile);
1169 >                                        "%s: error in overture for view %s\n",
1170 >                                                progname, vs);
1171                                          exit(1);
1172                                  }
1173 + #ifdef NIX
1174 +                                rmfile(overfile);
1175 + #endif
1176                          }
1177                          sprintf(combuf, "rpict%s %s %s%s %s > %s",
1178                                          rep, vw, res, opts,
1179                                          vval(OCTREE), rawfile);
1180                  }
1181 <                if (!silent) {                  /* echo rpict command */
1111 <                        printf("\t%s\n", combuf);
1112 <                        fflush(stdout);
1113 <                }
1114 <                if (!noaction && system(combuf)) {      /* run rpict */
1181 >                if (runcom(combuf)) {           /* run rpict */
1182                          fprintf(stderr, "%s: error rendering view %s\n",
1183                                          progname, vs);
1184                          exit(1);
# Line 1123 | Line 1190 | char   *opts;
1190                  else
1191                          sprintf(combuf, "pfilt%s %s > %s", pfopts,
1192                                          rawfile, picfile);
1193 <                if (!silent) {                  /* echo pfilt command */
1127 <                        printf("\t%s\n", combuf);
1128 <                        fflush(stdout);
1129 <                }
1130 <                if (!noaction && system(combuf)) {      /* run pfilt */
1193 >                if (runcom(combuf)) {           /* run pfilt */
1194                          fprintf(stderr,
1195                          "%s: error filtering view %s\n\t%s removed\n",
1196                                          progname, vs, picfile);
# Line 1135 | Line 1198 | char   *opts;
1198                          exit(1);
1199                  }
1200                                                  /* remove raw file */
1201 <                if (!silent)
1201 >                rmfile(rawfile);
1202 >        }
1203 > }
1204 >
1205 >
1206 > runcom(cs)                      /* run command */
1207 > char    *cs;
1208 > {
1209 >        if (!silent)            /* echo it */
1210 >                printf("\t%s\n", cs);
1211 >        if (noaction)
1212 >                return(0);
1213 >        fflush(stdout);         /* flush output and pass to shell */
1214 >        return(system(cs));
1215 > }
1216 >
1217 >
1218 > rmfile(fn)                      /* remove a file */
1219 > char    *fn;
1220 > {
1221 >        if (!silent)
1222   #ifdef MSDOS
1223 <                        printf("\tdel %s\n", rawfile);
1223 >                printf("\tdel %s\n", fn);
1224   #else
1225 <                        printf("\trm %s\n", rawfile);
1225 >                printf("\trm -f %s\n", fn);
1226   #endif
1227 <                if (!noaction)
1228 <                        unlink(rawfile);
1227 >        if (noaction)
1228 >                return(0);
1229 >        return(unlink(fn));
1230 > }
1231 >
1232 >
1233 > #ifdef MSDOS
1234 > setenv(vname, value)            /* set an environment variable */
1235 > char    *vname, *value;
1236 > {
1237 >        register char   *evp;
1238 >
1239 >        evp = bmalloc(strlen(vname)+strlen(value)+2);
1240 >        if (evp == NULL)
1241 >                syserr(progname);
1242 >        sprintf(evp, "%s=%s", vname, value);
1243 >        if (putenv(evp) != 0) {
1244 >                fprintf(stderr, "%s: out of environment space\n", progname);
1245 >                exit(1);
1246          }
1247 +        if (!silent)
1248 +                printf("set %s\n", evp);
1249   }
1250 + #endif
1251  
1252  
1253   badvalue(vc)                    /* report bad variable value and exit */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines