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.38 by greg, Tue Apr 10 23:22:42 2018 UTC vs.
Revision 2.45 by greg, Wed Mar 25 01:51:09 2020 UTC

# Line 30 | Line 30 | sum_images(const char *fspec, const CMATRIX *cv, FILE
30                  error(INTERNAL, "expected vector in sum_images()");
31          for (i = 0; i < cv->nrows; i++) {
32                  const COLORV    *scv = cv_lval(cv,i);
33 +                int             flat_file = 0;
34                  char            fname[1024];
35                  FILE            *fp;
36 +                long            data_start;
37                  int             dt, xr, yr;
38                  COLORV          *psp;
39                  char            *err;
# Line 46 | Line 48 | sum_images(const char *fspec, const CMATRIX *cv, FILE
48                          error(SYSTEM, errmsg);
49                  }
50                  dt = DTfromHeader;
51 <                if ((err = cm_getheader(&dt, NULL, NULL, fp)) != NULL)
51 >                if ((err = cm_getheader(&dt, NULL, NULL, NULL, NULL, fp)) != NULL)
52                          error(USER, err);
53                  if ((dt != DTrgbe) & (dt != DTxyze) ||
54                                  !fscnresolu(&xr, &yr, fp)) {
# Line 70 | Line 72 | sum_images(const char *fspec, const CMATRIX *cv, FILE
72                                          fname);
73                          error(USER, errmsg);
74                  }
75 +                                                        /* flat file check */
76 +                if ((data_start = ftell(fp)) > 0 && fseek(fp, 0L, SEEK_END) == 0) {
77 +                        flat_file = (ftell(fp) == data_start + sizeof(COLR)*xr*yr);
78 +                        if (fseek(fp, data_start, SEEK_SET) < 0) {
79 +                                sprintf(errmsg, "cannot seek on picture '%s'", fname);
80 +                                error(SYSTEM, errmsg);
81 +                        }
82 +                }
83                  psp = pmat->cmem;
84                  for (y = 0; y < yr; y++) {              /* read it in */
85                          COLOR   col;
86                          int     x;
87 <                        if (freadcolrs(scanline, xr, fp) < 0) {
87 >                        if (flat_file ? getbinary(scanline, sizeof(COLR), xr, fp) != xr :
88 >                                        freadcolrs(scanline, xr, fp) < 0) {
89                                  sprintf(errmsg, "error reading picture '%s'",
90                                                  fname);
91                                  error(SYSTEM, errmsg);
# Line 176 | Line 187 | main(int argc, char *argv[])
187                          case 'a':
188                                  outfmt = DTascii;
189                                  break;
190 +                        case 'c':
191 +                                outfmt = DTrgbe;
192 +                                break;
193                          default:
194                                  goto userr;
195                          }
# Line 226 | Line 240 | main(int argc, char *argv[])
240                  ofspec = NULL;                  /* only need to open once */
241          }
242          if (hasNumberFormat(argv[a])) {         /* generating image(s) */
243 +                if (outfmt != DTrgbe) {
244 +                        error(WARNING, "changing output type to -oc");
245 +                        outfmt = DTrgbe;
246 +                }
247                  if (ofspec == NULL) {
248                          SET_FILE_BINARY(ofp);
249                          newheader("RADIANCE", ofp);
# Line 236 | Line 254 | main(int argc, char *argv[])
254                          for (i = 0; i < nsteps; i++) {
255                                  CMATRIX *cvec = cm_column(cmtx, i);
256                                  if (ofspec != NULL) {
257 <                                        sprintf(fnbuf, ofspec, i+1);
257 >                                        sprintf(fnbuf, ofspec, i);
258                                          if ((ofp = fopen(fnbuf, "wb")) == NULL) {
259                                                  fprintf(stderr,
260                                          "%s: cannot open '%s' for output\n",
# Line 247 | Line 265 | main(int argc, char *argv[])
265                                          printargs(argc, argv, ofp);
266                                          fputnow(ofp);
267                                  }
268 <                                fprintf(ofp, "FRAME=%d\n", i+1);
268 >                                fprintf(ofp, "FRAME=%d\n", i);
269                                  if (!sum_images(argv[a], cvec, ofp))
270                                          return(1);
271                                  if (ofspec != NULL) {
# Line 271 | Line 289 | main(int argc, char *argv[])
289                          const char      *wtype = (outfmt==DTascii) ? "w" : "wb";
290                          for (i = 0; i < nsteps; i++) {
291                                  CMATRIX *rvec = cm_column(rmtx, i);
292 <                                sprintf(fnbuf, ofspec, i+1);
292 >                                sprintf(fnbuf, ofspec, i);
293                                  if ((ofp = fopen(fnbuf, wtype)) == NULL) {
294                                          fprintf(stderr,
295                                          "%s: cannot open '%s' for output\n",
# Line 285 | Line 303 | main(int argc, char *argv[])
303                                          newheader("RADIANCE", ofp);
304                                          printargs(argc, argv, ofp);
305                                          fputnow(ofp);
306 <                                        fprintf(ofp, "FRAME=%d\n", i+1);
306 >                                        fprintf(ofp, "FRAME=%d\n", i);
307                                          fprintf(ofp, "NROWS=%d\n", rvec->nrows);
308                                          fputs("NCOLS=1\nNCOMP=3\n", ofp);
309 +                                        if ((outfmt == 'f') | (outfmt == 'd'))
310 +                                                fputendian(ofp);
311                                          fputformat((char *)cm_fmt_id[outfmt], ofp);
312                                          fputc('\n', ofp);
313                                  }
# Line 314 | Line 334 | main(int argc, char *argv[])
334                                  fprintf(ofp, "NROWS=%d\n", rmtx->nrows);
335                                  fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
336                                  fputs("NCOMP=3\n", ofp);
337 +                                if ((outfmt == 'f') | (outfmt == 'd'))
338 +                                        fputendian(ofp);
339                                  fputformat((char *)cm_fmt_id[outfmt], ofp);
340                                  fputc('\n', ofp);
341                          }
# Line 328 | Line 350 | main(int argc, char *argv[])
350          cm_free(cmtx);
351          return(0);
352   userr:
353 <        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] DCspec [skyf]\n",
353 >        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d|c}] DCspec [skyf]\n",
354                                  progname);
355 <        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] Vspec Tbsdf Dmat.dat [skyf]\n",
355 >        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d|c}] Vspec Tbsdf Dmat.dat [skyf]\n",
356                                  progname);
357          return(1);
358   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines