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

Comparing ray/src/rt/data.c (file contents):
Revision 1.7 by greg, Tue May 8 10:37:57 1990 UTC vs.
Revision 2.22 by greg, Wed Jul 16 01:32:53 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1986 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  data.c - routines dealing with interpolated data.
9 *
10 *     6/4/86
6   */
7  
8 < #include  "standard.h"
8 > #include "copyright.h"
9  
10 < #include  "color.h"
10 > #include  <time.h>
11  
12 + #include  "standard.h"
13 + #include  "platform.h"
14 + #include  "color.h"
15 + #include  "resolu.h"
16   #include  "data.h"
17  
18 +                                /* picture memory usage before warning */
19 + #ifndef PSIZWARN
20 + #ifdef SMLMEM
21 + #define PSIZWARN        1500000
22 + #else
23 + #define PSIZWARN        5000000
24 + #endif
25 + #endif
26  
27 < extern char  *libpath;                  /* library search path */
27 > #ifndef TABSIZ
28 > #define TABSIZ          97              /* table size (prime) */
29 > #endif
30  
31 < static DATARRAY  *dlist = NULL;         /* data array list */
31 > #define hash(s)         (shash(s)%TABSIZ)
32  
24 static DATARRAY  *plist = NULL;         /* picture list */
33  
34 + static DATARRAY  *dtab[TABSIZ];         /* data array list */
35  
36 +
37   DATARRAY *
38   getdata(dname)                          /* get data array dname */
39   char  *dname;
# Line 34 | Line 44 | char  *dname;
44          register int  i, j;
45          register DATARRAY  *dp;
46                                                  /* look for array in list */
47 <        for (dp = dlist; dp != NULL; dp = dp->next)
47 >        for (dp = dtab[hash(dname)]; dp != NULL; dp = dp->next)
48                  if (!strcmp(dname, dp->name))
49                          return(dp);             /* found! */
40
50          /*
51           *      If we haven't loaded the data already, we will look
52 <         *  for it in the directorys specified by the library path.
52 >         *  for it in the directories specified by the library path.
53           *
54           *      The file has the following format:
55           *
# Line 58 | Line 67 | char  *dname;
67           *              0 0 ni p0i p1i .. pni
68           */
69  
70 <        if ((dfname = getpath(dname, libpath, R_OK)) == NULL) {
70 >        if ((dfname = getpath(dname, getrlibpath(), R_OK)) == NULL) {
71                  sprintf(errmsg, "cannot find data file \"%s\"", dname);
72                  error(USER, errmsg);
73          }
65        if ((dp = (DATARRAY *)malloc(sizeof(DATARRAY))) == NULL)
66                goto memerr;
67
68        dp->name = savestr(dname);
69
74          if ((fp = fopen(dfname, "r")) == NULL) {
75                  sprintf(errmsg, "cannot open data file \"%s\"", dfname);
76                  error(SYSTEM, errmsg);
77          }
78                                                          /* get dimensions */
79 <        if (fscanf(fp, "%d", &dp->nd) != 1)
79 >        if (fgetval(fp, 'i', (char *)&asize) <= 0)
80                  goto scanerr;
81 <        if (dp->nd <= 0 || dp->nd > MAXDIM) {
81 >        if (asize <= 0 | asize > MAXDDIM) {
82                  sprintf(errmsg, "bad number of dimensions for \"%s\"", dname);
83                  error(USER, errmsg);
84          }
85 +        if ((dp = (DATARRAY *)malloc(sizeof(DATARRAY))) == NULL)
86 +                goto memerr;
87 +        dp->name = savestr(dname);
88 +        dp->type = DATATY;
89 +        dp->nd = asize;
90          asize = 1;
91          for (i = 0; i < dp->nd; i++) {
92 <                if (fscanf(fp, "%lf %lf %d",
84 <                                &dp->dim[i].org, &dp->dim[i].siz,
85 <                                &dp->dim[i].ne) != 3)
92 >                if (fgetval(fp, DATATY, (char *)&dp->dim[i].org) <= 0)
93                          goto scanerr;
94 +                if (fgetval(fp, DATATY, (char *)&dp->dim[i].siz) <= 0)
95 +                        goto scanerr;
96 +                if (fgetval(fp, 'i', (char *)&dp->dim[i].ne) <= 0)
97 +                        goto scanerr;
98                  if (dp->dim[i].ne < 2)
99                          goto scanerr;
100                  asize *= dp->dim[i].ne;
101                  if ((dp->dim[i].siz -= dp->dim[i].org) == 0) {
102 <                        dp->dim[i].p = (double *)malloc(dp->dim[i].ne*sizeof(double));
102 >                        dp->dim[i].p = (DATATYPE *)
103 >                                        malloc(dp->dim[i].ne*sizeof(DATATYPE));
104                          if (dp->dim[i].p == NULL)
105                                  goto memerr;
106                          for (j = 0; j < dp->dim[i].ne; j++)
107 <                                if (fscanf(fp, "%lf", &dp->dim[i].p[j]) != 1)
107 >                                if (fgetval(fp, DATATY,
108 >                                                (char *)&dp->dim[i].p[j]) <= 0)
109                                          goto scanerr;
110                          for (j = 1; j < dp->dim[i].ne-1; j++)
111                                  if ((dp->dim[i].p[j-1] < dp->dim[i].p[j]) !=
# Line 104 | Line 117 | char  *dname;
117                  } else
118                          dp->dim[i].p = NULL;
119          }
120 <        if ((dp->arr = (DATATYPE *)malloc(asize*sizeof(DATATYPE))) == NULL)
120 >        if ((dp->arr.d = (DATATYPE *)malloc(asize*sizeof(DATATYPE))) == NULL)
121                  goto memerr;
122          
123          for (i = 0; i < asize; i++)
124 <                if (fscanf(fp, DSCANF, &dp->arr[i]) != 1)
124 >                if (fgetval(fp, DATATY, (char *)&dp->arr.d[i]) <= 0)
125                          goto scanerr;
113        
126          fclose(fp);
127 <        dp->next = dlist;
128 <        return(dlist = dp);
127 >        i = hash(dname);
128 >        dp->next = dtab[i];
129 >        return(dtab[i] = dp);
130  
131   memerr:
132          error(SYSTEM, "out of memory in getdata");
# Line 124 | Line 137 | scanerr:
137   }
138  
139  
140 < static double  inpaspect;               /* aspect ratio of input picture */
141 <
129 < static
130 < headaspect(s)                           /* check string for aspect ratio */
140 > static int
141 > headaspect(s, iap)                      /* check string for aspect ratio */
142   char  *s;
143 + double  *iap;
144   {
145 +        char    fmt[32];
146 +
147          if (isaspect(s))
148 <                inpaspect *= aspectval(s);
148 >                *iap *= aspectval(s);
149 >        else if (formatval(fmt, s) && !globmatch(PICFMT, fmt))
150 >                *iap = 0.0;
151 >        return(0);
152   }
153  
154  
# Line 139 | Line 156 | DATARRAY *
156   getpict(pname)                          /* get picture pname */
157   char  *pname;
158   {
159 <        extern char  *libpath;
159 >        double  inpaspect;
160          char  *pfname;
161          FILE  *fp;
162 <        COLOR  *scanin;
163 <        int  width, height;
164 <        int  x, y;
165 <        register int  i;
162 >        COLR  *scanin;
163 >        int  sl, ns;
164 >        RESOLU  inpres;
165 >        RREAL  loc[2];
166 >        int  y;
167 >        register int  x, i;
168          register DATARRAY  *pp;
169                                                  /* look for array in list */
170 <        for (pp = plist; pp != NULL; pp = pp->next)
170 >        for (pp = dtab[hash(pname)]; pp != NULL; pp = pp->next)
171                  if (!strcmp(pname, pp->name))
172                          return(pp);             /* found! */
173  
174 <        if ((pfname = getpath(pname, libpath, R_OK)) == NULL) {
174 >        if ((pfname = getpath(pname, getrlibpath(), R_OK)) == NULL) {
175                  sprintf(errmsg, "cannot find picture file \"%s\"", pname);
176                  error(USER, errmsg);
177          }
178 <        if ((pp = (DATARRAY *)calloc(3, sizeof(DATARRAY))) == NULL)
178 >        if ((pp = (DATARRAY *)malloc(3*sizeof(DATARRAY))) == NULL)
179                  goto memerr;
180  
181 <        pp[0].name =
163 <        pp[1].name =
164 <        pp[2].name = savestr(pname);
181 >        pp[0].name = savestr(pname);
182  
183          if ((fp = fopen(pfname, "r")) == NULL) {
184                  sprintf(errmsg, "cannot open picture file \"%s\"", pfname);
185                  error(SYSTEM, errmsg);
186          }
187 +        SET_FILE_BINARY(fp);
188                                                  /* get dimensions */
189          inpaspect = 1.0;
190 <        getheader(fp, headaspect);
191 <        if (fgetresolu(&width, &height, fp) != (YMAJOR|YDECR))
190 >        getheader(fp, headaspect, (char *)&inpaspect);
191 >        if (inpaspect <= FTINY || !fgetsresolu(&inpres, fp))
192                  goto readerr;
193 <        for (i = 0; i < 3; i++) {
194 <                pp[i].nd = 2;
195 <                pp[i].dim[0].ne = height;
196 <                pp[i].dim[1].ne = width;
197 <                pp[i].dim[0].org =
198 <                pp[i].dim[1].org = 0.0;
199 <                if (width <= height*inpaspect) {
200 <                        pp[i].dim[0].siz = inpaspect*(double)height/width;
201 <                        pp[i].dim[1].siz = 1.0;
202 <                } else {
203 <                        pp[i].dim[0].siz = 1.0;
204 <                        pp[i].dim[1].siz = (double)width/height/inpaspect;
205 <                }
188 <                pp[i].dim[0].p = pp[i].dim[1].p = NULL;
189 <                pp[i].arr = (DATATYPE *)malloc(width*height*sizeof(DATATYPE));
190 <                if (pp[i].arr == NULL)
191 <                        goto memerr;
193 >        pp[0].nd = 2;
194 >        pp[0].dim[0].ne = inpres.yr;
195 >        pp[0].dim[1].ne = inpres.xr;
196 >        pp[0].dim[0].org =
197 >        pp[0].dim[1].org = 0.0;
198 >        if (inpres.xr <= inpres.yr*inpaspect) {
199 >                pp[0].dim[0].siz = inpaspect *
200 >                                        (double)inpres.yr/inpres.xr;
201 >                pp[0].dim[1].siz = 1.0;
202 >        } else {
203 >                pp[0].dim[0].siz = 1.0;
204 >                pp[0].dim[1].siz = (double)inpres.xr/inpres.yr /
205 >                                        inpaspect;
206          }
207 +        pp[0].dim[0].p = pp[0].dim[1].p = NULL;
208 +        sl = scanlen(&inpres);                          /* allocate array */
209 +        ns = numscans(&inpres);
210 +        i = ns*sl*sizeof(COLR);
211 + #if PSIZWARN
212 +        if (i > PSIZWARN) {                             /* memory warning */
213 +                sprintf(errmsg, "picture file \"%s\" using %d bytes of memory",
214 +                                pname, i);
215 +                error(WARNING, errmsg);
216 +        }
217 + #endif
218 +        if ((pp[0].arr.c = (COLR *)malloc(i)) == NULL)
219 +                goto memerr;
220                                                          /* load picture */
221 <        if ((scanin = (COLOR *)malloc(width*sizeof(COLOR))) == NULL)
221 >        if ((scanin = (COLR *)malloc(sl*sizeof(COLR))) == NULL)
222                  goto memerr;
223 <        for (y = height-1; y >= 0; y--) {
224 <                if (freadscan(scanin, width, fp) < 0)
223 >        for (y = 0; y < ns; y++) {
224 >                if (freadcolrs(scanin, sl, fp) < 0)
225                          goto readerr;
226 <                for (x = 0; x < width; x++)
227 <                        for (i = 0; i < 3; i++)
228 <                                pp[i].arr[y*width+x] = colval(scanin[x],i);
226 >                for (x = 0; x < sl; x++) {
227 >                        pix2loc(loc, &inpres, x, y);
228 >                        i = (int)(loc[1]*inpres.yr)*inpres.xr +
229 >                                        (int)(loc[0]*inpres.xr);
230 >                        copycolr(pp[0].arr.c[i], scanin[x]);
231 >                }
232          }
233 <        free((char *)scanin);
233 >        free((void *)scanin);
234          fclose(fp);
235 <        pp[0].next =
236 <        pp[1].next =
237 <        pp[2].next = plist;
238 <        return(plist = pp);
235 >        i = hash(pname);
236 >        pp[0].next = dtab[i];           /* link into picture list */
237 >        copystruct(&pp[1], &pp[0]);
238 >        copystruct(&pp[2], &pp[0]);
239 >        pp[0].type = RED;               /* differentiate RGB records */
240 >        pp[1].type = GRN;
241 >        pp[2].type = BLU;
242 >        return(dtab[i] = pp);
243  
244   memerr:
245          error(SYSTEM, "out of memory in getpict");
# Line 215 | Line 249 | readerr:
249   }
250  
251  
252 < freedata(dname)                 /* free memory associated with dname */
253 < char  *dname;
252 > void
253 > freedata(dta)                   /* release data array reference */
254 > DATARRAY  *dta;
255   {
256 <        register DATARRAY  *dp, *dpl;
256 >        DATARRAY  head;
257 >        int  hval, nents;
258 >        register DATARRAY  *dpl, *dp;
259          register int  i;
260  
261 <        for (dpl = NULL, dp = dlist; dp != NULL; dpl = dp, dp = dp->next)
262 <                if (!strcmp(dname, dp->name)) {
263 <                        if (dpl == NULL)
264 <                                dlist = dp->next;
265 <                        else
261 >        if (dta == NULL) {                      /* free all if NULL */
262 >                hval = 0; nents = TABSIZ;
263 >        } else {
264 >                hval = hash(dta->name); nents = 1;
265 >        }
266 >        while (nents--) {
267 >                head.next = dtab[hval];
268 >                dpl = &head;
269 >                while ((dp = dpl->next) != NULL)
270 >                        if ((dta == NULL | dta == dp)) {
271                                  dpl->next = dp->next;
272 <                        free((char *)dp->arr);
273 <                        for (i = 0; i < dp->nd; i++)
274 <                                if (dp->dim[i].p != NULL)
275 <                                        free((char *)dp->dim[i].p);
276 <                        freestr(dp->name);
277 <                        free((char *)dp);
278 <                        return;
279 <                }
272 >                                if (dp->type == DATATY)
273 >                                        free((void *)dp->arr.d);
274 >                                else
275 >                                        free((void *)dp->arr.c);
276 >                                for (i = 0; i < dp->nd; i++)
277 >                                        if (dp->dim[i].p != NULL)
278 >                                                free((void *)dp->dim[i].p);
279 >                                freestr(dp->name);
280 >                                free((void *)dp);
281 >                        } else
282 >                                dpl = dp;
283 >                dtab[hval++] = head.next;
284 >        }
285   }
286  
287  
241 freepict(pname)                 /* free memory associated with pname */
242 char  *pname;
243 {
244        register DATARRAY  *pp, *ppl;
245
246        for (ppl = NULL, pp = plist; pp != NULL; ppl = pp, pp = pp->next)
247                if (!strcmp(pname, pp->name)) {
248                        if (ppl == NULL)
249                                plist = pp->next;
250                        else
251                                ppl->next = pp->next;
252                        free((char *)pp[0].arr);
253                        free((char *)pp[1].arr);
254                        free((char *)pp[2].arr);
255                        freestr(pp[0].name);
256                        free((char *)pp);
257                        return;
258                }
259 }
260
261
288   double
289   datavalue(dp, pt)               /* interpolate data value at a point */
290   register DATARRAY  *dp;
291 < double  *pt;
291 > double  *pt;
292   {
293          DATARRAY  sd;
294          int  asize;
295          int  lower, upper;
296          register int  i;
297 <        double  x, y, y0, y1;
297 >        double  x, y0, y1;
298                                          /* set up dimensions for recursion */
299 <        sd.nd = dp->nd - 1;
300 <        asize = 1;
301 <        for (i = 0; i < sd.nd; i++) {
302 <                sd.dim[i].org = dp->dim[i+1].org;
303 <                sd.dim[i].siz = dp->dim[i+1].siz;
304 <                sd.dim[i].p = dp->dim[i+1].p;
305 <                asize *= sd.dim[i].ne = dp->dim[i+1].ne;
299 >        if (dp->nd > 1) {
300 >                sd.name = dp->name;
301 >                sd.type = dp->type;
302 >                sd.nd = dp->nd - 1;
303 >                asize = 1;
304 >                for (i = 0; i < sd.nd; i++) {
305 >                        sd.dim[i].org = dp->dim[i+1].org;
306 >                        sd.dim[i].siz = dp->dim[i+1].siz;
307 >                        sd.dim[i].p = dp->dim[i+1].p;
308 >                        asize *= sd.dim[i].ne = dp->dim[i+1].ne;
309 >                }
310          }
311                                          /* get independent variable */
312          if (dp->dim[0].p == NULL) {             /* evenly spaced points */
313                  x = (pt[0] - dp->dim[0].org)/dp->dim[0].siz;
314 <                x = x * (dp->dim[0].ne - 1);
314 >                x *= (double)(dp->dim[0].ne - 1);
315                  i = x;
316                  if (i < 0)
317                          i = 0;
# Line 299 | Line 329 | double  *pt;
329                          i = (lower + upper) >> 1;
330                          if (pt[0] >= dp->dim[0].p[i])
331                                  lower = i;
332 <                        else if (pt[0] < dp->dim[0].p[i])
332 >                        else
333                                  upper = i;
334                  } while (i != (lower + upper) >> 1);
335 <                if (i < 0)
306 <                        i = 0;
307 <                else if (i > dp->dim[0].ne - 2)
335 >                if (i > dp->dim[0].ne - 2)
336                          i = dp->dim[0].ne - 2;
337                  x = i + (pt[0] - dp->dim[0].p[i]) /
338                                  (dp->dim[0].p[i+1] - dp->dim[0].p[i]);
339          }
340                                          /* get dependent variable */
341 <        if (dp->nd == 1) {
342 <                y0 = dp->arr[i];
343 <                y1 = dp->arr[i+1];
341 >        if (dp->nd > 1) {
342 >                if (dp->type == DATATY) {
343 >                        sd.arr.d = dp->arr.d + i*asize;
344 >                        y0 = datavalue(&sd, pt+1);
345 >                        sd.arr.d = dp->arr.d + (i+1)*asize;
346 >                        y1 = datavalue(&sd, pt+1);
347 >                } else {
348 >                        sd.arr.c = dp->arr.c + i*asize;
349 >                        y0 = datavalue(&sd, pt+1);
350 >                        sd.arr.c = dp->arr.c + (i+1)*asize;
351 >                        y1 = datavalue(&sd, pt+1);
352 >                }
353          } else {
354 <                sd.arr = &dp->arr[i*asize];
355 <                y0 = datavalue(&sd, pt+1);
356 <                sd.arr = &dp->arr[(i+1)*asize];
357 <                y1 = datavalue(&sd, pt+1);
354 >                if (dp->type == DATATY) {
355 >                        y0 = dp->arr.d[i];
356 >                        y1 = dp->arr.d[i+1];
357 >                } else {
358 >                        y0 = colrval(dp->arr.c[i],dp->type);
359 >                        y1 = colrval(dp->arr.c[i+1],dp->type);
360 >                }
361          }
362          /*
363           * Extrapolate as far as one division, then
364           * taper off harmonically to zero.
365           */
366          if (x > i+2)
367 <                y = (2*y1-y0)/(x-i-1);
328 <        else if (x < i-1)
329 <                y = (2*y0-y1)/(i-x);
330 <        else
331 <                y = y0*((i+1)-x) + y1*(x-i);
367 >                return( (2*y1-y0)/(x-(i-1)) );
368  
369 <        return(y);
369 >        if (x < i-1)
370 >                return( (2*y0-y1)/(i-x) );
371 >
372 >        return( y0*((i+1)-x) + y1*(x-i) );
373   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines