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

Comparing ray/src/cal/rcalc.c (file contents):
Revision 1.26 by greg, Thu Mar 24 18:48:28 2016 UTC vs.
Revision 1.28 by greg, Sun May 19 20:02:27 2019 UTC

# Line 281 | Line 281 | FILE  *fp
281          if (inpfmt != NULL)
282                  return(getrec());
283          if (tolower(itype) == 'd') {
284 <                if (fread(inpbuf, sizeof(double), nbicols, fp) != nbicols)
284 >                if (getbinary(inpbuf, sizeof(double), nbicols, fp) != nbicols)
285                          return(0);
286                  if (itype == 'D')
287                          swap64(inpbuf, nbicols);
288                  return(1);
289          }
290          if (tolower(itype) == 'f') {
291 <                if (fread(inpbuf, sizeof(float), nbicols, fp) != nbicols)
291 >                if (getbinary(inpbuf, sizeof(float), nbicols, fp) != nbicols)
292                          return(0);
293                  if (itype == 'F')
294                          swap32(inpbuf, nbicols);
# Line 303 | Line 303 | execute(           /* process a file */
303   char  *file
304   )
305   {
306 <        int  conditional = vardefined("cond");
306 >        const int  conditional = vardefined("cond");
307 >        const int  set_recno = (varlookup("recno") != NULL);
308 >        const int  set_outno = (varlookup("outno") != NULL);
309          long  nrecs = 0;
310          long  nout = 0;
311          FILE  *fp;
# Line 324 | Line 326 | char  *file
326                  initinp(fp);
327          
328          while (getinputrec(fp)) {
329 <                varset("recno", '=', (double)++nrecs);
330 <                varset("outno", '=', (double)(nout+1));
329 >                ++nrecs;
330 >                if (set_recno)
331 >                        varset("recno", '=', (double)nrecs);
332 >                if (set_outno)
333 >                        varset("outno", '=', (double)(nout+1));
334                  colflg = 0;
335                  eclock++;
336                  if (!conditional || varvalue("cond") > 0.0) {
# Line 466 | Line 471 | double  v
471          float   fval = v;
472  
473          while (++colpos < n)
474 <                fwrite(zerobuf,
474 >                putbinary(zerobuf,
475                          tolower(otype)=='d' ? sizeof(double) : sizeof(float),
476                          1, stdout);
477          switch (otype) {
# Line 474 | Line 479 | double  v
479                  swap64((char *)&v, 1);
480                  /* fall through */
481          case 'd':
482 <                fwrite(&v, sizeof(double), 1, stdout);
482 >                putbinary(&v, sizeof(double), 1, stdout);
483                  break;
484          case 'F':
485                  swap32((char *)&fval, 1);
486                  /* fall through */
487          case 'f':
488 <                fwrite(&fval, sizeof(float), 1, stdout);
488 >                putbinary(&fval, sizeof(float), 1, stdout);
489                  break;
490          }
491   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines