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

Comparing ray/src/util/dctimestep.c (file contents):
Revision 2.30 by greg, Sat Feb 8 01:28:06 2014 UTC vs.
Revision 2.37 by schorsch, Sun Mar 6 01:13:18 2016 UTC

# Line 8 | Line 8 | static const char RCSid[] = "$Id$";
8   */
9  
10   #include <ctype.h>
11 + #include "platform.h"
12   #include "standard.h"
13   #include "cmatrix.h"
14   #include "platform.h"
# Line 33 | Line 34 | sum_images(const char *fspec, const CMATRIX *cv, FILE
34                  FILE            *fp;
35                  int             dt, xr, yr;
36                  COLORV          *psp;
37 +                char            *err;
38                                                          /* check for zero */
39                  if ((scv[RED] == 0) & (scv[GRN] == 0) & (scv[BLU] == 0) &&
40                                  (myDT != DTfromHeader) | (i < cv->nrows-1))
41                          continue;
42                                                          /* open next picture */
43                  sprintf(fname, fspec, i);
44 <                if ((fp = fopen(fname, "r")) == NULL) {
44 >                if ((fp = fopen(fname, "rb")) == NULL) {
45                          sprintf(errmsg, "cannot open picture '%s'", fname);
46                          error(SYSTEM, errmsg);
47                  }
48 <                SET_FILE_BINARY(fp);
49 <                dt = getDTfromHeader(fp);
48 >                dt = DTfromHeader;
49 >                if ((err = cm_getheader(&dt, NULL, NULL, fp)) != NULL)
50 >                        error(USER, err);
51                  if ((dt != DTrgbe) & (dt != DTxyze) ||
52                                  !fscnresolu(&xr, &yr, fp)) {
53                          sprintf(errmsg, "file '%s' not a picture", fname);
# Line 117 | Line 120 | hasNumberFormat(const char *s)
120   int
121   main(int argc, char *argv[])
122   {
123 <        int             skyfmt = DTascii;
123 >        int             skyfmt = DTfromHeader;
124          int             outfmt = DTascii;
125 <        int             nsteps = 1;
125 >        int             headout = 1;
126 >        int             nsteps = 0;
127          char            *ofspec = NULL;
128          FILE            *ofp = stdout;
129          CMATRIX         *cmtx;          /* component vector/matrix result */
# Line 132 | Line 136 | main(int argc, char *argv[])
136                  switch (argv[a][1]) {
137                  case 'n':
138                          nsteps = atoi(argv[++a]);
139 <                        if (nsteps <= 0)
139 >                        if (nsteps < 0)
140                                  goto userr;
141 +                        skyfmt = nsteps ? DTascii : DTfromHeader;
142                          break;
143 +                case 'h':
144 +                        headout = !headout;
145 +                        break;
146                  case 'i':
147                          switch (argv[a][2]) {
148                          case 'f':
# Line 175 | Line 183 | main(int argc, char *argv[])
183                  goto userr;
184  
185          if (argc-a > 2) {                       /* VTDs expression */
186 <                CMATRIX *smtx, *Dmat, *Tmat, *imtx;
186 >                CMATRIX         *smtx, *Dmat, *Tmat, *imtx;
187 >                const char      *ccp;
188                                                  /* get sky vector/matrix */
189                  smtx = cm_load(argv[a+3], 0, nsteps, skyfmt);
190 +                nsteps = smtx->ncols;
191                                                  /* load BSDF */
192 <                Tmat = cm_loadBTDF(argv[a+1]);
192 >                if (argv[a+1][0] != '!' &&
193 >                                (ccp = strrchr(argv[a+1], '.')) != NULL &&
194 >                                !strcasecmp(ccp+1, "XML"))
195 >                        Tmat = cm_loadBTDF(argv[a+1]);
196 >                else
197 >                        Tmat = cm_load(argv[a+1], 0, 0, DTfromHeader);
198                                                  /* load Daylight matrix */
199 <                Dmat = cm_load(argv[a+2], Tmat==NULL ? 0 : Tmat->ncols,
199 >                Dmat = cm_load(argv[a+2], Tmat->ncols,
200                                          smtx->nrows, DTfromHeader);
201                                                  /* multiply vector through */
202                  imtx = cm_multiply(Dmat, smtx);
# Line 191 | Line 206 | main(int argc, char *argv[])
206                  cm_free(imtx);
207          } else {                                /* sky vector/matrix only */
208                  cmtx = cm_load(argv[a+1], 0, nsteps, skyfmt);
209 +                nsteps = cmtx->ncols;
210          }
211                                                  /* prepare output stream */
212          if ((ofspec != NULL) & (nsteps == 1) && hasNumberFormat(ofspec)) {
# Line 258 | Line 274 | main(int argc, char *argv[])
274                                                          progname, fnbuf);
275                                          return(1);
276                                  }
277 + #ifdef getc_unlocked
278 +                                flockfile(ofp);
279 + #endif
280 +                                if (headout) {  /* header output */
281 +                                        newheader("RADIANCE", ofp);
282 +                                        printargs(argc, argv, ofp);
283 +                                        fputnow(ofp);
284 +                                        fprintf(ofp, "FRAME=%d\n", i+1);
285 +                                        fprintf(ofp, "NROWS=%d\n", rvec->nrows);
286 +                                        fputs("NCOLS=1\nNCOMP=3\n", ofp);
287 +                                        fputformat((char *)cm_fmt_id[outfmt], ofp);
288 +                                        fputc('\n', ofp);
289 +                                }
290                                  cm_write(rvec, outfmt, ofp);
291                                  if (fclose(ofp) == EOF) {
292                                          fprintf(stderr,
# Line 269 | Line 298 | main(int argc, char *argv[])
298                                  cm_free(rvec);
299                          }
300                  } else {
301 + #ifdef getc_unlocked
302 +                        flockfile(ofp);
303 + #endif
304                          if (outfmt != DTascii)
305                                  SET_FILE_BINARY(ofp);
306 <                        if (rmtx->ncols > 1) {  /* header if actual matrix */
306 >                        if (headout) {          /* header output */
307                                  newheader("RADIANCE", ofp);
308                                  printargs(argc, argv, ofp);
309                                  fputnow(ofp);
310 +                                fprintf(ofp, "NROWS=%d\n", rmtx->nrows);
311 +                                fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
312 +                                fputs("NCOMP=3\n", ofp);
313                                  fputformat((char *)cm_fmt_id[outfmt], ofp);
314                                  fputc('\n', ofp);
315                          }
# Line 289 | Line 324 | main(int argc, char *argv[])
324          cm_free(cmtx);
325          return(0);
326   userr:
327 <        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d}][-o{f|d}] DCspec [skyf]\n",
327 >        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] DCspec [skyf]\n",
328                                  progname);
329 <        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-i{f|d}][-o{f|d}] Vspec Tbsdf.xml Dmat.dat [skyf]\n",
329 >        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] Vspec Tbsdf Dmat.dat [skyf]\n",
330                                  progname);
331          return(1);
332   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines