| 13 |
|
|
| 14 |
|
#define _USE_MATH_DEFINES |
| 15 |
|
#include "rtio.h" |
| 16 |
– |
#include <stdlib.h> |
| 16 |
|
#include <math.h> |
| 17 |
|
#include <ctype.h> |
| 18 |
|
#include "ezxml.h" |
| 28 |
|
#define RC_INTERR (-4) |
| 29 |
|
#define RC_MEMERR (-5) |
| 30 |
|
|
| 31 |
< |
#define MAXLATS 46 /* maximum number of latitudes */ |
| 33 |
< |
|
| 34 |
< |
/* BSDF angle specification */ |
| 35 |
< |
typedef struct { |
| 36 |
< |
char name[64]; /* basis name */ |
| 37 |
< |
int nangles; /* total number of directions */ |
| 38 |
< |
struct { |
| 39 |
< |
float tmin; /* starting theta */ |
| 40 |
< |
int nphis; /* number of phis (0 term) */ |
| 41 |
< |
} lat[MAXLATS+1]; /* latitudes */ |
| 42 |
< |
} ANGLE_BASIS; |
| 43 |
< |
|
| 44 |
< |
#define MAXABASES 7 /* limit on defined bases */ |
| 45 |
< |
|
| 46 |
< |
static ANGLE_BASIS abase_list[MAXABASES] = { |
| 31 |
> |
ANGLE_BASIS abase_list[MAXABASES] = { |
| 32 |
|
{ |
| 33 |
|
"LBNL/Klems Full", 145, |
| 34 |
< |
{ {-5., 1}, |
| 34 |
> |
{ {0., 1}, |
| 35 |
|
{5., 8}, |
| 36 |
|
{15., 16}, |
| 37 |
|
{25., 20}, |
| 43 |
|
{90., 0} } |
| 44 |
|
}, { |
| 45 |
|
"LBNL/Klems Half", 73, |
| 46 |
< |
{ {-6.5, 1}, |
| 46 |
> |
{ {0., 1}, |
| 47 |
|
{6.5, 8}, |
| 48 |
|
{19.5, 12}, |
| 49 |
|
{32.5, 16}, |
| 53 |
|
{90., 0} } |
| 54 |
|
}, { |
| 55 |
|
"LBNL/Klems Quarter", 41, |
| 56 |
< |
{ {-9., 1}, |
| 56 |
> |
{ {0., 1}, |
| 57 |
|
{9., 8}, |
| 58 |
|
{27., 12}, |
| 59 |
|
{46., 12}, |
| 62 |
|
} |
| 63 |
|
}; |
| 64 |
|
|
| 65 |
< |
static int nabases = 3; /* current number of defined bases */ |
| 65 |
> |
int nabases = 3; /* current number of defined bases */ |
| 66 |
|
|
| 67 |
+ |
C_COLOR mtx_RGB_prim[3]; /* our RGB primaries */ |
| 68 |
+ |
float mtx_RGB_coef[3]; /* corresponding Y coefficients */ |
| 69 |
+ |
|
| 70 |
+ |
enum {mtx_Y, mtx_X, mtx_Z}; /* matrix components (mtx_Y==0) */ |
| 71 |
+ |
|
| 72 |
+ |
/* check if two real values are near enough to equal */ |
| 73 |
|
static int |
| 74 |
|
fequal(double a, double b) |
| 75 |
|
{ |
| 78 |
|
return (a <= 1e-6) & (a >= -1e-6); |
| 79 |
|
} |
| 80 |
|
|
| 81 |
< |
/* Returns the name of the given tag */ |
| 91 |
< |
#ifdef ezxml_name |
| 92 |
< |
#undef ezxml_name |
| 93 |
< |
static char * |
| 94 |
< |
ezxml_name(ezxml_t xml) |
| 95 |
< |
{ |
| 96 |
< |
if (xml == NULL) |
| 97 |
< |
return NULL; |
| 98 |
< |
return xml->name; |
| 99 |
< |
} |
| 100 |
< |
#endif |
| 101 |
< |
|
| 102 |
< |
/* Returns the given tag's character content or empty string if none */ |
| 103 |
< |
#ifdef ezxml_txt |
| 104 |
< |
#undef ezxml_txt |
| 105 |
< |
static char * |
| 106 |
< |
ezxml_txt(ezxml_t xml) |
| 107 |
< |
{ |
| 108 |
< |
if (xml == NULL) |
| 109 |
< |
return ""; |
| 110 |
< |
return xml->txt; |
| 111 |
< |
} |
| 112 |
< |
#endif |
| 113 |
< |
|
| 114 |
< |
/* Convert error to standard BSDF code */ |
| 81 |
> |
/* convert error to standard BSDF code */ |
| 82 |
|
static SDError |
| 83 |
|
convert_errcode(int ec) |
| 84 |
|
{ |
| 99 |
|
return SDEunknown; |
| 100 |
|
} |
| 101 |
|
|
| 102 |
< |
/* Allocate a BSDF matrix of the given size */ |
| 102 |
> |
/* allocate a BSDF matrix of the given size */ |
| 103 |
|
static SDMat * |
| 104 |
|
SDnewMatrix(int ni, int no) |
| 105 |
|
{ |
| 123 |
|
} |
| 124 |
|
|
| 125 |
|
/* Free a BSDF matrix */ |
| 126 |
< |
#define SDfreeMatrix free |
| 126 |
> |
void |
| 127 |
> |
SDfreeMatrix(void *ptr) |
| 128 |
> |
{ |
| 129 |
> |
SDMat *mp = (SDMat *)ptr; |
| 130 |
|
|
| 131 |
< |
/* get vector for this angle basis index (front exiting) */ |
| 132 |
< |
static int |
| 131 |
> |
if (mp->chroma != NULL) free(mp->chroma); |
| 132 |
> |
free(ptr); |
| 133 |
> |
} |
| 134 |
> |
|
| 135 |
> |
/* compute square of real value */ |
| 136 |
> |
static double sq(double x) { return x*x; } |
| 137 |
> |
|
| 138 |
> |
/* Get vector for this angle basis index (front exiting) */ |
| 139 |
> |
int |
| 140 |
|
fo_getvec(FVECT v, double ndxr, void *p) |
| 141 |
|
{ |
| 142 |
|
ANGLE_BASIS *ab = (ANGLE_BASIS *)p; |
| 144 |
|
double randX = ndxr - ndx; |
| 145 |
|
double rx[2]; |
| 146 |
|
int li; |
| 147 |
< |
double pol, azi, d; |
| 147 |
> |
double azi, d; |
| 148 |
|
|
| 149 |
|
if ((ndxr < 0) | (ndx >= ab->nangles)) |
| 150 |
|
return RC_FAIL; |
| 151 |
|
for (li = 0; ndx >= ab->lat[li].nphis; li++) |
| 152 |
|
ndx -= ab->lat[li].nphis; |
| 153 |
|
SDmultiSamp(rx, 2, randX); |
| 154 |
< |
pol = M_PI/180.*( (1.-rx[0])*ab->lat[li].tmin + |
| 155 |
< |
rx[0]*ab->lat[li+1].tmin ); |
| 154 |
> |
d = (1. - rx[0])*sq(cos(M_PI/180.*ab->lat[li].tmin)) + |
| 155 |
> |
rx[0]*sq(cos(M_PI/180.*ab->lat[li+1].tmin)); |
| 156 |
> |
v[2] = d = sqrt(d); /* cos(pol) */ |
| 157 |
|
azi = 2.*M_PI*(ndx + rx[1] - .5)/ab->lat[li].nphis; |
| 180 |
– |
v[2] = d = cos(pol); |
| 158 |
|
d = sqrt(1. - d*d); /* sin(pol) */ |
| 159 |
|
v[0] = cos(azi)*d; |
| 160 |
|
v[1] = sin(azi)*d; |
| 161 |
|
return RC_GOOD; |
| 162 |
|
} |
| 163 |
|
|
| 164 |
< |
/* get index corresponding to the given vector (front exiting) */ |
| 165 |
< |
static int |
| 164 |
> |
/* Get index corresponding to the given vector (front exiting) */ |
| 165 |
> |
int |
| 166 |
|
fo_getndx(const FVECT v, void *p) |
| 167 |
|
{ |
| 168 |
|
ANGLE_BASIS *ab = (ANGLE_BASIS *)p; |
| 169 |
|
int li, ndx; |
| 170 |
< |
double pol, azi, d; |
| 170 |
> |
double pol, azi; |
| 171 |
|
|
| 172 |
|
if (v == NULL) |
| 173 |
|
return -1; |
| 174 |
|
if ((v[2] < 0) | (v[2] > 1.)) |
| 175 |
|
return -1; |
| 176 |
< |
pol = 180.0/M_PI*acos(v[2]); |
| 176 |
> |
pol = 180.0/M_PI*Acos(v[2]); |
| 177 |
|
azi = 180.0/M_PI*atan2(v[1], v[0]); |
| 178 |
|
if (azi < 0.0) azi += 360.0; |
| 179 |
|
for (li = 1; ab->lat[li].tmin <= pol; li++) |
| 187 |
|
return ndx; |
| 188 |
|
} |
| 189 |
|
|
| 190 |
< |
/* compute square of real value */ |
| 191 |
< |
static double sq(double x) { return x*x; } |
| 215 |
< |
|
| 216 |
< |
/* get projected solid angle for this angle basis index (universal) */ |
| 217 |
< |
static double |
| 190 |
> |
/* Get projected solid angle for this angle basis index (universal) */ |
| 191 |
> |
double |
| 192 |
|
io_getohm(int ndx, void *p) |
| 193 |
|
{ |
| 194 |
+ |
static void *last_p = NULL; |
| 195 |
|
static int last_li = -1; |
| 196 |
|
static double last_ohm; |
| 197 |
|
ANGLE_BASIS *ab = (ANGLE_BASIS *)p; |
| 202 |
|
return -1.; |
| 203 |
|
for (li = 0; ndx >= ab->lat[li].nphis; li++) |
| 204 |
|
ndx -= ab->lat[li].nphis; |
| 205 |
< |
if (li == last_li) /* cached latitude? */ |
| 205 |
> |
if ((p == last_p) & (li == last_li)) /* cached latitude? */ |
| 206 |
|
return last_ohm; |
| 207 |
+ |
last_p = p; |
| 208 |
|
last_li = li; |
| 233 |
– |
theta1 = M_PI/180. * ab->lat[li+1].tmin; |
| 234 |
– |
if (ab->lat[li].nphis == 1) /* special case */ |
| 235 |
– |
return last_ohm = M_PI*(1. - sq(cos(theta1))); |
| 209 |
|
theta = M_PI/180. * ab->lat[li].tmin; |
| 210 |
+ |
theta1 = M_PI/180. * ab->lat[li+1].tmin; |
| 211 |
|
return last_ohm = M_PI*(sq(cos(theta)) - sq(cos(theta1))) / |
| 212 |
|
(double)ab->lat[li].nphis; |
| 213 |
|
} |
| 214 |
|
|
| 215 |
< |
/* get vector for this angle basis index (back incident) */ |
| 216 |
< |
static int |
| 215 |
> |
/* Get vector for this angle basis index (back incident) */ |
| 216 |
> |
int |
| 217 |
|
bi_getvec(FVECT v, double ndxr, void *p) |
| 218 |
|
{ |
| 219 |
|
if (!fo_getvec(v, ndxr, p)) |
| 226 |
|
return RC_GOOD; |
| 227 |
|
} |
| 228 |
|
|
| 229 |
< |
/* get index corresponding to the vector (back incident) */ |
| 230 |
< |
static int |
| 229 |
> |
/* Get index corresponding to the vector (back incident) */ |
| 230 |
> |
int |
| 231 |
|
bi_getndx(const FVECT v, void *p) |
| 232 |
|
{ |
| 233 |
|
FVECT v2; |
| 239 |
|
return fo_getndx(v2, p); |
| 240 |
|
} |
| 241 |
|
|
| 242 |
< |
/* get vector for this angle basis index (back exiting) */ |
| 243 |
< |
static int |
| 242 |
> |
/* Get vector for this angle basis index (back exiting) */ |
| 243 |
> |
int |
| 244 |
|
bo_getvec(FVECT v, double ndxr, void *p) |
| 245 |
|
{ |
| 246 |
|
if (!fo_getvec(v, ndxr, p)) |
| 251 |
|
return RC_GOOD; |
| 252 |
|
} |
| 253 |
|
|
| 254 |
< |
/* get index corresponding to the vector (back exiting) */ |
| 255 |
< |
static int |
| 254 |
> |
/* Get index corresponding to the vector (back exiting) */ |
| 255 |
> |
int |
| 256 |
|
bo_getndx(const FVECT v, void *p) |
| 257 |
|
{ |
| 258 |
|
FVECT v2; |
| 264 |
|
return fo_getndx(v2, p); |
| 265 |
|
} |
| 266 |
|
|
| 267 |
< |
/* get vector for this angle basis index (front incident) */ |
| 268 |
< |
static int |
| 267 |
> |
/* Get vector for this angle basis index (front incident) */ |
| 268 |
> |
int |
| 269 |
|
fi_getvec(FVECT v, double ndxr, void *p) |
| 270 |
|
{ |
| 271 |
|
if (!fo_getvec(v, ndxr, p)) |
| 277 |
|
return RC_GOOD; |
| 278 |
|
} |
| 279 |
|
|
| 280 |
< |
/* get index corresponding to the vector (front incident) */ |
| 281 |
< |
static int |
| 280 |
> |
/* Get index corresponding to the vector (front incident) */ |
| 281 |
> |
int |
| 282 |
|
fi_getndx(const FVECT v, void *p) |
| 283 |
|
{ |
| 284 |
|
FVECT v2; |
| 290 |
|
return fo_getndx(v2, p); |
| 291 |
|
} |
| 292 |
|
|
| 293 |
+ |
/* Get color or grayscale value for BSDF for the given direction pair */ |
| 294 |
+ |
int |
| 295 |
+ |
mBSDF_color(float coef[], const SDMat *dp, int i, int o) |
| 296 |
+ |
{ |
| 297 |
+ |
C_COLOR cxy; |
| 298 |
+ |
|
| 299 |
+ |
coef[0] = mBSDF_value(dp, o, i); |
| 300 |
+ |
if (dp->chroma == NULL) |
| 301 |
+ |
return 1; /* grayscale */ |
| 302 |
+ |
|
| 303 |
+ |
c_decodeChroma(&cxy, mBSDF_chroma(dp,o,i)); |
| 304 |
+ |
c_toSharpRGB(&cxy, coef[0], coef); |
| 305 |
+ |
coef[0] *= mtx_RGB_coef[0]; |
| 306 |
+ |
coef[1] *= mtx_RGB_coef[1]; |
| 307 |
+ |
coef[2] *= mtx_RGB_coef[2]; |
| 308 |
+ |
return 3; /* RGB color */ |
| 309 |
+ |
} |
| 310 |
+ |
|
| 311 |
|
/* load custom BSDF angle basis */ |
| 312 |
|
static int |
| 313 |
|
load_angle_basis(ezxml_t wab) |
| 339 |
|
ezxml_child(ezxml_child(wbb, |
| 340 |
|
"ThetaBounds"), "UpperTheta"))); |
| 341 |
|
if (!i) |
| 342 |
< |
abase_list[nabases].lat[i].tmin = |
| 351 |
< |
-abase_list[nabases].lat[i+1].tmin; |
| 342 |
> |
abase_list[nabases].lat[0].tmin = 0; |
| 343 |
|
else if (!fequal(atof(ezxml_txt(ezxml_child(ezxml_child(wbb, |
| 344 |
|
"ThetaBounds"), "LowerTheta"))), |
| 345 |
|
abase_list[nabases].lat[i].tmin)) { |
| 383 |
|
for (i = dp->ninc; i--; ) { |
| 384 |
|
double hemi = .0; |
| 385 |
|
for (o = dp->nout; o--; ) |
| 386 |
< |
hemi += ohma[o] * mBSDF_value(dp, i, o); |
| 386 |
> |
hemi += ohma[o] * mBSDF_value(dp, o, i); |
| 387 |
|
if (hemi > df->maxHemi) |
| 388 |
|
df->maxHemi = hemi; |
| 389 |
|
} |
| 400 |
|
|
| 401 |
|
/* load BSDF distribution for this wavelength */ |
| 402 |
|
static int |
| 403 |
< |
load_bsdf_data(SDData *sd, ezxml_t wdb, int rowinc) |
| 403 |
> |
load_bsdf_data(SDData *sd, ezxml_t wdb, int ct, int rowinc) |
| 404 |
|
{ |
| 405 |
|
SDSpectralDF *df; |
| 406 |
|
SDMat *dp; |
| 407 |
|
char *sdata; |
| 417 |
– |
int tfront; |
| 408 |
|
int inbi, outbi; |
| 409 |
|
int i; |
| 410 |
|
/* allocate BSDF component */ |
| 413 |
|
return RC_FAIL; |
| 414 |
|
/* |
| 415 |
|
* Remember that front and back are reversed from WINDOW 6 orientations |
| 426 |
– |
* Favor their "Front" (incoming light) since that's more often valid |
| 416 |
|
*/ |
| 417 |
< |
tfront = !strcasecmp(sdata, "Transmission Back"); |
| 418 |
< |
if (!strcasecmp(sdata, "Transmission Front") || |
| 430 |
< |
tfront & (sd->tf == NULL)) { |
| 431 |
< |
if (sd->tf != NULL) |
| 432 |
< |
SDfreeSpectralDF(sd->tf); |
| 433 |
< |
if ((sd->tf = SDnewSpectralDF(1)) == NULL) |
| 417 |
> |
if (!strcasecmp(sdata, "Transmission Front")) { |
| 418 |
> |
if (sd->tb == NULL && (sd->tb = SDnewSpectralDF(3)) == NULL) |
| 419 |
|
return RC_MEMERR; |
| 420 |
+ |
df = sd->tb; |
| 421 |
+ |
} else if (!strcasecmp(sdata, "Transmission Back")) { |
| 422 |
+ |
if (sd->tf == NULL && (sd->tf = SDnewSpectralDF(3)) == NULL) |
| 423 |
+ |
return RC_MEMERR; |
| 424 |
|
df = sd->tf; |
| 425 |
|
} else if (!strcasecmp(sdata, "Reflection Front")) { |
| 426 |
< |
if (sd->rb != NULL) /* note back-front reversal */ |
| 438 |
< |
SDfreeSpectralDF(sd->rb); |
| 439 |
< |
if ((sd->rb = SDnewSpectralDF(1)) == NULL) |
| 426 |
> |
if (sd->rb == NULL && (sd->rb = SDnewSpectralDF(3)) == NULL) |
| 427 |
|
return RC_MEMERR; |
| 428 |
|
df = sd->rb; |
| 429 |
|
} else if (!strcasecmp(sdata, "Reflection Back")) { |
| 430 |
< |
if (sd->rf != NULL) /* note front-back reversal */ |
| 444 |
< |
SDfreeSpectralDF(sd->rf); |
| 445 |
< |
if ((sd->rf = SDnewSpectralDF(1)) == NULL) |
| 430 |
> |
if (sd->rf == NULL && (sd->rf = SDnewSpectralDF(3)) == NULL) |
| 431 |
|
return RC_MEMERR; |
| 432 |
|
df = sd->rf; |
| 433 |
|
} else |
| 434 |
|
return RC_FAIL; |
| 435 |
< |
/* XXX should also check "ScatteringDataType" for consistency? */ |
| 435 |
> |
/* free previous matrix if any */ |
| 436 |
> |
if (df->comp[ct].dist != NULL) { |
| 437 |
> |
SDfreeMatrix(df->comp[ct].dist); |
| 438 |
> |
df->comp[ct].dist = NULL; |
| 439 |
> |
} |
| 440 |
|
/* get angle bases */ |
| 441 |
|
sdata = ezxml_txt(ezxml_child(wdb,"ColumnAngleBasis")); |
| 442 |
|
if (!sdata || !*sdata) { |
| 471 |
|
dp->ib_priv = &abase_list[inbi]; |
| 472 |
|
dp->ob_priv = &abase_list[outbi]; |
| 473 |
|
if (df == sd->tf) { |
| 474 |
< |
if (tfront) { |
| 475 |
< |
dp->ib_vec = &fi_getvec; |
| 476 |
< |
dp->ib_ndx = &fi_getndx; |
| 477 |
< |
dp->ob_vec = &bo_getvec; |
| 478 |
< |
dp->ob_ndx = &bo_getndx; |
| 479 |
< |
} else { |
| 480 |
< |
dp->ib_vec = &bi_getvec; |
| 481 |
< |
dp->ib_ndx = &bi_getndx; |
| 482 |
< |
dp->ob_vec = &fo_getvec; |
| 494 |
< |
dp->ob_ndx = &fo_getndx; |
| 495 |
< |
} |
| 474 |
> |
dp->ib_vec = &fi_getvec; |
| 475 |
> |
dp->ib_ndx = &fi_getndx; |
| 476 |
> |
dp->ob_vec = &bo_getvec; |
| 477 |
> |
dp->ob_ndx = &bo_getndx; |
| 478 |
> |
} else if (df == sd->tb) { |
| 479 |
> |
dp->ib_vec = &bi_getvec; |
| 480 |
> |
dp->ib_ndx = &bi_getndx; |
| 481 |
> |
dp->ob_vec = &fo_getvec; |
| 482 |
> |
dp->ob_ndx = &fo_getndx; |
| 483 |
|
} else if (df == sd->rf) { |
| 484 |
|
dp->ib_vec = &fi_getvec; |
| 485 |
|
dp->ib_ndx = &fi_getndx; |
| 493 |
|
} |
| 494 |
|
dp->ib_ohm = &io_getohm; |
| 495 |
|
dp->ob_ohm = &io_getohm; |
| 496 |
< |
df->comp[0].cspec[0] = c_dfcolor; /* XXX monochrome for now */ |
| 497 |
< |
df->comp[0].dist = dp; |
| 511 |
< |
df->comp[0].func = &SDhandleMtx; |
| 496 |
> |
df->comp[ct].dist = dp; |
| 497 |
> |
df->comp[ct].func = &SDhandleMtx; |
| 498 |
|
/* read BSDF data */ |
| 499 |
|
sdata = ezxml_txt(ezxml_child(wdb, "ScatteringData")); |
| 500 |
|
if (!sdata || !*sdata) { |
| 503 |
|
return RC_FORMERR; |
| 504 |
|
} |
| 505 |
|
for (i = 0; i < dp->ninc*dp->nout; i++) { |
| 506 |
< |
char *sdnext = fskip(sdata); |
| 506 |
> |
char *sdnext = fskip(sdata); |
| 507 |
> |
double val; |
| 508 |
|
if (sdnext == NULL) { |
| 509 |
|
sprintf(SDerrorDetail, |
| 510 |
|
"Bad/missing BSDF ScatteringData in '%s'", |
| 514 |
|
while (isspace(*sdnext)) |
| 515 |
|
sdnext++; |
| 516 |
|
if (*sdnext == ',') sdnext++; |
| 517 |
+ |
if ((val = atof(sdata)) < 0) |
| 518 |
+ |
val = 0; /* don't allow negative values */ |
| 519 |
|
if (rowinc) { |
| 520 |
|
int r = i/dp->nout; |
| 521 |
|
int c = i - r*dp->nout; |
| 522 |
< |
mBSDF_value(dp,r,c) = atof(sdata); |
| 522 |
> |
mBSDF_value(dp,c,r) = val; |
| 523 |
|
} else |
| 524 |
< |
dp->bsdf[i] = atof(sdata); |
| 524 |
> |
dp->bsdf[i] = val; |
| 525 |
|
sdata = sdnext; |
| 526 |
|
} |
| 527 |
< |
return get_extrema(df); |
| 527 |
> |
return (ct == mtx_Y) ? get_extrema(df) : RC_GOOD; |
| 528 |
|
} |
| 529 |
|
|
| 530 |
< |
/* Subtract minimum (diffuse) scattering amount from BSDF */ |
| 530 |
> |
/* copy our RGB (x,y) primary chromaticities */ |
| 531 |
> |
static void |
| 532 |
> |
copy_RGB_prims(C_COLOR cspec[]) |
| 533 |
> |
{ |
| 534 |
> |
if (mtx_RGB_coef[1] < .001) { /* need to initialize */ |
| 535 |
> |
int i = 3; |
| 536 |
> |
while (i--) { |
| 537 |
> |
float rgb[3]; |
| 538 |
> |
rgb[0] = rgb[1] = rgb[2] = .0f; |
| 539 |
> |
rgb[i] = 1.f; |
| 540 |
> |
mtx_RGB_coef[i] = c_fromSharpRGB(rgb, &mtx_RGB_prim[i]); |
| 541 |
> |
} |
| 542 |
> |
} |
| 543 |
> |
memcpy(cspec, mtx_RGB_prim, sizeof(mtx_RGB_prim)); |
| 544 |
> |
} |
| 545 |
> |
|
| 546 |
> |
/* encode chromaticity if XYZ -- reduce to one channel in any case */ |
| 547 |
> |
static SDSpectralDF * |
| 548 |
> |
encode_chroma(SDSpectralDF *df) |
| 549 |
> |
{ |
| 550 |
> |
SDMat *mpx, *mpy, *mpz; |
| 551 |
> |
int n; |
| 552 |
> |
|
| 553 |
> |
if (df == NULL || df->ncomp != 3) |
| 554 |
> |
return df; |
| 555 |
> |
|
| 556 |
> |
mpy = (SDMat *)df->comp[mtx_Y].dist; |
| 557 |
> |
if (mpy == NULL) { |
| 558 |
> |
free(df); |
| 559 |
> |
return NULL; |
| 560 |
> |
} |
| 561 |
> |
mpx = (SDMat *)df->comp[mtx_X].dist; |
| 562 |
> |
mpz = (SDMat *)df->comp[mtx_Z].dist; |
| 563 |
> |
if (mpx == NULL || (mpx->ninc != mpy->ninc) | (mpx->nout != mpy->nout)) |
| 564 |
> |
goto done; |
| 565 |
> |
if (mpz == NULL || (mpz->ninc != mpy->ninc) | (mpz->nout != mpy->nout)) |
| 566 |
> |
goto done; |
| 567 |
> |
mpy->chroma = (C_CHROMA *)malloc(sizeof(C_CHROMA)*mpy->ninc*mpy->nout); |
| 568 |
> |
if (mpy->chroma == NULL) |
| 569 |
> |
goto done; /* XXX punt */ |
| 570 |
> |
/* encode chroma values */ |
| 571 |
> |
for (n = mpy->ninc*mpy->nout; n--; ) { |
| 572 |
> |
const double sum = mpx->bsdf[n] + mpy->bsdf[n] + mpz->bsdf[n]; |
| 573 |
> |
C_COLOR cxy; |
| 574 |
> |
if (sum > .0) |
| 575 |
> |
c_cset(&cxy, mpx->bsdf[n]/sum, mpy->bsdf[n]/sum); |
| 576 |
> |
else |
| 577 |
> |
c_cset(&cxy, 1./3., 1./3.); |
| 578 |
> |
mpy->chroma[n] = c_encodeChroma(&cxy); |
| 579 |
> |
} |
| 580 |
> |
done: /* free X & Z channels */ |
| 581 |
> |
if (mpx != NULL) SDfreeMatrix(mpx); |
| 582 |
> |
if (mpz != NULL) SDfreeMatrix(mpz); |
| 583 |
> |
if (mpy->chroma == NULL) /* grayscale after all? */ |
| 584 |
> |
df->comp[0].cspec[0] = c_dfcolor; |
| 585 |
> |
else /* else copy RGB primaries */ |
| 586 |
> |
copy_RGB_prims(df->comp[0].cspec); |
| 587 |
> |
df->ncomp = 1; /* return resized struct */ |
| 588 |
> |
return (SDSpectralDF *)realloc(df, sizeof(SDSpectralDF)); |
| 589 |
> |
} |
| 590 |
> |
|
| 591 |
> |
/* subtract minimum (diffuse) scattering amount from BSDF */ |
| 592 |
|
static double |
| 593 |
< |
subtract_min(SDMat *sm) |
| 593 |
> |
subtract_min(C_COLOR *cs, SDMat *sm) |
| 594 |
|
{ |
| 595 |
< |
float minv = sm->bsdf[0]; |
| 596 |
< |
int n = sm->ninc*sm->nout; |
| 597 |
< |
int i; |
| 595 |
> |
const int ncomp = 1 + 2*(sm->chroma != NULL); |
| 596 |
> |
float min_coef[3], ymin, coef[3]; |
| 597 |
> |
int i, o, c; |
| 598 |
|
|
| 599 |
< |
for (i = n; --i; ) |
| 600 |
< |
if (sm->bsdf[i] < minv) |
| 601 |
< |
minv = sm->bsdf[i]; |
| 602 |
< |
|
| 603 |
< |
if (minv <= FTINY) |
| 599 |
> |
min_coef[0] = min_coef[1] = min_coef[2] = FHUGE; |
| 600 |
> |
for (i = 0; i < sm->ninc; i++) |
| 601 |
> |
for (o = 0; o < sm->nout; o++) { |
| 602 |
> |
c = mBSDF_color(coef, sm, i, o); |
| 603 |
> |
while (c--) |
| 604 |
> |
if (coef[c] < min_coef[c]) |
| 605 |
> |
min_coef[c] = coef[c]; |
| 606 |
> |
} |
| 607 |
> |
ymin = 0; |
| 608 |
> |
for (c = ncomp; c--; ) |
| 609 |
> |
ymin += min_coef[c]; |
| 610 |
> |
if (ymin <= .01/M_PI) /* not worth bothering about? */ |
| 611 |
|
return .0; |
| 612 |
+ |
if (ncomp == 1) { /* subtract grayscale minimum */ |
| 613 |
+ |
for (i = sm->ninc*sm->nout; i--; ) |
| 614 |
+ |
sm->bsdf[i] -= ymin; |
| 615 |
+ |
*cs = c_dfcolor; |
| 616 |
+ |
return M_PI*ymin; |
| 617 |
+ |
} |
| 618 |
+ |
/* else subtract colored minimum */ |
| 619 |
+ |
for (i = 0; i < sm->ninc; i++) |
| 620 |
+ |
for (o = 0; o < sm->nout; o++) { |
| 621 |
+ |
C_COLOR cxy; |
| 622 |
+ |
c = mBSDF_color(coef, sm, i, o); |
| 623 |
+ |
while (c--) |
| 624 |
+ |
coef[c] = (coef[c] - min_coef[c]) / |
| 625 |
+ |
mtx_RGB_coef[c]; |
| 626 |
+ |
if (c_fromSharpRGB(coef, &cxy) > 1e-5) |
| 627 |
+ |
mBSDF_chroma(sm,o,i) = c_encodeChroma(&cxy); |
| 628 |
+ |
mBSDF_value(sm,o,i) -= ymin; |
| 629 |
+ |
} |
| 630 |
+ |
/* return colored minimum */ |
| 631 |
+ |
for (i = 3; i--; ) |
| 632 |
+ |
coef[i] = min_coef[i]/mtx_RGB_coef[i]; |
| 633 |
+ |
c_fromSharpRGB(coef, cs); |
| 634 |
|
|
| 635 |
< |
for (i = n; i--; ) |
| 557 |
< |
sm->bsdf[i] -= minv; |
| 558 |
< |
|
| 559 |
< |
return minv*M_PI; /* be sure to include multiplier */ |
| 635 |
> |
return M_PI*ymin; |
| 636 |
|
} |
| 637 |
|
|
| 638 |
< |
/* Extract and separate diffuse portion of BSDF */ |
| 639 |
< |
static void |
| 638 |
> |
/* Extract and separate diffuse portion of BSDF & convert color */ |
| 639 |
> |
static SDSpectralDF * |
| 640 |
|
extract_diffuse(SDValue *dv, SDSpectralDF *df) |
| 641 |
|
{ |
| 566 |
– |
int n; |
| 642 |
|
|
| 643 |
+ |
df = encode_chroma(df); /* reduce XYZ to Y + chroma */ |
| 644 |
|
if (df == NULL || df->ncomp <= 0) { |
| 645 |
|
dv->spec = c_dfcolor; |
| 646 |
|
dv->cieY = .0; |
| 647 |
< |
return; |
| 647 |
> |
return df; |
| 648 |
|
} |
| 649 |
< |
dv->spec = df->comp[0].cspec[0]; |
| 650 |
< |
dv->cieY = subtract_min((SDMat *)df->comp[0].dist); |
| 575 |
< |
/* in case of multiple components */ |
| 576 |
< |
for (n = df->ncomp; --n; ) { |
| 577 |
< |
double ymin = subtract_min((SDMat *)df->comp[n].dist); |
| 578 |
< |
c_cmix(&dv->spec, dv->cieY, &dv->spec, ymin, &df->comp[n].cspec[0]); |
| 579 |
< |
dv->cieY += ymin; |
| 580 |
< |
} |
| 649 |
> |
/* subtract minimum value */ |
| 650 |
> |
dv->cieY = subtract_min(&dv->spec, (SDMat *)df->comp[0].dist); |
| 651 |
|
df->maxHemi -= dv->cieY; /* adjust maximum hemispherical */ |
| 652 |
< |
/* make sure everything is set */ |
| 653 |
< |
c_ccvt(&dv->spec, C_CSXY+C_CSSPEC); |
| 652 |
> |
|
| 653 |
> |
c_ccvt(&dv->spec, C_CSXY); /* make sure (x,y) is set */ |
| 654 |
> |
return df; |
| 655 |
|
} |
| 656 |
|
|
| 657 |
|
/* Load a BSDF matrix from an open XML file */ |
| 681 |
|
sd->name); |
| 682 |
|
return SDEsupport; |
| 683 |
|
} |
| 684 |
< |
/* get angle basis */ |
| 685 |
< |
rval = load_angle_basis(ezxml_child(ezxml_child(wtl, |
| 686 |
< |
"DataDefinition"), "AngleBasis")); |
| 687 |
< |
if (rval < 0) |
| 688 |
< |
return convert_errcode(rval); |
| 684 |
> |
/* get angle bases */ |
| 685 |
> |
for (wld = ezxml_child(ezxml_child(wtl, "DataDefinition"), "AngleBasis"); |
| 686 |
> |
wld != NULL; wld = wld->next) { |
| 687 |
> |
rval = load_angle_basis(wld); |
| 688 |
> |
if (rval < 0) |
| 689 |
> |
return convert_errcode(rval); |
| 690 |
> |
} |
| 691 |
|
/* load BSDF components */ |
| 692 |
|
for (wld = ezxml_child(wtl, "WavelengthData"); |
| 693 |
|
wld != NULL; wld = wld->next) { |
| 694 |
< |
if (strcasecmp(ezxml_txt(ezxml_child(wld,"Wavelength")), |
| 695 |
< |
"Visible")) |
| 696 |
< |
continue; /* just visible for now */ |
| 694 |
> |
const char *cnm = ezxml_txt(ezxml_child(wld,"Wavelength")); |
| 695 |
> |
int ct = -1; |
| 696 |
> |
if (!strcasecmp(cnm, "Visible")) |
| 697 |
> |
ct = mtx_Y; |
| 698 |
> |
else if (!strcasecmp(cnm, "CIE-X")) |
| 699 |
> |
ct = mtx_X; |
| 700 |
> |
else if (!strcasecmp(cnm, "CIE-Z")) |
| 701 |
> |
ct = mtx_Z; |
| 702 |
> |
else |
| 703 |
> |
continue; |
| 704 |
|
for (wdb = ezxml_child(wld, "WavelengthDataBlock"); |
| 705 |
|
wdb != NULL; wdb = wdb->next) |
| 706 |
< |
if ((rval = load_bsdf_data(sd, wdb, rowIn)) < 0) |
| 706 |
> |
if ((rval = load_bsdf_data(sd, wdb, ct, rowIn)) < 0) |
| 707 |
|
return convert_errcode(rval); |
| 708 |
|
} |
| 709 |
|
/* separate diffuse components */ |
| 710 |
< |
extract_diffuse(&sd->rLambFront, sd->rf); |
| 711 |
< |
extract_diffuse(&sd->rLambBack, sd->rb); |
| 712 |
< |
extract_diffuse(&sd->tLamb, sd->tf); |
| 710 |
> |
sd->rf = extract_diffuse(&sd->rLambFront, sd->rf); |
| 711 |
> |
sd->rb = extract_diffuse(&sd->rLambBack, sd->rb); |
| 712 |
> |
sd->tf = extract_diffuse(&sd->tLambFront, sd->tf); |
| 713 |
> |
sd->tb = extract_diffuse(&sd->tLambBack, sd->tb); |
| 714 |
|
/* return success */ |
| 715 |
|
return SDEnone; |
| 716 |
|
} |
| 736 |
|
} |
| 737 |
|
if ((i_ndx < 0) | (o_ndx < 0)) |
| 738 |
|
return 0; /* nothing from this component */ |
| 739 |
< |
coef[0] = mBSDF_value(dp, i_ndx, o_ndx); |
| 740 |
< |
return 1; /* XXX monochrome for now */ |
| 739 |
> |
|
| 740 |
> |
return mBSDF_color(coef, dp, i_ndx, o_ndx); |
| 741 |
|
} |
| 742 |
|
|
| 743 |
|
/* Query solid angle for vector(s) */ |
| 803 |
|
cmtab[0] = .0; |
| 804 |
|
for (o = 0; o < cd->calen; o++) { |
| 805 |
|
if (rev) |
| 806 |
< |
cmtab[o+1] = mBSDF_value(dp, o, cd->indx) * |
| 806 |
> |
cmtab[o+1] = mBSDF_value(dp, cd->indx, o) * |
| 807 |
|
(*dp->ib_ohm)(o, dp->ib_priv); |
| 808 |
|
else |
| 809 |
< |
cmtab[o+1] = mBSDF_value(dp, cd->indx, o) * |
| 809 |
> |
cmtab[o+1] = mBSDF_value(dp, o, cd->indx) * |
| 810 |
|
(*dp->ob_ohm)(o, dp->ob_priv); |
| 811 |
|
cmtab[o+1] += cmtab[o]; |
| 812 |
|
} |
| 849 |
|
reverse = 1; |
| 850 |
|
} |
| 851 |
|
cdlast = NULL; /* check for it in cache list */ |
| 852 |
+ |
/* PLACE MUTEX LOCK HERE FOR THREAD-SAFE */ |
| 853 |
|
for (cd = (SDMatCDst *)sdc->cdList; cd != NULL; |
| 854 |
< |
cdlast = cd, cd = (SDMatCDst *)cd->next) |
| 854 |
> |
cdlast = cd, cd = cd->next) |
| 855 |
|
if (cd->indx == myCD.indx && (cd->calen == myCD.calen) & |
| 856 |
|
(cd->ob_priv == myCD.ob_priv) & |
| 857 |
|
(cd->ob_vec == myCD.ob_vec)) |
| 870 |
|
} |
| 871 |
|
if (cdlast != NULL) { /* move entry to head of cache list */ |
| 872 |
|
cdlast->next = cd->next; |
| 873 |
< |
cd->next = sdc->cdList; |
| 873 |
> |
cd->next = (SDMatCDst *)sdc->cdList; |
| 874 |
|
sdc->cdList = (SDCDst *)cd; |
| 875 |
|
} |
| 876 |
+ |
/* END MUTEX LOCK */ |
| 877 |
|
return (SDCDst *)cd; /* ready to go */ |
| 878 |
|
} |
| 879 |
|
|
| 891 |
|
/* binary search to find index */ |
| 892 |
|
ilower = 0; iupper = mcd->calen; |
| 893 |
|
while ((i = (iupper + ilower) >> 1) != ilower) |
| 894 |
< |
if ((long)target >= (long)mcd->carr[i]) |
| 894 |
> |
if (target >= mcd->carr[i]) |
| 895 |
|
ilower = i; |
| 896 |
|
else |
| 897 |
|
iupper = i; |
| 906 |
|
} |
| 907 |
|
|
| 908 |
|
/* Fixed resolution BSDF methods */ |
| 909 |
< |
SDFunc SDhandleMtx = { |
| 909 |
> |
const SDFunc SDhandleMtx = { |
| 910 |
|
&SDgetMtxBSDF, |
| 911 |
|
&SDqueryMtxProjSA, |
| 912 |
|
&SDgetMtxCDist, |