ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/ambient.h
Revision: 2.14
Committed: Sat May 28 22:27:54 2005 UTC (18 years, 11 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.13: +6 -4 lines
Log Message:
Fixed application of ray weights and coefficients in ambient calculation

File Contents

# User Rev Content
1 greg 2.14 /* RCSid $Id: ambient.h,v 2.13 2005/05/25 18:06:22 greg Exp $ */
2 greg 1.1 /*
3     * Common definitions for interreflection routines.
4 greg 2.7 *
5     * Include after ray.h
6     */
7 schorsch 2.9 #ifndef _RAD_AMBIENT_H_
8     #define _RAD_AMBIENT_H_
9     #ifdef __cplusplus
10     extern "C" {
11     #endif
12 greg 1.1
13     /*
14     * Since we've defined our vectors as float below to save space,
15     * watch out for changes in the definitions of VCOPY() and DOT()
16     * and don't pass these vectors to fvect routines.
17     */
18     typedef struct ambrec {
19 greg 2.5 unsigned long latick; /* last accessed tick */
20 greg 1.1 float pos[3]; /* position in space */
21     float dir[3]; /* normal direction */
22 greg 2.14 int lvl; /* recursion level of parent ray */
23 greg 1.1 float weight; /* weight of parent ray */
24     float rad; /* validity radius */
25     COLOR val; /* computed ambient value */
26     float gpos[3]; /* gradient wrt. position */
27     float gdir[3]; /* gradient wrt. direction */
28     struct ambrec *next; /* next in list */
29     } AMBVAL; /* ambient value */
30    
31 greg 2.7 typedef struct ambtree {
32     AMBVAL *alist; /* ambient value list */
33     struct ambtree *kid; /* 8 child nodes */
34     } AMBTREE; /* ambient octree */
35    
36     typedef struct {
37     short t, p; /* theta, phi indices */
38     COLOR v; /* value sum */
39     float r; /* 1/distance sum */
40     float k; /* variance for this division */
41     int n; /* number of subsamples */
42     } AMBSAMP; /* ambient sample division */
43    
44     typedef struct {
45 greg 2.14 COLOR acoef; /* ambient contribution coefficient */
46     float drc; /* daughter ray coefficient */
47 greg 2.7 FVECT ux, uy, uz; /* x, y and z axis directions */
48     short nt, np; /* number of theta and phi directions */
49 greg 2.14 int ns; /* number of super-samples */
50 greg 2.7 } AMBHEMI; /* ambient sample hemisphere */
51    
52 greg 1.1 extern double maxarad; /* maximum ambient radius */
53     extern double minarad; /* minimum ambient radius */
54    
55 greg 2.11 #ifndef AVGREFL
56 greg 1.2 #define AVGREFL 0.5 /* assumed average reflectance */
57 greg 2.11 #endif
58 greg 2.2
59     #define AMBVALSIZ 75 /* number of bytes in portable AMBVAL struct */
60 greg 2.4 #define AMBMAGIC 557 /* magic number for ambient value files */
61 greg 2.3 #define AMBFMT "Radiance_ambval" /* format id string */
62 greg 2.7
63     /* defined in ambient.c */
64     extern void setambres(int ar);
65     extern void setambacc(double newa);
66     extern void setambient(void);
67 greg 2.12 extern void multambient(COLOR aval, RAY *r, FVECT nrm);
68 greg 2.7 extern void ambdone(void);
69     extern void ambnotify(OBJECT obj);
70 greg 2.13 extern double sumambient(COLOR acol, RAY *r, double rw, FVECT rn, int al,
71 greg 2.7 AMBTREE *at, FVECT c0, double s);
72 greg 2.12 extern double makeambient(COLOR acol, RAY *r, COLOR ac, FVECT rn, int al);
73 greg 2.7 extern void extambient(COLOR cr, AMBVAL *ap, FVECT pv, FVECT nv);
74     extern int ambsync(void);
75 greg 2.12 /* defined in ambcomp.c */
76     extern double doambient(COLOR acol, RAY *r, COLOR ac, double wt,
77     FVECT pg, FVECT dg);
78 greg 2.14 extern void inithemi(AMBHEMI *hp, RAY *r, COLOR ac, double wt);
79 greg 2.12 extern int divsample(AMBSAMP *dp, AMBHEMI *h, RAY *r);
80     extern void comperrs(AMBSAMP *da, AMBHEMI *hp);
81     extern void posgradient(FVECT gv, AMBSAMP *da, AMBHEMI *hp);
82     extern void dirgradient(FVECT gv, AMBSAMP *da, AMBHEMI *hp);
83 greg 2.7 /* defined in ambio.c */
84     extern void putambmagic(FILE *fp);
85     extern int hasambmagic(FILE *fp);
86     extern int writambval(AMBVAL *av, FILE *fp);
87     extern int ambvalOK(AMBVAL *av);
88     extern int readambval(AMBVAL *av, FILE *fp);
89     /* defined in lookamb.c */
90     extern void lookamb(FILE *fp);
91     extern void writamb(FILE *fp);
92    
93 schorsch 2.9
94     #ifdef __cplusplus
95     }
96 greg 2.7 #endif
97 schorsch 2.9 #endif /* _RAD_AMBIENT_H_ */
98