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

Comparing ray/src/util/rfluxmtx.c (file contents):
Revision 2.35 by greg, Fri Mar 4 00:21:21 2016 UTC vs.
Revision 2.46 by greg, Mon Oct 1 15:51:48 2018 UTC

# Line 18 | Line 18 | static const char RCSid[] = "$Id$";
18   #include "triangulate.h"
19   #include "platform.h"
20  
21 < #define MAXRCARG        512
21 > #ifndef MAXRCARG
22 > #define MAXRCARG        10000
23 > #endif
24  
25   char            *progname;              /* global argv[0] */
26  
# Line 64 | Line 66 | typedef struct {
66          FVECT   uva[2];                 /* tangent axes */
67          int     ntris;                  /* number of triangles */
68          struct ptri {
69 <                float   afrac;                  /* fraction of total area */
69 >                double  afrac;                  /* fraction of total area */
70                  short   vndx[3];                /* vertex indices */
71          }       tri[1];                 /* triangle array (extends struct) */
72   } POLYTRIS;                     /* triangulated polygon */
# Line 138 | Line 140 | oconv_command(int ac, char *av[])
140          
141          if (ac-- <= 0)
142                  return(NULL);
143 +        if (verbose < 0) {      /* turn off warnings */
144 +                strcpy(cp, "-w- ");
145 +                cp += 4;
146 +        }
147          while (ac-- > 0) {
148                  strcpy(cp, *av++);
149                  while (*cp) cp++;
# Line 181 | Line 187 | popen_arglist(char *av[], char *mode)
187          return(popen(cmd, mode));
188   }
189  
190 < #ifdef _WIN32
190 > #if defined(_WIN32) || defined(_WIN64)
191   /* Execute system command (Windows version) */
192   static int
193   my_exec(char *av[])
# Line 379 | Line 385 | finish_receiver(void)
385                          curparams.vup[1] = 1;
386          }
387                                          /* determine sample type/bin */
388 <        if (tolower(curparams.hemis[0]) == 'u' | curparams.hemis[0] == '1') {
388 >        if ((tolower(curparams.hemis[0]) == 'u') | (curparams.hemis[0] == '1')) {
389                  sprintf(sbuf, "if(-Dx*%g-Dy*%g-Dz*%g,0,-1)",
390                          curparams.nrm[0], curparams.nrm[1], curparams.nrm[2]);
391                  binv = savqstr(sbuf);
# Line 602 | Line 608 | ssamp_poly(FVECT orig, SURF *sp, double x)
608                  sp->priv = (void *)ptp;
609          }
610                                          /* pick triangle by partial area */
611 <        for (i = 0; i < ptp->ntris && x > ptp->tri[i].afrac; i++)
611 >        for (i = 0; i < ptp->ntris-1 && x > ptp->tri[i].afrac; i++)
612                  x -= ptp->tri[i].afrac;
613          SDmultiSamp(samp2, 2, x/ptp->tri[i].afrac);
614          samp2[0] *= samp2[1] = sqrt(samp2[1]);
# Line 643 | Line 649 | sample_origin(PARAMS *p, FVECT orig, const FVECT rdir,
649          if (p->nsurfs > nall) {         /* (re)allocate surface area cache */
650                  if (projsa) free(projsa);
651                  projsa = (double *)malloc(sizeof(double)*p->nsurfs);
652 <                if (!projsa) return(0);
652 >                if (projsa == NULL) {
653 >                        fputs(progname, stderr);
654 >                        fputs(": out of memory in sample_origin!\n", stderr);
655 >                        exit(1);
656 >                }
657                  nall = p->nsurfs;
658          }
659                                          /* compute projected areas */
# Line 686 | Line 696 | sample_uniform(PARAMS *p, int b, FILE *fp)
696                                                  duvw[2]*p->nrm[i] ;
697                  if (!sample_origin(p, orig_dir[0], orig_dir[1], samp3[0]))
698                          return(0);
699 <                if (fwrite(orig_dir, sizeof(FVECT), 2, fp) != 2)
699 >                if (putbinary(orig_dir, sizeof(FVECT), 2, fp) != 2)
700                          return(0);
701          }
702          return(1);
# Line 716 | Line 726 | sample_shirchiu(PARAMS *p, int b, FILE *fp)
726                                                  duvw[2]*p->nrm[i] ;
727                  if (!sample_origin(p, orig_dir[0], orig_dir[1], samp3[0]))
728                          return(0);
729 <                if (fwrite(orig_dir, sizeof(FVECT), 2, fp) != 2)
729 >                if (putbinary(orig_dir, sizeof(FVECT), 2, fp) != 2)
730                          return(0);
731          }
732          return(1);
# Line 752 | Line 762 | sample_reinhart(PARAMS *p, int b, FILE *fp)
762          }
763          while (n--) {                   /* stratified sampling */
764                  SDmultiSamp(samp3, 3, (n+frandom())/sampcnt);
765 +                if (row >= RowMax-1)    /* avoid crowding at zenith */
766 +                        samp3[1] *= samp3[1];
767                  alt = (row+samp3[1])*RAH;
768                  azi = (2.*PI)*(col+samp3[2]-.5)/rnaz(row);
769                  duvw[2] = cos(alt);     /* measured from horizon */
770                  duvw[0] = tsin(azi)*duvw[2];
771 <                duvw[1] = tcos(azi)*duvw[2];
771 >                duvw[1] = -tcos(azi)*duvw[2];
772                  duvw[2] = sqrt(1. - duvw[2]*duvw[2]);
773                  for (i = 3; i--; )
774                          orig_dir[1][i] = -duvw[0]*p->udir[i] -
# Line 764 | Line 776 | sample_reinhart(PARAMS *p, int b, FILE *fp)
776                                                  duvw[2]*p->nrm[i] ;
777                  if (!sample_origin(p, orig_dir[0], orig_dir[1], samp3[0]))
778                          return(0);
779 <                if (fwrite(orig_dir, sizeof(FVECT), 2, fp) != 2)
779 >                if (putbinary(orig_dir, sizeof(FVECT), 2, fp) != 2)
780                          return(0);
781          }
782          return(1);
# Line 815 | Line 827 | sample_klems(PARAMS *p, int b, FILE *fp)
827                                                  duvw[2]*p->nrm[i] ;
828                  if (!sample_origin(p, orig_dir[0], orig_dir[1], samp2[0]))
829                          return(0);
830 <                if (fwrite(orig_dir, sizeof(FVECT), 2, fp) != 2)
830 >                if (putbinary(orig_dir, sizeof(FVECT), 2, fp) != 2)
831                          return(0);
832          }
833          return(1);
# Line 863 | Line 875 | prepare_sampler(void)
875                  curparams.udir[1] *= -1.;
876                  curparams.udir[2] *= -1.;
877          }
878 <        if (tolower(curparams.hemis[0]) == 'u' | curparams.hemis[0] == '1')
878 >        if ((tolower(curparams.hemis[0]) == 'u') | (curparams.hemis[0] == '1'))
879                  curparams.sample_basis = sample_uniform;
880          else if (tolower(curparams.hemis[0]) == 's' &&
881                                  tolower(curparams.hemis[1]) == 'c')
# Line 942 | Line 954 | add_surface(int st, const char *oname, FILE *fp)
954          snew = (SURF *)malloc(sizeof(SURF) + sizeof(double)*(n-1));
955          if (snew == NULL) {
956                  fputs(progname, stderr);
957 <                fputs(": out of memory!\n", stderr);
957 >                fputs(": out of memory in add_surface!\n", stderr);
958                  exit(1);
959          }
960          strncpy(snew->sname, oname, sizeof(snew->sname)-1);
# Line 1301 | Line 1313 | main(int argc, char *argv[])
1313                          fputs(": -i, -I supported for pass-through only\n", stderr);
1314                          return(1);
1315                  }
1316 <                fmtopt[2] = (sizeof(RREAL)==sizeof(double)) ? 'd' : 'f';
1316 > #ifdef SMLFLT
1317 >                fmtopt[2] = 'f';
1318 > #else
1319 >                fmtopt[2] = 'd';
1320 > #endif
1321                  if (sampcnt <= 0) sampcnt = 10000;
1322          }
1323          sprintf(sampcntbuf, "%d", sampcnt);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines