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

Comparing ray/src/util/rpiece.c (file contents):
Revision 2.57 by greg, Tue Aug 21 17:46:09 2018 UTC vs.
Revision 2.63 by greg, Wed Jul 3 17:06:57 2024 UTC

# Line 155 | Line 155 | main(
155                                          ++i;
156                                          continue;
157                                  }
158 +                                if (argv[i][2] == 'X') {
159 +                                        fprintf(stderr, "%s: -pXYZ unsupported\n",
160 +                                                argv[0]);
161 +                                        ++i;
162 +                                        continue;
163 +                                }
164 +                                if (argv[i][2] == 'c') {
165 +                                        fprintf(stderr, "%s: -pc unsupported\n",
166 +                                                argv[0]);
167 +                                        i += 9;
168 +                                        continue;
169 +                                }
170                                  if (argv[i][2] != 'a' || argv[i][3])
171                                          break;
172                                  pixaspect = atof(argv[++i]);
# Line 286 | Line 298 | init(                  /* set up output file and start rpict */
298          sprintf(vrbuf, "%d", vres);
299          rpargv[rpargc++] = "-y"; rpargv[rpargc++] = vrbuf;
300          rpargv[rpargc++] = "-pa"; rpargv[rpargc++] = "0";
301 +        rpargv[rpargc++] = "-pm"; rpargv[rpargc++] = "0";
302          rpargv[rpargc++] = av[ac-1];
303          rpargv[rpargc] = NULL;
304                                          /* open output file */
# Line 298 | Line 311 | init(                  /* set up output file and start rpict */
311                  fprintf(fp, "SOFTWARE= %s\n", VersionID);
312                  fputs(VIEWSTR, fp);
313                  fprintview(&ourview, fp);
314 <                putc('\n', fp);
314 >                fputc('\n', fp);
315                  fputnow(fp);
316                  if (pixaspect < .99 || pixaspect > 1.01)
317                          fputaspect(pixaspect, fp);
318 +                fputprims(stdprims, fp);
319                  fputformat(COLRFMT, fp);
320 <                putc('\n', fp);
320 >                fputc('\n', fp);
321                  fprtresolu(hres*hmult, vres*vmult, fp);
322          } else if ((outfd = open(outfile, O_RDWR)) >= 0) {
323                  dolock(outfd, F_RDLCK);
# Line 326 | Line 340 | init(                  /* set up output file and start rpict */
340                  goto filerr;
341          dolock(outfd, F_UNLCK);
342                                          /* start rpict process */
343 +        rpd = sp_inactive;
344          if (open_process(&rpd, rpargv) <= 0) {
345                  fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]);
346                  exit(1);
# Line 460 | Line 475 | cleanup(                       /* close rpict process and clean up */
475   static void
476   rpiece(void)                    /* render picture piece by piece */
477   {
478 +        char  *err;
479          VIEW  pview;
480          int  xorg, yorg;
465                                        /* compute view parameters */
466        pview = ourview;
467        switch (ourview.type) {
468        case VT_PER:
469                pview.horiz = (2.*180./PI)*atan(
470                                tan((PI/180./2.)*ourview.horiz)/hmult );
471                pview.vert = (2.*180./PI)*atan(
472                                tan((PI/180./2.)*ourview.vert)/vmult );
473                break;
474        case VT_PAR:
475        case VT_ANG:
476                pview.horiz = ourview.horiz / hmult;
477                pview.vert = ourview.vert / vmult;
478                break;
479        case VT_CYL:
480                pview.horiz = ourview.horiz / hmult;
481                pview.vert = (2.*180./PI)*atan(
482                                tan((PI/180./2.)*ourview.vert)/vmult );
483                break;
484        case VT_HEM:
485                pview.horiz = (2.*180./PI)*asin(
486                                sin((PI/180./2.)*ourview.horiz)/hmult );
487                pview.vert = (2.*180./PI)*asin(
488                                sin((PI/180./2.)*ourview.vert)/vmult );
489                break;
490        case VT_PLS:
491                pview.horiz = sin((PI/180./2.)*ourview.horiz) /
492                                (1.0 + cos((PI/180./2.)*ourview.horiz)) / hmult;
493                pview.horiz *= pview.horiz;
494                pview.horiz = (2.*180./PI)*acos((1. - pview.horiz) /
495                                                (1. + pview.horiz));
496                pview.vert = sin((PI/180./2.)*ourview.vert) /
497                                (1.0 + cos((PI/180./2.)*ourview.vert)) / vmult;
498                pview.vert *= pview.vert;
499                pview.vert = (2.*180./PI)*acos((1. - pview.vert) /
500                                                (1. + pview.vert));
501                break;
502        default:
503                fprintf(stderr, "%s: unknown view type '-vt%c'\n",
504                                progname, ourview.type);
505                exit(cleanup(1));
506        }
481                                          /* render each piece */
482          while (nextpiece(&xorg, &yorg)) {
483 <                pview.hoff = ourview.hoff*hmult + xorg - 0.5*(hmult-1);
484 <                pview.voff = ourview.voff*vmult + yorg - 0.5*(vmult-1);
483 >                pview = ourview;
484 >                err = cropview(&pview, (double)xorg/hmult, (double)yorg/vmult,
485 >                                        (xorg+1.)/hmult, (yorg+1.)/vmult);
486 >                if (err != NULL) {
487 >                        fprintf(stderr, "%s: %s\n", progname, err);
488 >                        exit(cleanup(1));
489 >                }
490                  fputs(VIEWSTR, torp);
491                  fprintview(&pview, torp);
492 <                putc('\n', torp);
492 >                fputc('\n', torp);
493                  fflush(torp);                   /* assigns piece to rpict */
494                  putpiece(xorg, yorg);           /* place piece in output */
495          }
# Line 588 | Line 567 | int    ypos
567          if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0)
568                  filerr("seek");
569          if (hmult == 1) {
570 <                if (writebuf(outfd, (char *)pbuf,
570 >                if (writebuf(outfd, pbuf,
571                                  vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR))
572                          filerr("write");
573          } else
574                  for (y = 0; y < vr; y++) {
575 <                        if (writebuf(outfd, (char *)(pbuf+y*hr),
575 >                        if (writebuf(outfd, pbuf+y*hr,
576                                          hr*sizeof(COLR)) != hr*sizeof(COLR))
577                                  filerr("write");
578                          if (y < vr-1 && lseek(outfd,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines