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.35 by greg, Wed Aug 14 18:20:02 2019 UTC vs.
Revision 2.45 by greg, Fri Jan 15 02:46:28 2021 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 27 | Line 24 | rmx_alloc(int nr, int nc, int n)
24          if ((nr <= 0) | (nc <= 0) | (n <= 0))
25                  return(NULL);
26          dnew = (RMATRIX *)malloc(sizeof(RMATRIX)-sizeof(dnew->mtx) +
27 <                                        sizeof(dnew->mtx[0])*(n*nr*nc));
27 >                                        sizeof(dnew->mtx[0])*n*nr*nc);
28          if (!dnew)
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 102 | Line 100 | get_dminfo(char *s, void *p)
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 152 | Line 161 | rmx_load_float(RMATRIX *rm, FILE *fp)
161   static int
162   rmx_load_double(RMATRIX *rm, FILE *fp)
163   {
164 <        int     i, j;
164 >        int     i;
165  
166 <        for (i = 0; i < rm->nrows; i++)
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);
166 >        if ((char *)&rmx_lval(rm,1,0,0) - (char *)&rmx_lval(rm,0,0,0) !=
167 >                                        sizeof(double)*rm->ncols*rm->ncomp) {
168 >                fputs("Code error in rmx_load_double()\n", stderr);
169 >                exit(1);
170 >        }
171 >        for (i = 0; i < rm->nrows; i++) {
172 >                if (getbinary(&rmx_lval(rm,i,0,0), sizeof(double)*rm->ncomp,
173 >                                        rm->ncols, fp) != rm->ncols)
174 >                        return(0);
175                  if (rm->swapin)
176 <                    swap64((char *)&rmx_lval(rm,i,j,0), rm->ncomp);
177 <            }
176 >                        swap64((char *)&rmx_lval(rm,i,0,0), rm->ncols*rm->ncomp);
177 >        }
178          return(1);
179   }
180  
# Line 201 | Line 215 | rmx_load(const char *inspec)
215          } else if (inspec[0] == '!') {
216                  if (!(fp = popen(inspec+1, "r")))
217                          return(NULL);
218 <                SET_FILE_BINARY(stdin);
218 >                SET_FILE_BINARY(fp);
219          } else {
220                  const char      *sp = inspec;   /* check suffix */
221                  while (*sp)
# Line 228 | Line 242 | rmx_load(const char *inspec)
242          dinfo.dtype = DTascii;                  /* assumed w/o FORMAT */
243          dinfo.swapin = 0;
244          dinfo.info = NULL;
245 +        dinfo.mtx[0] = dinfo.mtx[1] = dinfo.mtx[2] = 1.;
246          if (getheader(fp, get_dminfo, &dinfo) < 0) {
247                  fclose(fp);
248                  return(NULL);
# Line 253 | Line 268 | rmx_load(const char *inspec)
268          dnew->info = dinfo.info;
269          switch (dinfo.dtype) {
270          case DTascii:
271 <                SET_FILE_TEXT(stdin);
271 >                SET_FILE_TEXT(fp);
272                  if (!rmx_load_ascii(dnew, fp))
273                          goto loaderr;
274                  dnew->dtype = DTascii;          /* should leave double? */
# Line 274 | Line 289 | rmx_load(const char *inspec)
289          case DTxyze:
290                  if (!rmx_load_rgbe(dnew, fp))
291                          goto loaderr;
292 <                dnew->dtype = dinfo.dtype;
292 >                dnew->dtype = dinfo.dtype;      /* undo exposure? */
293 >                if ((dinfo.mtx[0] != 1.) | (dinfo.mtx[1] != 1.) |
294 >                                (dinfo.mtx[2] != 1.)) {
295 >                        dinfo.mtx[0] = 1./dinfo.mtx[0];
296 >                        dinfo.mtx[1] = 1./dinfo.mtx[1];
297 >                        dinfo.mtx[2] = 1./dinfo.mtx[2];
298 >                        rmx_scale(dnew, dinfo.mtx);
299 >                }
300                  break;
301          default:
302                  goto loaderr;
# Line 654 | Line 676 | rmx_transform(const RMATRIX *msrc, int n, const double
676                  return(NULL);
677          if (msrc->info) {
678                  char    buf[128];
679 <                sprintf(buf, "Applied %dx%d matrix transform\n",
679 >                sprintf(buf, "Applied %dx%d component transform\n",
680                                  dnew->ncomp, msrc->ncomp);
681                  rmx_addinfo(dnew, msrc->info);
682                  rmx_addinfo(dnew, buf);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines