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

Comparing ray/src/rt/rpict.c (file contents):
Revision 1.11 by greg, Sun Dec 10 13:42:45 1989 UTC vs.
Revision 1.30 by greg, Thu Jul 18 14:42:54 1991 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1991 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 15 | Line 15 | static char SCCSid[] = "$SunId$ LBL";
15   #ifdef BSD
16   #include  <sys/time.h>
17   #include  <sys/resource.h>
18 + #else
19 + #include  <signal.h>
20   #endif
21 + #include  <fcntl.h>
22  
23   #include  "view.h"
24  
25   #include  "random.h"
26  
27 < VIEW  ourview = STDVIEW(512);           /* view parameters */
27 > int  dimlist[MAXDIM];                   /* sampling dimensions */
28 > int  ndims = 0;                         /* number of sampling dimensions */
29 > int  samplendx;                         /* sample index number */
30  
31 + VIEW  ourview = STDVIEW;                /* view parameters */
32 + int  hresolu = 512;                     /* horizontal resolution */
33 + int  vresolu = 512;                     /* vertical resolution */
34 + double  pixaspect = 1.0;                /* pixel aspect ratio */
35 +
36   int  psample = 4;                       /* pixel sample size */
37   double  maxdiff = .05;                  /* max. difference for interpolation */
38   double  dstrpix = 0.67;                 /* square pixel distribution */
# Line 30 | Line 40 | double  dstrpix = 0.67;                        /* square pixel distribution
40   double  dstrsrc = 0.0;                  /* square source distribution */
41   double  shadthresh = .05;               /* shadow threshold */
42   double  shadcert = .5;                  /* shadow certainty */
43 + int  directrelay = 0;                   /* number of source relays */
44 + int  vspretest = 512;                   /* virtual source pretest density */
45 + int  directinvis = 0;                   /* sources invisible? */
46  
47   int  maxdepth = 6;                      /* maximum recursion depth */
48   double  minweight = 5e-3;               /* minimum ray weight */
# Line 47 | Line 60 | int  ralrm = 0;                                /* seconds between reports */
60  
61   double  pctdone = 0.0;                  /* percentage done */
62  
63 + long  tlastrept = 0L;                   /* time at last report */
64 +
65 + extern long  time();
66 + extern long  tstart;                    /* starting time */
67 +
68   extern long  nrays;                     /* number of rays traced */
69  
70 < #define  MAXDIV         32              /* maximum sample size */
70 > #define  MAXDIV         15              /* maximum sample size */
71  
72   #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
73  
# Line 66 | Line 84 | int  code;
84   }
85  
86  
87 + #ifdef BSD
88   report()                /* report progress */
89   {
71 #ifdef BSD
90          struct rusage  rubuf;
91          double  t;
92  
# Line 81 | Line 99 | report()               /* report progress */
99  
100          sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f CPU hours\n",
101                          nrays, pctdone, t/3600.0);
102 +        eputs(errmsg);
103 +        tlastrept = time((long *)0);
104 + }
105   #else
106 <        sprintf(errmsg, "%ld rays, %4.2f%% done\n", nrays, pctdone);
107 < #endif
106 > report()                /* report progress */
107 > {
108 >        signal(SIGALRM, report);
109 >        tlastrept = time((long *)0);
110 >        sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f hours\n",
111 >                        nrays, pctdone, (tlastrept-tstart)/3600.0);
112          eputs(errmsg);
88
89        if (ralrm > 0)
90                alarm(ralrm);
113   }
114 + #endif
115  
116  
117   render(zfile, oldfile)                          /* render the scene */
118   char  *zfile, *oldfile;
119   {
120 +        extern long  lseek();
121          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
122          float  *zbar[MAXDIV+1];         /* z values */
123          int  ypos;                      /* current scanline */
124 <        FILE  *zfp;
124 >        int  ystep;                     /* current y step size */
125 >        int  zfd;
126          COLOR  *colptr;
127          float  *zptr;
128          register int  i;
129                                          /* check sampling */
130          if (psample < 1)
131                  psample = 1;
132 <        else if (psample > MAXDIV)
132 >        else if (psample > MAXDIV) {
133 >                sprintf(errmsg, "pixel sampling reduced from %d to %d",
134 >                                psample, MAXDIV);
135 >                error(WARNING, errmsg);
136                  psample = MAXDIV;
137 +        }
138                                          /* allocate scanlines */
139          for (i = 0; i <= psample; i++) {
140 <                scanbar[i] = (COLOR *)malloc(ourview.hresolu*sizeof(COLOR));
140 >                scanbar[i] = (COLOR *)malloc(hresolu*sizeof(COLOR));
141                  if (scanbar[i] == NULL)
142                          goto memerr;
143          }
144                                          /* open z file */
145          if (zfile != NULL) {
146 <                if ((zfp = fopen(zfile, "a+")) == NULL) {
146 >                if ((zfd = open(zfile, O_WRONLY|O_CREAT, 0666)) == -1) {
147                          sprintf(errmsg, "cannot open z file \"%s\"", zfile);
148                          error(SYSTEM, errmsg);
149                  }
150                  for (i = 0; i <= psample; i++) {
151 <                        zbar[i] = (float *)malloc(ourview.hresolu*sizeof(float));
151 >                        zbar[i] = (float *)malloc(hresolu*sizeof(float));
152                          if (zbar[i] == NULL)
153                                  goto memerr;
154                  }
155          } else {
156 <                zfp = NULL;
156 >                zfd = -1;
157                  for (i = 0; i <= psample; i++)
158                          zbar[i] = NULL;
159          }
160                                          /* write out boundaries */
161 <        fputresolu(YMAJOR|YDECR, ourview.hresolu, ourview.vresolu, stdout);
161 >        fputresolu(YMAJOR|YDECR, hresolu, vresolu, stdout);
162                                          /* recover file and compute first */
163          i = salvage(oldfile);
164 <        if (zfp != NULL && fseek(zfp, (long)i*ourview.hresolu*sizeof(float), 0) == EOF)
164 >        if (zfd != -1 && i > 0 &&
165 >                        lseek(zfd, (long)i*hresolu*sizeof(float), 0) == -1)
166                  error(SYSTEM, "z file seek error in render");
167 <        ypos = ourview.vresolu-1 - i;
168 <        fillscanline(scanbar[0], zbar[0], ourview.hresolu, ypos, psample);
167 >        pctdone = 100.0*i/vresolu;
168 >        if (ralrm > 0)                  /* report init stats */
169 >                report();
170 >        ypos = vresolu-1 - i;
171 >        fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
172 >        ystep = psample;
173                                                  /* compute scanlines */
174 <        for (ypos -= psample; ypos >= 0; ypos -= psample) {
175 <        
176 <                pctdone = 100.0*(ourview.vresolu-ypos-psample)/ourview.vresolu;
177 <
178 <                colptr = scanbar[psample];              /* move base to top */
179 <                scanbar[psample] = scanbar[0];
174 >        for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
175 >                                                        /* bottom adjust? */
176 >                if (ypos < 0) {
177 >                        ystep += ypos;
178 >                        ypos = 0;
179 >                }
180 >                colptr = scanbar[ystep];                /* move base to top */
181 >                scanbar[ystep] = scanbar[0];
182                  scanbar[0] = colptr;
183 <                zptr = zbar[psample];
184 <                zbar[psample] = zbar[0];
183 >                zptr = zbar[ystep];
184 >                zbar[ystep] = zbar[0];
185                  zbar[0] = zptr;
186                                                          /* fill base line */
187 <                fillscanline(scanbar[0], zbar[0], ourview.hresolu, ypos, psample);
187 >                fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
188                                                          /* fill bar */
189 <                fillscanbar(scanbar, zbar, ourview.hresolu, ypos, psample);
189 >                fillscanbar(scanbar, zbar, hresolu, ypos, ystep);
190                                                          /* write it out */
191 <                for (i = psample; i > 0; i--) {
192 <                        if (zfp != NULL && fwrite(zbar[i],sizeof(float),ourview.hresolu,zfp) != ourview.hresolu)
191 >                for (i = ystep; i > 0; i--) {
192 >                        if (zfd != -1 && write(zfd, (char *)zbar[i],
193 >                                        hresolu*sizeof(float))
194 >                                        < hresolu*sizeof(float))
195                                  goto writerr;
196 <                        if (fwritescan(scanbar[i],ourview.hresolu,stdout) < 0)
196 >                        if (fwritescan(scanbar[i], hresolu, stdout) < 0)
197                                  goto writerr;
198                  }
161                if (zfp != NULL && fflush(zfp) == EOF)
162                        goto writerr;
199                  if (fflush(stdout) == EOF)
200                          goto writerr;
201 +                                                        /* record progress */
202 +                pctdone = 100.0*(vresolu-1-ypos)/vresolu;
203 +                if (ralrm > 0 && time((long *)0) >= tlastrept+ralrm)
204 +                        report();
205          }
166                                                /* compute residual */
167        colptr = scanbar[psample];
168        scanbar[psample] = scanbar[0];
169        scanbar[0] = colptr;
170        zptr = zbar[psample];
171        zbar[psample] = zbar[0];
172        zbar[0] = zptr;
173        if (ypos > -psample) {
174                fillscanline(scanbar[-ypos], zbar[-ypos], ourview.hresolu,
175                                0, psample);
176                fillscanbar(scanbar-ypos, zbar-ypos, ourview.hresolu,
177                                0, psample+ypos);
178        }
179        for (i = psample; i+ypos >= 0; i--) {
180                if (zfp != NULL && fwrite(zbar[i],sizeof(float),ourview.hresolu,zfp) != ourview.hresolu)
181                        goto writerr;
182                if (fwritescan(scanbar[i], ourview.hresolu, stdout) < 0)
183                        goto writerr;
184        }
206                                                  /* clean up */
207 <        if (zfp != NULL) {
208 <                if (fclose(zfp) == EOF)
207 >        if (zfd != -1) {
208 >                if (write(zfd, (char *)zbar[0], hresolu*sizeof(float))
209 >                                < hresolu*sizeof(float))
210                          goto writerr;
211 +                if (close(zfd) == -1)
212 +                        goto writerr;
213                  for (i = 0; i <= psample; i++)
214                          free((char *)zbar[i]);
215          }
216 +        fwritescan(scanbar[0], hresolu, stdout);
217          if (fflush(stdout) == EOF)
218                  goto writerr;
219          for (i = 0; i <= psample; i++)
# Line 214 | Line 239 | int  xres, y, xstep;
239          z = pixvalue(scanline[0], 0, y);
240          if (zline) zline[0] = z;
241  
242 <        for (i = xstep; i < xres; i += xstep) {
243 <        
242 >        for (i = xstep; i < xres-1+xstep; i += xstep) {
243 >                if (i >= xres) {
244 >                        xstep += xres-1-i;
245 >                        i = xres-1;
246 >                }
247                  z = pixvalue(scanline[i], i, y);
248                  if (zline) zline[i] = z;
249                  
250                  b = fillsample(scanline+i-xstep, zline ? zline+i-xstep : NULL,
251                                  i-xstep, y, xstep, 0, b/2);
252          }
225        if (i-xstep < xres-1) {
226                z = pixvalue(scanline[xres-1], xres-1, y);
227                if (zline) zline[xres-1] = z;
228                fillsample(scanline+i-xstep, zline ? zline+i-xstep : NULL,
229                                i-xstep, y, xres-1-(i-xstep), 0, b/2);
230        }
253   }
254  
255  
# Line 239 | Line 261 | int  xres, y, ysize;
261          COLOR  vline[MAXDIV+1];
262          float  zline[MAXDIV+1];
263          int  b = ysize;
242        double  z;
264          register int  i, j;
265          
266          for (i = 0; i < xres; i++) {
# Line 323 | Line 344 | pixvalue(col, x, y)            /* compute pixel value */
344   COLOR  col;                     /* returned color */
345   int  x, y;                      /* pixel position */
346   {
347 <        static RAY  thisray;    /* our ray for this pixel */
347 >        static RAY  thisray;
348  
349 <        rayview(thisray.rorg, thisray.rdir, &ourview,
350 <                        x + pixjitter(), y + pixjitter());
349 >        if (viewray(thisray.rorg, thisray.rdir, &ourview,
350 >                        (x+pixjitter())/hresolu, (y+pixjitter())/vresolu) < 0) {
351 >                setcolor(col, 0.0, 0.0, 0.0);
352 >                return(0.0);
353 >        }
354  
355          rayorigin(&thisray, NULL, PRIMARY, 1.0);
356 <        
356 >
357 >        samplendx = 3*y + x;                    /* set pixel index */
358 >
359          rayvalue(&thisray);                     /* trace ray */
360  
361          copycolor(col, thisray.rcol);           /* return color */
362          
363 <        return(thisray.rot);                    /* return distance */
363 >        return(thisray.rt);                     /* return distance */
364   }
365  
366  
# Line 364 | Line 390 | char  *oldfile;
390                  return(0);
391          }
392  
393 <        if (x != ourview.hresolu || y != ourview.vresolu) {
393 >        if (x != hresolu || y != vresolu) {
394                  sprintf(errmsg, "resolution mismatch in recover file \"%s\"",
395                                  oldfile);
396                  error(USER, errmsg);
397          }
398  
399 <        scanline = (COLR *)malloc(ourview.hresolu*sizeof(COLR));
399 >        scanline = (COLR *)malloc(hresolu*sizeof(COLR));
400          if (scanline == NULL)
401                  error(SYSTEM, "out of memory in salvage");
402 <        for (y = 0; y < ourview.vresolu; y++) {
403 <                if (freadcolrs(scanline, ourview.hresolu, fp) < 0)
402 >        for (y = 0; y < vresolu; y++) {
403 >                if (freadcolrs(scanline, hresolu, fp) < 0)
404                          break;
405 <                if (fwritecolrs(scanline, ourview.hresolu, stdout) < 0)
405 >                if (fwritecolrs(scanline, hresolu, stdout) < 0)
406                          goto writerr;
407          }
408          if (fflush(stdout) == EOF)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines