ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/dctimestep.c
Revision: 2.43
Committed: Wed Oct 23 17:00:14 2019 UTC (4 years, 4 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.42: +4 -1 lines
Log Message:
Added support for RGBE picture i/o to dctimestep

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: dctimestep.c,v 2.42 2019/08/14 21:00:14 greg Exp $";
3 #endif
4 /*
5 * Compute time-step result using Daylight Coefficient method.
6 *
7 * G. Ward
8 */
9
10 #include <ctype.h>
11 #include "platform.h"
12 #include "standard.h"
13 #include "cmatrix.h"
14 #include "platform.h"
15 #include "resolu.h"
16
17 char *progname; /* global argv[0] */
18
19 /* Sum together a set of images and write result to fout */
20 static int
21 sum_images(const char *fspec, const CMATRIX *cv, FILE *fout)
22 {
23 int myDT = DTfromHeader;
24 COLR *scanline = NULL;
25 CMATRIX *pmat = NULL;
26 int myXR=0, myYR=0;
27 int i, y;
28
29 if (cv->ncols != 1)
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;
40 /* check for zero */
41 if ((scv[RED] == 0) & (scv[GRN] == 0) & (scv[BLU] == 0) &&
42 (myDT != DTfromHeader) | (i < cv->nrows-1))
43 continue;
44 /* open next picture */
45 sprintf(fname, fspec, i);
46 if ((fp = fopen(fname, "rb")) == NULL) {
47 sprintf(errmsg, "cannot open picture '%s'", fname);
48 error(SYSTEM, errmsg);
49 }
50 dt = DTfromHeader;
51 if ((err = cm_getheader(&dt, NULL, NULL, NULL, fp)) != NULL)
52 error(USER, err);
53 if ((dt != DTrgbe) & (dt != DTxyze) ||
54 !fscnresolu(&xr, &yr, fp)) {
55 sprintf(errmsg, "file '%s' not a picture", fname);
56 error(USER, errmsg);
57 }
58 if (myDT == DTfromHeader) { /* on first one */
59 myDT = dt;
60 myXR = xr; myYR = yr;
61 scanline = (COLR *)malloc(sizeof(COLR)*myXR);
62 if (scanline == NULL)
63 error(SYSTEM, "out of memory in sum_images()");
64 pmat = cm_alloc(myYR, myXR);
65 memset(pmat->cmem, 0, sizeof(COLOR)*myXR*myYR);
66 /* finish header */
67 fputformat((char *)cm_fmt_id[myDT], fout);
68 fputc('\n', fout);
69 fflush(fout);
70 } else if ((dt != myDT) | (xr != myXR) | (yr != myYR)) {
71 sprintf(errmsg, "picture '%s' format/size mismatch",
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 (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);
92 }
93 /* sum in scanline */
94 for (x = 0; x < xr; x++, psp += 3) {
95 if (!scanline[x][EXP])
96 continue; /* skip zeroes */
97 colr_color(col, scanline[x]);
98 multcolor(col, scv);
99 addcolor(psp, col);
100 }
101 }
102 fclose(fp); /* done this picture */
103 }
104 free(scanline);
105 i = cm_write(pmat, myDT, fout); /* write picture */
106 cm_free(pmat); /* free data */
107 return(i);
108 }
109
110 /* check to see if a string contains a %d or %o specification */
111 static int
112 hasNumberFormat(const char *s)
113 {
114 if (s == NULL)
115 return(0);
116
117 while (*s) {
118 while (*s != '%')
119 if (!*s++)
120 return(0);
121 if (*++s == '%') { /* ignore "%%" */
122 ++s;
123 continue;
124 }
125 while (isdigit(*s)) /* field length */
126 ++s;
127 /* field we'll use? */
128 if ((*s == 'd') | (*s == 'i') | (*s == 'o') |
129 (*s == 'x') | (*s == 'X'))
130 return(1);
131 }
132 return(0); /* didn't find one */
133 }
134
135 int
136 main(int argc, char *argv[])
137 {
138 int skyfmt = DTfromHeader;
139 int outfmt = DTascii;
140 int headout = 1;
141 int nsteps = 0;
142 char *ofspec = NULL;
143 FILE *ofp = stdout;
144 CMATRIX *cmtx; /* component vector/matrix result */
145 char fnbuf[256];
146 int a, i;
147
148 progname = argv[0];
149 /* get options */
150 for (a = 1; a < argc && argv[a][0] == '-'; a++)
151 switch (argv[a][1]) {
152 case 'n':
153 nsteps = atoi(argv[++a]);
154 if (nsteps < 0)
155 goto userr;
156 skyfmt = nsteps ? DTascii : DTfromHeader;
157 break;
158 case 'h':
159 headout = !headout;
160 break;
161 case 'i':
162 switch (argv[a][2]) {
163 case 'f':
164 skyfmt = DTfloat;
165 break;
166 case 'd':
167 skyfmt = DTdouble;
168 break;
169 case 'a':
170 skyfmt = DTascii;
171 break;
172 default:
173 goto userr;
174 }
175 break;
176 case 'o':
177 switch (argv[a][2]) {
178 case '\0': /* output specification (not format) */
179 ofspec = argv[++a];
180 break;
181 case 'f':
182 outfmt = DTfloat;
183 break;
184 case 'd':
185 outfmt = DTdouble;
186 break;
187 case 'a':
188 outfmt = DTascii;
189 break;
190 case 'c':
191 outfmt = DTrgbe;
192 break;
193 default:
194 goto userr;
195 }
196 break;
197 default:
198 goto userr;
199 }
200 if ((argc-a < 1) | (argc-a > 4))
201 goto userr;
202
203 if (argc-a > 2) { /* VTDs expression */
204 CMATRIX *smtx, *Dmat, *Tmat, *imtx;
205 const char *ccp;
206 /* get sky vector/matrix */
207 smtx = cm_load(argv[a+3], 0, nsteps, skyfmt);
208 nsteps = smtx->ncols;
209 /* load BSDF */
210 if (argv[a+1][0] != '!' &&
211 (ccp = strrchr(argv[a+1], '.')) != NULL &&
212 !strcasecmp(ccp+1, "XML"))
213 Tmat = cm_loadBTDF(argv[a+1]);
214 else
215 Tmat = cm_load(argv[a+1], 0, 0, DTfromHeader);
216 /* load Daylight matrix */
217 Dmat = cm_load(argv[a+2], Tmat->ncols,
218 smtx->nrows, DTfromHeader);
219 /* multiply vector through */
220 imtx = cm_multiply(Dmat, smtx);
221 cm_free(Dmat); cm_free(smtx);
222 cmtx = cm_multiply(Tmat, imtx);
223 cm_free(Tmat);
224 cm_free(imtx);
225 } else { /* sky vector/matrix only */
226 cmtx = cm_load(argv[a+1], 0, nsteps, skyfmt);
227 nsteps = cmtx->ncols;
228 }
229 /* prepare output stream */
230 if ((ofspec != NULL) & (nsteps == 1) && hasNumberFormat(ofspec)) {
231 sprintf(fnbuf, ofspec, 1);
232 ofspec = fnbuf;
233 }
234 if (ofspec != NULL && !hasNumberFormat(ofspec)) {
235 if ((ofp = fopen(ofspec, "w")) == NULL) {
236 fprintf(stderr, "%s: cannot open '%s' for output\n",
237 progname, ofspec);
238 return(1);
239 }
240 ofspec = NULL; /* only need to open once */
241 }
242 if (hasNumberFormat(argv[a])) { /* generating image(s) */
243 if (ofspec == NULL) {
244 SET_FILE_BINARY(ofp);
245 newheader("RADIANCE", ofp);
246 printargs(argc, argv, ofp);
247 fputnow(ofp);
248 }
249 if (nsteps > 1) /* multiple output frames? */
250 for (i = 0; i < nsteps; i++) {
251 CMATRIX *cvec = cm_column(cmtx, i);
252 if (ofspec != NULL) {
253 sprintf(fnbuf, ofspec, i);
254 if ((ofp = fopen(fnbuf, "wb")) == NULL) {
255 fprintf(stderr,
256 "%s: cannot open '%s' for output\n",
257 progname, fnbuf);
258 return(1);
259 }
260 newheader("RADIANCE", ofp);
261 printargs(argc, argv, ofp);
262 fputnow(ofp);
263 }
264 fprintf(ofp, "FRAME=%d\n", i);
265 if (!sum_images(argv[a], cvec, ofp))
266 return(1);
267 if (ofspec != NULL) {
268 if (fclose(ofp) == EOF) {
269 fprintf(stderr,
270 "%s: error writing to '%s'\n",
271 progname, fnbuf);
272 return(1);
273 }
274 ofp = stdout;
275 }
276 cm_free(cvec);
277 }
278 else if (!sum_images(argv[a], cmtx, ofp))
279 return(1);
280 } else { /* generating vector/matrix */
281 CMATRIX *Vmat = cm_load(argv[a], 0, cmtx->nrows, DTfromHeader);
282 CMATRIX *rmtx = cm_multiply(Vmat, cmtx);
283 cm_free(Vmat);
284 if (ofspec != NULL) { /* multiple vector files? */
285 const char *wtype = (outfmt==DTascii) ? "w" : "wb";
286 for (i = 0; i < nsteps; i++) {
287 CMATRIX *rvec = cm_column(rmtx, i);
288 sprintf(fnbuf, ofspec, i);
289 if ((ofp = fopen(fnbuf, wtype)) == NULL) {
290 fprintf(stderr,
291 "%s: cannot open '%s' for output\n",
292 progname, fnbuf);
293 return(1);
294 }
295 #ifdef getc_unlocked
296 flockfile(ofp);
297 #endif
298 if (headout) { /* header output */
299 newheader("RADIANCE", ofp);
300 printargs(argc, argv, ofp);
301 fputnow(ofp);
302 fprintf(ofp, "FRAME=%d\n", i);
303 fprintf(ofp, "NROWS=%d\n", rvec->nrows);
304 fputs("NCOLS=1\nNCOMP=3\n", ofp);
305 if ((outfmt == 'f') | (outfmt == 'd'))
306 fputendian(ofp);
307 fputformat((char *)cm_fmt_id[outfmt], ofp);
308 fputc('\n', ofp);
309 }
310 cm_write(rvec, outfmt, ofp);
311 if (fclose(ofp) == EOF) {
312 fprintf(stderr,
313 "%s: error writing to '%s'\n",
314 progname, fnbuf);
315 return(1);
316 }
317 ofp = stdout;
318 cm_free(rvec);
319 }
320 } else {
321 #ifdef getc_unlocked
322 flockfile(ofp);
323 #endif
324 if (outfmt != DTascii)
325 SET_FILE_BINARY(ofp);
326 if (headout) { /* header output */
327 newheader("RADIANCE", ofp);
328 printargs(argc, argv, ofp);
329 fputnow(ofp);
330 fprintf(ofp, "NROWS=%d\n", rmtx->nrows);
331 fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
332 fputs("NCOMP=3\n", ofp);
333 if ((outfmt == 'f') | (outfmt == 'd'))
334 fputendian(ofp);
335 fputformat((char *)cm_fmt_id[outfmt], ofp);
336 fputc('\n', ofp);
337 }
338 cm_write(rmtx, outfmt, ofp);
339 }
340 cm_free(rmtx);
341 }
342 if (fflush(ofp) == EOF) { /* final clean-up */
343 fprintf(stderr, "%s: write error on output\n", progname);
344 return(1);
345 }
346 cm_free(cmtx);
347 return(0);
348 userr:
349 fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] DCspec [skyf]\n",
350 progname);
351 fprintf(stderr, " or: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] Vspec Tbsdf Dmat.dat [skyf]\n",
352 progname);
353 return(1);
354 }