ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/m_clip.c
Revision: 2.9
Committed: Tue Apr 19 01:15:06 2005 UTC (19 years ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R7P2, rad3R7P1, rad3R8
Changes since 2.8: +2 -2 lines
Log Message:
Extensive changes to enable rtrace -oTW option for tracking ray contributions

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 greg 2.9 static const char RCSid[] = "$Id: m_clip.c,v 2.8 2004/03/30 16:13:01 schorsch Exp $";
3 greg 1.1 #endif
4     /*
5     * m_clip.c - routine for clipped (cut) objects.
6 greg 2.5 */
7    
8 greg 2.6 #include "copyright.h"
9 greg 1.1
10     #include "ray.h"
11 schorsch 2.8 #include "rtotypes.h"
12 greg 1.1
13     /*
14     * Clipping objects permit holes and sections to be taken out
15     * of other objects. The method is simple:
16     *
17     * The argument is the clipped materials;
18     * the first is used to shade upon exit.
19     */
20    
21    
22 schorsch 2.8 extern int
23     m_clip( /* clip objects from ray */
24     register OBJREC *m,
25     register RAY *r
26     )
27 greg 1.1 {
28     OBJECT cset[MAXSET+1], *modset;
29 gwlarson 2.4 OBJECT obj, mod;
30 greg 1.1 int entering;
31     register int i;
32    
33 gwlarson 2.4 obj = objndx(m);
34 greg 1.1 if ((modset = (OBJECT *)m->os) == NULL) {
35     if (m->oargs.nsargs < 1 || m->oargs.nsargs > MAXSET)
36     objerror(m, USER, "bad # arguments");
37     modset = (OBJECT *)malloc((m->oargs.nsargs+1)*sizeof(OBJECT));
38     if (modset == NULL)
39     error(SYSTEM, "out of memory in m_clip");
40     modset[0] = 0;
41     for (i = 0; i < m->oargs.nsargs; i++) {
42     if (!strcmp(m->oargs.sarg[i], VOIDID))
43     continue;
44 greg 2.3 if ((mod = lastmod(obj, m->oargs.sarg[i])) == OVOID) {
45 greg 1.1 sprintf(errmsg, "unknown modifier \"%s\"",
46     m->oargs.sarg[i]);
47     objerror(m, WARNING, errmsg);
48     continue;
49     }
50     if (inset(modset, mod)) {
51     objerror(m, WARNING, "duplicate modifier");
52     continue;
53     }
54     insertelem(modset, mod);
55     }
56 greg 1.2 m->os = (char *)modset;
57 greg 1.1 }
58     if (r->clipset != NULL)
59     setcopy(cset, r->clipset);
60     else
61     cset[0] = 0;
62    
63     entering = r->rod > 0.0; /* entering clipped region? */
64    
65     for (i = modset[0]; i > 0; i--) {
66     if (entering) {
67     if (!inset(cset, modset[i])) {
68     if (cset[0] >= MAXSET)
69     error(INTERNAL, "set overflow in m_clip");
70     insertelem(cset, modset[i]);
71     }
72     } else {
73     if (inset(cset, modset[i]))
74     deletelem(cset, modset[i]);
75     }
76     }
77     /* compute ray value */
78     r->newcset = cset;
79     if (strcmp(m->oargs.sarg[0], VOIDID)) {
80     int inside = 0;
81 greg 2.9 register const RAY *rp;
82 greg 1.1 /* check for penetration */
83     for (rp = r; rp->parent != NULL; rp = rp->parent)
84     if (!(rp->rtype & RAYREFL) && rp->parent->ro != NULL
85 schorsch 2.7 && inset(modset, rp->parent->ro->omod)) {
86 greg 1.1 if (rp->parent->rod > 0.0)
87     inside++;
88     else
89     inside--;
90 schorsch 2.7 }
91 greg 1.1 if (inside > 0) { /* we just hit the object */
92     flipsurface(r);
93 gwlarson 2.4 return(rayshade(r, lastmod(obj, m->oargs.sarg[0])));
94 greg 1.1 }
95     }
96     raytrans(r); /* else transfer ray */
97 greg 2.2 return(1);
98 greg 1.1 }