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.16 by greg, Fri Sep 2 16:04:19 1994 UTC vs.
Revision 1.27 by greg, Fri Feb 28 20:11:29 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();
84   static void     mixcolors();
85  
86  
# Line 64 | 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 87 | 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 105 | Line 147 | register char  **av;
147          case MG_E_CXY:          /* assign CIE XY value */
148                  if (ac != 3)
149                          return(MG_EARGC);
150 <                if (!isflt(av[1]) || !isflt(av[2]))
150 >                if (!isflt(av[1]) | !isflt(av[2]))
151                          return(MG_ETYPE);
152                  c_ccolor->cx = atof(av[1]);
153                  c_ccolor->cy = atof(av[2]);
# Line 118 | Line 160 | register char  **av;
160          case MG_E_CSPEC:        /* assign spectral values */
161                  if (ac < 5)
162                          return(MG_EARGC);
163 <                if (!isint(av[1]) || !isint(av[2]))
163 >                if (!isflt(av[1]) | !isflt(av[2]))
164                          return(MG_ETYPE);
165 <                return(setspectrum(c_ccolor, atoi(av[1]), atoi(av[2]),
165 >                return(setspectrum(c_ccolor, atof(av[1]), atof(av[2]),
166                                  ac-3, av+3));
167 +        case MG_E_CCT:          /* assign black body spectrum */
168 +                if (ac != 2)
169 +                        return(MG_EARGC);
170 +                if (!isflt(av[1]))
171 +                        return(MG_ETYPE);
172 +                return(setbbtemp(c_ccolor, atof(av[1])));
173          case MG_E_CMIX:         /* mix colors */
174                  if (ac < 5 || (ac-1)%2)
175                          return(MG_EARGC);
176                  if (!isflt(av[1]))
177                          return(MG_ETYPE);
178                  wsum = atof(av[1]);
131                if (wsum < 0.)
132                        return(MG_EILL);
179                  if ((lp = lu_find(&clr_tab, av[2])) == NULL)
180                          return(MG_EMEM);
181                  if (lp->data == NULL)
# Line 139 | Line 185 | register char  **av;
185                          if (!isflt(av[i]))
186                                  return(MG_ETYPE);
187                          w = atof(av[i]);
142                        if (w < 0.)
143                                return(MG_EILL);
188                          if ((lp = lu_find(&clr_tab, av[i+1])) == NULL)
189                                  return(MG_EMEM);
190                          if (lp->data == NULL)
# Line 149 | 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 174 | 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 197 | 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 212 | 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);
# Line 248 | Line 308 | register char  **av;
308          case MG_E_RS:           /* set specular reflectance */
309                  if (ac != 3)
310                          return(MG_EARGC);
311 <                if (!isflt(av[1]) || !isflt(av[2]))
311 >                if (!isflt(av[1]) | !isflt(av[2]))
312                          return(MG_ETYPE);
313                  c_cmaterial->rs = atof(av[1]);
314                  c_cmaterial->rs_a = atof(av[2]);
# Line 261 | Line 321 | register char  **av;
321          case MG_E_TS:           /* set specular transmittance */
322                  if (ac != 3)
323                          return(MG_EARGC);
324 <                if (!isflt(av[1]) || !isflt(av[2]))
324 >                if (!isflt(av[1]) | !isflt(av[2]))
325                          return(MG_ETYPE);
326                  c_cmaterial->ts = atof(av[1]);
327                  c_cmaterial->ts_a = atof(av[2]);
# Line 308 | 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 330 | 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 348 | Line 412 | register char  **av;
412          case MG_E_POINT:        /* set point */
413                  if (ac != 4)
414                          return(MG_EARGC);
415 <                if (!isflt(av[1]) || !isflt(av[2]) || !isflt(av[3]))
415 >                if (!isflt(av[1]) | !isflt(av[2]) | !isflt(av[3]))
416                          return(MG_ETYPE);
417                  c_cvertex->p[0] = atof(av[1]);
418                  c_cvertex->p[1] = atof(av[2]);
# Line 358 | Line 422 | register char  **av;
422          case MG_E_NORMAL:       /* set normal */
423                  if (ac != 4)
424                          return(MG_EARGC);
425 <                if (!isflt(av[1]) || !isflt(av[2]) || !isflt(av[3]))
425 >                if (!isflt(av[1]) | !isflt(av[2]) | !isflt(av[3]))
426                          return(MG_ETYPE);
427                  c_cvertex->n[0] = atof(av[1]);
428                  c_cvertex->n[1] = atof(av[2]);
# Line 457 | Line 521 | int    fl;
521                          y += cie_yf.ssamp[i] * clr->ssamp[i];
522                          z += cie_zf.ssamp[i] * clr->ssamp[i];
523                  }
524 +                x /= (double)cie_xf.ssum;
525 +                y /= (double)cie_yf.ssum;
526 +                z /= (double)cie_zf.ssum;
527                  z += x + y;
528                  clr->cx = x / z;
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;
468 <                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] ;
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 492 | Line 561 | int    fl;
561   static int
562   setspectrum(clr, wlmin, wlmax, ac, av)  /* convert a spectrum */
563   register C_COLOR        *clr;
564 < int     wlmin, wlmax;
564 > double  wlmin, wlmax;
565   int     ac;
566   char    **av;
567   {
568          double  scale;
569 <        float   *va;
570 <        register int    i;
571 <        int     wl, pos;
569 >        float   va[C_CNSS];
570 >        register int    i, pos;
571 >        int     n, imax;
572 >        int     wl;
573          double  wl0, wlstep;
574 <
575 <        if (wlmin < C_CMINWL || wlmin >= wlmax || wlmax > C_CMAXWL)
574 >        double  boxpos, boxstep;
575 >                                        /* check bounds */
576 >        if (wlmax <= C_CMINWL | wlmax <= wlmin | wlmin >= C_CMAXWL)
577                  return(MG_EILL);
578 <        if ((va = (float *)malloc(ac*sizeof(float))) == NULL)
579 <                return(MG_EMEM);
578 >        wlstep = (wlmax - wlmin)/(ac-1);
579 >        while (wlmin < C_CMINWL) {
580 >                wlmin += wlstep;
581 >                ac--; av++;
582 >        }
583 >        while (wlmax > C_CMAXWL) {
584 >                wlmax -= wlstep;
585 >                ac--;
586 >        }
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;
595 >        }
596          scale = 0.;                     /* get values and maximum */
597 <        for (i = 0; i < ac; i++) {
598 <                if (!isflt(av[i]))
599 <                        return(MG_ETYPE);
600 <                va[i] = atof(av[i]);
601 <                if (va[i] < 0.)
602 <                        return(MG_EILL);
597 >        pos = 0;
598 >        for (i = 0; i < imax; i++) {
599 >                va[i] = 0.; n = 0;
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;
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;
524        wlstep = (double)(wlmax - wlmin)/(ac-1);
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)
629 <                                clr->ssamp[i] = scale*va[pos];
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] = scale / wlstep *
631 >                                clr->ssamp[i] = .5 + scale / wlstep *
632                                                  ( va[pos]*(wl0+wlstep - wl) +
633                                                          va[pos+1]*(wl - wl0) );
634                          clr->ssum += clr->ssamp[i];
635                  }
636          clr->flags = C_CDSPEC|C_CSSPEC;
637          clr->clock++;
544        free((MEM_PTR)va);
638          return(MG_OK);
639   }
640  
# Line 559 | Line 652 | double w1, w2;
652                  c_ccvt(c1, C_CSSPEC|C_CSEFF);
653                  c_ccvt(c2, C_CSSPEC|C_CSEFF);
654                  w1 /= c1->eff*c1->ssum;
655 <                w2 /= c1->eff*c2->ssum;
655 >                w2 /= c2->eff*c2->ssum;
656                  scale = 0.;
657                  for (i = 0; i < C_CNSS; i++) {
658                          cmix[i] = w1*c1->ssamp[i] + w2*c2->ssamp[i];
# Line 574 | 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;
677          }
678   }
679 +
680 +
681 + #define C1              3.741832e-16    /* W-m^2 */
682 + #define C2              1.4388e-2       /* m-K */
683 +
684 + #define bbsp(l,t)       (C1/((l)*(l)*(l)*(l)*(l)*(exp(C2/((t)*(l)))-1.)))
685 + #define bblm(t)         (C2/5./(t))
686 +
687 + static int
688 + setbbtemp(clr, tk)              /* set black body spectrum */
689 + register C_COLOR        *clr;
690 + double  tk;
691 + {
692 +        double  sf, wl;
693 +        register int    i;
694 +
695 +        if (tk < 1000)
696 +                return(MG_EILL);
697 +        wl = bblm(tk);                  /* scalefactor based on peak */
698 +        if (wl < C_CMINWL*1e-9)
699 +                wl = C_CMINWL*1e-9;
700 +        else if (wl > C_CMAXWL*1e-9)
701 +                wl = C_CMAXWL*1e-9;
702 +        sf = C_CMAXV/bbsp(wl,tk);
703 +        clr->ssum = 0;
704 +        for (i = 0; i < C_CNSS; i++) {
705 +                wl = (C_CMINWL + i*C_CWLI)*1e-9;
706 +                clr->ssum += clr->ssamp[i] = sf*bbsp(wl,tk) + .5;
707 +        }
708 +        clr->flags = C_CDSPEC|C_CSSPEC;
709 +        clr->clock++;
710 +        return(MG_OK);
711 + }
712 +
713 + #undef  C1
714 + #undef  C2
715 + #undef  bbsp
716 + #undef  bblm

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines