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

Comparing ray/src/common/bsdf_m.c (file contents):
Revision 3.3 by greg, Fri Feb 18 02:41:55 2011 UTC vs.
Revision 3.4 by greg, Sat Feb 19 01:48:59 2011 UTC

# Line 19 | Line 19 | static const char RCSid[] = "$Id$";
19   #include "bsdf.h"
20   #include "bsdf_m.h"
21  
22 #ifndef FTINY
23 #define FTINY           1e-6
24 #endif
25
22   /* Function return codes */
23   #define RC_GOOD         1
24   #define RC_FAIL         0
# Line 364 | Line 360 | get_extrema(SDSpectralDF *df)
360   static int
361   load_bsdf_data(SDData *sd, ezxml_t wdb, int rowinc)
362   {
367        char            *cbasis = ezxml_txt(ezxml_child(wdb,"ColumnAngleBasis"));
368        char            *rbasis = ezxml_txt(ezxml_child(wdb,"RowAngleBasis"));
363          SDSpectralDF    *df;
364          SDMat           *dp;
365          char            *sdata;
366          int             inbi, outbi;
367          int             i;
374
375        if ((!cbasis || !*cbasis) | (!rbasis || !*rbasis)) {
376                sprintf(SDerrorDetail, "Missing column/row basis for BSDF '%s'",
377                                sd->name);
378                return RC_FORMERR;
379        }
368                                          /* allocate BSDF component */
369          sdata = ezxml_txt(ezxml_child(wdb, "WavelengthDataDirection"));
370          if (!strcasecmp(sdata, "Transmission Front")) {
# Line 399 | Line 387 | load_bsdf_data(SDData *sd, ezxml_t wdb, int rowinc)
387                  df = sd->rb;
388          } else
389                  return RC_FAIL;
390 +        /* XXX should also check "ScatteringDataType" for consistency? */
391                                          /* get angle bases */
392          sdata = ezxml_txt(ezxml_child(wdb,"ColumnAngleBasis"));
393          if (!sdata || !*sdata) {
# Line 407 | Line 396 | load_bsdf_data(SDData *sd, ezxml_t wdb, int rowinc)
396                  return RC_FORMERR;
397          }
398          for (inbi = nabases; inbi--; )
399 <                if (!strcasecmp(cbasis, abase_list[inbi].name))
399 >                if (!strcasecmp(sdata, abase_list[inbi].name))
400                          break;
401          if (inbi < 0) {
402 <                sprintf(SDerrorDetail, "Undefined ColumnAngleBasis '%s'",
414 <                                cbasis);
402 >                sprintf(SDerrorDetail, "Undefined ColumnAngleBasis '%s'", sdata);
403                  return RC_FORMERR;
404          }
405          sdata = ezxml_txt(ezxml_child(wdb,"RowAngleBasis"));
# Line 421 | Line 409 | load_bsdf_data(SDData *sd, ezxml_t wdb, int rowinc)
409                  return RC_FORMERR;
410          }
411          for (outbi = nabases; outbi--; )
412 <                if (!strcasecmp(rbasis, abase_list[outbi].name))
412 >                if (!strcasecmp(sdata, abase_list[outbi].name))
413                          break;
414          if (outbi < 0) {
415 <                sprintf(SDerrorDetail, "Undefined RowAngleBasis '%s'", cbasis);
415 >                sprintf(SDerrorDetail, "Undefined RowAngleBasis '%s'", sdata);
416                  return RC_FORMERR;
417          }
418                                          /* allocate BSDF matrix */
# Line 519 | Line 507 | extract_diffuse(SDValue *dv, SDSpectralDF *df)
507                  c_cmix(&dv->spec, dv->cieY, &dv->spec, ymin, &df->comp[n].cspec[0]);
508                  dv->cieY += ymin;
509          }
510 <        df->maxHemi -= dv->cieY;        /* correct minimum hemispherical */
511 <        dv->spec.clock++;               /* make sure everything is set */
510 >        df->maxHemi -= dv->cieY;        /* adjust minimum hemispherical */
511 >                                        /* make sure everything is set */
512          c_ccvt(&dv->spec, C_CSXY+C_CSSPEC);
513   }
514  
515   /* Load a BSDF matrix from an open XML file */
516   SDError
517 < SDloadMtx(SDData *sd, ezxml_t fl)
517 > SDloadMtx(SDData *sd, ezxml_t wtl)
518   {
519 <        ezxml_t                 wtl, wld, wdb;
519 >        ezxml_t                 wld, wdb;
520          int                     rowIn;
521          struct BSDF_data        *dp;
522          char                    *txt;
523          int                     rval;
524          
525 <        if (strcmp(ezxml_name(fl), "WindowElement")) {
525 >        txt = ezxml_txt(ezxml_child(ezxml_child(wtl,
526 >                        "DataDefinition"), "IncidentDataStructure"));
527 >        if (txt == NULL || !*txt) {
528                  sprintf(SDerrorDetail,
529 <                        "BSDF \"%s\": top level node not 'WindowElement'",
529 >                        "BSDF \"%s\": missing IncidentDataStructure",
530                                  sd->name);
531                  return SDEformat;
532          }
543        wtl = ezxml_child(ezxml_child(fl, "Optical"), "Layer");
544        txt = ezxml_txt(ezxml_child(ezxml_child(wtl,
545                        "DataDefinition"), "IncidentDataStructure"));
533          if (!strcasecmp(txt, "Rows"))
534                  rowIn = 1;
535          else if (!strcasecmp(txt, "Columns"))
# Line 557 | Line 544 | SDloadMtx(SDData *sd, ezxml_t fl)
544          rval = load_angle_basis(ezxml_child(ezxml_child(wtl,
545                                  "DataDefinition"), "AngleBasis"));
546          if (rval < 0)
547 <                goto err_return;
547 >                return convert_errcode(rval);
548                                  /* load BSDF components */
549          for (wld = ezxml_child(wtl, "WavelengthData");
550                                  wld != NULL; wld = wld->next) {
# Line 567 | Line 554 | SDloadMtx(SDData *sd, ezxml_t fl)
554                  for (wdb = ezxml_child(wld, "WavelengthDataBlock");
555                                          wdb != NULL; wdb = wdb->next)
556                          if ((rval = load_bsdf_data(sd, wdb, rowIn)) < 0)
557 <                                goto err_return;
557 >                                return convert_errcode(rval);
558          }
559                                  /* separate diffuse components */
560          extract_diffuse(&sd->rLambFront, sd->rf);
# Line 575 | Line 562 | SDloadMtx(SDData *sd, ezxml_t fl)
562          extract_diffuse(&sd->tLamb, sd->tf);
563                                  /* return success */
564          return SDEnone;
578 err_return:                     /* jump here on failure */
579        if (sd->rf != NULL) {
580                SDfreeSpectralDF(sd->rf);
581                sd->rf = NULL;
582        }
583        if (sd->rb != NULL) {
584                SDfreeSpectralDF(sd->rb);
585                sd->rb = NULL;
586        }
587        if (sd->tf != NULL) {
588                SDfreeSpectralDF(sd->tf);
589                sd->tf = NULL;
590        }
591        return convert_errcode(rval);
565   }
566  
567   /* Get Matrix BSDF value */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines