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

Comparing ray/src/util/rmatrix.c (file contents):
Revision 2.33 by greg, Mon Aug 12 18:15:44 2019 UTC vs.
Revision 2.40 by greg, Wed Mar 25 01:51:09 2020 UTC

# Line 5 | Line 5 | static const char RCSid[] = "$Id$";
5   * General matrix operations.
6   */
7  
8 #include <stdio.h>
8   #include <stdlib.h>
10 #include <string.h>
11 #include <fcntl.h>
9   #include <errno.h>
10   #include "rtio.h"
11   #include "platform.h"
# Line 32 | Line 29 | rmx_alloc(int nr, int nc, int n)
29                  return(NULL);
30          dnew->nrows = nr; dnew->ncols = nc; dnew->ncomp = n;
31          dnew->dtype = DTdouble;
32 +        dnew->swapin = 0;
33          dnew->info = NULL;
34          return(dnew);
35   }
# Line 98 | Line 96 | get_dminfo(char *s, void *p)
96                  ip->ncols = atoi(s+6);
97                  return(0);
98          }
99 +        if ((i = isbigendian(s)) >= 0) {
100 +                ip->swapin = (nativebigendian() != i);
101 +                return(0);
102 +        }
103 +        if (isexpos(s)) {
104 +                double  d = exposval(s);
105 +                scalecolor(ip->mtx, d);
106 +                return(0);
107 +        }
108 +        if (iscolcor(s)) {
109 +                COLOR   ctmp;
110 +                colcorval(ctmp, s);
111 +                multcolor(ip->mtx, ctmp);
112 +                return(0);
113 +        }
114          if (!formatval(fmt, s)) {
115                  rmx_addinfo(ip, s);
116                  return(0);
# Line 137 | Line 150 | rmx_load_float(RMATRIX *rm, FILE *fp)
150              for (j = 0; j < rm->ncols; j++) {
151                  if (getbinary(val, sizeof(val[0]), rm->ncomp, fp) != rm->ncomp)
152                      return(0);
153 +                if (rm->swapin)
154 +                    swap32((char *)val, rm->ncomp);
155                  for (k = rm->ncomp; k--; )
156                       rmx_lval(rm,i,j,k) = val[k];
157              }
# Line 149 | Line 164 | rmx_load_double(RMATRIX *rm, FILE *fp)
164          int     i, j;
165  
166          for (i = 0; i < rm->nrows; i++)
167 <            for (j = 0; j < rm->ncols; j++)
167 >            for (j = 0; j < rm->ncols; j++) {
168                  if (getbinary(&rmx_lval(rm,i,j,0), sizeof(double), rm->ncomp, fp) != rm->ncomp)
169                      return(0);
170 +                if (rm->swapin)
171 +                    swap64((char *)&rmx_lval(rm,i,j,0), rm->ncomp);
172 +            }
173          return(1);
174   }
175  
# Line 192 | Line 210 | rmx_load(const char *inspec)
210          } else if (inspec[0] == '!') {
211                  if (!(fp = popen(inspec+1, "r")))
212                          return(NULL);
213 <                SET_FILE_BINARY(stdin);
213 >                SET_FILE_BINARY(fp);
214          } else {
215                  const char      *sp = inspec;   /* check suffix */
216                  while (*sp)
# Line 217 | Line 235 | rmx_load(const char *inspec)
235   #endif
236          dinfo.nrows = dinfo.ncols = dinfo.ncomp = 0;
237          dinfo.dtype = DTascii;                  /* assumed w/o FORMAT */
238 +        dinfo.swapin = 0;
239          dinfo.info = NULL;
240 +        dinfo.mtx[0] = dinfo.mtx[1] = dinfo.mtx[2] = 1.;
241          if (getheader(fp, get_dminfo, &dinfo) < 0) {
242                  fclose(fp);
243                  return(NULL);
# Line 243 | Line 263 | rmx_load(const char *inspec)
263          dnew->info = dinfo.info;
264          switch (dinfo.dtype) {
265          case DTascii:
266 <                SET_FILE_TEXT(stdin);
266 >                SET_FILE_TEXT(fp);
267                  if (!rmx_load_ascii(dnew, fp))
268                          goto loaderr;
269                  dnew->dtype = DTascii;          /* should leave double? */
270                  break;
271          case DTfloat:
272 +                dnew->swapin = dinfo.swapin;
273                  if (!rmx_load_float(dnew, fp))
274                          goto loaderr;
275                  dnew->dtype = DTfloat;
276                  break;
277          case DTdouble:
278 +                dnew->swapin = dinfo.swapin;
279                  if (!rmx_load_double(dnew, fp))
280                          goto loaderr;
281                  dnew->dtype = DTdouble;
# Line 262 | Line 284 | rmx_load(const char *inspec)
284          case DTxyze:
285                  if (!rmx_load_rgbe(dnew, fp))
286                          goto loaderr;
287 <                dnew->dtype = dinfo.dtype;
287 >                dnew->dtype = dinfo.dtype;      /* undo exposure? */
288 >                if ((dinfo.mtx[0] != 1.) | (dinfo.mtx[1] != 1.) |
289 >                                (dinfo.mtx[2] != 1.)) {
290 >                        dinfo.mtx[0] = 1./dinfo.mtx[0];
291 >                        dinfo.mtx[1] = 1./dinfo.mtx[1];
292 >                        dinfo.mtx[2] = 1./dinfo.mtx[2];
293 >                        rmx_scale(dnew, dinfo.mtx);
294 >                }
295                  break;
296          default:
297                  goto loaderr;
# Line 395 | Line 424 | rmx_write(const RMATRIX *rm, int dtype, FILE *fp)
424                          return(0);
425                  rm = mydm;
426          }
427 +        if ((dtype == DTfloat) | (dtype == DTdouble))
428 +                fputendian(fp);                 /* important to record */
429          fputformat((char *)cm_fmt_id[dtype], fp);
430          fputc('\n', fp);
431          switch (dtype) {                        /* write data */
# Line 568 | Line 599 | rmx_elemult(RMATRIX *m1, const RMATRIX *m2, int divide
599                              rmx_lval(m1,i,j,k) *= rmx_lval(m2,i,j,k);
600                  }
601          if (zeroDivides) {
602 <                fputs("Divide by zero in rmx_elemult()\n", stderr);
602 >                rmx_addinfo(m1, "WARNING: zero divide(s) corrupted results\n");
603                  errno = ERANGE;
604          }
605          return(1);
# Line 640 | Line 671 | rmx_transform(const RMATRIX *msrc, int n, const double
671                  return(NULL);
672          if (msrc->info) {
673                  char    buf[128];
674 <                sprintf(buf, "Applied %dx%d matrix transform\n",
674 >                sprintf(buf, "Applied %dx%d component transform\n",
675                                  dnew->ncomp, msrc->ncomp);
676                  rmx_addinfo(dnew, msrc->info);
677                  rmx_addinfo(dnew, buf);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines