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.4 by greg, Fri Mar 12 13:37:03 1993 UTC vs.
Revision 2.12 by greg, Fri Jun 25 17:35:49 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 */
# Line 159 | Line 167 | char   *argv[];
167                                  /* print all values if requested */
168          if (explicate)
169                  printvals();
170 <                                /* run simulation */
170 >                                /* build octree */
171          oconv();
172 +                                /* check date on ambient file */
173 +        checkambfile();
174 +                                /* run simulation */
175          renderopts(ropts);
176          xferopts(ropts);
177          if (rvdevice != NULL)
# Line 413 | 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 547 | Line 561 | register char  *oo;
561   }
562  
563  
564 + checkambfile()                  /* check date on ambient file */
565 + {
566 +        long    afdate;
567 +
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 +
577   double
578   ambval()                                /* compute ambient value */
579   {
# Line 664 | Line 691 | register char  *op;
691          else
692                  op = addarg(op, "-ds .3");
693          op = addarg(op, "-dt .1 -dc .5 -dr 1 -sj .7 -st .15");
694 <        sprintf(op, " -ab %d", overture=vint(INDIRECT));
695 <        op += strlen(op);
694 >        if (overture = vint(INDIRECT)) {
695 >                sprintf(op, " -ab %d", overture);
696 >                op += strlen(op);
697 >        }
698          if (vdef(AMBFILE)) {
699                  sprintf(op, " -af %s", vval(AMBFILE));
700                  op += strlen(op);
# Line 760 | 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));
770                if (write(fd, ro+1, n-1) != n-1)
771                        syserr(vval(OPTFILE));
772                write(fd, "\n", 1);
773                close(fd);
807                  sprintf(ro, " \"^%s\"", vval(OPTFILE));
808          }
809   #ifdef MSDOS
810          else if (n > 50) {
811 <                register char   *evp = bmalloc(n+6);
779 <                if (evp == NULL)
780 <                        syserr(progname);
781 <                strcpy(evp, "ROPT=");
782 <                strcat(evp, ro);
783 <                if (putenv(evp) != 0) {
784 <                        fprintf(stderr, "%s: out of environment space\n",
785 <                                        progname);
786 <                        exit(1);
787 <                }
811 >                setenv("ROPT", ro+1);
812                  strcpy(ro, " $ROPT");
813          }
814   #endif
# Line 799 | 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 924 | 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 933 | 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 956 | 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 1020 | Line 1056 | char   *opts;
1056                  else
1057                          badvalue(REPORT);
1058          }
1023                                        /* check date on ambient file */
1024        if (vdef(AMBFILE)) {
1025                long    afdate = fdate(vval(AMBFILE));
1026                if (afdate >= 0 & octreedate > afdate)
1027                        rmfile(vval(AMBFILE));
1028        }
1059                                          /* do each view */
1060          vn = 0;
1061          while ((vw = getview(vn++, vs)) != NULL) {
# Line 1033 | 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 1045 | Line 1075 | char   *opts;
1075                                  sprintf(combuf,
1076                                  "rpict%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1077                                                  rep, vw, opts,
1078 <                                                vval(OCTREE), rawfile);
1078 >                                                vval(OCTREE), overfile);
1079                                  if (runcom(combuf)) {
1080                                          fprintf(stderr,
1081 <                        "%s: error in overture for view %s\n\t%s removed\n",
1082 <                                                progname, vs, rawfile);
1053 <                                        unlink(rawfile);
1081 >                                        "%s: error in overture for view %s\n",
1082 >                                                progname, vs);
1083                                          exit(1);
1084                                  }
1085 + #ifdef NIX
1086 +                                rmfile(overfile);
1087 + #endif
1088                          }
1089                          sprintf(combuf, "rpict%s %s %s%s %s > %s",
1090                                          rep, vw, res, opts,
# Line 1108 | 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