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

Comparing ray/src/hd/rhpict.c (file contents):
Revision 3.4 by gwlarson, Tue Mar 9 10:55:24 1999 UTC vs.
Revision 3.8 by greg, Sat Feb 22 02:07:25 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1999 Silicon Graphics, Inc. */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ SGI";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Radiance holodeck picture generator
6   */
7  
8   #include "rholo.h"
9   #include "view.h"
13 #include "resolu.h"
10  
11   char    *progname;              /* our program name */
12   char    *hdkfile;               /* holodeck file name */
13 + char    gargc;                  /* global argc */
14 + char    **gargv;                /* global argv */
15  
16   VIEW    myview = STDVIEW;       /* current output view */
17   int     xres = 512, yres = 512; /* max. horizontal and vertical resolution */
18   char    *outspec = NULL;        /* output file specification */
19 + double  randfrac = -1.;         /* random resampling fraction */
20   double  pixaspect = 1.;         /* pixel aspect ratio */
21   int     seqstart = 0;           /* sequence start frame */
22   double  expval = 1.;            /* exposure value */
# Line 36 | Line 35 | char   *argv[];
35   {
36          int     i, rval;
37  
38 +        gargc = argc; gargv = argv;
39          progname = argv[0];                     /* get arguments */
40          for (i = 1; i < argc && argv[i][0] == '-'; i++) {
41                  rval = getviewopt(&myview, argc-i, argv+i);
# Line 74 | Line 74 | char   *argv[];
74                                  goto userr;
75                          outspec = argv[++i];
76                          break;
77 +                case 'r':                       /* random sampling */
78 +                        if (badarg(argc-i-1,argv+i+1,"f"))
79 +                                goto userr;
80 +                        randfrac = atof(argv[++i]);
81 +                        break;
82 +                case 's':                       /* smooth sampling */
83 +                        randfrac = -1.;
84 +                        break;
85                  case 'S':                       /* sequence start */
86                          if (badarg(argc-i-1,argv+i+1,"i"))
87                                  goto userr;
# Line 111 | Line 119 | char   *argv[];
119          quit(0);                                /* all done! */
120   userr:
121          fprintf(stderr,
122 < "Usage: %s [-w][-pa pa][-pe ex][-x hr][-y vr][-S stfn][-o outp][view] input.hdk\n",
122 > "Usage: %s [-w][-r rf][-pa pa][-pe ex][-x hr][-y vr][-S stfn][-o outp][view] input.hdk\n",
123                          progname);
124          quit(1);
125   }
# Line 135 | Line 143 | int    fn;
143                                          /* render image */
144          if (blist.nb > 0) {
145                  render_frame(blist.bl, blist.nb);
146 <                free((char *)blist.bl);
146 >                free((void *)blist.bl);
147          } else {
148                  sprintf(errmsg, "no section visible in frame %d", fn);
149                  error(WARNING, errmsg);
# Line 171 | Line 179 | int    nb;
179                  bil[i].b = bl[i].bi;
180          }
181          hdloadbeams(bil, nb, pixBeam);
182 <        pixFlush();
183 <        free((char *)bil);
182 >        pixFinish(randfrac);
183 >        free((void *)bil);
184   }
185  
186  
# Line 196 | Line 204 | int    fn;
204                                  /* write header */
205          newheader("RADIANCE", stdout);
206          printf("SOFTWARE= %s\n", VersionID);
207 <        printf("%s %s\n", progname, hdkfile);
207 >        printargs(gargc, gargv, stdout);
208          if (fn)
209                  printf("FRAME=%d\n", fn);
210          fputs(VIEWSTR, stdout);
# Line 274 | Line 282 | initialize()                   /* initialize holodeck and buffers */
282          fd = dup(fileno(fp));                   /* dup file descriptor */
283          fclose(fp);                             /* done with stdio */
284          for (n = 0; nextloc > 0L; n++) {        /* initialize each section */
285 <                lseek(fd, (long)nextloc, 0);
285 >                lseek(fd, (off_t)nextloc, 0);
286                  read(fd, (char *)&nextloc, sizeof(nextloc));
287                  hdinit(fd, NULL);
288          }
# Line 287 | Line 295 | initialize()                   /* initialize holodeck and buffers */
295   }
296  
297  
298 + void
299   eputs(s)                        /* put error message to stderr */
300   register char  *s;
301   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines