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

Comparing ray/src/common/bsdf.c (file contents):
Revision 2.27 by greg, Wed Apr 27 23:05:51 2011 UTC vs.
Revision 2.34 by greg, Thu Jul 7 15:25:09 2011 UTC

# Line 10 | Line 10 | static const char RCSid[] = "$Id$";
10   *
11   */
12  
13 + #define _USE_MATH_DEFINES
14   #include <stdio.h>
15   #include <stdlib.h>
16 + #include <string.h>
17   #include <math.h>
18 + #include <ctype.h>
19   #include "ezxml.h"
20   #include "hilbert.h"
21   #include "bsdf.h"
# Line 106 | Line 109 | SDloadGeometry(SDData *sd, ezxml_t wdb)
109          if ((geom = ezxml_child(wdb, "Geometry")) == NULL ||
110                          (mgfstr = ezxml_txt(geom)) == NULL)
111                  return SDEnone;
112 +        while (isspace(*mgfstr))
113 +                ++mgfstr;
114 +        if (!*mgfstr)
115 +                return SDEnone;
116          if ((fmt = ezxml_attr(geom, "format")) != NULL &&
117                          strcasecmp(fmt, "MGF")) {
118                  sprintf(SDerrorDetail,
# Line 168 | Line 175 | SDloadFile(SDData *sd, const char *fname)
175                  return lastErr;
176                                  /* try loading variable resolution data */
177          lastErr = SDloadTre(sd, wtl);
171 #if 0
178                                  /* check our result */
179 <        switch (lastErr) {
174 <        case SDEformat:
175 <        case SDEdata:
176 <        case SDEsupport:        /* possibly we just tried the wrong format */
179 >        if (lastErr == SDEsupport)      /* try matrix BSDF if not tree data */
180                  lastErr = SDloadMtx(sd, wtl);
181 <                break;
179 <        default:                /* variable res. OK else serious error */
180 <                break;
181 <        }
182 < #endif
181 >                
182                                  /* done with XML file */
183          ezxml_free(fl);
184          
# Line 251 | Line 250 | SDfreeSpectralDF(SDSpectralDF *df)
250                  return;
251          SDfreeCumulativeCache(df);
252          for (n = df->ncomp; n-- > 0; )
253 <                (*df->comp[n].func->freeSC)(df->comp[n].dist);
253 >                if (df->comp[n].dist != NULL)
254 >                        (*df->comp[n].func->freeSC)(df->comp[n].dist);
255          free(df);
256   }
257  
# Line 815 | Line 815 | SDmapDir(FVECT resVec, RREAL vMtx[3][3], const FVECT i
815  
816   #include "standard.h"
817   #include "paths.h"
818 #include <ctype.h>
818  
819   #define MAXLATS         46              /* maximum number of latitudes */
820  
# Line 935 | Line 934 | ab_getndx(             /* get index corresponding to the given ve
934   {
935          ANGLE_BASIS  *ab = (ANGLE_BASIS *)p;
936          int     li, ndx;
937 <        double  pol, azi, d;
937 >        double  pol, azi;
938  
939          if ((v[2] < -1.0) | (v[2] > 1.0))
940                  return(-1);
# Line 1175 | Line 1174 | check_bsdf_data(       /* check that BSDF data is sane */
1174   )
1175   {
1176          double          *omega_iarr, *omega_oarr;
1177 <        double          dom, contrib, hemi_total, full_total;
1177 >        double          dom, hemi_total, full_total;
1178          int             nneg;
1179          FVECT           v;
1180          int             i, o;
# Line 1325 | Line 1324 | load_BSDF(             /* load BSDF data from file */
1324                  error(WARNING, errmsg);
1325                  ezxml_free(fl);
1326                  return(NULL);
1327 <        }              
1328 <        load_angle_basis(ezxml_child(ezxml_child(wtl,
1329 <                                "DataDefinition"), "AngleBasis"));
1327 >        }
1328 >        for (wld = ezxml_child(ezxml_child(wtl,
1329 >                                "DataDefinition"), "AngleBasis");
1330 >                        wld != NULL; wld = wld->next)
1331 >                load_angle_basis(wld);
1332          dp = (struct BSDF_data *)calloc(1, sizeof(struct BSDF_data));
1333          load_geometry(dp, ezxml_child(wtl, "Material"));
1334          for (wld = ezxml_child(wtl, "WavelengthData");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines