4 |
|
|
5 |
|
/* |
6 |
|
====================================================================== |
7 |
< |
Dump photon maps as RADIANCE scene description to stdout |
7 |
> |
Dump photon maps as RADIANCE scene description or ASCII point list |
8 |
> |
to stdout |
9 |
|
|
10 |
|
Roland Schregle (roland.schregle@{hslu.ch, gmail.com}) |
11 |
|
(c) Fraunhofer Institute for Solar Energy Systems, |
18 |
|
|
19 |
|
|
20 |
|
|
21 |
+ |
#include "pmap.h" |
22 |
|
#include "pmapio.h" |
21 |
– |
#include "pmapparm.h" |
22 |
– |
#include "pmaptype.h" |
23 |
|
#include "rtio.h" |
24 |
|
#include "resolu.h" |
25 |
|
#include "random.h" |
34 |
|
#define RADSCALE 1.0 |
35 |
|
#define NSPHERES 10000 |
36 |
|
|
37 |
+ |
/* Format for optional ASCII output as XYZ RGB points */ |
38 |
+ |
#define POINTFMT "%g\t%g\t%g\t%g\t%g\t%g\n" |
39 |
|
|
40 |
|
/* RADIANCE material and object defs for each photon type */ |
41 |
|
typedef struct { |
42 |
|
char *mat, *obj; |
43 |
|
} RadianceDef; |
44 |
|
|
43 |
– |
|
44 |
– |
/* We use %e for the material def to preserve precision when outputting |
45 |
– |
photon flux */ |
45 |
|
const RadianceDef radDefs [] = { |
46 |
< |
{ "void glow mat.global\n0\n0\n4 %e %e %e 0\n", |
46 |
> |
{ "void glow mat.global\n0\n0\n4 %g %g %g 0\n", |
47 |
|
"mat.global sphere obj.global\n0\n0\n4 %g %g %g %g\n" |
48 |
|
}, |
49 |
< |
{ "void glow mat.pglobal\n0\n0\n4 %e %e %e 0\n", |
49 |
> |
{ "void glow mat.pglobal\n0\n0\n4 %g %g %g 0\n", |
50 |
|
"mat.pglobal sphere obj.pglobal\n0\n0\n4 %g %g %g %g\n" |
51 |
|
}, |
52 |
< |
{ "void glow mat.caustic\n0\n0\n4 %e %e %e 0\n", |
52 |
> |
{ "void glow mat.caustic\n0\n0\n4 %g %g %g 0\n", |
53 |
|
"mat.caustic sphere obj.caustic\n0\n0\n4 %g %g %g %g\n" |
54 |
|
}, |
55 |
< |
{ "void glow mat.volume\n0\n0\n4 %e %e %e 0\n", |
55 |
> |
{ "void glow mat.volume\n0\n0\n4 %g %g %g 0\n", |
56 |
|
"mat.volume sphere obj.volume\n0\n0\n4 %g %g %g %g\n" |
57 |
|
}, |
58 |
< |
{ "void glow mat.direct\n0\n0\n4 %e %e %e 0\n", |
58 |
> |
{ "void glow mat.direct\n0\n0\n4 %g %g %g 0\n", |
59 |
|
"mat.direct sphere obj.direct\n0\n0\n4 %g %g %g %g\n" |
60 |
|
}, |
61 |
< |
{ "void glow mat.contrib\n0\n0\n4 %e %e %e 0\n", |
61 |
> |
{ "void glow mat.contrib\n0\n0\n4 %g %g %g 0\n", |
62 |
|
"mat.contrib sphere obj.contrib\n0\n0\n4 %g %g %g %g\n" |
63 |
|
} |
64 |
|
}; |
65 |
|
|
66 |
+ |
|
67 |
|
/* Default colour codes are as follows: global = blue |
68 |
|
precomp global = cyan |
69 |
|
caustic = red |
76 |
|
}; |
77 |
|
|
78 |
|
|
79 |
+ |
static int setBool(char *str, unsigned pos, unsigned *var) |
80 |
+ |
{ |
81 |
+ |
switch ((str) [pos]) { |
82 |
+ |
case '\0': |
83 |
+ |
*var = !*var; |
84 |
+ |
break; |
85 |
+ |
case 'y': case 'Y': case 't': case 'T': case '+': case '1': |
86 |
+ |
*var = 1; |
87 |
+ |
break; |
88 |
+ |
case 'n': case 'N': case 'f': case 'F': case '-': case '0': |
89 |
+ |
*var = 0; |
90 |
+ |
break; |
91 |
+ |
default: |
92 |
+ |
return 0; |
93 |
+ |
} |
94 |
+ |
|
95 |
+ |
return 1; |
96 |
+ |
} |
97 |
+ |
|
98 |
+ |
|
99 |
|
int main (int argc, char** argv) |
100 |
|
{ |
101 |
|
char format [MAXFMTLEN]; |
102 |
|
RREAL rad, radScale = RADSCALE, extent, dumpRatio; |
103 |
< |
unsigned arg, j, ptype, dim, fluxCol = 0; |
103 |
> |
unsigned arg, j, ptype, dim, fluxCol = 0, points = 0; |
104 |
|
long numSpheres = NSPHERES; |
105 |
< |
COLOR customCol = {0, 0, 0}; |
105 |
> |
COLOR col = {0, 0, 0}; |
106 |
|
FILE *pmapFile; |
107 |
|
PhotonMap pm; |
108 |
|
PhotonPrimary pri; |
111 |
|
char leafFname [1024]; |
112 |
|
#endif |
113 |
|
|
94 |
– |
int setBool(char *str, int pos, int *var) |
95 |
– |
{ |
96 |
– |
switch ((str) [pos]) { |
97 |
– |
case '\0': |
98 |
– |
*var = !*var; |
99 |
– |
break; |
100 |
– |
case 'y': case 'Y': case 't': case 'T': case '+': case '1': |
101 |
– |
*var = 1; |
102 |
– |
break; |
103 |
– |
case 'n': case 'N': case 'f': case 'F': case '-': case '0': |
104 |
– |
*var = 0; |
105 |
– |
break; |
106 |
– |
default: |
107 |
– |
return 0; |
108 |
– |
} |
109 |
– |
|
110 |
– |
return 1; |
111 |
– |
} |
112 |
– |
|
114 |
|
if (argc < 2) { |
115 |
< |
puts("Dump photon maps as RADIANCE scene description\n"); |
115 |
> |
puts("Dump photon maps as RADIANCE scene description " |
116 |
> |
"or ASCII point list\n"); |
117 |
|
printf("Usage: %s " |
118 |
< |
"[-r radscale1] [-n nspheres1] [-f | -c rcol1 gcol1 bcol1] pmap1 " |
119 |
< |
"[-r radscale2] [-n nspheres2] [-f | -c rcol2 gcol2 bcol2] pmap2 " |
118 |
> |
"[-a] [-r radscale1] [-n num1] " |
119 |
> |
"[-f | -c rcol1 gcol1 bcol1] pmap1 " |
120 |
> |
"[-a] [-r radscale2] [-n num2] " |
121 |
> |
"[-f | -c rcol2 gcol2 bcol2] pmap2 " |
122 |
|
"...\n", argv [0]); |
123 |
|
return 1; |
124 |
|
} |
127 |
|
/* Parse options */ |
128 |
|
if (argv [arg][0] == '-') { |
129 |
|
switch (argv [arg][1]) { |
130 |
+ |
case 'a': |
131 |
+ |
if (!setBool(argv [arg], 2, &points)) |
132 |
+ |
error(USER, "invalid option syntax at -a"); |
133 |
+ |
break; |
134 |
|
case 'r': |
135 |
|
if ((radScale = atof(argv [++arg])) <= 0) |
136 |
|
error(USER, "invalid radius scale"); |
138 |
|
|
139 |
|
case 'n': |
140 |
|
if ((numSpheres = parseMultiplier(argv [++arg])) <= 0) |
141 |
< |
error(USER, "invalid number of spheres"); |
141 |
> |
error(USER, "invalid number of points/spheres"); |
142 |
|
break; |
143 |
|
|
144 |
|
case 'c': |
149 |
|
error(USER, "invalid RGB colour"); |
150 |
|
|
151 |
|
for (j = 0; j < 3; j++) |
152 |
< |
customCol [j] = atof(argv [++arg]); |
152 |
> |
col [j] = atof(argv [++arg]); |
153 |
|
break; |
154 |
|
|
155 |
|
case 'f': |
156 |
< |
if (intens(customCol) > 0) |
156 |
> |
if (intens(col) > 0) |
157 |
|
error(USER, "-f and -c are mutually exclusive"); |
158 |
|
|
159 |
|
if (!setBool(argv [arg], 2, &fluxCol)) |
169 |
|
continue; |
170 |
|
} |
171 |
|
|
172 |
< |
/* Dump photon map */ |
172 |
> |
/* Open next photon map file */ |
173 |
|
if (!(pmapFile = fopen(argv [arg], "rb"))) { |
174 |
|
sprintf(errmsg, "can't open %s", argv [arg]); |
175 |
|
error(SYSTEM, errmsg); |
198 |
|
if (strcmp(getstr(format, pmapFile), PMAP_FILEVER)) |
199 |
|
error(USER, "incompatible photon map file format"); |
200 |
|
|
201 |
< |
/* Dump command line as comment */ |
202 |
< |
fputs("# ", stdout); |
203 |
< |
printargs(argc, argv, stdout); |
204 |
< |
fputc('\n', stdout); |
197 |
< |
|
198 |
< |
/* Dump common material def if constant for all photons, |
199 |
< |
i.e. independent of individual flux */ |
200 |
< |
if (!fluxCol) { |
201 |
< |
if (intens(customCol) > 0) |
202 |
< |
printf(radDefs [ptype].mat, |
203 |
< |
customCol [0], customCol [1], customCol [2]); |
204 |
< |
else |
205 |
< |
printf(radDefs [ptype].mat, colDefs [ptype][0], |
206 |
< |
colDefs [ptype][1], colDefs [ptype][2]); |
201 |
> |
if (!points) { |
202 |
> |
/* Dump command line as comment */ |
203 |
> |
fputs("# ", stdout); |
204 |
> |
printargs(argc, argv, stdout); |
205 |
|
fputc('\n', stdout); |
206 |
|
} |
207 |
+ |
|
208 |
+ |
/* Set point/sphere colour if independent of photon flux, |
209 |
+ |
output RADIANCE material def if required */ |
210 |
+ |
if (!fluxCol) { |
211 |
+ |
if (intens(col) <= 0) |
212 |
+ |
copycolor(col, colDefs [ptype]); |
213 |
+ |
if (!points) { |
214 |
+ |
printf(radDefs [ptype].mat, col [0], col [1], col [2]); |
215 |
+ |
fputc('\n', stdout); |
216 |
+ |
} |
217 |
+ |
} |
218 |
|
|
219 |
|
/* Get number of photons */ |
220 |
|
pm.numPhotons = getint(sizeof(pm.numPhotons), pmapFile); |
249 |
|
rad = radScale * RADCOEFF * pow(extent / numSpheres, 1./dim); |
250 |
|
|
251 |
|
/* Photon dump probability to satisfy target sphere count */ |
252 |
< |
dumpRatio = numSpheres < pm.numPhotons |
244 |
< |
? (float)numSpheres / pm.numPhotons : 1; |
252 |
> |
dumpRatio = min(1, (float)numSpheres / pm.numPhotons); |
253 |
|
|
254 |
|
/* Skip primary rays */ |
255 |
|
pm.numPrimary = getint(sizeof(pm.numPrimary), pmapFile); |
279 |
|
} |
280 |
|
#endif |
281 |
|
|
282 |
< |
/* Load photons */ |
282 |
> |
/* Read photons */ |
283 |
|
while (pm.numPhotons-- > 0) { |
284 |
|
#ifdef PMAP_OOC |
285 |
|
/* Get entire photon record from ooC octree leaf file |
305 |
|
for (j = 0; j < 4; j++) |
306 |
|
p.flux [j] = getint(1, pmapFile); |
307 |
|
#endif |
308 |
+ |
|
309 |
+ |
|
310 |
|
|
311 |
|
/* Skip primary ray index */ |
312 |
|
getint(sizeof(p.primary), pmapFile); |
318 |
|
/* Dump photon probabilistically acc. to target sphere count */ |
319 |
|
if (frandom() <= dumpRatio) { |
320 |
|
if (fluxCol) { |
321 |
< |
/* Dump individual material def per photon acc. to flux */ |
322 |
< |
getPhotonFlux(&p, customCol); |
323 |
< |
printf(radDefs [ptype].mat, |
324 |
< |
customCol [0], customCol [1], customCol [2]); |
315 |
< |
fputc('\n', stdout); |
321 |
> |
/* Get photon flux */ |
322 |
> |
getPhotonFlux(&p, col); |
323 |
> |
/* Scale by dumpRatio for energy conservation */ |
324 |
> |
scalecolor(col, 1.0 / dumpRatio); |
325 |
|
} |
326 |
|
|
327 |
< |
printf(radDefs [ptype].obj, p.pos [0], p.pos [1], p.pos [2], rad); |
328 |
< |
fputc('\n', stdout); |
327 |
> |
if (!points) { |
328 |
> |
if (fluxCol) { |
329 |
> |
/* Dump material def if variable (depends on flux) */ |
330 |
> |
printf(radDefs [ptype].mat, col [0], col [1], col [2]); |
331 |
> |
fputc('\n', stdout); |
332 |
> |
} |
333 |
> |
printf(radDefs [ptype].obj, p.pos [0], p.pos [1], p.pos [2], |
334 |
> |
rad); |
335 |
> |
fputc('\n', stdout); |
336 |
> |
} |
337 |
> |
else /* Dump as XYZ RGB point */ |
338 |
> |
printf(POINTFMT, p.pos [0], p.pos [1], p.pos [2], |
339 |
> |
col [0], col [1] ,col [2]); |
340 |
|
} |
341 |
< |
|
341 |
> |
|
342 |
|
if (ferror(pmapFile) || feof(pmapFile)) { |
343 |
|
sprintf(errmsg, "error reading %s", argv [arg]); |
344 |
|
error(USER, errmsg); |
350 |
|
/* Reset defaults for next dump */ |
351 |
|
radScale = RADSCALE; |
352 |
|
numSpheres = NSPHERES; |
353 |
< |
customCol [0] = customCol [1] = customCol [2] = 0; |
354 |
< |
fluxCol = 0; |
353 |
> |
col [0] = col [1] = col [2] = 0; |
354 |
> |
fluxCol = points = 0; |
355 |
|
} |
356 |
|
|
357 |
|
return 0; |