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

Comparing ray/src/common/bsdf_t.c (file contents):
Revision 3.6 by greg, Sun Apr 24 19:39:21 2011 UTC vs.
Revision 3.10 by greg, Thu Apr 28 04:05:11 2011 UTC

# Line 24 | Line 24 | typedef int    SDtreCallback(float val, const double *cmi
24                                          double csiz, void *cptr);
25  
26                                          /* reference width maximum (1.0) */
27 + static const unsigned   iwbits = sizeof(unsigned)*4;
28   static const unsigned   iwmax = (1<<(sizeof(unsigned)*4))-1;
29 +                                        /* maximum cumulative value */
30 + static const unsigned   cumlmax = ~0;
31  
32   /* Struct used for our distribution-building callback */
33   typedef struct {
31        int             wmin;           /* minimum square size so far */
32        int             wmax;           /* maximum square size */
34          int             nic;            /* number of input coordinates */
35 <        int             alen;           /* current array length */
36 <        int             nall;           /* number of allocated entries */
35 >        unsigned        alen;           /* current array length */
36 >        unsigned        nall;           /* number of allocated entries */
37 >        unsigned        wmin;           /* minimum square size so far */
38 >        unsigned        wmax;           /* maximum square size */
39          struct outdir_s {
40                  unsigned        hent;           /* entering Hilbert index */
41                  int             wid;            /* this square size */
# Line 57 | Line 60 | SDnewNode(int nd, int lg)
60          }
61          if (lg < 0) {
62                  st = (SDNode *)malloc(sizeof(SDNode) +
63 <                                ((1<<nd) - 1)*sizeof(st->u.t[0]));
63 >                                sizeof(st->u.t[0])*((1<<nd) - 1));
64                  if (st != NULL)
65                          memset(st->u.t, 0, sizeof(st->u.t[0])<<nd);
66          } else
67                  st = (SDNode *)malloc(sizeof(SDNode) +
68 <                                ((1 << nd*lg) - 1)*sizeof(st->u.v[0]));
68 >                                sizeof(st->u.v[0])*((1 << nd*lg) - 1));
69                  
70          if (st == NULL) {
71                  if (lg < 0)
# Line 103 | Line 106 | SDFreeBTre(void *p)
106          free(sdt);
107   }
108  
109 + /* Fill branch's worth of grid values from subtree */
110 + static void
111 + fill_grid_branch(float *dptr, const float *sptr, int nd, int shft)
112 + {
113 +        unsigned        n = 1 << (shft-1);
114 +
115 +        if (!--nd) {                    /* end on the line */
116 +                memcpy(dptr, sptr, sizeof(*dptr)*n);
117 +                return;
118 +        }
119 +        while (n--)                     /* recurse on each slice */
120 +                fill_grid_branch(dptr + (n << shft*nd),
121 +                                sptr + (n << (shft-1)*nd), nd, shft);
122 + }
123 +
124 + /* Get pointer at appropriate offset for the given branch */
125 + static float *
126 + grid_branch_start(SDNode *st, int n)
127 + {
128 +        unsigned        skipsiz = 1 << st->log2GR;
129 +        float           *vptr = st->u.v;
130 +        int             i;
131 +
132 +        for (i = 0; i < st->ndim; skipsiz <<= st->log2GR)
133 +                if (1<<i++ & n)
134 +                        vptr += skipsiz >> 1;
135 +        return vptr;
136 + }
137 +
138 + /* Simplify (consolidate) a tree by flattening uniform depth regions */
139 + static SDNode *
140 + SDsimplifyTre(SDNode *st)
141 + {
142 +        int             match, n;
143 +
144 +        if (st == NULL)                 /* check for invalid tree */
145 +                return NULL;
146 +        if (st->log2GR >= 0)            /* grid just returns unaltered */
147 +                return st;
148 +        match = 1;                      /* check if grids below match */
149 +        for (n = 0; n < 1<<st->ndim; n++) {
150 +                if ((st->u.t[n] = SDsimplifyTre(st->u.t[n])) == NULL)
151 +                        return NULL;    /* propogate error up call stack */
152 +                match &= (st->u.t[n]->log2GR == st->u.t[0]->log2GR);
153 +        }
154 +        if (match && (match = st->u.t[0]->log2GR) >= 0) {
155 +                SDNode  *stn = SDnewNode(st->ndim, match + 1);
156 +                if (stn == NULL)        /* out of memory? */
157 +                        return st;
158 +                                        /* transfer values to new grid */
159 +                for (n = 1 << st->ndim; n--; )
160 +                        fill_grid_branch(grid_branch_start(stn, n),
161 +                                        st->u.t[n]->u.v, stn->ndim, stn->log2GR);
162 +                SDfreeTre(st);          /* free old tree */
163 +                st = stn;               /* return new one */
164 +        }
165 +        return st;
166 + }
167 +
168 + /* Find smallest leaf in tree */
169 + static double
170 + SDsmallestLeaf(const SDNode *st)
171 + {
172 +        if (st->log2GR < 0) {           /* tree branches */
173 +                double  lmin = 1.;
174 +                int     n;
175 +                for (n = 1<<st->ndim; n--; ) {
176 +                        double  lsiz = SDsmallestLeaf(st->u.t[n]);
177 +                        if (lsiz < lmin)
178 +                                lmin = lsiz;
179 +                }
180 +                return .5*lmin;
181 +        }
182 +                                        /* leaf grid width */
183 +        return 1. / (double)(1 << st->log2GR);
184 + }
185 +
186   /* Add up N-dimensional hypercube array values over the given box */
187   static double
188 < SDiterSum(const float *va, int nd, int siz, const int *imin, const int *imax)
188 > SDiterSum(const float *va, int nd, int shft, const int *imin, const int *imax)
189   {
190 +        const unsigned  skipsiz = 1 << --nd*shft;
191          double          sum = .0;
111        unsigned        skipsiz = 1;
192          int             i;
193          
114        for (i = nd; --i > 0; )
115                skipsiz *= siz;
194          if (skipsiz == 1)
195                  for (i = *imin; i < *imax; i++)
196                          sum += va[i];
197          else
198                  for (i = *imin; i < *imax; i++)
199 <                        sum += SDiterSum(va + i*skipsiz,
122 <                                        nd-1, siz, imin+1, imax+1);
199 >                        sum += SDiterSum(va + i*skipsiz, nd, shft, imin+1, imax+1);
200          return sum;
201   }
202  
# Line 168 | Line 245 | SDavgTreBox(const SDNode *st, const double *bmin, cons
245          }
246          n = 1;                          /* iterate over leaves */
247          for (i = st->ndim; i--; ) {
248 <                imin[i] = (bmin[i] <= .0) ? 0
248 >                imin[i] = (bmin[i] <= 0) ? 0
249                                  : (int)((1 << st->log2GR)*bmin[i]);
250                  imax[i] = (bmax[i] >= 1.) ? (1 << st->log2GR)
251                                  : (int)((1 << st->log2GR)*bmax[i] + .999999);
# Line 177 | Line 254 | SDavgTreBox(const SDNode *st, const double *bmin, cons
254          if (!n)
255                  return .0;
256          
257 <        return SDiterSum(st->u.v, st->ndim, 1 << st->log2GR, imin, imax) /
181 <                        (double)n;
257 >        return SDiterSum(st->u.v, st->ndim, st->log2GR, imin, imax) / (double)n;
258   }
259  
260   /* Recursive call for SDtraverseTre() */
# Line 337 | Line 413 | SDqueryTre(const SDTre *sdt, const FVECT outVec, const
413          static const FVECT      zvec = {.0, .0, 1.};
414          FVECT                   rOutVec;
415          double                  gridPos[4];
416 <                                        /* check transmission */
417 <        if (!sdt->isxmit ^ outVec[2] > 0 ^ inVec[2] > 0)
416 >
417 >        switch (sdt->sidef) {           /* whose side are you on? */
418 >        case SD_UFRONT:
419 >                if ((outVec[2] < 0) | (inVec[2] < 0))
420 >                        return -1.;
421 >                break;
422 >        case SD_UBACK:
423 >                if ((outVec[2] > 0) | (inVec[2] > 0))
424 >                        return -1.;
425 >                break;
426 >        case SD_XMIT:
427 >                if ((outVec[2] > 0) == (inVec[2] > 0))
428 >                        return -1.;
429 >                break;
430 >        default:
431                  return -1.;
432 +        }
433                                          /* convert vector coordinates */
434          if (sdt->st->ndim == 3) {
435                  spinvector(rOutVec, outVec, zvec, -atan2(inVec[1],inVec[0]));
# Line 393 | Line 483 | build_scaffold(float val, const double *cmin, double c
483                                          /* find Hilbert entry index */
484          bmin[0] = cmin[0]*(double)iwmax + .5;
485          bmin[1] = cmin[1]*(double)iwmax + .5;
486 <        bmax[0] = bmin[0] + wid;
487 <        bmax[1] = bmin[1] + wid;
488 <        hilbert_box_vtx(2, sizeof(bitmask_t), sizeof(unsigned)*4,
489 <                                                        1, bmin, bmax);
400 <        sp->darr[sp->alen].hent = hilbert_c2i(2, sizeof(unsigned)*4, bmin);
486 >        bmax[0] = bmin[0] + wid-1;
487 >        bmax[1] = bmin[1] + wid-1;
488 >        hilbert_box_vtx(2, sizeof(bitmask_t), iwbits, 1, bmin, bmax);
489 >        sp->darr[sp->alen].hent = hilbert_c2i(2, iwbits, bmin);
490          sp->darr[sp->alen].wid = wid;
491          sp->darr[sp->alen].bsdf = val;
492          sp->alen++;                     /* on to the next entry */
# Line 408 | Line 497 | build_scaffold(float val, const double *cmin, double c
497   static int
498   sscmp(const void *p1, const void *p2)
499   {
500 +        unsigned        h1 = (*(const struct outdir_s *)p1).hent;
501 +        unsigned        h2 = (*(const struct outdir_s *)p2).hent;
502 +
503 +        if (h1 > h2)
504 +                return 1;
505 +        if (h1 < h2)
506 +                return -1;
507 +        return 0;
508 + /*
509          return (int)((*(const struct outdir_s *)p1).hent -
510                          (*(const struct outdir_s *)p2).hent);
511 + */
512   }
513  
514   /* Create a new cumulative distribution for the given input direction */
515   static SDTreCDst *
516   make_cdist(const SDTre *sdt, const double *pos)
517   {
419        const unsigned  cumlmax = ~0;
518          SDdistScaffold  myScaffold;
519          SDTreCDst       *cd;
520          struct outdir_s *sp;
# Line 450 | Line 548 | make_cdist(const SDTre *sdt, const double *pos)
548                                  sizeof(struct outdir_s), &sscmp);
549  
550                                          /* record input range */
551 <        scale = (double)myScaffold.wmin / iwmax;
551 >        scale = myScaffold.wmin / (double)iwmax;
552          for (i = myScaffold.nic; i--; ) {
553 <                cd->clim[i][0] = floor(pos[i]/scale + .5) * scale;
553 >                cd->clim[i][0] = floor(pos[i]/scale) * scale;
554                  cd->clim[i][1] = cd->clim[i][0] + scale;
555          }
556          cd->max_psa = myScaffold.wmax / (double)iwmax;
557          cd->max_psa *= cd->max_psa * M_PI;
558 <        cd->isxmit = sdt->isxmit;
558 >        cd->sidef = sdt->sidef;
559          cd->cTotal = 1e-20;             /* compute directional total */
560          sp = myScaffold.darr;
561          for (i = myScaffold.alen; i--; sp++)
# Line 466 | Line 564 | make_cdist(const SDTre *sdt, const double *pos)
564          scale = (double)cumlmax / cd->cTotal;
565          sp = myScaffold.darr;
566          for (i = 0; i < cd->calen; i++, sp++) {
567 +                cd->carr[i].hndx = sp->hent;
568                  cd->carr[i].cuml = scale*cursum + .5;
569                  cursum += sp->bsdf * (double)sp->wid * sp->wid;
570          }
# Line 531 | Line 630 | SDqueryTreProjSA(double *psa, const FVECT v1, const RR
630                  const SDTre     *sdt = (SDTre *)sdc->dist;
631                  double          hcube[SD_MAXDIM];
632                  if (SDqueryTre(sdt, v1, v2, hcube) < 0) {
633 <                        if (qflags == SDqueryVal)
634 <                                *psa = M_PI;
536 <                        return SDEnone;
633 >                        strcpy(SDerrorDetail, "Bad call to SDqueryTreProjSA");
634 >                        return SDEinternal;
635                  }
636                  myPSA[0] = hcube[sdt->st->ndim];
637                  myPSA[1] = myPSA[0] *= myPSA[0] * M_PI;
# Line 571 | Line 669 | SDsampTreCDist(FVECT ioVec, double randX, const SDCDst
669   {
670          const unsigned  nBitsC = 4*sizeof(bitmask_t);
671          const unsigned  nExtraBits = 8*(sizeof(bitmask_t)-sizeof(unsigned));
574        const unsigned  maxval = ~0;
672          const SDTreCDst *cd = (const SDTreCDst *)cdp;
673 <        const unsigned  target = randX*maxval;
673 >        const unsigned  target = randX*cumlmax;
674          bitmask_t       hndx, hcoord[2];
675          double          gpos[3];
676          int             i, iupper, ilower;
677                                          /* check arguments */
678          if ((ioVec == NULL) | (cd == NULL))
679                  return SDEargument;
680 +        if (ioVec[2] > 0) {
681 +                if (!(cd->sidef & SD_UFRONT))
682 +                        return SDEargument;
683 +        } else if (!(cd->sidef & SD_UBACK))
684 +                return SDEargument;
685                                          /* binary search to find position */
686          ilower = 0; iupper = cd->calen;
687          while ((i = (iupper + ilower) >> 1) != ilower)
# Line 588 | Line 690 | SDsampTreCDist(FVECT ioVec, double randX, const SDCDst
690                  else
691                          iupper = i;
692                                          /* localize random position */
693 <        randX = (randX*maxval - cd->carr[ilower].cuml) /
693 >        randX = (randX*cumlmax - cd->carr[ilower].cuml) /
694                      (double)(cd->carr[iupper].cuml - cd->carr[ilower].cuml);
695                                          /* index in longer Hilbert curve */
696          hndx = (randX*cd->carr[iupper].hndx + (1.-randX)*cd->carr[ilower].hndx)
# Line 599 | Line 701 | SDsampTreCDist(FVECT ioVec, double randX, const SDCDst
701                  gpos[i] = ((double)hcoord[i] + rand()*(1./(RAND_MAX+.5))) /
702                                  (double)((bitmask_t)1 << nBitsC);
703          SDsquare2disk(gpos, gpos[0], gpos[1]);
704 +                                        /* compute Z-coordinate */
705          gpos[2] = 1. - gpos[0]*gpos[0] - gpos[1]*gpos[1];
706          if (gpos[2] > 0)                /* paranoia, I hope */
707                  gpos[2] = sqrt(gpos[2]);
708 <        if (ioVec[2] > 0 ^ !cd->isxmit)
708 >                                        /* emit from back? */
709 >        if (ioVec[2] > 0 ^ cd->sidef != SD_XMIT)
710                  gpos[2] = -gpos[2];
711          VCOPY(ioVec, gpos);
712          return SDEnone;
713   }
714  
715 + /* Advance pointer to the next non-white character in the string (or nul) */
716 + static int
717 + next_token(char **spp)
718 + {
719 +        while (isspace(**spp))
720 +                ++*spp;
721 +        return **spp;
722 + }
723 +
724 + #define eat_token(spp,c)        (next_token(spp)==(c) ? *(*(spp))++ : 0)
725 +
726 + /* Count words from this point in string to '}' */
727 + static int
728 + count_values(char *cp)
729 + {
730 +        int     n = 0;
731 +
732 +        while (next_token(&cp) != '}' && *cp) {
733 +                if (*cp == '{')
734 +                        return -1;
735 +                while (*cp && (*cp != ',') & (*cp != '}') & !isspace(*cp))
736 +                        ++cp;
737 +                ++n;
738 +                eat_token(&cp, ',');
739 +        }
740 +        return n;
741 + }
742 +
743 + /* Load an array of real numbers, returning total */
744 + static int
745 + load_values(char **spp, float *va, int n)
746 + {
747 +        float   *v = va;
748 +        char    *svnext;
749 +
750 +        while (n-- > 0 && (svnext = fskip(*spp)) != NULL) {
751 +                *v++ = atof(*spp);
752 +                *spp = svnext;
753 +                eat_token(spp, ',');
754 +        }
755 +        return v - va;
756 + }
757 +
758 + /* Load BSDF tree data */
759 + static SDNode *
760 + load_tree_data(char **spp, int nd)
761 + {
762 +        SDNode  *st;
763 +        int     n;
764 +
765 +        if (!eat_token(spp, '{')) {
766 +                strcpy(SDerrorDetail, "Missing '{' in tensor tree");
767 +                return NULL;
768 +        }
769 +        if (next_token(spp) == '{') {   /* tree branches */
770 +                st = SDnewNode(nd, -1);
771 +                if (st == NULL)
772 +                        return NULL;
773 +                for (n = 0; n < 1<<nd; n++)
774 +                        if ((st->u.t[n] = load_tree_data(spp, nd)) == NULL) {
775 +                                SDfreeTre(st);
776 +                                return NULL;
777 +                        }
778 +        } else {                        /* else load value grid */
779 +                int     bsiz;
780 +                n = count_values(*spp); /* see how big the grid is */
781 +                if (n <= 0) {
782 +                        strcpy(SDerrorDetail, "Bad tensor tree data");
783 +                        return NULL;
784 +                }
785 +                for (bsiz = 0; bsiz < 8*sizeof(size_t)-1; bsiz += nd)
786 +                        if (1<<bsiz == n)
787 +                                break;
788 +                if (bsiz >= 8*sizeof(size_t)) {
789 +                        strcpy(SDerrorDetail, "Illegal value count in tensor tree");
790 +                        return NULL;
791 +                }
792 +                st = SDnewNode(nd, bsiz/nd);
793 +                if (st == NULL)
794 +                        return NULL;
795 +                if (load_values(spp, st->u.v, n) != n) {
796 +                        strcpy(SDerrorDetail, "Real format error in tensor tree");
797 +                        SDfreeTre(st);
798 +                        return NULL;
799 +                }
800 +        }
801 +        if (!eat_token(spp, '}')) {
802 +                strcpy(SDerrorDetail, "Missing '}' in tensor tree");
803 +                SDfreeTre(st);
804 +                return NULL;
805 +        }
806 +        eat_token(spp, ',');
807 +        return st;
808 + }
809 +
810 + /* Compute min. proj. solid angle and max. direct hemispherical scattering */
811 + static SDError
812 + get_extrema(SDSpectralDF *df)
813 + {
814 +        SDNode  *st = (*(SDTre *)df->comp[0].dist).st;
815 +        double  stepWidth, dhemi, bmin[4], bmax[4];
816 +
817 +        stepWidth = SDsmallestLeaf(st);
818 +        df->minProjSA = M_PI*stepWidth*stepWidth;
819 +        if (stepWidth < .03125)
820 +                stepWidth = .03125;     /* 1/32 resolution good enough */
821 +        df->maxHemi = .0;
822 +        if (st->ndim == 3) {            /* isotropic BSDF */
823 +                bmin[1] = bmin[2] = .0;
824 +                bmax[1] = bmax[2] = 1.;
825 +                for (bmin[0] = .0; bmin[0] < .5-FTINY; bmin[0] += stepWidth) {
826 +                        bmax[0] = bmin[0] + stepWidth;
827 +                        dhemi = SDavgTreBox(st, bmin, bmax);
828 +                        if (dhemi > df->maxHemi)
829 +                                df->maxHemi = dhemi;
830 +                }
831 +        } else if (st->ndim == 4) {     /* anisotropic BSDF */
832 +                bmin[2] = bmin[3] = .0;
833 +                bmax[2] = bmax[3] = 1.;
834 +                for (bmin[0] = .0; bmin[0] < 1.-FTINY; bmin[0] += stepWidth) {
835 +                        bmax[0] = bmin[0] + stepWidth;
836 +                        for (bmin[1] = .0; bmin[1] < 1.-FTINY; bmin[1] += stepWidth) {
837 +                                bmax[1] = bmin[1] + stepWidth;
838 +                                dhemi = SDavgTreBox(st, bmin, bmax);
839 +                                if (dhemi > df->maxHemi)
840 +                                        df->maxHemi = dhemi;
841 +                        }
842 +                }
843 +        } else
844 +                return SDEinternal;
845 +                                        /* correct hemispherical value */
846 +        df->maxHemi *= M_PI;
847 +        return SDEnone;
848 + }
849 +
850 + /* Load BSDF distribution for this wavelength */
851 + static SDError
852 + load_bsdf_data(SDData *sd, ezxml_t wdb, int ndim)
853 + {
854 +        SDSpectralDF    *df;
855 +        SDTre           *sdt;
856 +        char            *sdata;
857 +        int             i;
858 +                                        /* allocate BSDF component */
859 +        sdata = ezxml_txt(ezxml_child(wdb, "WavelengthDataDirection"));
860 +        if (!sdata)
861 +                return SDEnone;
862 +        /*
863 +         * Remember that front and back are reversed from WINDOW 6 orientations
864 +         */
865 +        if (!strcasecmp(sdata, "Transmission")) {
866 +                if (sd->tf != NULL)
867 +                        SDfreeSpectralDF(sd->tf);
868 +                if ((sd->tf = SDnewSpectralDF(1)) == NULL)
869 +                        return SDEmemory;
870 +                df = sd->tf;
871 +        } else if (!strcasecmp(sdata, "Reflection Front")) {
872 +                if (sd->rb != NULL)     /* note back-front reversal */
873 +                        SDfreeSpectralDF(sd->rb);
874 +                if ((sd->rb = SDnewSpectralDF(1)) == NULL)
875 +                        return SDEmemory;
876 +                df = sd->rb;
877 +        } else if (!strcasecmp(sdata, "Reflection Back")) {
878 +                if (sd->rf != NULL)     /* note front-back reversal */
879 +                        SDfreeSpectralDF(sd->rf);
880 +                if ((sd->rf = SDnewSpectralDF(1)) == NULL)
881 +                        return SDEmemory;
882 +                df = sd->rf;
883 +        } else
884 +                return SDEnone;
885 +        /* XXX should also check "ScatteringDataType" for consistency? */
886 +                                        /* get angle bases */
887 +        sdata = ezxml_txt(ezxml_child(wdb,"AngleBasis"));
888 +        if (!sdata || strcasecmp(sdata, "LBNL/Shirley-Chiu")) {
889 +                sprintf(SDerrorDetail, "%s angle basis for BSDF '%s'",
890 +                                !sdata ? "Missing" : "Unsupported", sd->name);
891 +                return !sdata ? SDEformat : SDEsupport;
892 +        }
893 +                                        /* allocate BSDF tree */
894 +        sdt = (SDTre *)malloc(sizeof(SDTre));
895 +        if (sdt == NULL)
896 +                return SDEmemory;
897 +        if (df == sd->rf)
898 +                sdt->sidef = SD_UFRONT;
899 +        else if (df == sd->rb)
900 +                sdt->sidef = SD_UBACK;
901 +        else
902 +                sdt->sidef = SD_XMIT;
903 +        sdt->st = NULL;
904 +        df->comp[0].cspec[0] = c_dfcolor; /* XXX monochrome for now */
905 +        df->comp[0].dist = sdt;
906 +        df->comp[0].func = &SDhandleTre;
907 +                                        /* read BSDF data */
908 +        sdata = ezxml_txt(ezxml_child(wdb, "ScatteringData"));
909 +        if (!sdata || !next_token(&sdata)) {
910 +                sprintf(SDerrorDetail, "Missing BSDF ScatteringData in '%s'",
911 +                                sd->name);
912 +                return SDEformat;
913 +        }
914 +        sdt->st = load_tree_data(&sdata, ndim);
915 +        if (sdt->st == NULL)
916 +                return SDEformat;
917 +        if (next_token(&sdata)) {       /* check for unconsumed characters */
918 +                sprintf(SDerrorDetail,
919 +                        "Extra characters at end of ScatteringData in '%s'",
920 +                                sd->name);
921 +                return SDEformat;
922 +        }
923 +                                        /* flatten branches where possible */
924 +        sdt->st = SDsimplifyTre(sdt->st);
925 +        if (sdt->st == NULL)
926 +                return SDEinternal;
927 +        return get_extrema(df);         /* compute global quantities */
928 + }
929 +
930 + /* Find minimum value in tree */
931 + static float
932 + SDgetTreMin(const SDNode *st)
933 + {
934 +        float   vmin = FHUGE;
935 +        int     n;
936 +
937 +        if (st->log2GR < 0) {
938 +                for (n = 1<<st->ndim; n--; ) {
939 +                        float   v = SDgetTreMin(st->u.t[n]);
940 +                        if (v < vmin)
941 +                                vmin = v;
942 +                }
943 +        } else {
944 +                for (n = 1<<(st->ndim*st->log2GR); n--; )
945 +                        if (st->u.v[n] < vmin)
946 +                                vmin = st->u.v[n];
947 +        }
948 +        return vmin;
949 + }
950 +
951 + /* Subtract the given value from all tree nodes */
952 + static void
953 + SDsubtractTreVal(SDNode *st, float val)
954 + {
955 +        int     n;
956 +
957 +        if (st->log2GR < 0) {
958 +                for (n = 1<<st->ndim; n--; )
959 +                        SDsubtractTreVal(st->u.t[n], val);
960 +        } else {
961 +                for (n = 1<<(st->ndim*st->log2GR); n--; )
962 +                        st->u.v[n] -= val;
963 +        }
964 + }
965 +
966 + /* Subtract minimum value from BSDF */
967 + static double
968 + subtract_min(SDNode *st)
969 + {
970 +        float   vmin;
971 +                                        /* be sure to skip unused portion */
972 +        if (st->ndim == 3) {
973 +                int     n;
974 +                vmin = 1./M_PI;
975 +                if (st->log2GR < 0) {
976 +                        for (n = 0; n < 4; n++) {
977 +                                float   v = SDgetTreMin(st->u.t[n]);
978 +                                if (v < vmin)
979 +                                        vmin = v;
980 +                        }
981 +                } else if (st->log2GR) {
982 +                        for (n = 1 << (3*st->log2GR - 1); n--; )
983 +                                if (st->u.v[n] < vmin)
984 +                                        vmin = st->u.v[n];
985 +                } else
986 +                        vmin = st->u.v[0];
987 +        } else                          /* anisotropic covers entire tree */
988 +                vmin = SDgetTreMin(st);
989 +
990 +        if (vmin <= FTINY)
991 +                return .0;
992 +
993 +        SDsubtractTreVal(st, vmin);
994 +
995 +        return M_PI * vmin;             /* return hemispherical value */
996 + }
997 +
998 + /* Extract and separate diffuse portion of BSDF */
999 + static void
1000 + extract_diffuse(SDValue *dv, SDSpectralDF *df)
1001 + {
1002 +        int     n;
1003 +
1004 +        if (df == NULL || df->ncomp <= 0) {
1005 +                dv->spec = c_dfcolor;
1006 +                dv->cieY = .0;
1007 +                return;
1008 +        }
1009 +        dv->spec = df->comp[0].cspec[0];
1010 +        dv->cieY = subtract_min((*(SDTre *)df->comp[0].dist).st);
1011 +                                        /* in case of multiple components */
1012 +        for (n = df->ncomp; --n; ) {
1013 +                double  ymin = subtract_min((*(SDTre *)df->comp[n].dist).st);
1014 +                c_cmix(&dv->spec, dv->cieY, &dv->spec, ymin, &df->comp[n].cspec[0]);
1015 +                dv->cieY += ymin;
1016 +        }
1017 +        df->maxHemi -= dv->cieY;        /* adjust maximum hemispherical */
1018 +                                        /* make sure everything is set */
1019 +        c_ccvt(&dv->spec, C_CSXY+C_CSSPEC);
1020 + }
1021 +
1022   /* Load a variable-resolution BSDF tree from an open XML file */
1023   SDError
1024   SDloadTre(SDData *sd, ezxml_t wtl)
1025   {
1026 <        return SDEsupport;
1026 >        SDError         ec;
1027 >        ezxml_t         wld, wdb;
1028 >        int             rank;
1029 >        char            *txt;
1030 >                                        /* basic checks and tensor rank */
1031 >        txt = ezxml_txt(ezxml_child(ezxml_child(wtl,
1032 >                        "DataDefinition"), "IncidentDataStructure"));
1033 >        if (txt == NULL || !*txt) {
1034 >                sprintf(SDerrorDetail,
1035 >                        "BSDF \"%s\": missing IncidentDataStructure",
1036 >                                sd->name);
1037 >                return SDEformat;
1038 >        }
1039 >        if (!strcasecmp(txt, "TensorTree3"))
1040 >                rank = 3;
1041 >        else if (!strcasecmp(txt, "TensorTree4"))
1042 >                rank = 4;
1043 >        else {
1044 >                sprintf(SDerrorDetail,
1045 >                        "BSDF \"%s\": unsupported IncidentDataStructure",
1046 >                                sd->name);
1047 >                return SDEsupport;
1048 >        }
1049 >                                        /* load BSDF components */
1050 >        for (wld = ezxml_child(wtl, "WavelengthData");
1051 >                                wld != NULL; wld = wld->next) {
1052 >                if (strcasecmp(ezxml_txt(ezxml_child(wld,"Wavelength")),
1053 >                                "Visible"))
1054 >                        continue;       /* just visible for now */
1055 >                for (wdb = ezxml_child(wld, "WavelengthDataBlock");
1056 >                                        wdb != NULL; wdb = wdb->next)
1057 >                        if ((ec = load_bsdf_data(sd, wdb, rank)) != SDEnone)
1058 >                                return ec;
1059 >        }
1060 >                                        /* separate diffuse components */
1061 >        extract_diffuse(&sd->rLambFront, sd->rf);
1062 >        extract_diffuse(&sd->rLambBack, sd->rb);
1063 >        extract_diffuse(&sd->tLamb, sd->tf);
1064 >                                        /* return success */
1065 >        return SDEnone;
1066   }
1067  
1068   /* Variable resolution BSDF methods */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines