ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rv2.c
(Generate patch)

Comparing ray/src/rt/rv2.c (file contents):
Revision 1.23 by greg, Thu Jul 18 15:49:06 1991 UTC vs.
Revision 2.1 by greg, Tue Nov 12 17:09:52 1991 UTC

# Line 1 | Line 1
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";
# Line 18 | Line 18 | static char SCCSid[] = "$SunId$ LBL";
18  
19   #include  "rpaint.h"
20  
21 + #include  "resolu.h"
22 +
23   #include  <ctype.h>
24  
25   #define  CTRL(c)        ('c'-'@')
26  
27 + extern char  VersionID[];
28   extern char  *progname;
29 + extern char  *octname;
30  
31  
32   getframe(s)                             /* get a new frame */
# Line 140 | Line 144 | char  *s;
144          if (sscanf(s, "%s", buf) == 1) {        /* get parameters from a file */
145                  copystruct(&nv, &stdview);
146                  if ((fname = getpath(buf, NULL, 0)) == NULL ||
147 <                                (success = viewfile(fname, &nv, 0, 0)) == -1) {
147 >                                (success = viewfile(fname, &nv, NULL)) == -1) {
148                          sprintf(errmsg, "cannot open \"%s\"", buf);
149                          error(COMMAND, errmsg);
150                          return;
# Line 301 | Line 305 | char  *s;
305   }
306  
307  
308 + getparam(str, dsc, typ, ptr)            /* get variable from user */
309 + char  *str, *dsc;
310 + int  typ;
311 + register union {int i; double d; COLOR C;}  *ptr;
312 + {
313 +        extern char  *index();
314 +        int  i0;
315 +        double  d0, d1, d2;
316 +        char  buf[48];
317 +
318 +        switch (typ) {
319 +        case 'i':                       /* integer */
320 +                if (sscanf(str, "%d", &i0) != 1) {
321 +                        (*dev->comout)(dsc);
322 +                        sprintf(buf, " (%d): ", ptr->i);
323 +                        (*dev->comout)(buf);
324 +                        (*dev->comin)(buf, NULL);
325 +                        if (sscanf(buf, "%d", &i0) != 1)
326 +                                return(0);
327 +                }
328 +                ptr->i = i0;
329 +                return(1);
330 +        case 'r':                       /* real */
331 +                if (sscanf(str, "%lf", &d0) != 1) {
332 +                        (*dev->comout)(dsc);
333 +                        sprintf(buf, " (%.6g): ", ptr->d);
334 +                        (*dev->comout)(buf);
335 +                        (*dev->comin)(buf, NULL);
336 +                        if (sscanf(buf, "%lf", &d0) != 1)
337 +                                return(0);
338 +                }
339 +                ptr->d = d0;
340 +                return(1);
341 +        case 'b':                       /* boolean */
342 +                if (sscanf(str, "%1s", buf) != 1) {
343 +                        (*dev->comout)(dsc);
344 +                        sprintf(buf, " (%c): ", ptr->i ? 'y' : 'n');
345 +                        (*dev->comout)(buf);
346 +                        (*dev->comin)(buf, NULL);
347 +                        if (buf[0] == '\0' ||
348 +                                        index("yY+1tTnN-0fF", buf[0]) == NULL)
349 +                                return(0);
350 +                }
351 +                ptr->i = index("yY+1tT", buf[0]) != NULL;
352 +                return(1);
353 +        case 'C':                       /* color */
354 +                if (sscanf(str, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
355 +                        (*dev->comout)(dsc);
356 +                        sprintf(buf, " (%.6g %.6g %.6g): ",
357 +                                        colval(ptr->C,RED),
358 +                                        colval(ptr->C,GRN),
359 +                                        colval(ptr->C,BLU));
360 +                        (*dev->comout)(buf);
361 +                        (*dev->comin)(buf, NULL);
362 +                        if (sscanf(buf, "%lf %lf %lf", &d0, &d1, &d2) != 3)
363 +                                return(0);
364 +                }
365 +                setcolor(ptr->C, d0, d1, d2);
366 +                return(1);
367 +        }
368 + }
369 +
370 +
371   setparam(s)                             /* get/set program parameter */
372   register char  *s;
373   {
# Line 319 | Line 386 | register char  *s;
386          extern int  ambssamp;
387          extern int  ambounce;
388          extern int  directinvis;
389 +        extern double  srcsizerat;
390          extern int  do_irrad;
391 <        int  i0;
324 <        double  d0, d1, d2;
325 <        char  buf[128], ans[4];
391 >        char  buf[128];
392          
393          if (s[0] == '\0') {
394                  (*dev->comout)(
395 <                        "aa ab ad ar as av b dc dj di dt i lr lw sp st: ");
395 >                        "aa ab ad ar as av b dc di dj ds dt i lr lw sp st: ");
396                  (*dev->comin)(buf, NULL);
397                  s = buf;
398          }
# Line 334 | Line 400 | register char  *s;
400          case 'l':                       /* limit */
401                  switch (s[1]) {
402                  case 'w':                       /* weight */
403 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
338 <                                sprintf(buf, "limit weight (%.6g): ",
339 <                                                minweight);
340 <                                (*dev->comout)(buf);
341 <                                (*dev->comin)(buf, NULL);
342 <                                if (sscanf(buf, "%lf", &d0) != 1)
343 <                                        break;
344 <                        }
345 <                        minweight = d0;
403 >                        getparam(s+2, "limit weight", 'r', &minweight);
404                          break;
405                  case 'r':                       /* reflection */
406 <                        if (sscanf(s+2, "%d", &i0) != 1) {
349 <                                sprintf(buf, "limit reflection (%d): ",
350 <                                                maxdepth);
351 <                                (*dev->comout)(buf);
352 <                                (*dev->comin)(buf, NULL);
353 <                                if (sscanf(buf, "%d", &i0) != 1)
354 <                                        break;
355 <                        }
356 <                        maxdepth = i0;
406 >                        getparam(s+2, "limit reflection", 'i', &maxdepth);
407                          break;
408                  default:
409                          goto badparam;
# Line 362 | Line 412 | register char  *s;
412          case 'd':                       /* direct */
413                  switch (s[1]) {
414                  case 'j':                       /* jitter */
415 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
366 <                                sprintf(buf, "direct jitter (%.6g): ",
367 <                                                dstrsrc);
368 <                                (*dev->comout)(buf);
369 <                                (*dev->comin)(buf, NULL);
370 <                                if (sscanf(buf, "%lf", &d0) != 1)
371 <                                        break;
372 <                        }
373 <                        dstrsrc = d0;
415 >                        getparam(s+2, "direct jitter", 'r', &dstrsrc);
416                          break;
417                  case 'c':                       /* certainty */
418 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
377 <                                sprintf(buf, "direct certainty (%.6g): ",
378 <                                                shadcert);
379 <                                (*dev->comout)(buf);
380 <                                (*dev->comin)(buf, NULL);
381 <                                if (sscanf(buf, "%lf", &d0) != 1)
382 <                                        break;
383 <                        }
384 <                        shadcert = d0;
418 >                        getparam(s+2, "direct certainty", 'r', &shadcert);
419                          break;
420                  case 't':                       /* threshold */
421 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
388 <                                sprintf(buf, "direct threshold (%.6g): ",
389 <                                                shadthresh);
390 <                                (*dev->comout)(buf);
391 <                                (*dev->comin)(buf, NULL);
392 <                                if (sscanf(buf, "%lf", &d0) != 1)
393 <                                        break;
394 <                        }
395 <                        shadthresh = d0;
421 >                        getparam(s+2, "direct threshold", 'r', &shadthresh);
422                          break;
423                  case 'i':                       /* invisibility */
424 <                        if (sscanf(s+2, "%1s", ans) != 1) {
425 <                                sprintf(buf, "direct invisibility (%c): ",
400 <                                                directinvis ? 'y' : 'n');
401 <                                (*dev->comout)(buf);
402 <                                (*dev->comin)(buf, NULL);
403 <                                if (sscanf(buf, "%1s", ans) != 1)
404 <                                        break;
405 <                        }
406 <                        directinvis = tolower(ans[0]) == 'y';
424 >                        getparam(s+2, "direct invisibility",
425 >                                        'b', &directinvis);
426                          break;
427 +                case 's':                       /* sampling */
428 +                        getparam(s+2, "direct sampling", 'r', &srcsizerat);
429 +                        break;
430                  default:
431                          goto badparam;
432                  }
433                  break;
434          case 'b':                       /* black and white */
435 <                if (sscanf(s+1, "%1s", ans) != 1) {
414 <                        sprintf(buf, "black and white (%c): ",
415 <                                        greyscale ? 'y' : 'n');
416 <                        (*dev->comout)(buf);
417 <                        (*dev->comin)(buf, NULL);
418 <                        if (sscanf(buf, "%1s", ans) != 1)
419 <                                break;
420 <                }
421 <                greyscale = tolower(ans[0]) == 'y';
435 >                getparam(s+1, "black and white", 'b', &greyscale);
436                  break;
437          case 'i':                       /* irradiance */
438 <                if (sscanf(s+1, "%1s", ans) != 1) {
425 <                        sprintf(buf, "irradiance (%c): ",
426 <                                        do_irrad ? 'y' : 'n');
427 <                        (*dev->comout)(buf);
428 <                        (*dev->comin)(buf, NULL);
429 <                        if (sscanf(buf, "%1s", ans) != 1)
430 <                                break;
431 <                }
432 <                do_irrad = tolower(ans[0]) == 'y';
438 >                getparam(s+1, "irradiance", 'b', &do_irrad);
439                  break;
440          case 'a':                       /* ambient */
441                  switch (s[1]) {
442                  case 'v':                       /* value */
443 <                        if (sscanf(s+2, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
438 <                                sprintf(buf,
439 <                                        "ambient value (%.6g %.6g %.6g): ",
440 <                                                colval(ambval,RED),
441 <                                                colval(ambval,GRN),
442 <                                                colval(ambval,BLU));
443 <                                (*dev->comout)(buf);
444 <                                (*dev->comin)(buf, NULL);
445 <                                if (sscanf(buf, "%lf %lf %lf",
446 <                                                &d0, &d1, &d2) != 3)
447 <                                        break;
448 <                        }
449 <                        setcolor(ambval, d0, d1, d2);
443 >                        getparam(s+2, "ambient value", 'C', ambval);
444                          break;
445                  case 'a':                       /* accuracy */
446 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
453 <                                sprintf(buf, "ambient accuracy (%.6g): ",
454 <                                                ambacc);
455 <                                (*dev->comout)(buf);
456 <                                (*dev->comin)(buf, NULL);
457 <                                if (sscanf(buf, "%lf", &d0) != 1)
458 <                                        break;
459 <                        }
460 <                        ambacc = d0;
446 >                        getparam(s+2, "ambient accuracy", 'r', &ambacc);
447                          break;
448                  case 'd':                       /* divisions */
449 <                        if (sscanf(s+2, "%d", &i0) != 1) {
464 <                                sprintf(buf, "ambient divisions (%d): ",
465 <                                                ambdiv);
466 <                                (*dev->comout)(buf);
467 <                                (*dev->comin)(buf, NULL);
468 <                                if (sscanf(buf, "%d", &i0) != 1)
469 <                                        break;
470 <                        }
471 <                        ambdiv = i0;
449 >                        getparam(s+2, "ambient divisions", 'i', &ambdiv);
450                          break;
451                  case 's':                       /* samples */
452 <                        if (sscanf(s+2, "%d", &i0) != 1) {
475 <                                sprintf(buf, "ambient super-samples (%d): ",
476 <                                                ambssamp);
477 <                                (*dev->comout)(buf);
478 <                                (*dev->comin)(buf, NULL);
479 <                                if (sscanf(buf, "%d", &i0) != 1)
480 <                                        break;
481 <                        }
482 <                        ambssamp = i0;
452 >                        getparam(s+2, "ambient super-samples", 'i', &ambssamp);
453                          break;
454                  case 'b':                       /* bounces */
455 <                        if (sscanf(s+2, "%d", &i0) != 1) {
486 <                                sprintf(buf, "ambient bounces (%d): ",
487 <                                                ambounce);
488 <                                (*dev->comout)(buf);
489 <                                (*dev->comin)(buf, NULL);
490 <                                if (sscanf(buf, "%d", &i0) != 1)
491 <                                        break;
492 <                        }
493 <                        ambounce = i0;
455 >                        getparam(s+2, "ambient bounces", 'i', &ambounce);
456                          break;
457                  case 'r':
458 <                        if (sscanf(s+2, "%d", &i0) != 1) {
459 <                                sprintf(buf, "ambient resolution (%d): ",
460 <                                                ambres);
499 <                                (*dev->comout)(buf);
500 <                                (*dev->comin)(buf, NULL);
501 <                                if (sscanf(buf, "%d", &i0) != 1)
502 <                                        break;
503 <                        }
504 <                        ambres = i0;
505 <                        minarad = ambres > 0 ? thescene.cusize/ambres : 0.0;
458 >                        if (getparam(s+2, "ambient resolution", 'i', &ambres))
459 >                                minarad = ambres > 0 ?
460 >                                                thescene.cusize/ambres : 0.0;
461                          break;
462                  default:
463                          goto badparam;
# Line 511 | Line 466 | register char  *s;
466          case 's':                       /* sample */
467                  switch (s[1]) {
468                  case 'p':                       /* pixel */
469 <                        if (sscanf(s+2, "%d", &i0) != 1) {
470 <                                sprintf(buf, "sample pixel (%d): ", psample);
516 <                                (*dev->comout)(buf);
517 <                                (*dev->comin)(buf, NULL);
518 <                                if (sscanf(buf, "%d", &i0) != 1)
519 <                                        break;
520 <                        }
521 <                        psample = i0;
522 <                        pdepth = 0;
469 >                        if (getparam(s+2, "sample pixel", 'i', &psample))
470 >                                pdepth = 0;
471                          break;
472                  case 't':                       /* threshold */
473 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
474 <                                sprintf(buf, "sample threshold (%.6g): ",
527 <                                                maxdiff);
528 <                                (*dev->comout)(buf);
529 <                                (*dev->comin)(buf, NULL);
530 <                                if (sscanf(buf, "%lf", &d0) != 1)
531 <                                        break;
532 <                        }
533 <                        maxdiff = d0;
534 <                        pdepth = 0;
473 >                        if (getparam(s+2, "sample threshold", 'r', &maxdiff))
474 >                                pdepth = 0;
475                          break;
476                  default:
477                          goto badparam;
# Line 541 | Line 481 | register char  *s;
481                  break;
482          default:;
483   badparam:
484 +                *sskip(s) = '\0';
485                  sprintf(errmsg, "%s: unknown variable", s);
486                  error(COMMAND, errmsg);
487                  break;
# Line 597 | Line 538 | char  *s;
538                          (*dev->comout)(buf);
539                  }
540                  (*dev->comin)(buf, NULL);
541 <                sprintf(buf, "with value (%.6g %.6g %.6g)",
541 >                sprintf(buf, "value (%.5g %.5g %.5g) (%.1fL)",
542                                  colval(thisray.rcol,RED),
543                                  colval(thisray.rcol,GRN),
544 <                                colval(thisray.rcol,BLU));
544 >                                colval(thisray.rcol,BLU),
545 >                                luminance(thisray.rcol));
546                  (*dev->comout)(buf);
547          }
548          (*dev->comin)(buf, NULL);
# Line 632 | Line 574 | char  *s;
574                                                  /* write header */
575          fputs(progname, fp);
576          fprintview(&ourview, fp);
577 <        putc('\n', fp);
577 >        if (octname != NULL)
578 >                fprintf(fp, " %s\n", octname);
579 >        else
580 >                putc('\n', fp);
581 >        fprintf(fp, "SOFTWARE= %s\n", VersionID);
582          if (exposure != 1.0)
583                  fputexpos(exposure, fp);
584          if (dev->pixaspect != 1.0)
585                  fputaspect(dev->pixaspect, fp);
586          fputformat(COLRFMT, fp);
587          putc('\n', fp);
588 <        fputresolu(YMAJOR|YDECR, hresolu, vresolu, fp);
588 >        fprtresolu(hresolu, vresolu, fp);
589  
590          scanline = (COLR *)malloc(hresolu*sizeof(COLR));
591 <        if (scanline == NULL)
592 <                error(SYSTEM, "out of memory in writepict");
591 >        if (scanline == NULL) {
592 >                error(COMMAND, "not enough memory!");
593 >                fclose(fp);
594 >                unlink(fname);
595 >                return;
596 >        }
597          for (y = vresolu-1; y >= 0; y--) {
598                  getpictcolrs(y, scanline, &ptrunk, hresolu, vresolu);
599                  if (fwritecolrs(scanline, hresolu, fp) < 0)
600                          break;
601          }
602 +        free((char *)scanline);
603          if (fclose(fp) < 0)
604                  error(COMMAND, "write error");
654        free((char *)scanline);
605   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines