1 |
< |
/* Copyright (c) 1987 Regents of the University of California */ |
1 |
> |
/* Copyright (c) 1991 Regents of the University of California */ |
2 |
|
|
3 |
|
#ifndef lint |
4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
301 |
|
} |
302 |
|
|
303 |
|
|
304 |
+ |
getparam(str, dsc, typ, ptr) /* get variable from user */ |
305 |
+ |
char *str, *dsc; |
306 |
+ |
int typ; |
307 |
+ |
register union {int i; double d; COLOR C;} *ptr; |
308 |
+ |
{ |
309 |
+ |
extern char *index(); |
310 |
+ |
int i0; |
311 |
+ |
double d0, d1, d2; |
312 |
+ |
char buf[48]; |
313 |
+ |
|
314 |
+ |
switch (typ) { |
315 |
+ |
case 'i': /* integer */ |
316 |
+ |
if (sscanf(str, "%d", &i0) != 1) { |
317 |
+ |
(*dev->comout)(dsc); |
318 |
+ |
sprintf(buf, " (%d): ", ptr->i); |
319 |
+ |
(*dev->comout)(buf); |
320 |
+ |
(*dev->comin)(buf, NULL); |
321 |
+ |
if (sscanf(buf, "%d", &i0) != 1) |
322 |
+ |
break; |
323 |
+ |
} |
324 |
+ |
ptr->i = i0; |
325 |
+ |
break; |
326 |
+ |
case 'r': /* real */ |
327 |
+ |
if (sscanf(str, "%lf", &d0) != 1) { |
328 |
+ |
(*dev->comout)(dsc); |
329 |
+ |
sprintf(buf, " (%.6g): ", ptr->d); |
330 |
+ |
(*dev->comout)(buf); |
331 |
+ |
(*dev->comin)(buf, NULL); |
332 |
+ |
if (sscanf(buf, "%lf", &d0) != 1) |
333 |
+ |
break; |
334 |
+ |
} |
335 |
+ |
ptr->d = d0; |
336 |
+ |
break; |
337 |
+ |
case 'b': /* boolean */ |
338 |
+ |
if (sscanf(str, "%1s", buf) != 1) { |
339 |
+ |
(*dev->comout)(dsc); |
340 |
+ |
sprintf(buf, " (%c): ", ptr->i ? 'y' : 'n'); |
341 |
+ |
(*dev->comout)(buf); |
342 |
+ |
(*dev->comin)(buf, NULL); |
343 |
+ |
if (buf[0] == '\0' || |
344 |
+ |
index("yY+1tTnN-0fF", buf[0]) == NULL) |
345 |
+ |
break; |
346 |
+ |
} |
347 |
+ |
ptr->i = index("yY+1tT", buf[0]) != NULL; |
348 |
+ |
break; |
349 |
+ |
case 'C': /* color */ |
350 |
+ |
if (sscanf(str, "%lf %lf %lf", &d0, &d1, &d2) != 3) { |
351 |
+ |
(*dev->comout)(dsc); |
352 |
+ |
sprintf(buf, " (%.6g %.6g %.6g): ", |
353 |
+ |
colval(ptr->C,RED), |
354 |
+ |
colval(ptr->C,GRN), |
355 |
+ |
colval(ptr->C,BLU)); |
356 |
+ |
(*dev->comout)(buf); |
357 |
+ |
(*dev->comin)(buf, NULL); |
358 |
+ |
if (sscanf(buf, "%lf %lf %lf", &d0, &d1, &d2) != 3) |
359 |
+ |
break; |
360 |
+ |
} |
361 |
+ |
setcolor(ptr->C, d0, d1, d2); |
362 |
+ |
break; |
363 |
+ |
} |
364 |
+ |
} |
365 |
+ |
|
366 |
+ |
|
367 |
|
setparam(s) /* get/set program parameter */ |
368 |
|
register char *s; |
369 |
|
{ |
381 |
|
extern int ambdiv; |
382 |
|
extern int ambssamp; |
383 |
|
extern int ambounce; |
384 |
< |
int i0; |
385 |
< |
double d0, d1, d2; |
384 |
> |
extern int directinvis; |
385 |
> |
extern int do_irrad; |
386 |
|
char buf[128]; |
387 |
|
|
388 |
|
if (s[0] == '\0') { |
389 |
< |
(*dev->comout)("aa ab ad ar as av dc dj dt lr lw sp st: "); |
389 |
> |
(*dev->comout)( |
390 |
> |
"aa ab ad ar as av b dc di dj dt i lr lw sp st: "); |
391 |
|
(*dev->comin)(buf, NULL); |
392 |
|
s = buf; |
393 |
|
} |
395 |
|
case 'l': /* limit */ |
396 |
|
switch (s[1]) { |
397 |
|
case 'w': /* weight */ |
398 |
< |
if (sscanf(s+2, "%lf", &d0) != 1) { |
335 |
< |
sprintf(buf, "limit weight (%.6g): ", |
336 |
< |
minweight); |
337 |
< |
(*dev->comout)(buf); |
338 |
< |
(*dev->comin)(buf, NULL); |
339 |
< |
if (sscanf(buf, "%lf", &d0) != 1) |
340 |
< |
break; |
341 |
< |
} |
342 |
< |
minweight = d0; |
398 |
> |
getparam(s+2, "limit weight", 'r', &minweight); |
399 |
|
break; |
400 |
|
case 'r': /* reflection */ |
401 |
< |
if (sscanf(s+2, "%d", &i0) != 1) { |
346 |
< |
sprintf(buf, "limit reflection (%d): ", |
347 |
< |
maxdepth); |
348 |
< |
(*dev->comout)(buf); |
349 |
< |
(*dev->comin)(buf, NULL); |
350 |
< |
if (sscanf(buf, "%d", &i0) != 1) |
351 |
< |
break; |
352 |
< |
} |
353 |
< |
maxdepth = i0; |
401 |
> |
getparam(s+2, "limit reflection", 'i', &maxdepth); |
402 |
|
break; |
403 |
|
default: |
404 |
|
goto badparam; |
407 |
|
case 'd': /* direct */ |
408 |
|
switch (s[1]) { |
409 |
|
case 'j': /* jitter */ |
410 |
< |
if (sscanf(s+2, "%lf", &d0) != 1) { |
363 |
< |
sprintf(buf, "direct jitter (%.6g): ", |
364 |
< |
dstrsrc); |
365 |
< |
(*dev->comout)(buf); |
366 |
< |
(*dev->comin)(buf, NULL); |
367 |
< |
if (sscanf(buf, "%lf", &d0) != 1) |
368 |
< |
break; |
369 |
< |
} |
370 |
< |
dstrsrc = d0; |
410 |
> |
getparam(s+2, "direct jitter", 'r', &dstrsrc); |
411 |
|
break; |
412 |
|
case 'c': /* certainty */ |
413 |
< |
if (sscanf(s+2, "%lf", &d0) != 1) { |
374 |
< |
sprintf(buf, "direct certainty (%.6g): ", |
375 |
< |
shadcert); |
376 |
< |
(*dev->comout)(buf); |
377 |
< |
(*dev->comin)(buf, NULL); |
378 |
< |
if (sscanf(buf, "%lf", &d0) != 1) |
379 |
< |
break; |
380 |
< |
} |
381 |
< |
shadcert = d0; |
413 |
> |
getparam(s+2, "direct certainty", 'r', &shadcert); |
414 |
|
break; |
415 |
|
case 't': /* threshold */ |
416 |
< |
if (sscanf(s+2, "%lf", &d0) != 1) { |
385 |
< |
sprintf(buf, "direct threshold (%.6g): ", |
386 |
< |
shadthresh); |
387 |
< |
(*dev->comout)(buf); |
388 |
< |
(*dev->comin)(buf, NULL); |
389 |
< |
if (sscanf(buf, "%lf", &d0) != 1) |
390 |
< |
break; |
391 |
< |
} |
392 |
< |
shadthresh = d0; |
416 |
> |
getparam(s+2, "direct threshold", 'r', &shadthresh); |
417 |
|
break; |
418 |
+ |
case 'i': /* invisibility */ |
419 |
+ |
getparam(s+2, "direct invisibility", |
420 |
+ |
'b', &directinvis); |
421 |
+ |
break; |
422 |
|
default: |
423 |
|
goto badparam; |
424 |
|
} |
425 |
|
break; |
426 |
+ |
case 'b': /* black and white */ |
427 |
+ |
getparam(s+1, "black and white", 'b', &greyscale); |
428 |
+ |
break; |
429 |
+ |
case 'i': /* irradiance */ |
430 |
+ |
getparam(s+1, "irradiance", 'b', &do_irrad); |
431 |
+ |
break; |
432 |
|
case 'a': /* ambient */ |
433 |
|
switch (s[1]) { |
434 |
|
case 'v': /* value */ |
435 |
< |
if (sscanf(s+2, "%lf %lf %lf", &d0, &d1, &d2) != 3) { |
402 |
< |
sprintf(buf, |
403 |
< |
"ambient value (%.6g %.6g %.6g): ", |
404 |
< |
colval(ambval,RED), |
405 |
< |
colval(ambval,GRN), |
406 |
< |
colval(ambval,BLU)); |
407 |
< |
(*dev->comout)(buf); |
408 |
< |
(*dev->comin)(buf, NULL); |
409 |
< |
if (sscanf(buf, "%lf %lf %lf", |
410 |
< |
&d0, &d1, &d2) != 3) |
411 |
< |
break; |
412 |
< |
} |
413 |
< |
setcolor(ambval, d0, d1, d2); |
435 |
> |
getparam(s+2, "ambient value", 'C', ambval); |
436 |
|
break; |
437 |
|
case 'a': /* accuracy */ |
438 |
< |
if (sscanf(s+2, "%lf", &d0) != 1) { |
417 |
< |
sprintf(buf, "ambient accuracy (%.6g): ", |
418 |
< |
ambacc); |
419 |
< |
(*dev->comout)(buf); |
420 |
< |
(*dev->comin)(buf, NULL); |
421 |
< |
if (sscanf(buf, "%lf", &d0) != 1) |
422 |
< |
break; |
423 |
< |
} |
424 |
< |
ambacc = d0; |
438 |
> |
getparam(s+2, "ambient accuracy", 'r', &ambacc); |
439 |
|
break; |
440 |
|
case 'd': /* divisions */ |
441 |
< |
if (sscanf(s+2, "%d", &i0) != 1) { |
428 |
< |
sprintf(buf, "ambient divisions (%d): ", |
429 |
< |
ambdiv); |
430 |
< |
(*dev->comout)(buf); |
431 |
< |
(*dev->comin)(buf, NULL); |
432 |
< |
if (sscanf(buf, "%d", &i0) != 1) |
433 |
< |
break; |
434 |
< |
} |
435 |
< |
ambdiv = i0; |
441 |
> |
getparam(s+2, "ambient divisions", 'i', &ambdiv); |
442 |
|
break; |
443 |
|
case 's': /* samples */ |
444 |
< |
if (sscanf(s+2, "%d", &i0) != 1) { |
439 |
< |
sprintf(buf, "ambient super-samples (%d): ", |
440 |
< |
ambssamp); |
441 |
< |
(*dev->comout)(buf); |
442 |
< |
(*dev->comin)(buf, NULL); |
443 |
< |
if (sscanf(buf, "%d", &i0) != 1) |
444 |
< |
break; |
445 |
< |
} |
446 |
< |
ambssamp = i0; |
444 |
> |
getparam(s+2, "ambient super-samples", 'i', &ambssamp); |
445 |
|
break; |
446 |
|
case 'b': /* bounces */ |
447 |
< |
if (sscanf(s+2, "%d", &i0) != 1) { |
450 |
< |
sprintf(buf, "ambient bounces (%d): ", |
451 |
< |
ambounce); |
452 |
< |
(*dev->comout)(buf); |
453 |
< |
(*dev->comin)(buf, NULL); |
454 |
< |
if (sscanf(buf, "%d", &i0) != 1) |
455 |
< |
break; |
456 |
< |
} |
457 |
< |
ambounce = i0; |
447 |
> |
getparam(s+2, "ambient bounces", 'i', &ambounce); |
448 |
|
break; |
449 |
|
case 'r': |
450 |
< |
if (sscanf(s+2, "%d", &i0) != 1) { |
461 |
< |
sprintf(buf, "ambient resolution (%d): ", |
462 |
< |
ambres); |
463 |
< |
(*dev->comout)(buf); |
464 |
< |
(*dev->comin)(buf, NULL); |
465 |
< |
if (sscanf(buf, "%d", &i0) != 1) |
466 |
< |
break; |
467 |
< |
} |
468 |
< |
ambres = i0; |
450 |
> |
getparam(s+2, "ambient resolution", 'i', &ambres); |
451 |
|
minarad = ambres > 0 ? thescene.cusize/ambres : 0.0; |
452 |
|
break; |
453 |
|
default: |
457 |
|
case 's': /* sample */ |
458 |
|
switch (s[1]) { |
459 |
|
case 'p': /* pixel */ |
460 |
< |
if (sscanf(s+2, "%d", &i0) != 1) { |
479 |
< |
sprintf(buf, "sample pixel (%d): ", psample); |
480 |
< |
(*dev->comout)(buf); |
481 |
< |
(*dev->comin)(buf, NULL); |
482 |
< |
if (sscanf(buf, "%d", &i0) != 1) |
483 |
< |
break; |
484 |
< |
} |
485 |
< |
psample = i0; |
460 |
> |
getparam(s+2, "sample pixel", 'i', &psample); |
461 |
|
pdepth = 0; |
462 |
|
break; |
463 |
|
case 't': /* threshold */ |
464 |
< |
if (sscanf(s+2, "%lf", &d0) != 1) { |
490 |
< |
sprintf(buf, "sample threshold (%.6g): ", |
491 |
< |
maxdiff); |
492 |
< |
(*dev->comout)(buf); |
493 |
< |
(*dev->comin)(buf, NULL); |
494 |
< |
if (sscanf(buf, "%lf", &d0) != 1) |
495 |
< |
break; |
496 |
< |
} |
497 |
< |
maxdiff = d0; |
464 |
> |
getparam(s+2, "sample threshold", 'r', &maxdiff); |
465 |
|
pdepth = 0; |
466 |
|
break; |
467 |
|
default: |
472 |
|
break; |
473 |
|
default:; |
474 |
|
badparam: |
475 |
+ |
*sskip(s) = '\0'; |
476 |
|
sprintf(errmsg, "%s: unknown variable", s); |
477 |
|
error(COMMAND, errmsg); |
478 |
|
break; |
569 |
|
fputexpos(exposure, fp); |
570 |
|
if (dev->pixaspect != 1.0) |
571 |
|
fputaspect(dev->pixaspect, fp); |
572 |
+ |
fputformat(COLRFMT, fp); |
573 |
|
putc('\n', fp); |
574 |
|
fputresolu(YMAJOR|YDECR, hresolu, vresolu, fp); |
575 |
|
|
576 |
|
scanline = (COLR *)malloc(hresolu*sizeof(COLR)); |
577 |
< |
if (scanline == NULL) |
578 |
< |
error(SYSTEM, "out of memory in writepict"); |
577 |
> |
if (scanline == NULL) { |
578 |
> |
error(COMMAND, "not enough memory!"); |
579 |
> |
fclose(fp); |
580 |
> |
unlink(fname); |
581 |
> |
return; |
582 |
> |
} |
583 |
|
for (y = vresolu-1; y >= 0; y--) { |
584 |
|
getpictcolrs(y, scanline, &ptrunk, hresolu, vresolu); |
585 |
|
if (fwritecolrs(scanline, hresolu, fp) < 0) |
586 |
|
break; |
587 |
|
} |
588 |
+ |
free((char *)scanline); |
589 |
|
if (fclose(fp) < 0) |
590 |
|
error(COMMAND, "write error"); |
617 |
– |
free((char *)scanline); |
591 |
|
} |