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.37 by greg, Sat Feb 22 02:07:30 2003 UTC vs.
Revision 2.49 by schorsch, Thu Apr 24 10:28:25 2008 UTC

# Line 5 | Line 5 | static const char      RCSid[] = "$Id$";
5   * Generate sections of a picture.
6   */
7  
8 +
9 + #include <stdio.h>
10 + #include <signal.h>
11 + #include <sys/types.h>
12 +
13 + #include "platform.h"
14 + #ifndef NON_POSIX /* XXX need abstraction for process management */
15 + #include <sys/wait.h>
16 + #endif
17 +
18   #include "standard.h"
19 + #include "color.h"
20 + #include "view.h"
21 + #include "rtprocess.h"
22  
23   #ifndef F_SETLKW
24  
25 < main(argc, argv)
26 < int argc;
27 < char *argv[];
25 > int
26 > main(
27 >        int argc,
28 >        char *argv[]
29 > )
30   {
31          fprintf(stderr, "%s: no NFS lock manager on this machine\n", argv[0]);
32          exit(1);
# Line 19 | Line 34 | char *argv[];
34  
35   #else
36  
22 #include <signal.h>
23 #include "color.h"
24 #include "view.h"
25
37   #ifndef NFS
38   #define  NFS                    1
39   #endif
# Line 40 | Line 51 | char *argv[];
51   #define unguard()       sigrelse(SIGALRM)
52   #endif
53   #ifndef guard_io
54 < #define guard_io()      0
55 < #define unguard()       0
54 > #define guard_io()      
55 > #define unguard()      
56   #endif
57  
58   extern char  *strerror();
# Line 49 | Line 60 | extern char  *strerror();
60                                  /* rpict command */
61   char  *rpargv[128] = {"rpict", "-S", "1"};
62   int  rpargc = 3;
52 int  rpd[3];
63   FILE  *torp, *fromrp;
64   COLR  *pbuf;
65                                  /* our view parameters */
# Line 72 | Line 82 | unsigned  timelim = 0;
82   int  rvrlim = -1;
83  
84   int  gotalrm = 0;
85 < int  onalrm() { gotalrm++; }
85 > void  onalrm(int i) { gotalrm++; }
86  
87 + static void dolock(int  fd, int  ltyp);
88 + static void init(int  ac, char  **av);
89 + static int nextpiece(int        *xp, int        *yp);
90 + static int rvrpiece(int *xp, int        *yp);
91 + static int cleanup(int  rstat);
92 + static void rpiece(void);
93 + static int putpiece(int xpos, int       ypos);
94 + static void filerr(char  *t);
95  
96 < main(argc, argv)
97 < int  argc;
98 < char  *argv[];
96 >
97 > int
98 > main(
99 >        int  argc,
100 >        char  *argv[]
101 > )
102   {
103          register int  i, rval;
104          
# Line 186 | Line 207 | char  *argv[];
207   }
208  
209  
210 < dolock(fd, ltyp)                /* lock or unlock a file */
211 < int  fd;
212 < int  ltyp;
210 > static void
211 > dolock(         /* lock or unlock a file */
212 >        int  fd,
213 >        int  ltyp
214 > )
215   {
216          static struct flock  fls;       /* static so initialized to zeroes */
217  
# Line 201 | Line 224 | int  ltyp;
224   }
225  
226  
227 < init(ac, av)                    /* set up output file and start rpict */
228 < int  ac;
229 < char  **av;
227 > static void
228 > init(                   /* set up output file and start rpict */
229 >        int  ac,
230 >        char  **av
231 > )
232   {
233          static char  hrbuf[16], vrbuf[16];
234          extern char  VersionID[];
235          char  *err;
236          FILE  *fp;
237          int  hr, vr;
238 +        SUBPROC  rpd; /* since we don't close_process(), this can be local */
239                                          /* set up view */
240          if ((err = setview(&ourview)) != NULL) {
241                  fprintf(stderr, "%s: %s\n", progname, err);
# Line 223 | Line 249 | char  **av;
249                                          /* compute piece size */
250          hres /= hmult;
251          vres /= vmult;
252 +        if (hres <= 0 || vres <= 0) {
253 +                fprintf(stderr, "%s: illegal resolution/subdivision\n", progname);
254 +                exit(1);
255 +        }
256          normaspect(viewaspect(&ourview)*hmult/vmult, &pixaspect, &hres, &vres);
257          sprintf(hrbuf, "%d", hres);
258          rpargv[rpargc++] = "-x"; rpargv[rpargc++] = hrbuf;
# Line 268 | Line 298 | char  **av;
298                  goto filerr;
299          dolock(outfd, F_UNLCK);
300                                          /* start rpict process */
301 <        if (open_process(rpd, rpargv) <= 0) {
301 >        if (open_process(&rpd, rpargv) <= 0) {
302                  fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]);
303                  exit(1);
304          }
305 <        if ((fromrp = fdopen(rpd[0], "r")) == NULL ||
306 <                        (torp = fdopen(rpd[1], "w")) == NULL) {
305 >        if ((fromrp = fdopen(rpd.r, "r")) == NULL ||
306 >                        (torp = fdopen(rpd.w, "w")) == NULL) {
307                  fprintf(stderr, "%s: cannot open stream to %s\n",
308                                  progname, rpargv[0]);
309                  exit(1);
# Line 292 | Line 322 | filerr:
322   }
323  
324  
325 < int
326 < nextpiece(xp, yp)               /* get next piece assignment */
327 < int  *xp, *yp;
325 > static int
326 > nextpiece(              /* get next piece assignment */
327 >        int     *xp,
328 >        int     *yp
329 > )
330   {
331          if (gotalrm)                    /* someone wants us to quit */
332                  return(0);
# Line 334 | Line 366 | int  *xp, *yp;
366   }
367  
368  
369 < int
370 < rvrpiece(xp, yp)                /* check for recoverable pieces */
371 < register int  *xp, *yp;
369 > static int
370 > rvrpiece(               /* check for recoverable pieces */
371 >        register int    *xp,
372 >        register int    *yp
373 > )
374   {
375          static char  *pdone = NULL;     /* which pieces are done */
376          static long  readpos = -1;      /* how far we've read */
# Line 378 | Line 412 | register int  *xp, *yp;
412   }
413  
414  
415 < int
416 < cleanup(rstat)                  /* close rpict process and clean up */
417 < int  rstat;
415 > static int
416 > cleanup(                        /* close rpict process and clean up */
417 >        int  rstat
418 > )
419   {
420          int  status;
421  
# Line 394 | Line 429 | int  rstat;
429   }
430  
431  
432 < rpiece()                        /* render picture piece by piece */
432 > static void
433 > rpiece(void)                    /* render picture piece by piece */
434   {
435          VIEW  pview;
436          int  xorg, yorg;
437                                          /* compute view parameters */
438 <        copystruct(&pview, &ourview);
438 >        pview = ourview;
439          switch (ourview.type) {
440          case VT_PER:
441 <                pview.horiz = 2.*180./PI*atan(
442 <                                tan(PI/180./2.*ourview.horiz)/hmult );
443 <                pview.vert = 2.*180./PI*atan(
444 <                                tan(PI/180./2.*ourview.vert)/vmult );
441 >                pview.horiz = (2.*180./PI)*atan(
442 >                                tan((PI/180./2.)*ourview.horiz)/hmult );
443 >                pview.vert = (2.*180./PI)*atan(
444 >                                tan((PI/180./2.)*ourview.vert)/vmult );
445                  break;
446          case VT_PAR:
447          case VT_ANG:
# Line 414 | Line 450 | rpiece()                       /* render picture piece by piece */
450                  break;
451          case VT_CYL:
452                  pview.horiz = ourview.horiz / hmult;
453 <                pview.vert = 2.*180./PI*atan(
454 <                                tan(PI/180./2.*ourview.vert)/vmult );
453 >                pview.vert = (2.*180./PI)*atan(
454 >                                tan((PI/180./2.)*ourview.vert)/vmult );
455                  break;
456          case VT_HEM:
457 <                pview.horiz = 2.*180./PI*asin(
458 <                                sin(PI/180./2.*ourview.horiz)/hmult );
459 <                pview.vert = 2.*180./PI*asin(
460 <                                sin(PI/180./2.*ourview.vert)/vmult );
457 >                pview.horiz = (2.*180./PI)*asin(
458 >                                sin((PI/180./2.)*ourview.horiz)/hmult );
459 >                pview.vert = (2.*180./PI)*asin(
460 >                                sin((PI/180./2.)*ourview.vert)/vmult );
461                  break;
462 +        case VT_PLS:
463 +                pview.horiz = sin((PI/180./2.)*ourview.horiz) /
464 +                                (1.0 + cos((PI/180./2.)*ourview.horiz)) / hmult;
465 +                pview.horiz *= pview.horiz;
466 +                pview.horiz = (2.*180./PI)*acos((1. - pview.horiz) /
467 +                                                (1. + pview.horiz));
468 +                pview.vert = sin((PI/180./2.)*ourview.vert) /
469 +                                (1.0 + cos((PI/180./2.)*ourview.vert)) / vmult;
470 +                pview.vert *= pview.vert;
471 +                pview.vert = (2.*180./PI)*acos((1. - pview.vert) /
472 +                                                (1. + pview.vert));
473 +                break;
474          default:
475                  fprintf(stderr, "%s: unknown view type '-vt%c'\n",
476                                  progname, ourview.type);
# Line 441 | Line 489 | rpiece()                       /* render picture piece by piece */
489   }
490  
491  
492 < int
493 < putpiece(xpos, ypos)            /* get next piece from rpict */
494 < int  xpos, ypos;
492 > static int
493 > putpiece(               /* get next piece from rpict */
494 > int     xpos,
495 > int     ypos
496 > )
497   {
498          struct flock  fls;
499          int  pid, status;
500          int  hr, vr;
501          register int  y;
502                                  /* check bounds */
503 <        if (xpos < 0 | ypos < 0 | xpos >= hmult | ypos >= vmult) {
503 >        if ((xpos < 0) | (ypos < 0) | (xpos >= hmult) | (ypos >= vmult)) {
504                  fprintf(stderr, "%s: requested piece (%d,%d) out of range\n",
505                                  progname, xpos, ypos);
506                  exit(cleanup(1));
# Line 458 | Line 508 | int  xpos, ypos;
508                                  /* check header from rpict */
509          guard_io();
510          getheader(fromrp, NULL, NULL);
511 <        if (!fscnresolu(&hr, &vr, fromrp) || hr != hres | vr != vres) {
511 >        if (!fscnresolu(&hr, &vr, fromrp) || (hr != hres) | (vr != vres)) {
512                  fprintf(stderr, "%s: resolution mismatch from %s\n",
513                                  progname, rpargv[0]);
514                  exit(cleanup(1));
# Line 503 | Line 553 | int  xpos, ypos;
553                  filerr("lock");
554   #endif
555                                  /* write new piece to file */
556 <        if (lseek(outfd, (off_t)fls.l_start, 0) < 0)
556 >        if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0)
557                  filerr("seek");
558          if (hmult == 1) {
559                  if (writebuf(outfd, (char *)pbuf,
# Line 516 | Line 566 | int  xpos, ypos;
566                                  filerr("write");
567                          if (y < vr-1 && lseek(outfd,
568                                          (off_t)(hmult-1)*hr*sizeof(COLR),
569 <                                        1) < 0)
569 >                                        SEEK_CUR) < 0)
570                                  filerr("seek");
571                  }
572   #if NFS
# Line 542 | Line 592 | int  xpos, ypos;
592   }
593  
594  
595 < filerr(t)                       /* report file error and exit */
596 < char  *t;
595 > static void
596 > filerr(                 /* report file error and exit */
597 >        char  *t
598 > )
599   {
600          fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
601                          progname, t, outfile, strerror(errno));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines