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.29 by greg, Mon Feb 28 09:22:32 1994 UTC vs.
Revision 2.35 by gregl, Tue Jul 29 11:27:49 1997 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1993 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 47 | Line 47 | char *argv[];
47   #define guard_io()      0
48   #define unguard()       0
49   #endif
50 +
51 + #ifndef linux
52 + extern char  *sys_errlist[];
53 + #endif
54 +
55                                  /* rpict command */
56   char  *rpargv[128] = {"rpict", "-S", "1"};
57   int  rpargc = 3;
# Line 69 | Line 74 | int  nforked = 0;
74  
75   char  *progname;
76   int  verbose = 0;
77 + unsigned  timelim = 0;
78   int  rvrlim = -1;
79  
80   extern long  lseek(), ftell();
# Line 118 | Line 124 | char  *argv[];
124                          case 'p':               /* pixel aspect ratio? */
125                                  if (argv[i][2] != 'a' || argv[i][3])
126                                          break;
127 <                                pixaspect = atof(argv[i+1]);
127 >                                pixaspect = atof(argv[++i]);
128                                  continue;
129 +                        case 'T':               /* time limit (hours) */
130 +                                if (argv[i][2])
131 +                                        break;
132 +                                timelim = atof(argv[++i])*3600. + .5;
133 +                                break;
134                          case 'x':               /* overall x resolution */
135                                  if (argv[i][2])
136                                          break;
# Line 187 | Line 198 | int  fd;
198   int  ltyp;
199   {
200          static struct flock  fls;       /* static so initialized to zeroes */
190        extern char  *sys_errlist[];
201  
202          fls.l_type = ltyp;
203          if (fcntl(fd, F_SETLKW, &fls) < 0) {
# Line 280 | Line 290 | char  **av;
290                  exit(1);
291          }
292          signal(SIGALRM, onalrm);
293 +        if (timelim)
294 +                alarm(timelim);
295          return;
296   filerr:
297          fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile);
# Line 345 | Line 357 | register int  *xp, *yp;
357                  return(0);              /* only check if asked */
358          if (pdone == NULL)              /* first call */
359                  pdone = calloc(hmult*vmult, sizeof(char));
360 +        if (pdone == NULL) {
361 +                fprintf(stderr, "%s: out of memory\n", progname);
362 +                exit(1);
363 +        }
364          if (readpos != -1)              /* mark what's been done */
365                  fseek(syncfp, readpos, 0);
366          while (fscanf(syncfp, "%d %d", xp, yp) == 2)
# Line 403 | Line 419 | rpiece()                       /* render picture piece by piece */
419                  pview.horiz = ourview.horiz / hmult;
420                  pview.vert = ourview.vert / vmult;
421                  break;
422 +        case VT_CYL:
423 +                pview.horiz = ourview.horiz / hmult;
424 +                pview.vert = 2.*180./PI*atan(
425 +                                tan(PI/180./2.*ourview.vert)/vmult );
426 +                break;
427          case VT_HEM:
428                  pview.horiz = 2.*180./PI*asin(
429                                  sin(PI/180./2.*ourview.horiz)/hmult );
# Line 416 | Line 437 | rpiece()                       /* render picture piece by piece */
437          }
438                                          /* render each piece */
439          while (nextpiece(&xorg, &yorg)) {
440 <                pview.hoff = ourview.hoff + xorg - 0.5*(hmult-1);
441 <                pview.voff = ourview.voff + yorg - 0.5*(vmult-1);
440 >                pview.hoff = ourview.hoff*hmult + xorg - 0.5*(hmult-1);
441 >                pview.voff = ourview.voff*vmult + yorg - 0.5*(vmult-1);
442                  fputs(VIEWSTR, torp);
443                  fprintview(&pview, torp);
444                  putc('\n', torp);
# Line 510 | Line 531 | int  xpos, ypos;
531          if (fcntl(outfd, F_SETLKW, &fls) < 0)
532                  filerr("lock");
533   #endif
534 +        if (verbose) {                          /* notify caller */
535 +                printf("%d %d done\n", xpos, ypos);
536 +                fflush(stdout);
537 +        }
538          if (syncfp != NULL) {                   /* record what's been done */
539                  sflock(F_WRLCK);
540                  fseek(syncfp, 0L, 2);           /* append index */
# Line 518 | Line 543 | int  xpos, ypos;
543                                  /*** Unlock not necessary, since
544                  sflock(F_UNLCK);        _exit() or nextpiece() is next ***/
545          }
521        if (verbose) {                          /* notify caller */
522                printf("%d %d done\n", xpos, ypos);
523                fflush(stdout);
524        }
546          if (pid == -1)          /* didn't fork or fork failed */
547                  return(0);
548          _exit(0);               /* else exit child process (releasing locks) */
# Line 531 | Line 552 | int  xpos, ypos;
552   filerr(t)                       /* report file error and exit */
553   char  *t;
554   {
534        extern char  *sys_errlist[];
535
555          fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
556                          progname, t, outfile, sys_errlist[errno]);
557          _exit(1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines