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

Comparing ray/src/rt/m_mirror.c (file contents):
Revision 2.9 by greg, Tue Feb 25 02:47:22 2003 UTC vs.
Revision 2.16 by greg, Sat May 10 17:43:01 2014 UTC

# Line 8 | Line 8 | static const char      RCSid[] = "$Id$";
8   #include "copyright.h"
9  
10   #include  "ray.h"
11
11   #include  "otypes.h"
12 <
12 > #include  "rtotypes.h"
13   #include  "source.h"
14  
15   /*
# Line 24 | Line 23 | static const char      RCSid[] = "$Id$";
23   * part of the direct calculation.
24   */
25  
26 + static int mir_proj(MAT4  pm, OBJREC  *o, SRCREC  *s, int  n);
27 + static void mirrorproj(MAT4  m, FVECT  nv, double  offs);
28  
28 static int  mir_proj(), mirrorproj();
29
29   VSMATERIAL  mirror_vs = {mir_proj, 1};
30  
31  
32   int
33 < m_mirror(m, r)                  /* shade mirrored ray */
34 < register OBJREC  *m;
35 < register RAY  *r;
33 > m_mirror(                       /* shade mirrored ray */
34 >        OBJREC  *m,
35 >        RAY  *r
36 > )
37   {
38          COLOR  mcolor;
39          RAY  nr;
40          int  rpure = 1;
41 <        register int  i;
41 >        int  i;
42                                          /* check arguments */
43          if (m->oargs.nfargs != 3 || m->oargs.nsargs > 1)
44                  objerror(m, USER, "bad number of arguments");
45                                          /* check for substitute material */
46 <        if (m->oargs.nsargs > 0 &&
46 >                                        /* but avoid double-counting */
47 >        if (m->oargs.nsargs > 0 && !(r->crtype & (AMBIENT|SPECULAR)) &&
48                          (r->rsrc < 0 || source[r->rsrc].so != r->ro)) {
49                  if (!strcmp(m->oargs.sarg[0], VOIDID)) {
50                          raytrans(r);
# Line 55 | Line 56 | register RAY  *r;
56          if (r->rsrc >= 0 && source[r->rsrc].so != r->ro)
57                  return(1);
58  
59 <        if (r->rod < 0.)                /* back is black */
59 >        if (r->rod < 0.) {              /* back is black */
60 >                if (!backvis)
61 >                        raytrans(r);    /* unless back visibility is off */
62                  return(1);
63 +        }
64                                          /* get modifiers */
65          raytexture(r, m->omod);
66                                          /* assign material color */
# Line 66 | Line 70 | register RAY  *r;
70          multcolor(mcolor, r->pcol);
71                                          /* compute reflected ray */
72          if (r->rsrc >= 0) {                     /* relayed light source */
73 <                rayorigin(&nr, r, REFLECTED, 1.);
73 >                rayorigin(&nr, REFLECTED, r, mcolor);
74                                          /* ignore textures */
75                  for (i = 0; i < 3; i++)
76                          nr.rdir[i] = r->rdir[i] + 2.*r->rod*r->ron[i];
# Line 76 | Line 80 | register RAY  *r;
80                  FVECT  pnorm;
81                  double  pdot;
82  
83 <                if (rayorigin(&nr, r, REFLECTED, bright(mcolor)) < 0)
83 >                if (rayorigin(&nr, REFLECTED, r, mcolor) < 0)
84                          return(1);
85 <                if (DOT(r->pert,r->pert) > FTINY*FTINY) {
85 >                if (!(r->crtype & AMBIENT) &&
86 >                                DOT(r->pert,r->pert) > FTINY*FTINY) {
87                          pdot = raynormal(pnorm, r);     /* use textures */
88                          for (i = 0; i < 3; i++)
89                                  nr.rdir[i] = r->rdir[i] + 2.*pdot*pnorm[i];
# Line 89 | Line 94 | register RAY  *r;
94                          for (i = 0; i < 3; i++)
95                                  nr.rdir[i] = r->rdir[i] + 2.*r->rod*r->ron[i];
96          }
97 +        checknorm(nr.rdir);
98          rayvalue(&nr);
99 <        multcolor(nr.rcol, mcolor);
99 >        multcolor(nr.rcol, nr.rcoef);
100          addcolor(r->rcol, nr.rcol);
101          if (rpure && r->ro != NULL && isflat(r->ro->otype))
102                  r->rt = r->rot + nr.rt;
# Line 99 | Line 105 | register RAY  *r;
105  
106  
107   static int
108 < mir_proj(pm, o, s, n)           /* compute a mirror's projection */
109 < MAT4  pm;
110 < register OBJREC  *o;
111 < SRCREC  *s;
112 < int  n;
108 > mir_proj(               /* compute a mirror's projection */
109 >        MAT4  pm,
110 >        OBJREC  *o,
111 >        SRCREC  *s,
112 >        int  n
113 > )
114   {
115 +        double  corr = 1.;
116          FVECT  nv, sc;
117 <        double  od;
118 <        register int  i, j;
117 >        double  od, offs;
118 >        int  i;
119                                  /* get surface normal and offset */
120 <        od = getplaneq(nv, o);
121 <                                /* check for extreme point for behind */
120 >        offs = od = getplaneq(nv, o);
121 >        if (s->sflags & SDISTANT)
122 >                offs = 0.;
123 >                                /* check for extreme point behind */
124 >        if (s->sflags & SCIR) {
125 >                if (s->sflags & (SFLAT|SDISTANT))
126 >                        corr = 1.12837917;      /* correct setflatss() */
127 >                else
128 >                        corr = 1.0/0.7236;      /* correct sphsetsrc() */
129 >        }
130          VCOPY(sc, s->sloc);
131          for (i = s->sflags & SFLAT ? SV : SW; i >= 0; i--)
132 <                if (DOT(nv, s->ss[i]) > 0.)
133 <                        for (j = 0; j < 3; j++)
118 <                                sc[j] += s->ss[i][j];
132 >                if (DOT(nv, s->ss[i]) > offs)
133 >                        VSUM(sc, sc, s->ss[i], corr);
134                  else
135 <                        for (j = 0; j < 3; j++)
136 <                                sc[j] -= s->ss[i][j];
122 <        if (DOT(sc, nv) <= (s->sflags & SDISTANT ? FTINY : od+FTINY))
135 >                        VSUM(sc, sc, s->ss[i], -corr);
136 >        if (DOT(sc, nv) <= offs+FTINY)
137                  return(0);
138                                  /* everything OK -- compute projection */
139          mirrorproj(pm, nv, od);
# Line 127 | Line 141 | int  n;
141   }
142  
143  
144 < static int
145 < mirrorproj(m, nv, offs)         /* get mirror projection for surface */
146 < register MAT4  m;
147 < FVECT  nv;
148 < double  offs;
144 > static void
145 > mirrorproj(             /* get mirror projection for surface */
146 >        MAT4  m,
147 >        FVECT  nv,
148 >        double  offs
149 > )
150   {
151 <        register int  i, j;
151 >        int  i, j;
152                                          /* assign matrix */
153          setident4(m);
154          for (j = 0; j < 3; j++) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines