24 |
|
extern const char BIGEND[]; |
25 |
|
extern const char FMTSTR[]; |
26 |
|
|
27 |
– |
int contrib = 0; // computing contributions? |
28 |
– |
|
29 |
– |
int xres = 0; // horizontal (scan) size |
30 |
– |
int yres = 0; // vertical resolution |
31 |
– |
|
27 |
|
// new/exclusive, overwrite if exists, or recover data |
28 |
|
int RSDOflags[] = {RDSwrite|RDSexcl|RDSextend, RDSwrite|RDSextend, |
29 |
|
RDSread|RDSwrite}; |
52 |
|
uint32 ac; // accumulation count |
53 |
|
}; |
54 |
|
|
55 |
+ |
// Get format identifier |
56 |
+ |
const char * |
57 |
+ |
formstr(int f) |
58 |
+ |
{ |
59 |
+ |
switch (f) { |
60 |
+ |
case 'a': return("ascii"); |
61 |
+ |
case 'f': return("float"); |
62 |
+ |
case 'd': return("double"); |
63 |
+ |
case 'c': return(NCSAMP==3 ? COLRFMT : SPECFMT); |
64 |
+ |
} |
65 |
+ |
return("unknown"); |
66 |
+ |
} |
67 |
+ |
|
68 |
|
// Our default data share function |
69 |
|
RdataShare * |
70 |
|
defDataShare(const char *name, RCOutputOp op, size_t siz) |
76 |
|
RcontribMod * |
77 |
|
NewRcMod(const char *prms, const char *binexpr, int ncbins) |
78 |
|
{ |
71 |
– |
if (ncbins <= 0) return NULL; |
79 |
|
if (!prms) prms = ""; |
80 |
< |
if (!binexpr & (ncbins > 1)) { |
81 |
< |
error(INTERNAL, "missing bin expression"); |
80 |
> |
if ((ncbins > 1) & !binexpr) { |
81 |
> |
error(USER, "missing bin expression"); |
82 |
|
return NULL; |
83 |
|
} |
84 |
< |
if (ncbins == 1) { // shouldn't have bin expression? |
85 |
< |
if (binexpr && strcmp(binexpr, "0")) |
79 |
< |
error(WARNING, "ignoring non-zero expression for single bin"); |
80 |
< |
prms = ""; |
81 |
< |
binexpr = NULL; |
82 |
< |
} |
84 |
> |
if (ncbins < 1) ncbins = 1; |
85 |
> |
|
86 |
|
RcontribMod * mp = (RcontribMod *)ecalloc(1, sizeof(RcontribMod) + |
87 |
|
sizeof(DCOLORV)*(NCSAMP*ncbins-1) + |
88 |
|
strlen(prms)+1); |
89 |
|
|
90 |
< |
mp->params = strcpy((char *)(mp->cbin + ncbins*NCSAMP), prms); |
88 |
< |
if (binexpr) { |
90 |
> |
if (binexpr) { // check bin expression |
91 |
|
mp->binv = eparse(const_cast<char *>(binexpr)); |
92 |
< |
CHECK(mp->binv->type==NUM, WARNING, "constant bin expression"); |
92 |
> |
if (mp->binv->type == NUM) { // constant expression (0)? |
93 |
> |
if ((int)(evalue(mp->binv) + .5) > 0) { |
94 |
> |
sprintf(errmsg, "illegal positive constant for bin (%s)", |
95 |
> |
binexpr); |
96 |
> |
error(USER, errmsg); |
97 |
> |
} |
98 |
> |
if (ncbins > 1) { |
99 |
> |
sprintf(errmsg, "bad bin count (%d should be 1)", ncbins); |
100 |
> |
error(USER, errmsg); |
101 |
> |
} |
102 |
> |
epfree(mp->binv, true); |
103 |
> |
mp->binv = NULL; |
104 |
> |
prms = ""; |
105 |
> |
ncbins = 1; |
106 |
> |
} |
107 |
|
} |
108 |
+ |
mp->params = strcpy((char *)(mp->cbin + ncbins*NCSAMP), prms); |
109 |
|
mp->nbins = ncbins; |
110 |
|
return mp; |
111 |
|
} |
165 |
|
|
166 |
|
int bi = 0; // get bin index |
167 |
|
if (mp->binv) { |
168 |
< |
worldfunc(RCCONTEXT, r); // compute bin # |
168 |
> |
worldfunc(RCCONTEXT, r); |
169 |
|
set_eparams(mp->params); |
170 |
|
double bval = evalue(mp->binv); |
171 |
|
if (bval <= -.5) |
180 |
|
} |
181 |
|
SCOLOR contr; |
182 |
|
raycontrib(contr, r, PRIMARY); // compute coefficient |
183 |
< |
if (contrib) |
183 |
> |
if (rcp->HasFlag(RCcontrib)) |
184 |
|
smultscolor(contr, r->rcol); // -> value contribution |
185 |
|
for (int i = 0; i < NCSAMP; i++) |
186 |
|
*dvp++ += contr[i]; // accumulate color/spectrum |
210 |
|
RcontribSimulManager::AddModifier(const char *modn, const char *outspec, |
211 |
|
const char *prms, const char *binval, int bincnt) |
212 |
|
{ |
213 |
< |
if (!modn | !outspec | (bincnt <= 0) || !*modn | !*outspec) { |
213 |
> |
if (!modn | !outspec || !*modn | !*outspec) { |
214 |
|
error(WARNING, "ignoring bad call to AddModifier()"); |
215 |
|
return false; |
216 |
|
} |
217 |
|
if (!nChan) { // initial call? |
218 |
+ |
if ((xres < 0) | (yres <= 0)) { |
219 |
+ |
error(USER, "xres, yres must be set before first modifier"); |
220 |
+ |
return false; |
221 |
+ |
} |
222 |
|
if (!SetDataFormat(dtyp)) |
223 |
|
return false; |
224 |
|
nChan = NCSAMP; |
225 |
|
} else if (nChan != NCSAMP) { |
226 |
< |
error(INTERNAL, "number of spectral channels must be fixed"); |
226 |
> |
error(USER, "number of spectral channels must be fixed"); |
227 |
|
return false; |
228 |
|
} |
229 |
|
if (Ready()) { |
246 |
|
const int binndx = hasFormat(outspec, "diouxX"); |
247 |
|
int bin0 = 0; |
248 |
|
char fnbuf[512]; |
249 |
< |
if (!modndx | (modndx > binndx)) |
249 |
> |
if (!modndx || (binndx > 0) & (modndx > binndx)) |
250 |
|
sprintf(fnbuf, outspec, bin0, modn); |
251 |
|
else |
252 |
|
sprintf(fnbuf, outspec, modn, bin0); |
275 |
|
mp->opl = op; // first (maybe only) output channel |
276 |
|
if (modndx) // remember modifier if part of name |
277 |
|
op->omod = lp->key; |
278 |
< |
if (binndx > 0) { // append output image/bin list |
278 |
> |
if (binndx) { // append output image/bin list |
279 |
|
op->rowBytes += dsiz; |
280 |
|
op->obin = bin0; |
281 |
|
for (bincnt = 1; bincnt < mp->nbins; bincnt++) { |
282 |
< |
if (!modndx | (modndx > binndx)) |
282 |
> |
if (!modndx || (binndx > 0) & (modndx > binndx)) |
283 |
|
sprintf(fnbuf, outspec, bin0+bincnt, modn); |
284 |
|
else |
285 |
|
sprintf(fnbuf, outspec, modn, bin0+bincnt); |
298 |
|
op->rowBytes += dsiz; |
299 |
|
} |
300 |
|
} else // else send all results to this channel |
301 |
< |
op->rowBytes += bincnt*dsiz; |
301 |
> |
op->rowBytes += mp->nbins*dsiz; |
302 |
|
return true; |
303 |
|
} |
304 |
|
|
345 |
|
error(INTERNAL, "PrepOutput() called before octree & modifiers assigned"); |
346 |
|
return -1; |
347 |
|
} |
348 |
+ |
if (!cdsF) { |
349 |
+ |
error(INTERNAL, "missing RdataShare constructor call (*cdsF)"); |
350 |
+ |
return -1; |
351 |
+ |
} |
352 |
|
if (lu_doall(&modLUT, checkModExists, NULL) < 0) |
353 |
|
return -1; |
354 |
|
|
413 |
|
strcpy(hdr+begData, ROWZEROSTR); |
414 |
|
rowCountPos = begData+LNROWSTR; |
415 |
|
begData += sizeof(ROWZEROSTR)-1; |
416 |
< |
if (!xres | (rowBytes > esiz)) { |
416 |
> |
if (!rcp->xres | (rowBytes > esiz)) { |
417 |
|
sprintf(hdr+begData, "NCOLS=%d\n", int(rowBytes/esiz)); |
418 |
|
begData += strlen(hdr+begData); |
419 |
|
} |
451 |
|
hdr[begData++] = ' '; |
452 |
|
hdr[begData++] = '\n'; // EOL for data format |
453 |
|
hdr[begData++] = '\n'; // end of nominal header |
454 |
< |
if ((xres > 0) & (rowBytes == esiz)) { // tack on resolution string? |
455 |
< |
sprintf(hdr+begData, PIXSTDFMT, yres, xres); |
454 |
> |
if ((rcp->xres > 0) & (rowBytes == esiz)) { // tack on resolution string? |
455 |
> |
sprintf(hdr+begData, PIXSTDFMT, rcp->yres, rcp->xres); |
456 |
|
begData += strlen(hdr+begData); |
457 |
|
} |
458 |
|
return rData->ReleaseMemory(hdr, RDSwrite); |
506 |
|
} |
507 |
|
// check #columns |
508 |
|
if (((cp = findArgs(hdr, "NCOLS=", begData)) && atoi(cp)*esiz != rowBytes) || |
509 |
< |
!xres | (rowBytes > esiz)) { |
509 |
> |
!rcp->xres | (rowBytes > esiz)) { |
510 |
|
sprintf(errmsg, "expected NCOLS=%d in '%s'", |
511 |
|
int(rowBytes/esiz), GetName()); |
512 |
|
error(USER, errmsg); |
521 |
|
rowCountPos = cp - hdr; |
522 |
|
int rlast = atoi(cp); |
523 |
|
begData++; // advance past closing EOL |
524 |
< |
if ((xres > 0) & (rowBytes == esiz)) { // check/skip resolution string? |
524 |
> |
if ((rcp->xres > 0) & (rowBytes == esiz)) { // check/skip resolution string? |
525 |
|
char rbuf[64]; |
526 |
< |
sprintf(rbuf, PIXSTDFMT, yres, xres); |
526 |
> |
sprintf(rbuf, PIXSTDFMT, rcp->yres, rcp->xres); |
527 |
|
int rlen = strlen(rbuf); |
528 |
|
if (strncmp(rbuf, hdr+begData, rlen)) { |
529 |
|
sprintf(errmsg, "bad resolution string in '%s'", GetName()); |
821 |
|
return 0; |
822 |
|
} |
823 |
|
if (nt < 0) |
824 |
< |
return nkids; |
824 |
> |
return NThreads(); |
825 |
|
if (!nt) nt = GetNCores(); |
826 |
|
int status = 0; |
827 |
|
if (nt == 1) |
834 |
|
sprintf(errmsg, "non-zero (%d) status from child", status); |
835 |
|
error(WARNING, errmsg); |
836 |
|
} |
837 |
< |
return nkids; |
837 |
> |
return NThreads(); |
838 |
|
} |