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.4 by greg, Fri Jun 19 14:24:06 2009 UTC vs.
Revision 2.17 by greg, Fri Apr 15 18:43:57 2011 UTC

# Line 10 | Line 10 | static const char RCSid[] = "$Id$";
10   #include <ctype.h>
11   #include "standard.h"
12   #include "platform.h"
13 + #include "paths.h"
14   #include "color.h"
15   #include "resolu.h"
16   #include "bsdf.h"
17 + #include "bsdf_m.h"
18  
19   char    *progname;                      /* global argv[0] */
20  
# Line 38 | Line 40 | cm_alloc(int nrows, int ncols)
40          CMATRIX *cm;
41  
42          if ((nrows <= 0) | (ncols <= 0))
43 <                return(NULL);
43 >                error(USER, "attempt to create empty matrix");
44          cm = (CMATRIX *)malloc(sizeof(CMATRIX) +
45                                  3*sizeof(COLORV)*(nrows*ncols - 1));
46          if (cm == NULL)
# Line 108 | Line 110 | cm_load(const char *fname, int nrows, int ncols, int d
110          CMATRIX *cm;
111          FILE    *fp = stdin;
112  
113 +        if (ncols <= 0)
114 +                error(USER, "Non-positive number of columns");
115          if (fname == NULL)
116                  fname = "<stdin>";
117          else if ((fp = fopen(fname, "r")) == NULL) {
# Line 160 | Line 164 | cm_load(const char *fname, int nrows, int ncols, int d
164                  int     maxrow = (nrows > 0 ? nrows : 32000);
165                  int     r, c;
166                  for (r = 0; r < maxrow; r++) {
167 <                    if (r >= cm->nrows)         /* need more space? */
167 >                    if (r >= cm->nrows)                 /* need more space? */
168                          cm = cm_resize(cm, 2*cm->nrows);
169                      for (c = 0; c < ncols; c++) {
170                          COLORV  *cv = cm_lval(cm,r,c);
171                          if (fscanf(fp, COLSPEC, cv, cv+1, cv+2) != 3)
172 <                                if ((nrows <= 0) & (r > 0) & (c == 0)) {
172 >                                if ((nrows <= 0) & (r > 0) & !c) {
173                                          cm = cm_resize(cm, maxrow=r);
174                                          break;
175                                  } else
# Line 193 | Line 197 | cm_load(const char *fname, int nrows, int ncols, int d
197                                          if (nread == cm->nrows*cm->ncols)
198                                                          /* need more space? */
199                                                  cm = cm_resize(cm, 2*cm->nrows);
200 <                                        else if (nread % cm->ncols == 0)
200 >                                        else if (nread && !(nread % cm->ncols))
201                                                          /* seem to be  done */
202                                                  cm = cm_resize(cm, nread/cm->ncols);
203                                          else            /* ended mid-row */
# Line 289 | Line 293 | cm_print(const CMATRIX *cm, FILE *fp)
293          }
294   }
295  
296 < /* convert a BSDF to our matrix representation */
296 > /* Convert a BSDF to our matrix representation */
297   static CMATRIX *
298 < cm_bsdf(const struct BSDF_data *bsdf)
298 > cm_bsdf(const COLOR bsdfLamb, const COLOR specCol, const SDMat *bsdf)
299   {
300          CMATRIX *cm = cm_alloc(bsdf->nout, bsdf->ninc);
297        COLORV  *mp = cm->cmem;
301          int     nbadohm = 0;
302          int     nneg = 0;
303          int     r, c;
304 <        
305 <        for (r = 0; r < cm->nrows; r++)
306 <                for (c = 0; c < cm->ncols; c++, mp += 3) {
307 <                        float   f = BSDF_value(bsdf,c,r);
308 <                        float   dom = getBSDF_incohm(bsdf,c);
309 <                        FVECT   v;
310 <                        
311 <                        if (f <= .0) {
304 >                                        /* reciprocity is "transparent" */
305 >        for (c = 0; c < cm->ncols; c++) {
306 >                const double    dom = mBSDF_incohm(bsdf,c);
307 >                                        /* projected solid angle */
308 >                nbadohm += (dom <= 0);
309 >
310 >                for (r = 0; r < cm->nrows; r++) {
311 >                        float   f = mBSDF_value(bsdf,c,r);
312 >                        COLORV  *mp = cm_lval(cm,r,c);
313 >                                        /* check BSDF value */
314 >                        if ((f <= 0) | (dom <= 0)) {
315                                  nneg += (f < -FTINY);
316 <                                continue;
316 >                                f = .0f;
317                          }
318 <                        if (dom <= .0) {
319 <                                nbadohm++;
320 <                                continue;
321 <                        }
316 <                        if (!getBSDF_incvec(v,bsdf,c) || v[2] > FTINY)
317 <                                error(USER, "illegal incoming BTDF direction");
318 <                                
319 <                        mp[0] = mp[1] = mp[2] = f * dom * -v[2];
318 >                        copycolor(mp, specCol);
319 >                        scalecolor(mp, f);
320 >                        addcolor(mp, bsdfLamb);
321 >                        scalecolor(mp, dom);
322                  }
323 <        if (nneg || nbadohm) {
323 >        }
324 >        if (nneg | nbadohm) {
325                  sprintf(errmsg,
326                      "BTDF has %d negatives and %d bad incoming solid angles",
327                                  nneg, nbadohm);
# Line 327 | Line 330 | cm_bsdf(const struct BSDF_data *bsdf)
330          return(cm);
331   }
332  
333 + /* Load and convert a matrix BSDF from the given XML file */
334 + static CMATRIX *
335 + cm_loadBSDF(char *fname)
336 + {
337 +        CMATRIX *Tmat;
338 +        char    *fpath;
339 +        SDError ec;
340 +        SDData  myBSDF;
341 +        COLOR   bsdfLamb, specCol;
342 +                                        /* find path to BSDF file */
343 +        fpath = getpath(fname, getrlibpath(), R_OK);
344 +        if (fpath == NULL) {
345 +                sprintf(errmsg, "cannot find BSDF file '%s'", fname);
346 +                error(USER, errmsg);
347 +        }
348 +        SDclearBSDF(&myBSDF, fname);    /* load XML and check type */
349 +        ec = SDloadFile(&myBSDF, fpath);
350 +        if (ec)
351 +                error(USER, transSDError(ec));
352 +        if (myBSDF.tf == NULL || myBSDF.tf->ncomp != 1 ||
353 +                        myBSDF.tf->comp[0].func != &SDhandleMtx) {
354 +                sprintf(errmsg, "unsupported BSDF '%s'", fpath);
355 +                error(USER, errmsg);
356 +        }
357 +                                        /* convert BTDF to matrix */
358 +        ccy2rgb(&myBSDF.tLamb.spec, myBSDF.tLamb.cieY/PI, bsdfLamb);
359 +        ccy2rgb(&myBSDF.tf->comp[0].cspec[0], 1., specCol);
360 +        Tmat = cm_bsdf(bsdfLamb, specCol, (SDMat *)myBSDF.tf->comp[0].dist);
361 +                                        /* free BSDF and return */
362 +        SDfreeBSDF(&myBSDF);
363 +        return(Tmat);
364 + }
365 +
366   /* Sum together a set of images and write result to stdout */
367   static int
368 < sum_images(const char *fspec, const CMATRIX *cv)
368 > sum_images(const char *fspec, const CMATRIX *cv, FILE *fout)
369   {
370          int     myDT = DTfromHeader;
371          CMATRIX *pmat;
# Line 345 | Line 381 | sum_images(const char *fspec, const CMATRIX *cv)
381                  FILE            *fp;
382                  int             dt, xr, yr;
383                  COLORV          *psp;
384 +                                                        /* check for zero */
385 +                if ((scv[RED] == 0) & (scv[GRN] == 0) & (scv[BLU] == 0))
386 +                        continue;
387                                                          /* open next picture */
388                  sprintf(fname, fspec, i);
389                  if ((fp = fopen(fname, "r")) == NULL) {
# Line 367 | Line 406 | sum_images(const char *fspec, const CMATRIX *cv)
406                          pmat = cm_alloc(myYR, myXR);
407                          memset(pmat->cmem, 0, sizeof(COLOR)*myXR*myYR);
408                                                          /* finish header */
409 <                        fputformat(myDT==DTrgbe ? COLRFMT : CIEFMT, stdout);
410 <                        fputc('\n', stdout);
411 <                        fprtresolu(myXR, myYR, stdout);
412 <                        fflush(stdout);
409 >                        fputformat(myDT==DTrgbe ? COLRFMT : CIEFMT, fout);
410 >                        fputc('\n', fout);
411 >                        fprtresolu(myXR, myYR, fout);
412 >                        fflush(fout);
413                  } else if ((dt != myDT) | (xr != myXR) | (yr != myYR)) {
414                          sprintf(errmsg, "picture '%s' format/size mismatch",
415                                          fname);
# Line 395 | Line 434 | sum_images(const char *fspec, const CMATRIX *cv)
434          free(scanline);
435                                                          /* write scanlines */
436          for (y = 0; y < myYR; y++)
437 <                if (fwritescan((COLOR *)cm_lval(pmat, y, 0), myXR, stdout) < 0)
437 >                if (fwritescan((COLOR *)cm_lval(pmat, y, 0), myXR, fout) < 0)
438                          return(0);
439          cm_free(pmat);                                  /* all done */
440 <        return(fflush(stdout) == 0);
440 >        return(fflush(fout) == 0);
441   }
442  
443 < /* check to see if a string contains a %d specification */
444 < int
445 < hasDecimalSpec(const char *s)
443 > /* check to see if a string contains a %d or %o specification */
444 > static int
445 > hasNumberFormat(const char *s)
446   {
447          while (*s && *s != '%')
448                  s++;
# Line 413 | Line 452 | hasDecimalSpec(const char *s)
452                  ++s;
453          while (isdigit(*s));
454  
455 <        return(*s == 'd');
455 >        return((*s == 'd') | (*s == 'i') | (*s == 'o') |
456 >                        (*s == 'x') | (*s == 'X'));
457   }
458  
459   int
460   main(int argc, char *argv[])
461   {
462 <        CMATRIX                 *tvec, *Dmat, *Tmat, *ivec, *cvec;
423 <        struct BSDF_data        *btdf;
462 >        CMATRIX                 *cvec;
463  
464          progname = argv[0];
465  
466 <        if ((argc < 4) | (argc > 5)) {
467 <                fprintf(stderr, "Usage: %s Vspec Tbsdf.xml Dmat.dat [tregvec]\n",
468 <                                progname);
466 >        if ((argc < 2) | (argc > 5)) {
467 >                fprintf(stderr, "Usage: %s DCspec [tregvec]\n", progname);
468 >                fprintf(stderr, "   or: %s Vspec Tbsdf.xml Dmat.dat [tregvec]\n",
469 >                                        progname);
470                  return(1);
471          }
472 <        tvec = cm_load(argv[4], 0, 1, DTascii); /* argv[4]==NULL iff argc==4 */
473 <        Dmat = cm_load(argv[3], 0, tvec->nrows, DTfromHeader);
474 <        btdf = load_BSDF(argv[2]);
475 <        if (btdf == NULL)
476 <                return(1);
477 <        if (btdf->ninc != Dmat->nrows) {
478 <                sprintf(errmsg, "Incoming BTDF dir (%d) mismatch to D (%d)",
479 <                                btdf->ninc, Dmat->nrows);
480 <                error(USER, errmsg);
441 <        }
472 >
473 >        if (argc > 3) {                         /* VTDs expression */
474 >                CMATRIX *svec, *Dmat, *Tmat, *ivec;
475 >                                                /* get sky vector */
476 >                svec = cm_load(argv[4], 0, 1, DTascii);
477 >                                                /* load BSDF */
478 >                Tmat = cm_loadBSDF(argv[2]);
479 >                                                /* load Daylight matrix */
480 >                Dmat = cm_load(argv[3], Tmat->ncols, svec->nrows, DTfromHeader);
481                                                  /* multiply vector through */
482 <        ivec = cm_multiply(Dmat, tvec);
483 <        cm_free(Dmat); cm_free(tvec);
484 <        Tmat = cm_bsdf(btdf);                   /* convert BTDF to matrix */
485 <        free_BSDF(btdf);
486 <        cvec = cm_multiply(Tmat, ivec);         /* cvec = component vector */
487 <        cm_free(Tmat); cm_free(ivec);
488 <        if (hasDecimalSpec(argv[1])) {          /* generating image */
482 >                ivec = cm_multiply(Dmat, svec);
483 >                cm_free(Dmat); cm_free(svec);
484 >                cvec = cm_multiply(Tmat, ivec); /* cvec = component vector */
485 >                cm_free(Tmat); cm_free(ivec);
486 >        } else {                                /* else just use sky vector */
487 >                cvec = cm_load(argv[2], 0, 1, DTascii);
488 >        }
489 >
490 >        if (hasNumberFormat(argv[1])) {         /* generating image */
491                  SET_FILE_BINARY(stdout);
492                  newheader("RADIANCE", stdout);
493                  printargs(argc, argv, stdout);
494                  fputnow(stdout);
495 <                if (!sum_images(argv[1], cvec))
495 >                if (!sum_images(argv[1], cvec, stdout))
496                          return(1);
497          } else {                                /* generating vector */
498                  CMATRIX *Vmat = cm_load(argv[1], 0, cvec->nrows, DTfromHeader);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines