ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/initotypes.c
Revision: 2.10
Committed: Tue Mar 11 19:29:05 2003 UTC (21 years, 1 month ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R5
Changes since 2.9: +2 -0 lines
Log Message:
Changed alias handling to allow tracking, fixed freeobjects() and do_irrad bugs

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 greg 2.9 static const char RCSid[] = "$Id$";
3 greg 1.1 #endif
4     /*
5     * Initialize ofun[] list for renderers
6     */
7    
8 greg 2.9 #include "copyright.h"
9 greg 2.7
10 greg 1.1 #include "standard.h"
11    
12     #include "otypes.h"
13    
14 greg 1.2 #include "otspecial.h"
15    
16 greg 1.1 extern int o_sphere();
17     extern int o_face();
18     extern int o_cone();
19     extern int o_instance();
20 greg 2.9 extern int o_mesh();
21 greg 1.1 extern int m_light();
22     extern int m_normal();
23 greg 2.2 extern int m_aniso();
24 greg 1.1 extern int m_dielectric();
25 greg 2.4 extern int m_mist();
26 greg 1.1 extern int m_glass();
27     extern int m_clip();
28 greg 1.5 extern int m_mirror();
29 greg 1.6 extern int m_direct();
30 greg 1.1 extern int m_brdf();
31 greg 2.3 extern int m_brdf2();
32 greg 2.10 extern int m_alias();
33 greg 1.1 extern int t_func(), t_data();
34     extern int p_cfunc(), p_bfunc();
35     extern int p_pdata(), p_cdata(), p_bdata();
36 gwlarson 2.6 extern int mx_func(), mx_data(), mx_pdata();
37 greg 2.5 extern int do_text();
38 greg 1.1
39     FUN ofun[NUMOTYPE] = INIT_OTYPE;
40    
41    
42     initotypes() /* initialize ofun array */
43     {
44     ofun[OBJ_SPHERE].funp =
45     ofun[OBJ_BUBBLE].funp = o_sphere;
46     ofun[OBJ_FACE].funp = o_face;
47     ofun[OBJ_CONE].funp =
48     ofun[OBJ_CUP].funp =
49     ofun[OBJ_CYLINDER].funp =
50     ofun[OBJ_TUBE].funp =
51     ofun[OBJ_RING].funp = o_cone;
52     ofun[OBJ_INSTANCE].funp = o_instance;
53 greg 2.9 ofun[OBJ_MESH].funp = o_mesh;
54 greg 2.10 ofun[MOD_ALIAS].funp = m_alias;
55 greg 1.1 ofun[MAT_LIGHT].funp =
56     ofun[MAT_ILLUM].funp =
57     ofun[MAT_GLOW].funp =
58     ofun[MAT_SPOT].funp = m_light;
59     ofun[MAT_PLASTIC].funp =
60     ofun[MAT_METAL].funp =
61     ofun[MAT_TRANS].funp = m_normal;
62 greg 1.2 ofun[MAT_TRANS].flags |= T_IRR_IGN;
63 greg 2.2 ofun[MAT_PLASTIC2].funp =
64     ofun[MAT_METAL2].funp =
65     ofun[MAT_TRANS2].funp = m_aniso;
66     ofun[MAT_TRANS2].flags |= T_IRR_IGN;
67 greg 1.1 ofun[MAT_DIELECTRIC].funp =
68     ofun[MAT_INTERFACE].funp = m_dielectric;
69 greg 1.2 ofun[MAT_DIELECTRIC].flags |= T_IRR_IGN;
70     ofun[MAT_INTERFACE].flags |= T_IRR_IGN;
71 greg 2.4 ofun[MAT_MIST].funp = m_mist;
72     ofun[MAT_MIST].flags |= T_IRR_IGN;
73 greg 1.1 ofun[MAT_GLASS].funp = m_glass;
74 greg 1.2 ofun[MAT_GLASS].flags |= T_IRR_IGN;
75 greg 1.5 ofun[MAT_MIRROR].funp = m_mirror;
76 greg 1.6 ofun[MAT_DIRECT1].funp =
77     ofun[MAT_DIRECT2].funp = m_direct;
78 greg 1.1 ofun[MAT_CLIP].funp = m_clip;
79 greg 2.3 ofun[MAT_BRTDF].funp = m_brdf;
80 greg 1.1 ofun[MAT_PFUNC].funp =
81     ofun[MAT_MFUNC].funp =
82     ofun[MAT_PDATA].funp =
83 greg 1.4 ofun[MAT_MDATA].funp =
84     ofun[MAT_TFUNC].funp =
85 greg 2.3 ofun[MAT_TDATA].funp = m_brdf2;
86 greg 1.1 ofun[TEX_FUNC].funp = t_func;
87     ofun[TEX_DATA].funp = t_data;
88     ofun[PAT_CFUNC].funp = p_cfunc;
89     ofun[PAT_BFUNC].funp = p_bfunc;
90     ofun[PAT_CPICT].funp = p_pdata;
91     ofun[PAT_CDATA].funp = p_cdata;
92     ofun[PAT_BDATA].funp = p_bdata;
93     ofun[PAT_CTEXT].funp =
94     ofun[PAT_BTEXT].funp =
95 greg 2.5 ofun[MIX_TEXT].funp = do_text;
96 greg 1.1 ofun[MIX_FUNC].funp = mx_func;
97     ofun[MIX_DATA].funp = mx_data;
98 gwlarson 2.6 ofun[MIX_PICT].funp = mx_pdata;
99 greg 1.1 }
100    
101    
102     o_default() /* default action is error */
103     {
104     error(INTERNAL, "unexpected object call");
105 greg 2.7 /* call to pull in freeobjmem.o */
106     free_objs(0, 0);
107 greg 1.1 }