ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rv2.c
Revision: 2.79
Committed: Fri May 2 23:56:18 2025 UTC (5 days, 23 hours ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 2.78: +23 -18 lines
Log Message:
feat(rvu): Altered the "origin" command to take shift distances

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: rv2.c,v 2.78 2025/04/22 16:39:20 greg Exp $";
3 #endif
4 /*
5 * rv2.c - command routines used in tracing a view.
6 *
7 * External symbols declared in rpaint.h
8 */
9
10 #include "copyright.h"
11
12 #include <ctype.h>
13 #include <string.h>
14
15 #include "platform.h"
16 #include "rtprocess.h" /* win_popen() */
17 #include "paths.h"
18 #include "ray.h"
19 #include "ambient.h"
20 #include "otypes.h"
21 #include "otspecial.h"
22 #include "rpaint.h"
23
24 extern int psample; /* pixel sample size */
25 extern double maxdiff; /* max. sample difference */
26
27 #define CTRL(c) ((c)-'@')
28
29 #define sscanvec(s,v) (sscanf(s,FVFORMAT,v,v+1,v+2)==3)
30
31 extern char rifname[128]; /* rad input file name */
32
33 extern char *progname;
34 extern char *octname;
35
36
37 void
38 getframe( /* get a new frame */
39 char *s
40 )
41 {
42 if (getrect(s, &pframe) < 0)
43 return;
44 pdepth = 0;
45 }
46
47
48 void
49 getrepaint( /* get area and repaint */
50 char *s
51 )
52 {
53 RECT box;
54
55 if (getrect(s, &box) < 0)
56 return;
57 paintrect(&ptrunk, &box);
58 }
59
60
61 void
62 getview( /* get/show/save view parameters */
63 char *s
64 )
65 {
66 FILE *fp;
67 char buf[128];
68 char *fname;
69 int change = 0;
70 VIEW nv = ourview;
71
72 while (isspace(*s))
73 s++;
74 if (*s == '-') { /* command line parameters */
75 if (sscanview(&nv, s))
76 newview(&nv);
77 else
78 error(COMMAND, "bad view option(s)");
79 return;
80 }
81 if (nextword(buf, sizeof(buf), s) != NULL) { /* write to a file */
82 if ((fname = getpath(buf, NULL, 0)) == NULL ||
83 (fp = fopen(fname, "a")) == NULL) {
84 sprintf(errmsg, "cannot open \"%s\"", buf);
85 error(COMMAND, errmsg);
86 return;
87 }
88 fputs(progname, fp);
89 fprintview(&ourview, fp);
90 fputs(sskip(s), fp);
91 putc('\n', fp);
92 fclose(fp);
93 return;
94 }
95 sprintf(buf, "view type (%c): ", ourview.type);
96 (*dev->comout)(buf);
97 (*dev->comin)(buf, NULL);
98 if (buf[0] == CTRL('C')) return;
99 if (buf[0] && buf[0] != ourview.type) {
100 nv.type = buf[0];
101 change++;
102 }
103 sprintf(buf, "view point (%.6g %.6g %.6g): ",
104 ourview.vp[0], ourview.vp[1], ourview.vp[2]);
105 (*dev->comout)(buf);
106 (*dev->comin)(buf, NULL);
107 if (buf[0] == CTRL('C')) return;
108 if (sscanvec(buf, nv.vp))
109 change++;
110 sprintf(buf, "view direction (%.6g %.6g %.6g): ",
111 ourview.vdir[0]*ourview.vdist,
112 ourview.vdir[1]*ourview.vdist,
113 ourview.vdir[2]*ourview.vdist);
114 (*dev->comout)(buf);
115 (*dev->comin)(buf, NULL);
116 if (buf[0] == CTRL('C')) return;
117 if (sscanvec(buf, nv.vdir)) {
118 nv.vdist = 1.;
119 change++;
120 }
121 sprintf(buf, "view up (%.6g %.6g %.6g): ",
122 ourview.vup[0], ourview.vup[1], ourview.vup[2]);
123 (*dev->comout)(buf);
124 (*dev->comin)(buf, NULL);
125 if (buf[0] == CTRL('C')) return;
126 if (sscanvec(buf, nv.vup))
127 change++;
128 sprintf(buf, "view horiz and vert size (%.6g %.6g): ",
129 ourview.horiz, ourview.vert);
130 (*dev->comout)(buf);
131 (*dev->comin)(buf, NULL);
132 if (buf[0] == CTRL('C')) return;
133 if (sscanf(buf, "%lf %lf", &nv.horiz, &nv.vert) == 2)
134 change++;
135 sprintf(buf, "fore and aft clipping plane (%.6g %.6g): ",
136 ourview.vfore, ourview.vaft);
137 (*dev->comout)(buf);
138 (*dev->comin)(buf, NULL);
139 if (buf[0] == CTRL('C')) return;
140 if (sscanf(buf, "%lf %lf", &nv.vfore, &nv.vaft) == 2)
141 change++;
142 sprintf(buf, "view shift and lift (%.6g %.6g): ",
143 ourview.hoff, ourview.voff);
144 (*dev->comout)(buf);
145 (*dev->comin)(buf, NULL);
146 if (buf[0] == CTRL('C')) return;
147 if (sscanf(buf, "%lf %lf", &nv.hoff, &nv.voff) == 2)
148 change++;
149 if (change)
150 newview(&nv);
151 }
152
153
154 void
155 lastview( /* return to a previous view */
156 char *s
157 )
158 {
159 char buf[128];
160 char *fname;
161 int success;
162 VIEW nv;
163 /* get parameters from a file */
164 if (nextword(buf, sizeof(buf), s) != NULL) {
165 nv = stdview;
166 if ((fname = getpath(buf, "", R_OK)) == NULL ||
167 (success = viewfile(fname, &nv, NULL)) == -1) {
168 sprintf(errmsg, "cannot open \"%s\"", buf);
169 error(COMMAND, errmsg);
170 return;
171 }
172 if (!success)
173 error(COMMAND, "wrong file format");
174 else
175 newview(&nv);
176 return;
177 }
178 if (oldview.type == 0) { /* no old view! */
179 error(COMMAND, "no previous view");
180 return;
181 }
182 nv = ourview;
183 ourview = oldview;
184 oldview = nv;
185 newimage(NULL);
186 }
187
188
189 void
190 saveview( /* save view to rad file */
191 char *s
192 )
193 {
194 char view[64];
195 char *fname;
196 FILE *fp;
197
198 if (*atos(view, sizeof(view), s)) {
199 if (isint(view)) {
200 error(COMMAND, "cannot write view by number");
201 return;
202 }
203 s = sskip(s);
204 }
205 if (nextword(rifname, sizeof(rifname), s) == NULL && !rifname[0]) {
206 error(COMMAND, "no previous rad file");
207 return;
208 }
209 if ((fname = getpath(rifname, NULL, 0)) == NULL ||
210 (fp = fopen(fname, "a")) == NULL) {
211 sprintf(errmsg, "cannot open \"%s\"", rifname);
212 error(COMMAND, errmsg);
213 return;
214 }
215 fputs("view= ", fp);
216 fputs(view, fp);
217 fprintview(&ourview, fp);
218 putc('\n', fp);
219 fclose(fp);
220 }
221
222
223 void
224 loadview( /* load view from rad file */
225 char *s
226 )
227 {
228 char buf[512];
229 char *fname;
230 FILE *fp;
231 VIEW nv;
232
233 strcpy(buf, "rad -n -s -V -v ");
234 if (sscanf(s, "%s", buf+strlen(buf)) == 1)
235 s = sskip(s);
236 else
237 strcat(buf, "1");
238 if (nextword(rifname, sizeof(rifname), s) == NULL && !rifname[0]) {
239 error(COMMAND, "no previous rad file");
240 return;
241 }
242 if ((fname = getpath(rifname, "", R_OK)) == NULL) {
243 sprintf(errmsg, "cannot access \"%s\"", rifname);
244 error(COMMAND, errmsg);
245 return;
246 }
247 sprintf(buf+strlen(buf), " %s", fname);
248 if ((fp = popen(buf, "r")) == NULL) {
249 error(COMMAND, "cannot run rad");
250 return;
251 }
252 buf[0] = '\0';
253 fgets(buf, sizeof(buf), fp);
254 pclose(fp);
255 nv = stdview;
256 if (!sscanview(&nv, buf)) {
257 error(COMMAND, "rad error -- no such view?");
258 return;
259 }
260 newview(&nv);
261 }
262
263
264 void
265 getaim( /* aim camera */
266 char *s
267 )
268 {
269 VIEW nv = ourview;
270 double zfact;
271
272 if (getinterest(s, 1, nv.vdir, &zfact) < 0)
273 return;
274 zoomview(&nv, zfact);
275 newview(&nv);
276 }
277
278
279 void
280 getfocus( /* set focus distance */
281 char *s
282 )
283 {
284 char buf[64];
285 double dist;
286
287 if (sscanf(s, "%lf", &dist) < 1) {
288 int x, y;
289 RAY thisray;
290 if (dev->getcur == NULL)
291 return;
292 (*dev->comout)("Pick focus point\n");
293 if ((*dev->getcur)(&x, &y) == ABORT)
294 return;
295 if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
296 &ourview, (x+.5)/hresolu, (y+.5)/vresolu)) < -FTINY) {
297 error(COMMAND, "not on image");
298 return;
299 }
300 rayorigin(&thisray, PRIMARY, NULL, NULL);
301 if (!localhit(&thisray, &thescene)) {
302 error(COMMAND, "not a local object");
303 return;
304 }
305 dist = thisray.rot;
306 } else if (dist <= .0) {
307 error(COMMAND, "focus distance must be positive");
308 return;
309 }
310 ourview.vdist = dist;
311 sprintf(buf, "Focus distance set to %f\n", dist);
312 (*dev->comout)(buf);
313 }
314
315
316 void
317 getmove( /* move camera */
318 char *s
319 )
320 {
321 FVECT vc;
322 double mag;
323
324 if (getinterest(s, 0, vc, &mag) < 0)
325 return;
326 moveview(0.0, 0.0, mag, vc);
327 }
328
329
330 void
331 getrotate( /* rotate camera */
332 char *s
333 )
334 {
335 VIEW nv = ourview;
336 double angle, elev, zfact;
337
338 elev = 0.0; zfact = 1.0;
339 if (sscanf(s, "%lf %lf %lf", &angle, &elev, &zfact) < 1) {
340 error(COMMAND, "missing angle");
341 return;
342 }
343 spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.));
344 if (elev != 0.0)
345 geodesic(nv.vdir, nv.vdir, nv.vup, elev*(PI/180.), GEOD_RAD);
346
347 zoomview(&nv, zfact);
348 newview(&nv);
349 }
350
351
352 void
353 getpivot( /* pivot viewpoint */
354 char *s
355 )
356 {
357 FVECT vc;
358 double angle, elev, mag;
359
360 elev = 0.0;
361 if (sscanf(s, "%lf %lf", &angle, &elev) < 1) {
362 error(COMMAND, "missing angle");
363 return;
364 }
365 if (getinterest(sskip2(s,2), 0, vc, &mag) < 0)
366 return;
367 moveview(angle, elev, mag, vc);
368 }
369
370
371 void
372 getorigin( /* origin viewpoint */
373 char *s
374 )
375 {
376 VIEW nv = ourview;
377 FVECT voff;
378 int i;
379 double d;
380 /* check for view origin shift */
381 if (sscanf(s, "%lf", &d) == 1) {
382 double d_fore=d, d_right=0, d_up=0;
383 sscanf(s, "%*f %lf %lf", &d_right, &d_up);
384 d_right /= sqrt(nv.hn2);
385 for (i = 3; i--; )
386 nv.vp[i] += d_fore*nv.vdir[i] +
387 d_right*nv.hvec[i] +
388 d_up*nv.vup[i];
389 } else { /* else pick new origin */
390 int x, y;
391 RAY thisray;
392 if (dev->getcur == NULL)
393 return;
394 (*dev->comout)("Pick point on surface for new origin\n");
395 if ((*dev->getcur)(&x, &y) == ABORT)
396 return;
397 if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
398 &ourview, (x+.5)/hresolu, (y+.5)/vresolu)) < -FTINY) {
399 error(COMMAND, "not on image");
400 return;
401 }
402 rayorigin(&thisray, PRIMARY, NULL, NULL);
403 if (!localhit(&thisray, &thescene)) {
404 error(COMMAND, "not a local object");
405 return;
406 }
407 if (thisray.rod < 0.0) /* don't look through other side */
408 flipsurface(&thisray);
409 VSUM(nv.vp, thisray.rop, thisray.ron, 20.0*FTINY);
410 VCOPY(nv.vdir, thisray.ron);
411 d = DOT(nv.vdir, nv.vup);
412 if (d*d >= 1.-2.*FTINY) {
413 /* need different up vector */
414 nv.vup[0] = nv.vup[1] = nv.vup[2] = 0.0;
415 for (i = 3; i--; )
416 if (nv.vdir[i]*nv.vdir[i] < 0.34)
417 break;
418 nv.vup[i] = 1.;
419 }
420 }
421 newview(&nv);
422 }
423
424
425 void
426 getexposure( /* get new exposure */
427 char *s
428 )
429 {
430 char buf[128];
431 char *cp;
432 int x, y;
433 PNODE *p = &ptrunk;
434 int adapt = 0;
435 double e = 1.0;
436
437 for (cp = s; isspace(*cp); cp++)
438 ;
439 if (*cp == '@') {
440 adapt++;
441 while (isspace(*++cp))
442 ;
443 }
444 if (*cp == '\0') { /* normalize to point */
445 if (dev->getcur == NULL)
446 return;
447 (*dev->comout)("Pick point for exposure\n");
448 if ((*dev->getcur)(&x, &y) == ABORT)
449 return;
450 p = findrect(x, y, &ptrunk, -1);
451 } else {
452 if (*cp == '=') { /* absolute setting */
453 p = NULL;
454 e = 1.0/exposure;
455 for (cp++; isspace(*cp); cp++)
456 ;
457 if (*cp == '\0') { /* interactive */
458 sprintf(buf, "exposure (%f): ", exposure);
459 (*dev->comout)(buf);
460 (*dev->comin)(buf, NULL);
461 for (cp = buf; isspace(*cp); cp++)
462 ;
463 if (*cp == '\0')
464 return;
465 }
466 }
467 if ((*cp == '+') | (*cp == '-')) /* f-stops */
468 e *= pow(2.0, atof(cp));
469 else /* multiplier */
470 e *= atof(cp);
471 }
472 if (p != NULL) { /* relative setting */
473 compavg(p);
474 if (bright(p->v) < 1e-15) {
475 error(COMMAND, "cannot normalize to zero");
476 return;
477 }
478 if (adapt)
479 e *= 106./pow(1.219+pow(luminance(p->v)/exposure,.4),2.5)/exposure;
480 else
481 e *= 0.5 / bright(p->v);
482 }
483 if (e <= FTINY || fabs(1.0 - e) <= FTINY)
484 return;
485 scalepict(&ptrunk, e);
486 exposure *= e;
487 redraw();
488 }
489
490 typedef union {int i; double d; COLOR C;} *MyUptr;
491
492 int
493 getparam( /* get variable from user */
494 char *str,
495 char *dsc,
496 int typ,
497 void *p
498 )
499 {
500 MyUptr ptr = (MyUptr)p;
501 int i0;
502 double d0, d1, d2;
503 char buf[48];
504
505 switch (typ) {
506 case 'i': /* integer */
507 if (sscanf(str, "%d", &i0) != 1) {
508 (*dev->comout)(dsc);
509 sprintf(buf, " (%d): ", ptr->i);
510 (*dev->comout)(buf);
511 (*dev->comin)(buf, NULL);
512 if (sscanf(buf, "%d", &i0) != 1)
513 return(0);
514 }
515 if (ptr->i == i0)
516 return(0);
517 ptr->i = i0;
518 break;
519 case 'r': /* real */
520 if (sscanf(str, "%lf", &d0) != 1) {
521 (*dev->comout)(dsc);
522 sprintf(buf, " (%.6g): ", ptr->d);
523 (*dev->comout)(buf);
524 (*dev->comin)(buf, NULL);
525 if (sscanf(buf, "%lf", &d0) != 1)
526 return(0);
527 }
528 if (FRELEQ(ptr->d, d0))
529 return(0);
530 ptr->d = d0;
531 break;
532 case 'b': /* boolean */
533 if (sscanf(str, "%1s", buf) != 1) {
534 (*dev->comout)(dsc);
535 sprintf(buf, "? (%c): ", ptr->i ? 'y' : 'n');
536 (*dev->comout)(buf);
537 (*dev->comin)(buf, NULL);
538 if (buf[0] == '\0')
539 return(0);
540 }
541 if (strchr("yY+1tTnN-0fF", buf[0]) == NULL)
542 return(0);
543 i0 = strchr("yY+1tT", buf[0]) != NULL;
544 if (ptr->i == i0)
545 return(0);
546 ptr->i = i0;
547 break;
548 case 'C': /* color */
549 if (sscanf(str, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
550 (*dev->comout)(dsc);
551 sprintf(buf, " (%.6g %.6g %.6g): ",
552 colval(ptr->C,RED),
553 colval(ptr->C,GRN),
554 colval(ptr->C,BLU));
555 (*dev->comout)(buf);
556 (*dev->comin)(buf, NULL);
557 if (sscanf(buf, "%lf %lf %lf", &d0, &d1, &d2) != 3)
558 return(0);
559 }
560 if (FRELEQ(colval(ptr->C,RED), d0) &&
561 FRELEQ(colval(ptr->C,GRN), d1) &&
562 FRELEQ(colval(ptr->C,BLU), d2))
563 return(0);
564 setcolor(ptr->C, d0, d1, d2);
565 break;
566 default:
567 return(0); /* shouldn't happen */
568 }
569 newparam++;
570 return(1);
571 }
572
573
574 void
575 setparam( /* get/set program parameter */
576 char *s
577 )
578 {
579 int prev_newp = newparam;
580 char buf[128];
581
582 if (s[0] == '\0') {
583 (*dev->comout)(
584 "aa ab ad ar as av aw b bv dc dv dj ds dt i lr lw me ma mg ms ps pt ss st u: ");
585 (*dev->comin)(buf, NULL);
586 s = buf;
587 }
588 switch (s[0]) {
589 case 'u': /* uncorrelated sampling */
590 getparam(s+1, "uncorrelated sampling", 'b',
591 (void *)&rand_samp);
592 break;
593 case 'l': /* limit */
594 switch (s[1]) {
595 case 'w': /* weight */
596 getparam(s+2, "limit weight", 'r', &minweight);
597 break;
598 case 'r': /* reflection */
599 getparam(s+2, "limit reflection", 'i', &maxdepth);
600 break;
601 default:
602 goto badparam;
603 }
604 break;
605 case 'd': /* direct */
606 switch (s[1]) {
607 case 'j': /* jitter */
608 getparam(s+2, "direct jitter", 'r', &dstrsrc);
609 break;
610 case 'c': /* certainty */
611 getparam(s+2, "direct certainty", 'r', &shadcert);
612 break;
613 case 't': /* threshold */
614 getparam(s+2, "direct threshold", 'r', &shadthresh);
615 break;
616 case 'v': /* visibility */
617 getparam(s+2, "direct visibility", 'b', &directvis);
618 break;
619 case 's': /* sampling */
620 getparam(s+2, "direct sampling", 'r', &srcsizerat);
621 break;
622 default:
623 goto badparam;
624 }
625 break;
626 case 'b': /* back faces or black and white */
627 switch (s[1]) {
628 case 'v': /* back face visibility */
629 getparam(s+2, "back face visibility", 'b',
630 (void *)&backvis);
631 break;
632 case '\0': /* black and white */
633 case ' ':
634 case 'y': case 'Y': case 't': case 'T': case '1': case '+':
635 case 'n': case 'N': case 'f': case 'F': case '0': case '-':
636 getparam(s+1, "black and white", 'b', &greyscale);
637 newparam = prev_newp;
638 break;
639 default:
640 goto badparam;
641 }
642 break;
643 case 'i': /* irradiance */
644 getparam(s+1, "irradiance", 'b', &do_irrad);
645 break;
646 case 'a': /* ambient */
647 switch (s[1]) {
648 case 'v': /* value */
649 getparam(s+2, "ambient value", 'C', ambval);
650 break;
651 case 'w': /* weight */
652 getparam(s+2, "ambient value weight", 'i', &ambvwt);
653 break;
654 case 'a': /* accuracy */
655 if (getparam(s+2, "ambient accuracy", 'r', &ambacc))
656 setambacc(ambacc);
657 break;
658 case 'd': /* divisions */
659 getparam(s+2, "ambient divisions", 'i', &ambdiv);
660 break;
661 case 's': /* samples */
662 getparam(s+2, "ambient super-samples", 'i', &ambssamp);
663 break;
664 case 'b': /* bounces */
665 getparam(s+2, "ambient bounces", 'i', &ambounce);
666 break;
667 case 'r':
668 if (getparam(s+2, "ambient resolution", 'i', &ambres))
669 setambres(ambres);
670 break;
671 default:
672 goto badparam;
673 }
674 break;
675 case 'm': /* medium */
676 switch (s[1]) {
677 case 'e': /* extinction coefficient */
678 getparam(s+2, "extinction coefficient", 'C', cextinction);
679 break;
680 case 'a': /* scattering albedo */
681 getparam(s+2, "scattering albedo", 'C', salbedo);
682 break;
683 case 'g': /* scattering eccentricity */
684 getparam(s+2, "scattering eccentricity", 'r', &seccg);
685 break;
686 case 's': /* sampling distance */
687 getparam(s+2, "mist sampling distance", 'r', &ssampdist);
688 break;
689 default:
690 goto badparam;
691 }
692 break;
693 case 'p': /* pixel */
694 switch (s[1]) {
695 case 's': /* sample */
696 if (getparam(s+2, "pixel sample", 'i', &psample))
697 pdepth = 0;
698 break;
699 case 't': /* threshold */
700 if (getparam(s+2, "pixel threshold", 'r', &maxdiff))
701 pdepth = 0;
702 break;
703 default:
704 goto badparam;
705 }
706 newparam = prev_newp;
707 break;
708 case 's': /* specular */
709 switch (s[1]) {
710 case 's': /* sampling */
711 getparam(s+2, "specular sampling", 'r', &specjitter);
712 break;
713 case 't': /* threshold */
714 getparam(s+2, "specular threshold", 'r', &specthresh);
715 break;
716 default:
717 goto badparam;
718 }
719 break;
720 case '\0': /* nothing */
721 break;
722 default:;
723 badparam:
724 *sskip(s) = '\0';
725 sprintf(errmsg, "%s: unknown variable", s);
726 error(COMMAND, errmsg);
727 break;
728 }
729 }
730
731
732 void
733 traceray( /* trace a single ray */
734 char *s
735 )
736 {
737 RAY thisray;
738 char buf[512];
739 COLOR col;
740
741 thisray.rmax = 0.0;
742
743 if (!sscanvec(s, thisray.rorg) ||
744 !sscanvec(sskip2(s,3), thisray.rdir)) {
745 int x, y;
746
747 if (dev->getcur == NULL)
748 return;
749 (*dev->comout)("Pick ray\n");
750 if ((*dev->getcur)(&x, &y) == ABORT)
751 return;
752
753 if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
754 &ourview, (x+.5)/hresolu, (y+.5)/vresolu)) < -FTINY) {
755 error(COMMAND, "not on image");
756 return;
757 }
758
759 } else if (normalize(thisray.rdir) == 0.0) {
760 error(COMMAND, "zero ray direction");
761 return;
762 }
763
764 ray_trace(&thisray);
765
766 if (thisray.ro == NULL)
767 (*dev->comout)("ray hit nothing");
768 else {
769 OBJREC *mat = NULL;
770 OBJREC *mod = NULL;
771 char matspec[256];
772 OBJREC *ino;
773
774 matspec[0] = '\0';
775 if (thisray.ro->omod != OVOID) {
776 mod = objptr(thisray.ro->omod);
777 mat = findmaterial(thisray.ro);
778 }
779 if (thisray.rod < 0.0)
780 strcpy(matspec, "back of ");
781 if (mod != NULL) {
782 strcat(matspec, mod->oname);
783 if (mat != mod && mat != NULL)
784 sprintf(matspec+strlen(matspec),
785 " (%s)", mat->oname);
786 } else
787 strcat(matspec, VOIDID);
788 sprintf(buf, "ray hit %s %s \"%s\"", matspec,
789 ofun[thisray.ro->otype].funame,
790 thisray.ro->oname);
791 if ((ino = objptr(thisray.robj)) != thisray.ro)
792 sprintf(buf+strlen(buf), " in %s \"%s\"",
793 ofun[ino->otype].funame, ino->oname);
794 (*dev->comout)(buf);
795 (*dev->comin)(buf, NULL);
796 if (thisray.rot >= FHUGE*.99)
797 (*dev->comout)("at infinity");
798 else {
799 sprintf(buf, "at (%.3f %.3f %.3f) (%.6g)",
800 thisray.rop[0], thisray.rop[1],
801 thisray.rop[2], raydistance(&thisray));
802 (*dev->comout)(buf);
803 }
804 (*dev->comin)(buf, NULL);
805 scolor_rgb(col, thisray.rcol);
806 sprintf(buf, "value (%.4g %.4g %.4g) (%.3gL)",
807 colval(col,RED),
808 colval(col,GRN),
809 colval(col,BLU),
810 luminance(col));
811 (*dev->comout)(buf);
812 }
813 (*dev->comin)(buf, NULL);
814 }
815
816
817 void
818 writepict( /* write the picture to a file */
819 char *s
820 )
821 {
822 static char buf[128];
823 char *fname;
824 FILE *fp;
825 COLR *scanline;
826 int y;
827 /* XXX relies on words.c 2.11 behavior */
828 if (nextword(buf, sizeof(buf), s) == NULL && !buf[0]) {
829 error(COMMAND, "no file");
830 return;
831 }
832 if ((fname = getpath(buf, NULL, 0)) == NULL ||
833 (fp = fopen(fname, "w")) == NULL) {
834 sprintf(errmsg, "cannot open \"%s\"", buf);
835 error(COMMAND, errmsg);
836 return;
837 }
838 SET_FILE_BINARY(fp);
839 (*dev->comout)("writing \"");
840 (*dev->comout)(fname);
841 (*dev->comout)("\"...\n");
842 /* write header */
843 newheader("RADIANCE", fp);
844 fputs(progname, fp);
845 fprintview(&ourview, fp);
846 if (octname != NULL)
847 fprintf(fp, " %s\n", octname);
848 else
849 putc('\n', fp);
850 fprintf(fp, "SOFTWARE= %s\n", VersionID);
851 fputnow(fp);
852 if (exposure != 1.0)
853 fputexpos(exposure, fp);
854 if (dev->pixaspect != 1.0)
855 fputaspect(dev->pixaspect, fp);
856 fputprims(stdprims, fp);
857 fputformat(COLRFMT, fp);
858 putc('\n', fp);
859 fprtresolu(hresolu, vresolu, fp);
860
861 scanline = (COLR *)malloc(hresolu*sizeof(COLR));
862 if (scanline == NULL) {
863 error(COMMAND, "not enough memory!");
864 fclose(fp);
865 unlink(fname);
866 return;
867 }
868 for (y = vresolu-1; y >= 0; y--) {
869 getpictcolrs(y, scanline, &ptrunk, hresolu, vresolu);
870 if (fwritecolrs(scanline, hresolu, fp) < 0)
871 break;
872 }
873 free((void *)scanline);
874 if (fclose(fp) < 0)
875 error(COMMAND, "write error");
876 }