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

Comparing ray/src/util/ranimove1.c (file contents):
Revision 3.5 by schorsch, Mon Jul 21 22:30:19 2003 UTC vs.
Revision 3.11 by greg, Sun Jul 24 21:11:53 2005 UTC

# Line 4 | Line 4 | static const char      RCSid[] = "$Id$";
4   /*
5   *  ranimove1.c
6   *
7 < *  Basic frame rendering routines for ranimate(1).
7 > *  Basic frame rendering routines for ranimove(1).
8   *
9   *  Created by Gregory Ward on Wed Jan 08 2003.
10   */
# Line 16 | Line 16 | static const char      RCSid[] = "$Id$";
16   #include "platform.h"
17   #include "ranimove.h"
18   #include "otypes.h"
19 + #include "source.h"
20   #include "random.h"
21  
22   double          acctab[256];    /* accuracy value table */
# Line 46 | Line 47 | double         frm_stop;       /* when to stop rendering this frame
47   double          hlsmax;         /* maximum high-level saliency this frame */
48  
49  
50 < void
51 < write_map(mp, fn)               /* write out float map (debugging) */
52 < float   *mp;
53 < char    *fn;
50 > static void next_frame(void);
51 > static int sample_here(int      x, int  y);
52 > static int offset_cmp(const void        *p1, const void *p2);
53 > static void setmotion(int       n, FVECT        wpos);
54 > static void init_frame_sample(void);
55 >
56 >
57 > extern void
58 > write_map(              /* write out float map (debugging) */
59 >        float   *mp,
60 >        char    *fn
61 > )
62   {
63          FILE    *fp = fopen(fn, "w");
64          COLOR   scanbuf[2048];
# Line 73 | Line 82 | char   *fn;
82  
83  
84   static void
85 < next_frame()                    /* prepare next frame buffer */
85 > next_frame(void)                        /* prepare next frame buffer */
86   {
87          VIEW    *fv;
88          char    *err;
# Line 106 | Line 115 | next_frame()                   /* prepare next frame buffer */
115                          pixaspect = 1.;
116                          /* fall through */
117                  case 3:
118 <                        if ((hres > 0 & vres > 0))
118 >                        if ((hres > 0) & (vres > 0))
119                                  break;
120                          /* fall through */
121                  default:
# Line 125 | Line 134 | next_frame()                   /* prepare next frame buffer */
134                  zprev = (float *)malloc(sizeof(float)*hres*vres);
135                  oprev = (OBJECT *)malloc(sizeof(OBJECT)*hres*vres);
136                  aprev = (BYTE *)malloc(sizeof(BYTE)*hres*vres);
137 <                if ((cbuffer==NULL | zbuffer==NULL | obuffer==NULL |
138 <                                xmbuffer==NULL | ymbuffer==NULL |
139 <                                abuffer==NULL | sbuffer==NULL |
140 <                                cprev==NULL | zprev == NULL |
141 <                                oprev==NULL | aprev==NULL))
137 >                if ((cbuffer==NULL) | (zbuffer==NULL) | (obuffer==NULL) |
138 >                                (xmbuffer==NULL) | (ymbuffer==NULL) |
139 >                                (abuffer==NULL) | (sbuffer==NULL) |
140 >                                (cprev==NULL) | (zprev == NULL) |
141 >                                (oprev==NULL) | (aprev==NULL))
142                          error(SYSTEM, "out of memory in init_frame");
143                  frm_stop = getTime() + rtperfrm;
144          } else {
# Line 155 | Line 164 | next_frame()                   /* prepare next frame buffer */
164  
165  
166   static int
167 < sample_here(x, y)               /* 4x4 quincunx sample at this pixel? */
168 < register int    x, y;
167 > sample_here(            /* 4x4 quincunx sample at this pixel? */
168 >        register int    x,
169 >        register int    y
170 > )
171   {
172          if (y & 0x1)            /* every other row has samples */
173                  return(0);
# Line 166 | Line 177 | register int   x, y;
177   }
178  
179  
180 < void
181 < sample_pos(hv, x, y, sn)        /* compute jittered sample position */
182 < double  hv[2];
183 < int     x, y;
184 < int     sn;
180 > extern void
181 > sample_pos(     /* compute jittered sample position */
182 >        double  hv[2],
183 >        int     x,
184 >        int     y,
185 >        int     sn
186 > )
187   {
188          int     hl[2];
189  
# Line 181 | Line 194 | int    sn;
194   }
195  
196  
197 < double
198 < sample_wt(xo, yo)               /* compute interpolant sample weight */
199 < int     xo, yo;
197 > extern double
198 > sample_wt(              /* compute interpolant sample weight */
199 >        int     xo,
200 >        int yo
201 > )
202   {
203          static double   etab[400];
204 <        int     rad2 = xo*xo + yo*yo;
204 >        /* we can't use the name rad2 here, for some reason Visual C
205 >           thinks that is a constant (compiler bug?) */
206 >        int     rad_2 = xo*xo + yo*yo;
207          int     i;
208  
209          if (etab[0] <= FTINY)           /* initialize exponent table */
# Line 194 | Line 211 | int    xo, yo;
211                          etab[i] = exp(-0.1*i);
212  
213                                          /* look up Gaussian */
214 <        i = (int)((10.*3./(double)SAMPDIST2)*rad2 + .5);
214 >        i = (int)((10.*3./(double)SAMPDIST2)*rad_2 + .5);
215          if (i >= 400)
216                  return(0.0);
217          return(etab[i]);
# Line 202 | Line 219 | int    xo, yo;
219  
220  
221   static int
222 < offset_cmp(p1, p2)              /* compare offset distances */
223 < const void      *p1, *p2;
222 > offset_cmp(             /* compare offset distances */
223 >        const void      *p1,
224 >        const void      *p2
225 > )
226   {
227          return(*(const int *)p1 - *(const int *)p2);
228   }
229  
230  
231 < int
232 < getclosest(iarr, nc, x, y)      /* get nc closest neighbors on same object */
233 < int     *iarr;
234 < int     nc;
235 < int     x, y;
231 > extern int
232 > getclosest(     /* get nc closest neighbors on same object */
233 >        int     *iarr,
234 >        int     nc,
235 >        int     x,
236 >        int     y
237 > )
238   {
239   #define NSCHECK         ((2*SAMPDIST+1)*(2*SAMPDIST+1))
240          static int      hro, vro;
# Line 224 | Line 245 | int    x, y;
245                                          /* get our object number */
246          myobj = obuffer[fndx(x, y)];
247                                          /* special case for borders */
248 <        if ((x < SAMPDIST | x >= hres-SAMPDIST |
249 <                        y < SAMPDIST | y >= vres-SAMPDIST)) {
248 >        if ((x < SAMPDIST) | (x >= hres-SAMPDIST) |
249 >                        (y < SAMPDIST) | (y >= vres-SAMPDIST)) {
250                  int     tndx[NSCHECK][2];
251                  nf = 0;
252                  for (j = y - SAMPDIST; j <= y + SAMPDIST; j++) {
# Line 237 | Line 258 | int    x, y;
258                          i0 = fndx(i, j);
259                          if (!sbuffer[i0])
260                                  continue;
261 <                        if ((myobj != OVOID & obuffer[i0] != myobj))
261 >                        if ((myobj != OVOID) & (obuffer[i0] != myobj))
262                                  continue;
263                          tndx[nf][0] = (i-x)*(i-x) + (j-y)*(j-y);
264                          tndx[nf][1] = i0;
# Line 252 | Line 273 | int    x, y;
273                  return(nf);
274          }
275                                          /* initialize offset array */
276 <        if ((hres != hro | vres != vro)) {
276 >        if ((hres != hro) | (vres != vro)) {
277                  int     toffs[NSCHECK][2];
278                  i0 = fndx(SAMPDIST, SAMPDIST);
279                  nf = 0;
# Line 271 | Line 292 | int    x, y;
292          }
293                                          /* find up to nc neighbors */
294          i0 = fndx(x, y);
295 <        for (j = 0, nf = 0; (j < NSCHECK & nf < nc); j++) {
295 >        for (j = 0, nf = 0; (j < NSCHECK) & (nf < nc); j++) {
296                  i = i0 + ioffs[j];
297 <                if (sbuffer[i] && (myobj == OVOID | obuffer[i] == myobj))
297 >                if (sbuffer[i] && (myobj == OVOID) | (obuffer[i] == myobj))
298                          iarr[nf++] = i;
299          }
300                                          /* return number found */
# Line 283 | Line 304 | int    x, y;
304  
305  
306   static void
307 < setmotion(n, wpos)              /* compute motion vector for this pixel */
308 < register int    n;
309 < FVECT   wpos;
307 > setmotion(              /* compute motion vector for this pixel */
308 >                register int    n,
309 >                FVECT   wpos
310 > )
311   {
312          FVECT   ovp;
291        MAT4    xfm;
292        double  d;
313          int     moi;
314          int     xp, yp;
315                                          /* ID object and update maximum HLS */
# Line 309 | Line 329 | FVECT  wpos;
329          yp = (int)(ovp[1]*vres);
330          xmbuffer[n] = xp - (n % hres);
331          ymbuffer[n] = yp - (n / hres);
332 <        if ((xp < 0 | xp >= hres))
332 >        if ((xp < 0) | (xp >= hres))
333                  return;
334 <        if ((yp < 0 | yp >= vres))
334 >        if ((yp < 0) | (yp >= vres))
335                  return;
336          n = fndx(xp, yp);
337 <        if ((zprev[n] < 0.97*ovp[2] | zprev[n] > 1.03*ovp[2]))
337 >        if ((zprev[n] < 0.97*ovp[2]) | (zprev[n] > 1.03*ovp[2]))
338                  oprev[n] = OVOID;       /* assume it's a bad match */
339   }
340  
341  
342   static void
343 < init_frame_sample()             /* sample our initial frame */
343 > init_frame_sample(void)         /* sample our initial frame */
344   {
345          RAY     ir;
346          int     x, y;
# Line 347 | Line 367 | init_frame_sample()            /* sample our initial frame */
367                          continue;
368                  }
369                  if (!sample_here(x, y)) {       /* just cast */
370 <                        rayorigin(&ir, NULL, PRIMARY, 1.0);
370 >                        rayorigin(&ir, PRIMARY, NULL, NULL);
371                          if (!localhit(&ir, &thescene)) {
372                                  if (ir.ro != &Aftplane)
373                                          sourcehit(&ir);
# Line 365 | Line 385 | init_frame_sample()            /* sample our initial frame */
385                  }
386                  if (nprocs > 1) {               /* get sample */
387                          int     rval;
388 <                        rayorigin(&ir, NULL, PRIMARY, 1.0);
388 >                        rayorigin(&ir, PRIMARY, NULL, NULL);
389                          ir.rno = n;
390                          rval = ray_pqueue(&ir);
391                          if (!rval)
# Line 407 | Line 427 | init_frame_sample()            /* sample our initial frame */
427                  n = fndx(x, y);
428                  if ((obj = obuffer[n]) == OVOID)
429                          continue;
430 <                if ((obuffer[n+1] != OVOID & obuffer[n+1] != obj)) {
430 >                if ((obuffer[n+1] != OVOID) & (obuffer[n+1] != obj)) {
431                          obuffer[n] = OVOID;
432                          obuffer[n+1] = OVOID;
433                  }
434 <                if ((obuffer[n+hres] != OVOID & obuffer[n+hres] != obj)) {
434 >                if ((obuffer[n+hres] != OVOID) & (obuffer[n+hres] != obj)) {
435                          obuffer[n] = OVOID;
436                          obuffer[n+hres] = OVOID;
437                  }
# Line 422 | Line 442 | init_frame_sample()            /* sample our initial frame */
442   }
443  
444  
445 < int
446 < getambcolor(clr, obj)           /* get ambient color for object if we can */
447 < COLOR   clr;
448 < int     obj;
445 > extern int
446 > getambcolor(            /* get ambient color for object if we can */
447 >                COLOR   clr,
448 >                int     obj
449 > )
450   {
451          register OBJREC *op;
452  
453          if (obj == OVOID)
454                  return(0);
455          op = objptr(obj);
456 <        if ((op->otype == OBJ_INSTANCE & op->omod == OVOID))
456 >        if ((op->otype == OBJ_INSTANCE) & (op->omod == OVOID))
457                  return(0);
458                                          /* search for material */
459          do {
# Line 492 | Line 513 | int    obj;
513   }
514  
515  
516 < double
517 < estimaterr(cs, cs2, ns, ns0)    /* estimate relative error from samples */
518 < COLOR   cs, cs2;
519 < int     ns;
516 > extern double
517 > estimaterr(             /* estimate relative error from samples */
518 >                COLOR   cs,
519 >                COLOR   cs2,
520 >                int     ns,
521 >                int ns0
522 > )
523   {
524          double  d, d2, brt;
525  
# Line 515 | Line 539 | int    ns;
539   }
540  
541  
542 < double
543 < comperr(neigh, nc, ns0)         /* estimate relative error in neighborhood */
544 < int     *neigh;
545 < int     nc;
546 < int     ns0;
542 > extern double
543 > comperr(                /* estimate relative error in neighborhood */
544 >                int     *neigh,
545 >                int     nc,
546 >                int     ns0
547 > )
548   {
549          COLOR   csum, csum2;
550          COLOR   ctmp;
# Line 529 | Line 554 | int    ns0;
554                                          /* add together samples */
555          setcolor(csum, 0., 0., 0.);
556          setcolor(csum2, 0., 0., 0.);
557 <        for (i = 0, ns = 0; (i < nc & ns < NSAMPOK); i++) {
557 >        for (i = 0, ns = 0; (i < nc) & (ns < NSAMPOK); i++) {
558                  n = neigh[i];
559                  addcolor(csum, cbuffer[n]);
560                  if (val2map != NULL) {
# Line 550 | Line 575 | int    ns0;
575   }
576  
577  
578 < void
579 < comp_frame_error()              /* initialize frame error values */
578 > extern void
579 > comp_frame_error(void)          /* initialize frame error values */
580   {
581          BYTE    *edone = NULL;
582          COLOR   objamb;
583          double  eest;
584          int     neigh[NSAMPOK];
585          int     nc;
586 <        int     x, y, i, j;
586 >        int     x, y, i;
587          register int    n;
588  
589          if (!silent) {
# Line 581 | Line 606 | comp_frame_error()             /* initialize frame error values *
606                  for (y = vres; y--; )
607                      for (x = hres; x--; ) {
608                          n = fndx(x, y);
609 <                        if ((abuffer[n] != ALOWQ | obuffer[n] == OVOID))
609 >                        if ((abuffer[n] != ALOWQ) | (obuffer[n] == OVOID))
610                                  continue;
611                          if (!getambcolor(objamb, obuffer[n]))
612                                  continue;
# Line 629 | Line 654 | comp_frame_error()             /* initialize frame error values *
654   }
655  
656  
657 < void
658 < init_frame()                    /* render base (low quality) frame */
657 > extern void
658 > init_frame(void)                        /* render base (low quality) frame */
659   {
660          int     restart;
661  
# Line 692 | Line 717 | return;
717   }
718  
719  
720 < void
721 < filter_frame()                  /* interpolation, motion-blur, and exposure */
720 > extern void
721 > filter_frame(void)                      /* interpolation, motion-blur, and exposure */
722   {
723          double  expval = expspec_val(getexp(fcur));
724          int     x, y;
# Line 704 | Line 729 | filter_frame()                 /* interpolation, motion-blur, and ex
729          register int    n;
730  
731   #if 0
732 < /* XXX TEMPORARY!! */
733 < conspicuity();
734 < write_map(cerrmap, "outcmap.pic");
735 < {
736 <        float   *ebuf = (float *)malloc(sizeof(float)*hres*vres);
737 <        for (n = hres*vres; n--; )
738 <                ebuf[n] = acctab[abuffer[n]];
739 <        write_map(ebuf, "outerr.pic");
740 <        free((void *)ebuf);
741 < }
732 >        /* XXX TEMPORARY!! */
733 >        conspicuity();
734 >        write_map(cerrmap, "outcmap.pic");
735 >        {
736 >                float   *ebuf = (float *)malloc(sizeof(float)*hres*vres);
737 >                for (n = hres*vres; n--; )
738 >                        ebuf[n] = acctab[abuffer[n]];
739 >                write_map(ebuf, "outerr.pic");
740 >                free((void *)ebuf);
741 >        }
742   #endif
743  
744          if (!silent) {
# Line 753 | Line 778 | write_map(cerrmap, "outcmap.pic");
778              }
779                                          /* motion blur if requested */
780          if (mblur > .02) {
756                int     len;
781                  int     xs, ys, xl, yl;
782                  int     rise, run;
783                  long    rise2, run2;
# Line 790 | Line 814 | write_map(cerrmap, "outcmap.pic");
814                                  scalecolor(cval, w);
815                                  while (cnt)
816                                          if (rise2 >= run2) {
817 <                                                if ((xl >= 0 & xl < hres &
818 <                                                        yl >= 0 & yl < vres)) {
817 >                                                if ((xl >= 0) & (xl < hres) &
818 >                                                    (yl >= 0) & (yl < vres)) {
819                                                          n2 = fndx(xl, yl);
820                                                          addcolor(outbuffer[n2],
821                                                                          cval);
# Line 811 | Line 835 | write_map(cerrmap, "outcmap.pic");
835                                  scalecolor(cval, w);
836                                  while (cnt)
837                                          if (run2 >= rise2) {
838 <                                                if ((xl >= 0 & xl < hres &
839 <                                                        yl >= 0 & yl < vres)) {
838 >                                                if ((xl >= 0) & (xl < hres) &
839 >                                                    (yl >= 0) & (yl < vres)) {
840                                                          n2 = fndx(xl, yl);
841                                                          addcolor(outbuffer[n2],
842                                                                          cval);
# Line 839 | Line 863 | write_map(cerrmap, "outcmap.pic");
863          } else
864                  for (n = hres*vres; n--; )
865                          copycolor(outbuffer[n], cbuffer[n]);
866 < /*
867 < for (n = hres*vres; n--; )
868 <        if (!sbuffer[n])
869 <                setcolor(outbuffer[n], 0., 0., 0.);
870 < */
871 <                                /* adjust exposure */
872 <        if ((expval < 0.99 | expval > 1.01))
866 >        /*
867 >           for (n = hres*vres; n--; )
868 >                   if (!sbuffer[n])
869 >                           setcolor(outbuffer[n], 0., 0., 0.);
870 >         */
871 >        /* adjust exposure */
872 >        if ((expval < 0.99) | (expval > 1.01))
873                  for (n = hres*vres; n--; )
874                          scalecolor(outbuffer[n], expval);
875 < return;
876 < {
877 <        float   *sbuf = (float *)malloc(sizeof(float)*hres*vres);
878 <        char    fnm[256];
879 <        sprintf(fnm, vval(BASENAME), fcur);
880 <        strcat(fnm, "_outsamp.pic");
881 <        for (n = hres*vres; n--; )
882 <                sbuf[n] = (float)sbuffer[n];
883 <        write_map(sbuf, fnm);
884 <        free((void *)sbuf);
875 > #if 0
876 >        {
877 >                float   *sbuf = (float *)malloc(sizeof(float)*hres*vres);
878 >                char    fnm[256];
879 >                sprintf(fnm, vval(BASENAME), fcur);
880 >                strcat(fnm, "_outsamp.pic");
881 >                for (n = hres*vres; n--; )
882 >                        sbuf[n] = (float)sbuffer[n];
883 >                write_map(sbuf, fnm);
884 >                free((void *)sbuf);
885 >        }
886 > #endif
887   }
862 }
888  
889  
890 < void
891 < send_frame()                    /* send frame to destination */
890 > extern void
891 > send_frame(void)                        /* send frame to destination */
892   {
893          char    pfname[1024];
894          double  d;
# Line 890 | Line 915 | send_frame()                   /* send frame to destination */
915          fputnow(fp);
916          fputs(VIEWSTR, fp); fprintview(&vw, fp); fputc('\n', fp);
917          d = expspec_val(getexp(fcur));
918 <        if ((d < 0.99 | d > 1.01))
918 >        if ((d < 0.99) | (d > 1.01))
919                  fputexpos(d, fp);
920          d = viewaspect(&vw) * hres / vres;
921 <        if ((d < 0.99 | d > 1.01))
921 >        if ((d < 0.99) | (d > 1.01))
922                  fputaspect(d, fp);
923          fputformat(COLRFMT, fp);
924          fputc('\n', fp);                /* end header */
# Line 915 | Line 940 | writerr:
940   }
941  
942  
943 < void
944 < free_frame()                    /* free frame allocation */
943 > extern void
944 > free_frame(void)                        /* free frame allocation */
945   {
946          if (cbuffer == NULL)
947                  return;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines