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

Comparing ray/src/cv/mgflib/context.c (file contents):
Revision 1.18 by greg, Tue Mar 7 14:53:20 1995 UTC vs.
Revision 1.28 by schorsch, Sun Jul 27 22:12:02 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1994 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   * Context handlers
6   */
7  
8   #include <stdio.h>
9   #include <math.h>
10 + #include <stdlib.h>
11   #include <string.h>
12   #include "parser.h"
13   #include "lookup.h"
# Line 36 | Line 34 | static LUTAB   clr_tab = LU_SINIT(free,free);  /* color l
34   static LUTAB    mat_tab = LU_SINIT(free,free);  /* material lookup table */
35   static LUTAB    vtx_tab = LU_SINIT(free,free);  /* vertex lookup table */
36  
37 <                                /* CIE 1931 Standard Observer */
38 < static C_COLOR  cie_xf = C_CIEX;
39 < static C_COLOR  cie_yf = C_CIEY;
40 < static C_COLOR  cie_zf = C_CIEZ;
37 >                                /* CIE 1931 Standard Observer curves */
38 > static C_COLOR  cie_xf = { 1, NULL, C_CDSPEC|C_CSSPEC|C_CSXY|C_CSEFF,
39 >                        {14,42,143,435,1344,2839,3483,3362,2908,1954,956,
40 >                        320,49,93,633,1655,2904,4334,5945,7621,9163,10263,
41 >                        10622,10026,8544,6424,4479,2835,1649,874,468,227,
42 >                        114,58,29,14,7,3,2,1,0}, 106836L, .467, .368, 362.230
43 >                        };
44 > static C_COLOR  cie_yf = { 1, NULL, C_CDSPEC|C_CSSPEC|C_CSXY|C_CSEFF,
45 >                        {0,1,4,12,40,116,230,380,600,910,1390,2080,3230,
46 >                        5030,7100,8620,9540,9950,9950,9520,8700,7570,6310,
47 >                        5030,3810,2650,1750,1070,610,320,170,82,41,21,10,
48 >                        5,2,1,1,0,0}, 106856L, .398, .542, 493.525
49 >                        };
50 > static C_COLOR  cie_zf = { 1, NULL, C_CDSPEC|C_CSSPEC|C_CSXY|C_CSEFF,
51 >                        {65,201,679,2074,6456,13856,17471,17721,16692,
52 >                        12876,8130,4652,2720,1582,782,422,203,87,39,21,17,
53 >                        11,8,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
54 >                        106770L, .147, .077, 54.363
55 >                        };
56 >                                /* Derived CIE 1931 Primaries (imaginary) */
57 > static C_COLOR  cie_xp = { 1, NULL, C_CDSPEC|C_CSSPEC|C_CSXY,
58 >                        {-174,-198,-195,-197,-202,-213,-235,-272,-333,
59 >                        -444,-688,-1232,-2393,-4497,-6876,-6758,-5256,
60 >                        -3100,-815,1320,3200,4782,5998,6861,7408,7754,
61 >                        7980,8120,8199,8240,8271,8292,8309,8283,8469,
62 >                        8336,8336,8336,8336,8336,8336},
63 >                        127424L, 1., .0,
64 >                        };
65 > static C_COLOR  cie_yp = { 1, NULL, C_CDSPEC|C_CSSPEC|C_CSXY,
66 >                        {-451,-431,-431,-430,-427,-417,-399,-366,-312,
67 >                        -204,57,691,2142,4990,8810,9871,9122,7321,5145,
68 >                        3023,1123,-473,-1704,-2572,-3127,-3474,-3704,
69 >                        -3846,-3927,-3968,-3999,-4021,-4038,-4012,-4201,
70 >                        -4066,-4066,-4066,-4066,-4066,-4066},
71 >                        -23035L, .0, 1.,
72 >                        };
73 > static C_COLOR  cie_zp = { 1, NULL, C_CDSPEC|C_CSSPEC|C_CSXY,
74 >                        {4051,4054,4052,4053,4054,4056,4059,4064,4071,
75 >                        4074,4056,3967,3677,2933,1492,313,-440,-795,
76 >                        -904,-918,-898,-884,-869,-863,-855,-855,-851,
77 >                        -848,-847,-846,-846,-846,-845,-846,-843,-845,
78 >                        -845,-845,-845,-845,-845},
79 >                        36057L, .0, .0,
80 >                        };
81  
82   static int      setspectrum();
83   static int      setbbtemp();
# Line 65 | Line 103 | register char  **av;
103                          c_ccname = NULL;
104                          return(MG_OK);
105                  }
106 +                if (!isname(av[1]))
107 +                        return(MG_EILL);
108                  lp = lu_find(&clr_tab, av[1]);  /* lookup context */
109                  if (lp == NULL)
110                          return(MG_EMEM);
# Line 88 | Line 128 | register char  **av;
128                          c_ccname = lp->key;
129                          c_ccolor = (C_COLOR *)lp->data;
130                          c_ccolor->clock = 0;
131 +                        c_ccolor->client_data = NULL;
132                  }
133                  i = c_ccolor->clock;
134                  if (ac == 3) {          /* use default template */
# Line 111 | Line 152 | register char  **av;
152                  c_ccolor->cx = atof(av[1]);
153                  c_ccolor->cy = atof(av[2]);
154                  c_ccolor->flags = C_CDXY|C_CSXY;
155 <                if (c_ccolor->cx < 0. | c_ccolor->cy < 0. |
156 <                                c_ccolor->cx + c_ccolor->cy > 1.)
155 >                if ((c_ccolor->cx < 0.) | (c_ccolor->cy < 0.) |
156 >                                (c_ccolor->cx + c_ccolor->cy > 1.))
157                          return(MG_EILL);
158                  c_ccolor->clock++;
159                  return(MG_OK);
# Line 135 | Line 176 | register char  **av;
176                  if (!isflt(av[1]))
177                          return(MG_ETYPE);
178                  wsum = atof(av[1]);
138                if (wsum < 0.)
139                        return(MG_EILL);
179                  if ((lp = lu_find(&clr_tab, av[2])) == NULL)
180                          return(MG_EMEM);
181                  if (lp->data == NULL)
# Line 146 | Line 185 | register char  **av;
185                          if (!isflt(av[i]))
186                                  return(MG_ETYPE);
187                          w = atof(av[i]);
149                        if (w < 0.)
150                                return(MG_EILL);
188                          if ((lp = lu_find(&clr_tab, av[i+1])) == NULL)
189                                  return(MG_EMEM);
190                          if (lp->data == NULL)
# Line 156 | Line 193 | register char  **av;
193                                          w, (C_COLOR *)lp->data);
194                          wsum += w;
195                  }
196 +                if (wsum <= 0.)
197 +                        return(MG_EILL);
198                  c_ccolor->clock++;
199                  return(MG_OK);
200          }
# Line 181 | Line 220 | register char  **av;
220                          c_cmname = NULL;
221                          return(MG_OK);
222                  }
223 +                if (!isname(av[1]))
224 +                        return(MG_EILL);
225                  lp = lu_find(&mat_tab, av[1]);  /* lookup context */
226                  if (lp == NULL)
227                          return(MG_EMEM);
# Line 204 | Line 245 | register char  **av;
245                          c_cmname = lp->key;
246                          c_cmaterial = (C_MATERIAL *)lp->data;
247                          c_cmaterial->clock = 0;
248 +                        c_cmaterial->client_data = NULL;
249                  }
250                  i = c_cmaterial->clock;
251                  if (ac == 3) {          /* use default template */
# Line 219 | Line 261 | register char  **av;
261                  *c_cmaterial = *(C_MATERIAL *)lp->data;
262                  c_cmaterial->clock = i + 1;
263                  return(MG_OK);
264 +        case MG_E_IR:           /* set index of refraction */
265 +                if (ac != 3)
266 +                        return(MG_EARGC);
267 +                if (!isflt(av[1]) | !isflt(av[2]))
268 +                        return(MG_ETYPE);
269 +                c_cmaterial->nr = atof(av[1]);
270 +                c_cmaterial->ni = atof(av[2]);
271 +                if (c_cmaterial->nr <= FTINY)
272 +                        return(MG_EILL);
273 +                c_cmaterial->clock++;
274 +                return(MG_OK);
275          case MG_E_RD:           /* set diffuse reflectance */
276                  if (ac != 2)
277                          return(MG_EARGC);
278                  if (!isflt(av[1]))
279                          return(MG_ETYPE);
280                  c_cmaterial->rd = atof(av[1]);
281 <                if (c_cmaterial->rd < 0. | c_cmaterial->rd > 1.)
281 >                if ((c_cmaterial->rd < 0.) | (c_cmaterial->rd > 1.))
282                          return(MG_EILL);
283                  c_cmaterial->rd_c = *c_ccolor;
284                  c_cmaterial->clock++;
# Line 247 | Line 300 | register char  **av;
300                  if (!isflt(av[1]))
301                          return(MG_ETYPE);
302                  c_cmaterial->td = atof(av[1]);
303 <                if (c_cmaterial->td < 0. | c_cmaterial->td > 1.)
303 >                if ((c_cmaterial->td < 0.) | (c_cmaterial->td > 1.))
304                          return(MG_EILL);
305                  c_cmaterial->td_c = *c_ccolor;
306                  c_cmaterial->clock++;
# Line 259 | Line 312 | register char  **av;
312                          return(MG_ETYPE);
313                  c_cmaterial->rs = atof(av[1]);
314                  c_cmaterial->rs_a = atof(av[2]);
315 <                if (c_cmaterial->rs < 0. | c_cmaterial->rs > 1. |
316 <                                c_cmaterial->rs_a < 0.)
315 >                if ((c_cmaterial->rs < 0.) | (c_cmaterial->rs > 1.) |
316 >                                (c_cmaterial->rs_a < 0.))
317                          return(MG_EILL);
318                  c_cmaterial->rs_c = *c_ccolor;
319                  c_cmaterial->clock++;
# Line 272 | Line 325 | register char  **av;
325                          return(MG_ETYPE);
326                  c_cmaterial->ts = atof(av[1]);
327                  c_cmaterial->ts_a = atof(av[2]);
328 <                if (c_cmaterial->ts < 0. | c_cmaterial->ts > 1. |
329 <                                c_cmaterial->ts_a < 0.)
328 >                if ((c_cmaterial->ts < 0.) | (c_cmaterial->ts > 1.) |
329 >                                (c_cmaterial->ts_a < 0.))
330                          return(MG_EILL);
331                  c_cmaterial->ts_c = *c_ccolor;
332                  c_cmaterial->clock++;
# Line 315 | Line 368 | register char  **av;
368                          c_cvname = NULL;
369                          return(MG_OK);
370                  }
371 +                if (!isname(av[1]))
372 +                        return(MG_EILL);
373                  lp = lu_find(&vtx_tab, av[1]);  /* lookup context */
374                  if (lp == NULL)
375                          return(MG_EMEM);
# Line 337 | Line 392 | register char  **av;
392                                  return(MG_EMEM);
393                          c_cvname = lp->key;
394                          c_cvertex = (C_VERTEX *)lp->data;
395 +                        c_cvertex->clock = 0;
396 +                        c_cvertex->client_data = NULL;
397                  }
398                  i = c_cvertex->clock;
399                  if (ac == 3) {          /* use default template */
# Line 472 | Line 529 | int    fl;
529                  clr->cy = y / z;
530                  clr->flags |= C_CSXY;
531          } else if (fl & C_CSSPEC) {     /* cxy -> cspec */
532 <                z = (cie_xf.ssum + cie_yf.ssum + cie_zf.ssum) / 3.;
533 <                x = clr->cx * z / cie_xf.ssum;
534 <                y = clr->cy * z / cie_yf.ssum;
478 <                z = (1. - clr->cx - clr->cy) * z / cie_zf.ssum;
532 >                x = clr->cx;
533 >                y = clr->cy;
534 >                z = 1. - x - y;
535                  clr->ssum = 0;
536 <                for (i = 0; i < C_CNSS; i++)
537 <                        clr->ssum += clr->ssamp[i] =
538 <                                        x * cie_xf.ssamp[i] +
539 <                                        y * cie_yf.ssamp[i] +
540 <                                        z * cie_zf.ssamp[i] + .5;
536 >                for (i = 0; i < C_CNSS; i++) {
537 >                        clr->ssamp[i] = x*cie_xp.ssamp[i] + y*cie_yp.ssamp[i]
538 >                                        + z*cie_zp.ssamp[i] + .5;
539 >                        if (clr->ssamp[i] < 0)          /* out of gamut! */
540 >                                clr->ssamp[i] = 0;
541 >                        else
542 >                                clr->ssum += clr->ssamp[i];
543 >                }
544                  clr->flags |= C_CSSPEC;
545          }
546          if (fl & C_CSEFF) {             /* compute efficacy */
547 <                if (clr->flags & C_CDSPEC) {            /* from spectrum */
547 >                if (clr->flags & C_CSSPEC) {            /* from spectrum */
548                          y = 0.;
549                          for (i = 0; i < C_CNSS; i++)
550                                  y += cie_yf.ssamp[i] * clr->ssamp[i];
551                          clr->eff = C_CLPWM * y / clr->ssum;
552 <                } else /* clr->flags & C_CDXY */ {      /* from (x,y) */
552 >                } else /* clr->flags & C_CSXY */ {      /* from (x,y) */
553                          clr->eff = clr->cx*cie_xf.eff + clr->cy*cie_yf.eff +
554                                          (1. - clr->cx - clr->cy)*cie_zf.eff;
555                  }
# Line 512 | Line 571 | char   **av;
571          int     n, imax;
572          int     wl;
573          double  wl0, wlstep;
574 +        double  boxpos, boxstep;
575                                          /* check bounds */
576 <        if (wlmax <= C_CMINWL | wlmax <= wlmin | wlmin >= C_CMAXWL)
576 >        if ((wlmax <= C_CMINWL) | (wlmax <= wlmin) | (wlmin >= C_CMAXWL))
577                  return(MG_EILL);
578          wlstep = (wlmax - wlmin)/(ac-1);
579          while (wlmin < C_CMINWL) {
# Line 524 | Line 584 | char   **av;
584                  wlmax -= wlstep;
585                  ac--;
586          }
527        if (ac < 2)
528                return(MG_EILL);
587          imax = ac;                      /* box filter if necessary */
588 +        boxpos = 0;
589 +        boxstep = 1;
590          if (wlstep < C_CWLI) {
591 +                imax = (wlmax - wlmin)/C_CWLI + (1-FTINY);
592 +                boxpos = (wlmin - C_CMINWL)/C_CWLI;
593 +                boxstep = wlstep/C_CWLI;
594                  wlstep = C_CWLI;
532                imax = (wlmax - wlmin)/wlstep;
595          }
596          scale = 0.;                     /* get values and maximum */
597          pos = 0;
598          for (i = 0; i < imax; i++) {
599                  va[i] = 0.; n = 0;
600 <                while (pos < (i+.5)*ac/imax) {
600 >                while (boxpos < i+.5 && pos < ac) {
601                          if (!isflt(av[pos]))
602                                  return(MG_ETYPE);
603                          va[i] += atof(av[pos++]);
604                          n++;
605 +                        boxpos += boxstep;
606                  }
607                  if (n > 1)
608                          va[i] /= (double)n;
546                if (va[i] < 0.)
547                        return(MG_EILL);
609                  if (va[i] > scale)
610                          scale = va[i];
611 +                else if (va[i] < -scale)
612 +                        scale = -va[i];
613          }
614 <        if (scale == 0.)
614 >        if (scale <= FTINY)
615                  return(MG_EILL);
616          scale = C_CMAXV / scale;
617          clr->ssum = 0;                  /* convert to our spacing */
618          wl0 = wlmin;
619          pos = 0;
620          for (i = 0, wl = C_CMINWL; i < C_CNSS; i++, wl += C_CWLI)
621 <                if (wl < wlmin | wl > wlmax)
621 >                if ((wl < wlmin) | (wl > wlmax))
622                          clr->ssamp[i] = 0;
623                  else {
624                          while (wl0 + wlstep < wl+FTINY) {
625                                  wl0 += wlstep;
626                                  pos++;
627                          }
628 <                        if (wl+FTINY >= wl0 & wl-FTINY <= wl0)
628 >                        if ((wl+FTINY >= wl0) & (wl-FTINY <= wl0))
629                                  clr->ssamp[i] = scale*va[pos] + .5;
630                          else            /* interpolate if necessary */
631                                  clr->ssamp[i] = .5 + scale / wlstep *
# Line 604 | Line 667 | double w1, w2;
667          } else {                                        /* CIE xy mixing */
668                  c_ccvt(c1, C_CSXY);
669                  c_ccvt(c2, C_CSXY);
670 <                scale = 1. / (w1/c1->cy + w2/c2->cy);
670 >                scale = w1/c1->cy + w2/c2->cy;
671 >                if (scale == 0.)
672 >                        return;
673 >                scale = 1. / scale;
674                  cres->cx = (c1->cx*w1/c1->cy + c2->cx*w2/c2->cy) * scale;
675                  cres->cy = (w1 + w2) * scale;
676                  cres->flags = C_CDXY|C_CSXY;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines