| 14 |
|
#include "rtio.h" |
| 15 |
|
#include "resolu.h" |
| 16 |
|
#include "bsdfrep.h" |
| 17 |
+ |
/* active grid resolution */ |
| 18 |
+ |
int grid_res = GRIDRES; |
| 19 |
+ |
|
| 20 |
|
/* coverage/symmetry using INP_QUAD? flags */ |
| 21 |
|
int inp_coverage = 0; |
| 22 |
|
/* all incident angles in-plane so far? */ |
| 56 |
|
new_theta = -new_theta; |
| 57 |
|
new_phi += 180.; |
| 58 |
|
} |
| 59 |
+ |
if ((theta_in_deg = new_theta) < 1.0) |
| 60 |
+ |
return(1); /* don't rely on phi near normal */ |
| 61 |
|
while (new_phi < 0) |
| 62 |
|
new_phi += 360.; |
| 63 |
|
while (new_phi >= 360.) |
| 66 |
|
single_plane_incident = (round(new_phi) == round(phi_in_deg)); |
| 67 |
|
else if (single_plane_incident < 0) |
| 68 |
|
single_plane_incident = 1; |
| 64 |
– |
theta_in_deg = new_theta; /* assume it's OK */ |
| 69 |
|
phi_in_deg = new_phi; |
| 70 |
|
if ((1. < new_phi) & (new_phi < 89.)) |
| 71 |
|
inp_coverage |= INP_QUAD1; |
| 172 |
|
rev_symmetry(rbf->invec, sym); |
| 173 |
|
if (sym & MIRROR_X) |
| 174 |
|
for (n = rbf->nrbf; n-- > 0; ) |
| 175 |
< |
rbf->rbfa[n].gx = GRIDRES-1 - rbf->rbfa[n].gx; |
| 175 |
> |
rbf->rbfa[n].gx = grid_res-1 - rbf->rbfa[n].gx; |
| 176 |
|
if (sym & MIRROR_Y) |
| 177 |
|
for (n = rbf->nrbf; n-- > 0; ) |
| 178 |
< |
rbf->rbfa[n].gy = GRIDRES-1 - rbf->rbfa[n].gy; |
| 178 |
> |
rbf->rbfa[n].gy = grid_res-1 - rbf->rbfa[n].gy; |
| 179 |
|
} |
| 180 |
|
|
| 181 |
+ |
/* Rotate RBF to correspond to given incident vector */ |
| 182 |
+ |
void |
| 183 |
+ |
rotate_rbf(RBFNODE *rbf, const FVECT invec) |
| 184 |
+ |
{ |
| 185 |
+ |
static const FVECT vnorm = {.0, .0, 1.}; |
| 186 |
+ |
const double phi = atan2(invec[1],invec[0]) - |
| 187 |
+ |
atan2(rbf->invec[1],rbf->invec[0]); |
| 188 |
+ |
FVECT outvec; |
| 189 |
+ |
int pos[2]; |
| 190 |
+ |
int n; |
| 191 |
+ |
|
| 192 |
+ |
for (n = ((-.01 > phi) | (phi > .01))*rbf->nrbf; n-- > 0; ) { |
| 193 |
+ |
ovec_from_pos(outvec, rbf->rbfa[n].gx, rbf->rbfa[n].gy); |
| 194 |
+ |
spinvector(outvec, outvec, vnorm, phi); |
| 195 |
+ |
pos_from_vec(pos, outvec); |
| 196 |
+ |
rbf->rbfa[n].gx = pos[0]; |
| 197 |
+ |
rbf->rbfa[n].gy = pos[1]; |
| 198 |
+ |
} |
| 199 |
+ |
VCOPY(rbf->invec, invec); |
| 200 |
+ |
} |
| 201 |
+ |
|
| 202 |
|
/* Compute volume associated with Gaussian lobe */ |
| 203 |
|
double |
| 204 |
|
rbf_volume(const RBFVAL *rbfp) |
| 215 |
|
double uv[2]; |
| 216 |
|
double r2; |
| 217 |
|
|
| 218 |
< |
SDsquare2disk(uv, (1./GRIDRES)*(xpos+.5), (1./GRIDRES)*(ypos+.5)); |
| 218 |
> |
SDsquare2disk(uv, (xpos+.5)/grid_res, (ypos+.5)/grid_res); |
| 219 |
|
/* uniform hemispherical projection */ |
| 220 |
|
r2 = uv[0]*uv[0] + uv[1]*uv[1]; |
| 221 |
|
vec[0] = vec[1] = sqrt(2. - r2); |
| 233 |
|
|
| 234 |
|
SDdisk2square(sq, vec[0]*norm, vec[1]*norm); |
| 235 |
|
|
| 236 |
< |
pos[0] = (int)(sq[0]*GRIDRES); |
| 237 |
< |
pos[1] = (int)(sq[1]*GRIDRES); |
| 236 |
> |
pos[0] = (int)(sq[0]*grid_res); |
| 237 |
> |
pos[1] = (int)(sq[1]*grid_res); |
| 238 |
|
} |
| 239 |
|
|
| 240 |
|
/* Evaluate RBF for DSF at the given normalized outgoing direction */ |
| 241 |
|
double |
| 242 |
|
eval_rbfrep(const RBFNODE *rp, const FVECT outvec) |
| 243 |
|
{ |
| 244 |
< |
double res = .0; |
| 244 |
> |
double res = 0; |
| 245 |
|
const RBFVAL *rbfp; |
| 246 |
|
FVECT odir; |
| 247 |
|
double sig2; |
| 376 |
|
inp_coverage = 0; |
| 377 |
|
single_plane_incident = -1; |
| 378 |
|
input_orient = output_orient = 0; |
| 379 |
+ |
grid_res = GRIDRES; |
| 380 |
|
} |
| 381 |
|
|
| 382 |
|
/* Write our BSDF mesh interpolant out to the given binary stream */ |
| 389 |
|
/* finish header */ |
| 390 |
|
fprintf(ofp, "SYMMETRY=%d\n", !single_plane_incident * inp_coverage); |
| 391 |
|
fprintf(ofp, "IO_SIDES= %d %d\n", input_orient, output_orient); |
| 392 |
+ |
fprintf(ofp, "GRIDRES=%d\n", grid_res); |
| 393 |
|
fputformat(BSDFREP_FMT, ofp); |
| 394 |
|
fputc('\n', ofp); |
| 395 |
|
/* write each DSF */ |
| 451 |
|
sscanf(s+9, "%d %d", &input_orient, &output_orient); |
| 452 |
|
return(0); |
| 453 |
|
} |
| 454 |
+ |
if (!strncmp(s, "GRIDRES=", 8)) { |
| 455 |
+ |
sscanf(s+8, "%d", &grid_res); |
| 456 |
+ |
return(0); |
| 457 |
+ |
} |
| 458 |
|
if (formatval(fmt, s) && strcmp(fmt, BSDFREP_FMT)) |
| 459 |
|
return(-1); |
| 460 |
|
return(0); |
| 469 |
|
int i; |
| 470 |
|
|
| 471 |
|
clear_bsdf_rep(); |
| 472 |
+ |
if (ifp == NULL) |
| 473 |
+ |
return(0); |
| 474 |
|
if (getheader(ifp, headline, NULL) < 0 || single_plane_incident < 0 | |
| 475 |
|
!input_orient | !output_orient) { |
| 476 |
|
fprintf(stderr, "%s: missing/bad format for BSDF interpolant\n", |
| 485 |
|
rbfh.invec[0] = getflt(ifp); |
| 486 |
|
rbfh.invec[1] = getflt(ifp); |
| 487 |
|
rbfh.invec[2] = getflt(ifp); |
| 488 |
+ |
if (normalize(rbfh.invec) == 0) { |
| 489 |
+ |
fprintf(stderr, "%s: zero incident vector\n", progname); |
| 490 |
+ |
return(0); |
| 491 |
+ |
} |
| 492 |
|
rbfh.vtotal = getflt(ifp); |
| 493 |
|
rbfh.nrbf = getint(4, ifp); |
| 494 |
|
newrbf = (RBFNODE *)malloc(sizeof(RBFNODE) + |
| 495 |
|
sizeof(RBFVAL)*(rbfh.nrbf-1)); |
| 496 |
|
if (newrbf == NULL) |
| 497 |
|
goto memerr; |
| 498 |
< |
memcpy(newrbf, &rbfh, sizeof(RBFNODE)); |
| 498 |
> |
memcpy(newrbf, &rbfh, sizeof(RBFNODE)-sizeof(RBFVAL)); |
| 499 |
|
for (i = 0; i < rbfh.nrbf; i++) { |
| 500 |
|
newrbf->rbfa[i].peak = getflt(ifp); |
| 501 |
|
newrbf->rbfa[i].crad = getint(2, ifp) & 0xffff; |