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.7 by greg, Tue Apr 6 17:21:04 1993 UTC vs.
Revision 2.12 by greg, Fri Jun 25 17:35:49 1993 UTC

# Line 105 | Line 105 | 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 */
# Line 423 | Line 424 | checkfiles()                   /* check for existence and modified tim
424                                  vnam(OCTREE), vnam(SCENE));
425                  exit(1);
426          }
427 +        matdate = -1;
428 +        if (vdef(MATERIAL))
429 +                matdate = checklast(vval(MATERIAL));
430   }      
431  
432  
# Line 561 | Line 565 | checkambfile()                 /* check date on ambient file */
565   {
566          long    afdate;
567  
568 <        if (vdef(AMBFILE)) {
569 <                afdate = fdate(vval(AMBFILE));
570 <                if (afdate >= 0 & octreedate > afdate)
571 <                        rmfile(vval(AMBFILE));
572 <        }
568 >        if (!vdef(AMBFILE))
569 >                return;
570 >        if ((afdate = fdate(vval(AMBFILE))) < 0)
571 >                return;
572 >        if (octreedate > afdate | matdate > afdate)
573 >                rmfile(vval(AMBFILE));
574   }
575  
576  
# Line 784 | Line 789 | xferopts(ro)                           /* transfer options if indicated */
789   char    *ro;
790   {
791          int     fd, n;
792 +        register char   *cp;
793          
794          n = strlen(ro);
795          if (n < 2)
796                  return;
797          if (vdef(OPTFILE)) {
798 <                if ((fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666)) == -1)
798 >                for (cp = ro; cp[1]; cp++)
799 >                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
800 >                                *cp = '\n';
801 >                        else
802 >                                *cp = cp[1];
803 >                *cp = '\n';
804 >                fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666);
805 >                if (fd < 0 || write(fd, ro, n) != n || close(fd) < 0)
806                          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);
807                  sprintf(ro, " \"^%s\"", vval(OPTFILE));
808          }
809   #ifdef MSDOS
810          else if (n > 50) {
811 <                register char   *evp = bmalloc(n+6);
803 <                if (evp == NULL)
804 <                        syserr(progname);
805 <                strcpy(evp, "ROPT=");
806 <                strcat(evp, ro);
807 <                if (putenv(evp) != 0) {
808 <                        fprintf(stderr, "%s: out of environment space\n",
809 <                                        progname);
810 <                        exit(1);
811 <                }
811 >                setenv("ROPT", ro+1);
812                  strcpy(ro, " $ROPT");
813          }
814   #endif
# Line 823 | Line 823 | register char  *po;
823                  po = addarg(po, "-1 -e");
824                  po = addarg(po, vval(EXPOSURE));
825          }
826 <        if (vscale(QUALITY) == HIGH)
827 <                po = addarg(po, "-r .65");
826 >        switch (vscale(QUALITY)) {
827 >        case MEDIUM:
828 >                po = addarg(po, "-r 1");
829 >                break;
830 >        case HIGH:
831 >                po = addarg(po, "-m .15");
832 >                break;
833 >        }
834          if (vdef(PFILT))
835                  po = addarg(po, vval(PFILT));
836   }
# Line 948 | Line 954 | register char  *vs;
954                          cp += strlen(cp);
955                  }
956          }
957 <                                        /* append any additional options */
958 <        strcpy(cp, vs);
957 >        strcpy(cp, vs);                 /* append any additional options */
958 > #ifdef MSDOS
959 >        if (strlen(viewopts) > 40) {
960 >                setenv("VIEW", viewopts);
961 >                return("$VIEW");
962 >        }
963 > #endif
964          return(viewopts);
965   }
966  
# Line 957 | Line 968 | register char  *vs;
968   char *
969   getview(n, vn)                          /* get view n, or NULL if none */
970   int     n;
971 < char    *vn;
971 > char    *vn;            /* returned view name */
972   {
973 <        register char   *mv;
973 >        register char   *mv = NULL;
974  
975 <        if (viewselect != NULL) {
975 >        if (viewselect != NULL) {               /* command-line selected */
976                  if (n)                          /* only do one */
977                          return(NULL);
978                  if (viewselect[0] == '-') {     /* already specified */
# Line 980 | Line 991 | char   *vn;
991                                  return(specview(mv));
992                  return(specview(viewselect));   /* standard view? */
993          }
994 <        if (vn != NULL && (mv = nvalue(vv+VIEW, n)) != NULL) {
994 >        mv = nvalue(vv+VIEW, n);                /* use view n */
995 >        if (vn != NULL & mv != NULL) {
996                  if (*mv != '-')
997                          while (*mv && !isspace(*mv))
998                                  *vn++ = *mv++;
999                  *vn = '\0';
1000          }
1001 <        return(specview(nvalue(vv+VIEW, n)));   /* use view n */
1001 >        return(specview(mv));
1002   }
1003  
1004  
# Line 1051 | Line 1063 | char   *opts;
1063                          sprintf(vs, "%d", vn);
1064                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1065                                                  /* check date on picture */
1066 <                if (fdate(picfile) > octreedate)
1066 >                if (fdate(picfile) >= octreedate)
1067                          continue;
1068                                                  /* build rpict command */
1069                  sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1070 <                if (fdate(rawfile) > octreedate)        /* recover */
1070 >                if (fdate(rawfile) >= octreedate)       /* recover */
1071                          sprintf(combuf, "rpict%s%s -ro %s %s",
1072                                          rep, opts, rawfile, vval(OCTREE));
1073                  else {
# Line 1128 | Line 1140 | char   *fn;
1140                  return(0);
1141          return(unlink(fn));
1142   }
1143 +
1144 +
1145 + #ifdef MSDOS
1146 + setenv(vname, value)            /* set an environment variable */
1147 + char    *vname, *value;
1148 + {
1149 +        register char   *evp;
1150 +
1151 +        evp = bmalloc(strlen(vname)+strlen(value)+2);
1152 +        if (evp == NULL)
1153 +                syserr(progname);
1154 +        sprintf(evp, "%s=%s", vname, value);
1155 +        if (putenv(evp) != 0) {
1156 +                fprintf(stderr, "%s: out of environment space\n", progname);
1157 +                exit(1);
1158 +        }
1159 +        if (!silent)
1160 +                printf("set %s\n", evp);
1161 + }
1162 + #endif
1163  
1164  
1165   badvalue(vc)                    /* report bad variable value and exit */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines