ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libgender/view.C
(Generate patch)

Comparing libgender/view.C (file contents):
Revision 1.36 by root, Sat Oct 9 02:08:29 2004 UTC vs.
Revision 1.46 by root, Sun Oct 10 18:14:22 2004 UTC

1#include <cmath> 1#include <cmath>
2 2
3#include <GL/gl.h> 3#include "opengl.h"
4#include <GL/glext.h>
5 4
5#include "view.h"
6#include "oct.h" 6#include "oct.h"
7#include "view.h"
8 7
9 static GLenum gl_error; 8vector<GLuint> occ_query_objects;
9
10static GLuint begin_occ_query ()
11{
12 GLuint id;
13
14 if (occ_query_objects.size ())
15 {
16 id = *(occ_query_objects.end () - 1);
17 occ_query_objects.pop_back ();
18 }
19 else
20 glGenQueriesARB (1, &id);
21
22 glBeginQueryARB (GL_SAMPLES_PASSED, id);
23 return id;
24}
25
26inline void end_occ_query ()
27{
28 glEndQueryARB (GL_SAMPLES_PASSED);
29}
30
31static GLuint occ_query_result (GLuint id)
32{
33 GLuint count;
34
35 glGetQueryObjectuivARB (id, GL_QUERY_RESULT, &count);
36 occ_query_objects.push_back (id);
37
38 return count;
39}
40
10view::view () 41view::view ()
11: gamma(1.0) 42: gamma(1.0)
12{ 43{
13} 44}
14 45
15view::~view () 46view::~view ()
16{ 47{
17} 48}
18 49
50void view::begin_occ_query (recv_occ_query &recv)
51{
52 occ_queries.push_back (oq_data (&recv, ::begin_occ_query ()));
53}
54
55void view::end_occ_query ()
56{
57 ::end_occ_query ();
58}
59
19bool view::may_draw (const entity *e) 60bool view::may_draw (const entity *e)
20{ 61{
21 if (drawn.find (e) != drawn.end ()) 62 if (drawn.find (e) != drawn.end ())
22 return false; 63 return false;
23 64
32 glViewport (0, 0, w, h); 73 glViewport (0, 0, w, h);
33 74
34 glMatrixMode (GL_PROJECTION); 75 glMatrixMode (GL_PROJECTION);
35 glLoadIdentity (); 76 glLoadIdentity ();
36 77
37 gl_error = glGetError ();
38 GLdouble aspect = (GLdouble)w/h; 78 GLdouble aspect = (GLdouble)w/h;
39 GLdouble zNear = 1.;
40 GLdouble zFar = 500.;
41
42 gl_error = glGetError ();
43 GLdouble ymax = zNear * tan (fov * (M_PI / 360.0)); 79 GLdouble ymax = z_near * tan (fov * (M_PI / 360.0));
80
44 glFrustum (-ymax * aspect, ymax * aspect, -ymax, ymax, zNear, zFar); 81 glFrustum (-ymax * aspect, ymax * aspect, -ymax, ymax, z_near, z_far);
45 82
46 gl_error = glGetError ();
47 d = normalize (d);//D 83 d = normalize (d);//D
48 u = normalize (u);//D 84 u = normalize (u);//D
85
49 vec3 rz = -d; 86 vec3 rz = -d;
50 vec3 rx = cross (u, rz); 87 vec3 rx = cross (u, rz);
51 vec3 ry = cross (rz, rx); 88 vec3 ry = cross (rz, rx);
52 gl_error = glGetError ();
53 89
54 matrix &m = projection; 90 matrix &m = projection;
55 m(0,0) = rx.x; m(0,1) = rx.y; m(0,2) = rx.z; m(0,3) = 0; 91 m(0,0) = rx.x; m(0,1) = rx.y; m(0,2) = rx.z; m(0,3) = 0;
56 m(1,0) = ry.x; m(1,1) = ry.y; m(1,2) = ry.z; m(1,3) = 0; 92 m(1,0) = ry.x; m(1,1) = ry.y; m(1,2) = ry.z; m(1,3) = 0;
57 m(2,0) = rz.x; m(2,1) = rz.y; m(2,2) = rz.z; m(2,3) = 0; 93 m(2,0) = rz.x; m(2,1) = rz.y; m(2,2) = rz.z; m(2,3) = 0;
58 m(3,0) = 0; m(3,1) = 0; m(3,2) = 0; m(3,3) = 1; 94 m(3,0) = 0; m(3,1) = 0; m(3,2) = 0; m(3,3) = 1;
59 gl_error = glGetError ();
60 95
61 glMultMatrixf ((GLfloat *)m.data); 96 diagfact = abs (rz.x) + abs (rz.y) + abs (rz.z);
97 diagfact = sqrtf (3.);//D WHY???
98 //printf ("diagfact = %f\n", diagfact);
62 99
63 gl_error = glGetError (); 100 glMultMatrixf (m);
101 glTranslatef (-p.x, -p.y, -p.z);
102
64 glGetFloatv (GL_PROJECTION_MATRIX, (GLfloat *)&m); 103 glGetFloatv (GL_PROJECTION_MATRIX, m);
65 104
66 gl_error = glGetError ();
67 frustum.l = plane ( m(3,0) + m(0,0), m(3,1) + m(0,1), m(3,2) + m(0,2), m(3,3) + m(0,3) ); 105 frustum.l = plane ( m(3,0) + m(0,0), m(3,1) + m(0,1), m(3,2) + m(0,2), m(3,3) + m(0,3) );
68 frustum.r = plane ( m(3,0) - m(0,0), m(3,1) - m(0,1), m(3,2) - m(0,2), m(3,3) - m(0,3) ); 106 frustum.r = plane ( m(3,0) - m(0,0), m(3,1) - m(0,1), m(3,2) - m(0,2), m(3,3) - m(0,3) );
69 frustum.b = plane ( m(3,0) + m(1,0), m(3,1) + m(1,1), m(3,2) + m(1,2), m(3,3) + m(1,3) ); 107 frustum.b = plane ( m(3,0) + m(1,0), m(3,1) + m(1,1), m(3,2) + m(1,2), m(3,3) + m(1,3) );
70 frustum.t = plane ( m(3,0) - m(1,0), m(3,1) - m(1,1), m(3,2) - m(1,2), m(3,3) - m(1,3) ); 108 frustum.t = plane ( m(3,0) - m(1,0), m(3,1) - m(1,1), m(3,2) - m(1,2), m(3,3) - m(1,3) );
71 frustum.n = plane ( m(3,0) + m(2,0), m(3,1) + m(2,1), m(3,2) + m(2,2), m(3,3) + m(2,3) ); 109 frustum.n = plane ( m(3,0) + m(2,0), m(3,1) + m(2,1), m(3,2) + m(2,2), m(3,3) + m(2,3) );
72 frustum.f = plane ( m(3,0) - m(2,0), m(3,1) - m(2,1), m(3,2) - m(2,2), m(3,3) - m(2,3) ); 110 frustum.f = plane ( m(3,0) - m(2,0), m(3,1) - m(2,1), m(3,2) - m(2,2), m(3,3) - m(2,3) );
73 111
74 gl_error = glGetError ();
75 glMatrixMode (GL_MODELVIEW); 112 glMatrixMode (GL_MODELVIEW);
76 glLoadIdentity (); 113 glLoadIdentity ();
77 glTranslatef (-p.x, -p.y, -p.z);
78 gl_error = glGetError ();
79} 114}
80 115
81void view::begin () 116void view::begin ()
82{ 117{
83 glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); 118 glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
84 glDepthRange (0, 1. - (1. / pow (2., 16.))); 119 glDepthRange (0, 1. - (1. / pow (2., 16.)));
85 120
86 vismap.clear ();
87 vislist.clear (); 121 vislist.clear ();
88 122
89 generation++; 123 generation++;
90 124
125 farlist.clear ();
126
127 // check occlusion queries
128 for (vector<oq_data>::iterator i = occ_queries.begin (); i != occ_queries.end (); ++i)
129 {
130 occ_query oq(*this, i->second, ::occ_query_result (i->second));
131 i->first->event (oq);
132 }
133
134 occ_queries.clear ();
135
136 z_far = nz_far;
137 c_far = nc_far;
91 reset_projection (); 138 reset_projection ();
92 139
93 for (vector<octant *>::iterator i = farlist.begin (); i != farlist.end (); ++i) 140 nc_far = nz_far = z_near + 1.F;
94 ;
95
96 farlist.clear ();
97
98 // check occlusion queries here
99#if 0
100 for (vector<octant *>::iterator i = checklist.begin (); i != checklist.end (); ++i)
101 //printf ("%p %d\n", *i, occ_query_result ((*i)->occ_query));
102 occ_query_result ((*i)->occ_query);
103
104 checklist.clear ();
105#endif
106
107 world.detect_visibility (*this); 141 world.detect_visibility (*this);
142
143 printf ("far %f cf %f RCP %f,%f,%f +%f\n", z_far, c_far,
144 frustum.r.n.x,
145 frustum.r.n.y,
146 frustum.r.n.z,
147 frustum.r.d
148 );//D
108} 149}
109 150
110void view::end () 151void view::end ()
111{ 152{
112 vismap.clear (); 153 vislist.clear ();
113} 154}
114 155
115void view::pass (enum mode m) 156void view::pass (enum mode m)
116{ 157{
117 mode = m; 158 mode = m;
124 glEnable (GL_POLYGON_OFFSET_FILL); 165 glEnable (GL_POLYGON_OFFSET_FILL);
125 glPolygonOffset (0, 1); 166 glPolygonOffset (0, 1);
126 glDepthFunc (GL_LESS); 167 glDepthFunc (GL_LESS);
127 glDisable (GL_LIGHTING); 168 glDisable (GL_LIGHTING);
128 glColorMask (0, 0, 0, 0); 169 glColorMask (0, 0, 0, 0);
129 cgGLEnableProfile (vsh_profile);// z-fighting?? 170 cgGLDisableProfile (vsh_profile);// z-fighting??
130 cgGLDisableProfile (fsh_profile); 171 cgGLDisableProfile (fsh_profile);
131 } 172 }
132 else 173 else
133 { 174 {
134 glEnable (GL_MINMAX); 175 glEnable (GL_MINMAX);
138 cgGLEnableProfile (vsh_profile); 179 cgGLEnableProfile (vsh_profile);
139 cgGLEnableProfile (fsh_profile); 180 cgGLEnableProfile (fsh_profile);
140 } 181 }
141 182
142 for (vector<octant *>::iterator i = vislist.begin (); i != vislist.end (); ++i) 183 for (vector<octant *>::iterator i = vislist.begin (); i != vislist.end (); ++i)
184 {
185 visibility_state &vs = vismap[*i];
186 bool oq = mode == LIGHTED
187 && vs.last + 1. < timer.now
188 && (vs.visibility == visibility_state::PARTIAL
189 || vs.visibility == visibility_state::FULL);
190
191 if (oq)
192 begin_occ_query (**i);
193
143 (*i)->display (*this); 194 (*i)->display (*this);
195
196 if (oq)
197 {
198 glColorMask (0, 0, 0, 0);
199 (*i)->draw_bbox (*this);
200 glColorMask (1, 1, 1, 0);
201 }
202
203 if (oq)
204 end_occ_query ();
205 }
144 206
145 drawn.clear (); 207 drawn.clear ();
146 208
147 if (mode == view::DEPTH || 1) 209 if (mode == view::DEPTH)
148 { 210 {
149 glEnable (GL_DEPTH_CLAMP_NV); 211 glEnable (GL_DEPTH_CLAMP_NV);
212 glDepthMask (0);
213 glColorMask (0, 0, 0, 0);
150 glDepthFunc (GL_LESS); 214 glDepthFunc (GL_LESS);
151 if (1) glDepthFunc (GL_LEQUAL); 215 if (mode == view::LIGHTED) glDepthFunc (GL_LEQUAL);
152 glEnable (GL_COLOR_MATERIAL); 216 if (mode == view::LIGHTED) glColorMask (1, 1, 1, 0);
153 glDisable (GL_LIGHTING); 217 glDisable (GL_LIGHTING);
154 cgGLDisableProfile (vsh_profile); 218 cgGLDisableProfile (vsh_profile);
155 cgGLDisableProfile (fsh_profile); 219 cgGLDisableProfile (fsh_profile);
156 glShadeModel (GL_FLAT);
157 220
158#if 0 221#if 0
159 static int count; count++; 222 static int count; count++;
160 if (farlist.size ()) 223 if (farlist.size ())
161 printf ("%d: size %d\n", count, farlist.size ()); 224 printf ("%d: size %d\n", count, farlist.size ());
162#endif 225#endif
163 226
164 for (vector<octant *>::iterator i = farlist.begin (); i != farlist.end (); ++i) 227 for (vector<octant *>::iterator i = farlist.begin (); i != farlist.end (); ++i)
165 { 228 {
166 glColor3f (1,0,0); 229 if (mode == view::DEPTH) begin_occ_query (**i);
230 if (mode == view::LIGHTED) glColor3f ((((long)*i >> 6) & 15) / 31. + 0.5,0,0);
167 (*i)->draw_bbox (*this); 231 (*i)->draw_bbox (*this);
232 if (mode == view::DEPTH) end_occ_query ();
168 } 233 }
169 234
170 glEnable (GL_DEPTH_TEST);
171 glDisable (GL_DEPTH_CLAMP_NV); 235 glDisable (GL_DEPTH_CLAMP_NV);
172 glShadeModel (GL_SMOOTH); 236 glDepthMask (1);
173 } 237 }
174 238
175 glColorMask (1, 1, 1, 0); 239 glColorMask (1, 1, 1, 0);
176 glDepthMask (1); 240 glDepthMask (1);
177 241

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines