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.33 by greg, Tue Feb 2 01:43:24 2016 UTC vs.
Revision 2.50 by greg, Tue Dec 10 19:18:43 2019 UTC

# Line 11 | Line 11 | static const char RCSid[] = "$Id$";
11   #include <stdlib.h>
12   #include "rtio.h"
13   #include "rtmath.h"
14 < #include "rtprocess.h"
14 > #include "paths.h"
15   #include "bsdf.h"
16   #include "bsdf_m.h"
17   #include "random.h"
18   #include "triangulate.h"
19   #include "platform.h"
20  
21 < #ifdef getc_unlocked            /* avoid horrendous overhead of flockfile */
22 < #undef getc
23 < #define getc    getc_unlocked
21 > #ifndef MAXRCARG
22 > #define MAXRCARG        10000
23   #endif
24  
26 #ifdef _WIN32
27 #define SPECIALS        " \t\"$*?"
28 #define QUOTCHAR        '"'
29 #else
30 #define SPECIALS        " \t\n'\"()${}*?[];|&"
31 #define QUOTCHAR        '\''
32 #define ALTQUOT         '"'
33 #endif
34
35 #define MAXRCARG        512
36
25   char            *progname;              /* global argv[0] */
26  
27   int             verbose = 0;            /* verbose mode (< 0 no warnings) */
# Line 78 | 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 142 | Line 130 | surf_type(const char *otype)
130          return(ST_NONE);
131   }
132  
145 /* Check if any of the characters in str2 are found in str1 */
146 static int
147 matchany(const char *str1, const char *str2)
148 {
149        while (*str1) {
150                const char      *cp = str2;
151                while (*cp)
152                        if (*cp++ == *str1)
153                                return(*str1);
154                ++str1;
155        }
156        return(0);
157 }
158
133   /* Add arguments to oconv command */
134   static char *
135   oconv_command(int ac, char *av[])
# Line 166 | Line 140 | oconv_command(int ac, char *av[])
140          
141          if (ac-- <= 0)
142                  return(NULL);
143 <        while (ac-- > 0) {
144 <                strcpy(cp, *av++);
145 <                while (*cp) cp++;
146 <                *cp++ = ' ';
147 <                if (cp >= oconvbuf+(sizeof(oconvbuf)-32))
143 >        if (verbose < 0) {      /* turn off warnings */
144 >                strcpy(cp, "-w ");
145 >                cp += 3;
146 >        }
147 >        while (ac-- > 0) {      /* copy each argument */
148 >                int     len = strlen(*av);
149 >                if (cp+len+4 >= oconvbuf+sizeof(oconvbuf))
150                          goto overrun;
151 +                if (matchany(*av, SPECIALS)) {
152 +                        *cp++ = QUOTCHAR;
153 +                        strcpy(cp, *av++);
154 +                        cp += len;
155 +                        *cp++ = QUOTCHAR;
156 +                } else {
157 +                        strcpy(cp, *av++);
158 +                        cp += len;
159 +                }
160 +                *cp++ = ' ';
161          }
162                                  /* receiver goes last */
163          if (matchany(recv, SPECIALS)) {
# Line 192 | Line 178 | overrun:
178          exit(1);
179   }
180  
195 /* Convert a set of arguments into a command line for pipe() or system() */
196 static char *
197 convert_commandline(char *cmd, const int len, char *av[])
198 {
199        int     match;
200        char    *cp;
201
202        for (cp = cmd; *av != NULL; av++) {
203                const int       n = strlen(*av);
204                if (cp+n >= cmd+(len-3))
205                        return(NULL);
206                if (matchany(*av, SPECIALS)) {
207                        const int       quote =
208 #ifdef ALTQUOT
209                                strchr(*av, QUOTCHAR) ? ALTQUOT :
210 #endif
211                                        QUOTCHAR;
212                        *cp++ = quote;
213                        strcpy(cp, *av);
214                        cp += n;
215                        *cp++ = quote;
216                } else {
217                        strcpy(cp, *av);
218                        cp += n;
219                }
220                *cp++ = ' ';
221        }
222        if (cp <= cmd)
223                return(NULL);
224        *--cp = '\0';
225        return(cmd);
226 }
227
181   /* Open a pipe to/from a command given as an argument list */
182   static FILE *
183   popen_arglist(char *av[], char *mode)
# Line 242 | Line 195 | popen_arglist(char *av[], char *mode)
195          return(popen(cmd, mode));
196   }
197  
198 < #ifdef _WIN32
198 > #if defined(_WIN32) || defined(_WIN64)
199   /* Execute system command (Windows version) */
200   static int
201   my_exec(char *av[])
# Line 440 | Line 393 | finish_receiver(void)
393                          curparams.vup[1] = 1;
394          }
395                                          /* determine sample type/bin */
396 <        if (tolower(curparams.hemis[0]) == 'u' | curparams.hemis[0] == '1') {
396 >        if ((tolower(curparams.hemis[0]) == 'u') | (curparams.hemis[0] == '1')) {
397                  sprintf(sbuf, "if(-Dx*%g-Dy*%g-Dz*%g,0,-1)",
398                          curparams.nrm[0], curparams.nrm[1], curparams.nrm[2]);
399                  binv = savqstr(sbuf);
# Line 663 | Line 616 | ssamp_poly(FVECT orig, SURF *sp, double x)
616                  sp->priv = (void *)ptp;
617          }
618                                          /* pick triangle by partial area */
619 <        for (i = 0; i < ptp->ntris && x > ptp->tri[i].afrac; i++)
619 >        for (i = 0; i < ptp->ntris-1 && x > ptp->tri[i].afrac; i++)
620                  x -= ptp->tri[i].afrac;
621          SDmultiSamp(samp2, 2, x/ptp->tri[i].afrac);
622          samp2[0] *= samp2[1] = sqrt(samp2[1]);
# Line 704 | Line 657 | sample_origin(PARAMS *p, FVECT orig, const FVECT rdir,
657          if (p->nsurfs > nall) {         /* (re)allocate surface area cache */
658                  if (projsa) free(projsa);
659                  projsa = (double *)malloc(sizeof(double)*p->nsurfs);
660 <                if (!projsa) return(0);
660 >                if (projsa == NULL) {
661 >                        fputs(progname, stderr);
662 >                        fputs(": out of memory in sample_origin!\n", stderr);
663 >                        exit(1);
664 >                }
665                  nall = p->nsurfs;
666          }
667                                          /* compute projected areas */
# Line 712 | Line 669 | sample_origin(PARAMS *p, FVECT orig, const FVECT rdir,
669                  projsa[i] = -DOT(sp->snrm, rdir) * sp->area;
670                  tarea += projsa[i] *= (double)(projsa[i] > FTINY);
671          }
672 <        if (tarea <= FTINY) {           /* wrong side of sender? */
672 >        if (tarea < 0) {                /* wrong side of sender? */
673                  fputs(progname, stderr);
674                  fputs(": internal - sample behind all sender elements!\n",
675                                  stderr);
# Line 747 | Line 704 | sample_uniform(PARAMS *p, int b, FILE *fp)
704                                                  duvw[2]*p->nrm[i] ;
705                  if (!sample_origin(p, orig_dir[0], orig_dir[1], samp3[0]))
706                          return(0);
707 <                if (fwrite(orig_dir, sizeof(FVECT), 2, fp) != 2)
707 >                if (putbinary(orig_dir, sizeof(FVECT), 2, fp) != 2)
708                          return(0);
709          }
710          return(1);
# Line 777 | Line 734 | sample_shirchiu(PARAMS *p, int b, FILE *fp)
734                                                  duvw[2]*p->nrm[i] ;
735                  if (!sample_origin(p, orig_dir[0], orig_dir[1], samp3[0]))
736                          return(0);
737 <                if (fwrite(orig_dir, sizeof(FVECT), 2, fp) != 2)
737 >                if (putbinary(orig_dir, sizeof(FVECT), 2, fp) != 2)
738                          return(0);
739          }
740          return(1);
# Line 813 | Line 770 | sample_reinhart(PARAMS *p, int b, FILE *fp)
770          }
771          while (n--) {                   /* stratified sampling */
772                  SDmultiSamp(samp3, 3, (n+frandom())/sampcnt);
773 +                if (row >= RowMax-1)    /* avoid crowding at zenith */
774 +                        samp3[1] *= samp3[1];
775                  alt = (row+samp3[1])*RAH;
776                  azi = (2.*PI)*(col+samp3[2]-.5)/rnaz(row);
777                  duvw[2] = cos(alt);     /* measured from horizon */
778                  duvw[0] = tsin(azi)*duvw[2];
779 <                duvw[1] = tcos(azi)*duvw[2];
779 >                duvw[1] = -tcos(azi)*duvw[2];
780                  duvw[2] = sqrt(1. - duvw[2]*duvw[2]);
781                  for (i = 3; i--; )
782                          orig_dir[1][i] = -duvw[0]*p->udir[i] -
# Line 825 | Line 784 | sample_reinhart(PARAMS *p, int b, FILE *fp)
784                                                  duvw[2]*p->nrm[i] ;
785                  if (!sample_origin(p, orig_dir[0], orig_dir[1], samp3[0]))
786                          return(0);
787 <                if (fwrite(orig_dir, sizeof(FVECT), 2, fp) != 2)
787 >                if (putbinary(orig_dir, sizeof(FVECT), 2, fp) != 2)
788                          return(0);
789          }
790          return(1);
# Line 876 | Line 835 | sample_klems(PARAMS *p, int b, FILE *fp)
835                                                  duvw[2]*p->nrm[i] ;
836                  if (!sample_origin(p, orig_dir[0], orig_dir[1], samp2[0]))
837                          return(0);
838 <                if (fwrite(orig_dir, sizeof(FVECT), 2, fp) != 2)
838 >                if (putbinary(orig_dir, sizeof(FVECT), 2, fp) != 2)
839                          return(0);
840          }
841          return(1);
# Line 924 | Line 883 | prepare_sampler(void)
883                  curparams.udir[1] *= -1.;
884                  curparams.udir[2] *= -1.;
885          }
886 <        if (tolower(curparams.hemis[0]) == 'u' | curparams.hemis[0] == '1')
886 >        if ((tolower(curparams.hemis[0]) == 'u') | (curparams.hemis[0] == '1'))
887                  curparams.sample_basis = sample_uniform;
888          else if (tolower(curparams.hemis[0]) == 's' &&
889                                  tolower(curparams.hemis[1]) == 'c')
# Line 1003 | Line 962 | add_surface(int st, const char *oname, FILE *fp)
962          snew = (SURF *)malloc(sizeof(SURF) + sizeof(double)*(n-1));
963          if (snew == NULL) {
964                  fputs(progname, stderr);
965 <                fputs(": out of memory!\n", stderr);
965 >                fputs(": out of memory in add_surface!\n", stderr);
966                  exit(1);
967          }
968          strncpy(snew->sname, oname, sizeof(snew->sname)-1);
# Line 1285 | Line 1244 | main(int argc, char *argv[])
1244                          na = 0;
1245                          continue;
1246                  case 'w':               /* options without arguments */
1247 <                        if (argv[a][2] != '+') verbose = -1;
1247 >                        if (!argv[a][2] || strchr("+1tTyY", argv[a][2]) == NULL)
1248 >                                verbose = -1;
1249 >                        break;
1250                  case 'V':
1251                  case 'u':
1252                  case 'h':
# Line 1362 | Line 1323 | main(int argc, char *argv[])
1323                          fputs(": -i, -I supported for pass-through only\n", stderr);
1324                          return(1);
1325                  }
1326 <                fmtopt[2] = (sizeof(RREAL)==sizeof(double)) ? 'd' : 'f';
1326 > #ifdef SMLFLT
1327 >                fmtopt[2] = 'f';
1328 > #else
1329 >                fmtopt[2] = 'd';
1330 > #endif
1331                  if (sampcnt <= 0) sampcnt = 10000;
1332          }
1333          sprintf(sampcntbuf, "%d", sampcnt);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines