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.21 by greg, Tue Jun 26 09:00:12 1990 UTC vs.
Revision 1.34 by greg, Thu Oct 10 12:58:13 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>
18   #endif
19 +
20 + #include  <signal.h>
21   #include  <fcntl.h>
22  
23   #include  "view.h"
24  
25   #include  "random.h"
26  
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 */
# Line 36 | 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 53 | 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 72 | Line 84 | int  code;
84   }
85  
86  
87 + #ifdef BSD
88   report()                /* report progress */
89   {
77 #ifdef BSD
90          struct rusage  rubuf;
91          double  t;
92  
# Line 87 | 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 + report()                /* report progress */
107 + {
108          signal(SIGALRM, report);
109 <        sprintf(errmsg, "%ld rays, %4.2f%% done\n", nrays, pctdone);
110 < #endif
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);
95
96        if (ralrm > 0)
97                alarm(ralrm);
113   }
114 + #endif
115  
116  
117   render(zfile, oldfile)                          /* render the scene */
# Line 106 | Line 122 | char  *zfile, *oldfile;
122          float  *zbar[MAXDIV+1];         /* z values */
123          int  ypos;                      /* current scanline */
124          int  ystep;                     /* current y step size */
125 +        int  hstep;                     /* h step size */
126          int  zfd;
127          COLOR  *colptr;
128          float  *zptr;
# Line 113 | Line 130 | char  *zfile, *oldfile;
130                                          /* check sampling */
131          if (psample < 1)
132                  psample = 1;
133 <        else if (psample > MAXDIV)
133 >        else if (psample > MAXDIV) {
134 >                sprintf(errmsg, "pixel sampling reduced from %d to %d",
135 >                                psample, MAXDIV);
136 >                error(WARNING, errmsg);
137                  psample = MAXDIV;
138 +        }
139                                          /* allocate scanlines */
140          for (i = 0; i <= psample; i++) {
141                  scanbar[i] = (COLOR *)malloc(hresolu*sizeof(COLOR));
# Line 141 | Line 162 | char  *zfile, *oldfile;
162          fputresolu(YMAJOR|YDECR, hresolu, vresolu, stdout);
163                                          /* recover file and compute first */
164          i = salvage(oldfile);
165 <        if (zfd != -1 && lseek(zfd, (long)i*hresolu*sizeof(float), 0) == -1)
165 >        if (zfd != -1 && i > 0 &&
166 >                        lseek(zfd, (long)i*hresolu*sizeof(float), 0) == -1)
167                  error(SYSTEM, "z file seek error in render");
168 +        pctdone = 100.0*i/vresolu;
169 +        if (ralrm > 0)                  /* report init stats */
170 +                report();
171 + #ifndef  BSD
172 +        else
173 + #endif
174 +        signal(SIGALRM, report);
175          ypos = vresolu-1 - i;
176 <        fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
177 <        ystep = psample;
176 >        hstep = (psample*140+49)/99;            /* quincunx sampling */
177 >        ystep = (psample*99+70)/140;
178 >        fillscanline(scanbar[0], zbar[0], hresolu, ypos, hstep);
179                                                  /* compute scanlines */
180          for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
151                                                        /* record progress */
152                pctdone = 100.0*(vresolu-1-ypos-ystep)/vresolu;
181                                                          /* bottom adjust? */
182                  if (ypos < 0) {
183                          ystep += ypos;
# Line 162 | Line 190 | char  *zfile, *oldfile;
190                  zbar[ystep] = zbar[0];
191                  zbar[0] = zptr;
192                                                          /* fill base line */
193 <                fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
193 >                fillscanline(scanbar[0], zbar[0], hresolu, ypos, hstep);
194                                                          /* fill bar */
195                  fillscanbar(scanbar, zbar, hresolu, ypos, ystep);
196                                                          /* write it out */
197 + #ifndef  BSD
198 +                signal(SIGALRM, SIG_IGN);       /* don't interrupt writes */
199 + #endif
200                  for (i = ystep; i > 0; i--) {
201                          if (zfd != -1 && write(zfd, (char *)zbar[i],
202                                          hresolu*sizeof(float))
# Line 176 | Line 207 | char  *zfile, *oldfile;
207                  }
208                  if (fflush(stdout) == EOF)
209                          goto writerr;
210 +                                                        /* record progress */
211 +                pctdone = 100.0*(vresolu-1-ypos)/vresolu;
212 +                if (ralrm > 0 && time((long *)0) >= tlastrept+ralrm)
213 +                        report();
214 + #ifndef  BSD
215 +                else
216 +                        signal(SIGALRM, report);
217 + #endif
218          }
219                                                  /* clean up */
220          if (zfd != -1) {
# Line 206 | Line 245 | register COLOR  *scanline;
245   register float  *zline;
246   int  xres, y, xstep;
247   {
248 +        static int  nc = 0;             /* number of calls */
249          int  b = xstep;
250          double  z;
251          register int  i;
252          
253          z = pixvalue(scanline[0], 0, y);
254          if (zline) zline[0] = z;
255 <
256 <        for (i = xstep; i < xres-1+xstep; i += xstep) {
255 >                                /* zig-zag start for quincunx pattern */
256 >        for (i = nc++ & 1 ? xstep/2 : xstep; i < xres-1+xstep; i += xstep) {
257                  if (i >= xres) {
258                          xstep += xres-1-i;
259                          i = xres-1;
# Line 318 | Line 358 | pixvalue(col, x, y)            /* compute pixel value */
358   COLOR  col;                     /* returned color */
359   int  x, y;                      /* pixel position */
360   {
361 <        static RAY  thisray;    /* our ray for this pixel */
361 >        static RAY  thisray;
362  
363 <        viewray(thisray.rorg, thisray.rdir, &ourview,
364 <                        (x+pixjitter())/hresolu, (y+pixjitter())/vresolu);
363 >        if (viewray(thisray.rorg, thisray.rdir, &ourview,
364 >                        (x+pixjitter())/hresolu, (y+pixjitter())/vresolu) < 0) {
365 >                setcolor(col, 0.0, 0.0, 0.0);
366 >                return(0.0);
367 >        }
368  
369          rayorigin(&thisray, NULL, PRIMARY, 1.0);
370 <        
370 >
371 >        samplendx = pixnumber(x,y,hresolu,vresolu);     /* set pixel index */
372 >
373          rayvalue(&thisray);                     /* trace ray */
374  
375          copycolor(col, thisray.rcol);           /* return color */
# Line 382 | Line 427 | char  *oldfile;
427          return(y);
428   writerr:
429          error(SYSTEM, "write error in salvage");
430 + }
431 +
432 +
433 + int
434 + pixnumber(x, y, xres, yres)             /* compute pixel index (brushed) */
435 + register int  x, y;
436 + int  xres, yres;
437 + {
438 +        x -= y;
439 +        while (x < 0)
440 +                x += xres;
441 +        return((((x>>2)*yres + y) << 2) + (x & 3));
442   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines