]> git.mxchange.org Git - flightgear.git/blob - Main/views.cxx
C++ ifying ...
[flightgear.git] / Main / views.cxx
1 // views.cxx -- data structures and routines for managing and view
2 //               parameters.
3 //
4 // Written by Curtis Olson, started August 1997.
5 //
6 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23 // (Log is kept at end of this file)
24
25
26 #ifdef HAVE_CONFIG_H
27 #  include <config.h>
28 #endif
29
30 #include <Aircraft/aircraft.hxx>
31 #include <Debug/fg_debug.h>
32 #include <Include/fg_constants.h>
33 #include <Math/mat3.h>
34 #include <Math/point3d.hxx>
35 #include <Math/polar3d.hxx>
36 #include <Math/vector.hxx>
37 #include <Scenery/scenery.hxx>
38 #include <Time/fg_time.hxx>
39
40 #include "options.hxx"
41 #include "views.hxx"
42
43
44 // This is a record containing current view parameters
45 fgVIEW current_view;
46
47
48 // Constructor
49 fgVIEW::fgVIEW( void ) {
50 }
51
52
53 // Initialize a view structure
54 void fgVIEW::Init( void ) {
55     fgPrintf( FG_VIEW, FG_INFO, "Initializing View parameters\n");
56
57     view_offset = 0.0;
58     goal_view_offset = 0.0;
59
60     winWidth = 640;  // FG_DEFAULT_WIN_WIDTH
61     winHeight = 480; // FG_DEFAULT_WIN_HEIGHT
62     win_ratio = (double) winWidth / (double) winHeight;
63     update_fov = true;
64 }
65
66
67 // Update the field of view parameters
68 void fgVIEW::UpdateFOV( fgOPTIONS *o ) {
69     double fov, theta_x, theta_y;
70
71     fov = o->get_fov();
72         
73     // printf("win_ratio = %.2f\n", win_ratio);
74     // calculate sin() and cos() of fov / 2 in X direction;
75     theta_x = (fov * win_ratio * DEG_TO_RAD) / 2.0;
76     // printf("theta_x = %.2f\n", theta_x);
77     sin_fov_x = sin(theta_x);
78     cos_fov_x = cos(theta_x);
79     slope_x =  -cos_fov_x / sin_fov_x;
80     // printf("slope_x = %.2f\n", slope_x);
81
82 #if defined( USE_FAST_FOV_CLIP )
83     fov_x_clip = slope_x*cos_fov_x - sin_fov_x;
84 #endif // defined( USE_FAST_FOV_CLIP )
85
86     // calculate sin() and cos() of fov / 2 in Y direction;
87     theta_y = (fov * DEG_TO_RAD) / 2.0;
88     // printf("theta_y = %.2f\n", theta_y);
89     sin_fov_y = sin(theta_y);
90     cos_fov_y = cos(theta_y);
91     slope_y = cos_fov_y / sin_fov_y;
92     // printf("slope_y = %.2f\n", slope_y);
93
94 #if defined( USE_FAST_FOV_CLIP )
95     fov_y_clip = -(slope_y*cos_fov_y + sin_fov_y);      
96 #endif // defined( USE_FAST_FOV_CLIP )
97 }
98
99
100 // Basically, this is a modified version of the Mesa gluLookAt()
101 // function that's been modified slightly so we can capture the
102 // result before sending it off to OpenGL land.
103 void fgVIEW::LookAt( GLdouble eyex, GLdouble eyey, GLdouble eyez,
104                      GLdouble centerx, GLdouble centery, GLdouble centerz,
105                      GLdouble upx, GLdouble upy, GLdouble upz ) {
106     GLdouble *m;
107     GLdouble x[3], y[3], z[3];
108     GLdouble mag;
109
110     m = current_view.MODEL_VIEW;
111
112     /* Make rotation matrix */
113
114     /* Z vector */
115     z[0] = eyex - centerx;
116     z[1] = eyey - centery;
117     z[2] = eyez - centerz;
118     mag = sqrt( z[0]*z[0] + z[1]*z[1] + z[2]*z[2] );
119     if (mag) {  /* mpichler, 19950515 */
120         z[0] /= mag;
121         z[1] /= mag;
122         z[2] /= mag;
123     }
124
125     /* Y vector */
126     y[0] = upx;
127     y[1] = upy;
128     y[2] = upz;
129
130     /* X vector = Y cross Z */
131     x[0] =  y[1]*z[2] - y[2]*z[1];
132     x[1] = -y[0]*z[2] + y[2]*z[0];
133     x[2] =  y[0]*z[1] - y[1]*z[0];
134     
135     /* Recompute Y = Z cross X */
136     y[0] =  z[1]*x[2] - z[2]*x[1];
137     y[1] = -z[0]*x[2] + z[2]*x[0];
138     y[2] =  z[0]*x[1] - z[1]*x[0];
139
140     /* mpichler, 19950515 */
141     /* cross product gives area of parallelogram, which is < 1.0 for
142      * non-perpendicular unit-length vectors; so normalize x, y here
143      */
144
145     mag = sqrt( x[0]*x[0] + x[1]*x[1] + x[2]*x[2] );
146     if (mag) {
147         x[0] /= mag;
148         x[1] /= mag;
149       x[2] /= mag;
150     }
151
152     mag = sqrt( y[0]*y[0] + y[1]*y[1] + y[2]*y[2] );
153     if (mag) {
154         y[0] /= mag;
155         y[1] /= mag;
156         y[2] /= mag;
157     }
158
159 #define M(row,col)  m[col*4+row]
160     M(0,0) = x[0];  M(0,1) = x[1];  M(0,2) = x[2];  M(0,3) = 0.0;
161     M(1,0) = y[0];  M(1,1) = y[1];  M(1,2) = y[2];  M(1,3) = 0.0;
162     M(2,0) = z[0];  M(2,1) = z[1];  M(2,2) = z[2];  M(2,3) = 0.0;
163     // the following is part of the original gluLookAt(), but we are
164     // commenting it out because we know we are going to be doing a
165     // translation below which will set these values anyways
166     // M(3,0) = 0.0;   M(3,1) = 0.0;   M(3,2) = 0.0;   M(3,3) = 1.0;
167 #undef M
168
169     // Translate Eye to Origin
170     // replaces: glTranslated( -eyex, -eyey, -eyez );
171
172     // this has been slightly modified from the original glTranslate()
173     // code because we know that coming into this m[12] = m[13] =
174     // m[14] = 0.0, and m[15] = 1.0;
175     m[12] = m[0] * -eyex + m[4] * -eyey + m[8]  * -eyez /* + m[12] */;
176     m[13] = m[1] * -eyex + m[5] * -eyey + m[9]  * -eyez /* + m[13] */;
177     m[14] = m[2] * -eyex + m[6] * -eyey + m[10] * -eyez /* + m[14] */;
178     m[15] = 1.0 /* m[3] * -eyex + m[7] * -eyey + m[11] * -eyez + m[15] */;
179
180     // xglMultMatrixd( m );
181     xglLoadMatrixd( m );
182 }
183
184
185 // Update the view volume, position, and orientation
186 void fgVIEW::UpdateViewParams( void ) {
187     fgFLIGHT *f;
188     fgLIGHT *l;
189
190     f = current_aircraft.flight;
191     l = &cur_light_params;
192
193     UpdateViewMath(f);
194     UpdateWorldToEye(f);
195
196     // if (!o->panel_status) {
197     // xglViewport( 0, (GLint)((winHeight) / 2 ) , 
198     // (GLint)(winWidth), (GLint)(winHeight) / 2 );
199     // Tell GL we are about to modify the projection parameters
200     // xglMatrixMode(GL_PROJECTION);
201     // xglLoadIdentity();
202     // gluPerspective(o->fov, win_ratio / 2.0, 1.0, 100000.0);
203     // } else {
204     xglViewport(0, 0 , (GLint)(winWidth), (GLint)(winHeight) );
205     // Tell GL we are about to modify the projection parameters
206     xglMatrixMode(GL_PROJECTION);
207     xglLoadIdentity();
208     if ( FG_Altitude * FEET_TO_METER - scenery.cur_elev > 10.0 ) {
209         gluPerspective(current_options.get_fov(), win_ratio, 10.0, 100000.0);
210     } else {
211         gluPerspective(current_options.get_fov(), win_ratio, 0.5, 100000.0);
212         // printf("Near ground, minimizing near clip plane\n");
213     }
214     // }
215
216     xglMatrixMode(GL_MODELVIEW);
217     xglLoadIdentity();
218     
219     // set up our view volume (default)
220     LookAt(view_pos.x(), view_pos.y(), view_pos.z(),
221            view_pos.x() + view_forward[0], 
222                view_pos.y() + view_forward[1], 
223                view_pos.z() + view_forward[2],
224                view_up[0], view_up[1], view_up[2]);
225
226     // look almost straight up (testing and eclipse watching)
227     /* LookAt(view_pos.x(), view_pos.y(), view_pos.z(),
228                view_pos.x() + view_up[0] + .001, 
229                view_pos.y() + view_up[1] + .001, 
230                view_pos.z() + view_up[2] + .001,
231                view_up[0], view_up[1], view_up[2]); */
232
233     // lock view horizontally towards sun (testing)
234     /* LookAt(view_pos.x(), view_pos.y(), view_pos.z(),
235                view_pos.x() + surface_to_sun[0], 
236                view_pos.y() + surface_to_sun[1], 
237                view_pos.z() + surface_to_sun[2],
238                view_up[0], view_up[1], view_up[2]); */
239
240     // lock view horizontally towards south (testing)
241     /* LookAt(view_pos.x(), view_pos.y(), view_pos.z(),
242                view_pos.x() + surface_south[0], 
243                view_pos.y() + surface_south[1], 
244                view_pos.z() + surface_south[2],
245                view_up[0], view_up[1], view_up[2]); */
246
247     // set the sun position
248     xglLightfv( GL_LIGHT0, GL_POSITION, l->sun_vec );
249 }
250
251
252 // Update the view parameters
253 void fgVIEW::UpdateViewMath( fgFLIGHT *f ) {
254     Point3D p;
255     MAT3vec vec, forward, v0, minus_z;
256     MAT3mat R, TMP, UP, LOCAL, VIEW;
257     double ntmp;
258
259     if(update_fov == true) {
260         // printf("Updating fov\n");
261         UpdateFOV(&current_options);
262         update_fov = false;
263     }
264                 
265     scenery.center = scenery.next_center;
266
267     // printf("scenery center = %.2f %.2f %.2f\n", scenery.center.x,
268     //        scenery.center.y, scenery.center.z);
269
270     // calculate the cartesion coords of the current lat/lon/0 elev
271     p.setvals(
272               FG_Longitude, 
273               FG_Lat_geocentric, 
274               FG_Sea_level_radius * FEET_TO_METER );
275
276     cur_zero_elev = fgPolarToCart3d(p) - scenery.center;
277
278     // calculate view position in current FG view coordinate system
279     // p.lon & p.lat are already defined earlier, p.radius was set to
280     // the sea level radius, so now we add in our altitude.
281     if ( FG_Altitude * FEET_TO_METER > 
282          (scenery.cur_elev + 0.5 * METER_TO_FEET) ) {
283         p.setz( p.radius() + FG_Altitude * FEET_TO_METER );
284     } else {
285         p.setz( p.radius() + scenery.cur_elev + 0.5 * METER_TO_FEET );
286     }
287
288     abs_view_pos = fgPolarToCart3d(p);
289     view_pos = abs_view_pos - scenery.center;
290
291     fgPrintf( FG_VIEW, FG_DEBUG, "Absolute view pos = %.4f, %.4f, %.4f\n", 
292            abs_view_pos.x(), abs_view_pos.y(), abs_view_pos.z());
293     fgPrintf( FG_VIEW, FG_DEBUG, "Relative view pos = %.4f, %.4f, %.4f\n", 
294            view_pos.x(), view_pos.y(), view_pos.z());
295
296     // Derive the LOCAL aircraft rotation matrix (roll, pitch, yaw)
297     // from FG_T_local_to_body[3][3]
298
299     // Question: Why is the LaRCsim matrix arranged so differently
300     // than the one we need???
301     LOCAL[0][0] = FG_T_local_to_body_33;
302     LOCAL[0][1] = -FG_T_local_to_body_32;
303     LOCAL[0][2] = -FG_T_local_to_body_31;
304     LOCAL[0][3] = 0.0;
305     LOCAL[1][0] = -FG_T_local_to_body_23;
306     LOCAL[1][1] = FG_T_local_to_body_22;
307     LOCAL[1][2] = FG_T_local_to_body_21;
308     LOCAL[1][3] = 0.0;
309     LOCAL[2][0] = -FG_T_local_to_body_13;
310     LOCAL[2][1] = FG_T_local_to_body_12;
311     LOCAL[2][2] = FG_T_local_to_body_11;
312     LOCAL[2][3] = 0.0;
313     LOCAL[3][0] = LOCAL[3][1] = LOCAL[3][2] = LOCAL[3][3] = 0.0;
314     LOCAL[3][3] = 1.0;
315     // printf("LaRCsim LOCAL matrix\n");
316     // MAT3print(LOCAL, stdout);
317
318 #ifdef OLD_LOCAL_TO_BODY_CODE
319         // old code to calculate LOCAL matrix calculated from Phi,
320         // Theta, and Psi (roll, pitch, yaw)
321
322         MAT3_SET_VEC(vec, 0.0, 0.0, 1.0);
323         MAT3rotate(R, vec, FG_Phi);
324         /* printf("Roll matrix\n"); */
325         /* MAT3print(R, stdout); */
326
327         MAT3_SET_VEC(vec, 0.0, 1.0, 0.0);
328         /* MAT3mult_vec(vec, vec, R); */
329         MAT3rotate(TMP, vec, FG_Theta);
330         /* printf("Pitch matrix\n"); */
331         /* MAT3print(TMP, stdout); */
332         MAT3mult(R, R, TMP);
333
334         MAT3_SET_VEC(vec, 1.0, 0.0, 0.0);
335         /* MAT3mult_vec(vec, vec, R); */
336         /* MAT3rotate(TMP, vec, FG_Psi - FG_PI_2); */
337         MAT3rotate(TMP, vec, -FG_Psi);
338         /* printf("Yaw matrix\n");
339            MAT3print(TMP, stdout); */
340         MAT3mult(LOCAL, R, TMP);
341         // printf("FG derived LOCAL matrix\n");
342         // MAT3print(LOCAL, stdout);
343 #endif // OLD_LOCAL_TO_BODY_CODE
344
345     // Derive the local UP transformation matrix based on *geodetic*
346     // coordinates
347     MAT3_SET_VEC(vec, 0.0, 0.0, 1.0);
348     MAT3rotate(R, vec, FG_Longitude);     // R = rotate about Z axis
349     // printf("Longitude matrix\n");
350     // MAT3print(R, stdout);
351
352     MAT3_SET_VEC(vec, 0.0, 1.0, 0.0);
353     MAT3mult_vec(vec, vec, R);
354     MAT3rotate(TMP, vec, -FG_Latitude);  // TMP = rotate about X axis
355     // printf("Latitude matrix\n");
356     // MAT3print(TMP, stdout);
357
358     MAT3mult(UP, R, TMP);
359     // printf("Local up matrix\n");
360     // MAT3print(UP, stdout);
361
362     MAT3_SET_VEC(local_up, 1.0, 0.0, 0.0);
363     MAT3mult_vec(local_up, local_up, UP);
364
365     // printf( "Local Up = (%.4f, %.4f, %.4f)\n",
366     //         local_up[0], local_up[1], local_up[2]);
367     
368     // Alternative method to Derive local up vector based on
369     // *geodetic* coordinates
370     // alt_up = fgPolarToCart(FG_Longitude, FG_Latitude, 1.0);
371     // printf( "    Alt Up = (%.4f, %.4f, %.4f)\n", 
372     //         alt_up.x, alt_up.y, alt_up.z);
373
374     // Calculate the VIEW matrix
375     MAT3mult(VIEW, LOCAL, UP);
376     // printf("VIEW matrix\n");
377     // MAT3print(VIEW, stdout);
378
379     // generate the current up, forward, and fwrd-view vectors
380     MAT3_SET_VEC(vec, 1.0, 0.0, 0.0);
381     MAT3mult_vec(view_up, vec, VIEW);
382
383     MAT3_SET_VEC(vec, 0.0, 0.0, 1.0);
384     MAT3mult_vec(forward, vec, VIEW);
385     // printf( "Forward vector is (%.2f,%.2f,%.2f)\n", forward[0], forward[1], 
386     //         forward[2]);
387
388     MAT3rotate(TMP, view_up, view_offset);
389     MAT3mult_vec(view_forward, forward, TMP);
390
391     // make a vector to the current view position
392     MAT3_SET_VEC(v0, view_pos.x(), view_pos.y(), view_pos.z());
393
394     // Given a vector pointing straight down (-Z), map into onto the
395     // local plane representing "horizontal".  This should give us the
396     // local direction for moving "south".
397     MAT3_SET_VEC(minus_z, 0.0, 0.0, -1.0);
398     map_vec_onto_cur_surface_plane(local_up, v0, minus_z, surface_south);
399     MAT3_NORMALIZE_VEC(surface_south, ntmp);
400     // printf( "Surface direction directly south %.2f %.2f %.2f\n",
401     //         surface_south[0], surface_south[1], surface_south[2]);
402
403     // now calculate the surface east vector
404     MAT3rotate(TMP, view_up, FG_PI_2);
405     MAT3mult_vec(surface_east, surface_south, TMP);
406     // printf( "Surface direction directly east %.2f %.2f %.2f\n",
407     //         surface_east[0], surface_east[1], surface_east[2]);
408     // printf( "Should be close to zero = %.2f\n", 
409     //         MAT3_DOT_PRODUCT(surface_south, surface_east));
410 }
411
412
413 // Update the "World to Eye" transformation matrix
414 // This is most useful for view frustum culling
415 void fgVIEW::UpdateWorldToEye( fgFLIGHT *f ) {
416     MAT3mat R_Phi, R_Theta, R_Psi, R_Lat, R_Lon, T_view;
417     MAT3mat TMP;
418     MAT3hvec vec;
419
420     // if we have a view offset use slow way for now
421     if(fabs(view_offset)>FG_EPSILON){ 
422         // Roll Matrix
423         MAT3_SET_HVEC(vec, 0.0, 0.0, -1.0, 1.0);
424         MAT3rotate(R_Phi, vec, FG_Phi);
425         // printf("Roll matrix (Phi)\n");
426         // MAT3print(R_Phi, stdout);
427
428         // Pitch Matrix
429         MAT3_SET_HVEC(vec, 1.0, 0.0, 0.0, 1.0);
430         MAT3rotate(R_Theta, vec, FG_Theta);
431         // printf("\nPitch matrix (Theta)\n");
432         // MAT3print(R_Theta, stdout);
433
434         // Yaw Matrix
435         MAT3_SET_HVEC(vec, 0.0, -1.0, 0.0, 1.0);
436         MAT3rotate(R_Psi, vec, FG_Psi + FG_PI - view_offset );
437         // printf("\nYaw matrix (Psi)\n");
438         // MAT3print(R_Psi, stdout);
439
440         // aircraft roll/pitch/yaw
441         MAT3mult(TMP, R_Phi, R_Theta);
442         MAT3mult(AIRCRAFT, TMP, R_Psi);
443
444     } else { // JUST USE LOCAL_TO_BODY  NHV 5/25/98
445         // hey this is even different then LOCAL[][] above ??
446          
447         AIRCRAFT[0][0] = -FG_T_local_to_body_22;
448         AIRCRAFT[0][1] = -FG_T_local_to_body_23;
449         AIRCRAFT[0][2] = FG_T_local_to_body_21;
450         AIRCRAFT[0][3] = 0.0;
451         AIRCRAFT[1][0] = FG_T_local_to_body_32;
452         AIRCRAFT[1][1] = FG_T_local_to_body_33;
453         AIRCRAFT[1][2] = -FG_T_local_to_body_31;
454         AIRCRAFT[1][3] = 0.0;
455         AIRCRAFT[2][0] = FG_T_local_to_body_12;
456         AIRCRAFT[2][1] = FG_T_local_to_body_13;
457         AIRCRAFT[2][2] = -FG_T_local_to_body_11;
458         AIRCRAFT[2][3] = 0.0;
459         AIRCRAFT[3][0] = AIRCRAFT[3][1] = AIRCRAFT[3][2] = AIRCRAFT[3][3] = 0.0;
460         AIRCRAFT[3][3] = 1.0;
461
462         // ??? SOMETHING LIKE THIS SHOULD WORK    NHV
463         // Rotate about LOCAL_UP  (AIRCRAFT[2][])
464         // MAT3_SET_HVEC(vec, AIRCRAFT[2][0], AIRCRAFT[2][1],
465         //                        AIRCRAFT[2][2], AIRCRAFT[2][3]);
466         // MAT3rotate(TMP, vec, FG_PI - view_offset );
467         // MAT3mult(AIRCRAFT, AIRCRAFT, TMP);
468     }
469     // printf("\naircraft roll pitch yaw\n");
470     // MAT3print(AIRCRAFT, stdout);
471
472     // View position in scenery centered coordinates
473     MAT3_SET_HVEC(vec, view_pos.x(), view_pos.y(), view_pos.z(), 1.0);
474     MAT3translate(T_view, vec);
475     // printf("\nTranslation matrix\n");
476     // MAT3print(T_view, stdout);
477
478     // Latitude
479     MAT3_SET_HVEC(vec, 1.0, 0.0, 0.0, 1.0);
480     // R_Lat = rotate about X axis
481     MAT3rotate(R_Lat, vec, FG_Latitude);
482     // printf("\nLatitude matrix\n");
483     // MAT3print(R_Lat, stdout);
484
485     // Longitude
486     MAT3_SET_HVEC(vec, 0.0, 0.0, 1.0, 1.0);
487     // R_Lon = rotate about Z axis
488     MAT3rotate(R_Lon, vec, FG_Longitude - FG_PI_2 );
489     // printf("\nLongitude matrix\n");
490     // MAT3print(R_Lon, stdout);
491
492 #ifdef THIS_IS_OLD_CODE
493     // View position in scenery centered coordinates
494     MAT3_SET_HVEC(vec, view_pos.x, view_pos.y, view_pos.z, 1.0);
495     MAT3translate(T_view, vec);
496     // printf("\nTranslation matrix\n");
497     // MAT3print(T_view, stdout);
498
499     // aircraft roll/pitch/yaw
500     MAT3mult(TMP, R_Phi, R_Theta);
501     MAT3mult(AIRCRAFT, TMP, R_Psi);
502     // printf("\naircraft roll pitch yaw\n");
503     // MAT3print(AIRCRAFT, stdout);
504 #endif THIS_IS_OLD_CODE
505
506     // lon/lat
507     MAT3mult(WORLD, R_Lat, R_Lon);
508     // printf("\nworld\n");
509     // MAT3print(WORLD, stdout);
510
511     MAT3mult(EYE_TO_WORLD, AIRCRAFT, WORLD);
512     MAT3mult(EYE_TO_WORLD, EYE_TO_WORLD, T_view);
513     // printf("\nEye to world\n");
514     // MAT3print(EYE_TO_WORLD, stdout);
515
516     MAT3invert(WORLD_TO_EYE, EYE_TO_WORLD);
517     // printf("\nWorld to eye\n");
518     // MAT3print(WORLD_TO_EYE, stdout);
519
520     // printf( "\nview_pos = %.2f %.2f %.2f\n", 
521     //         view_pos.x, view_pos.y, view_pos.z );
522
523     // MAT3_SET_HVEC(eye, 0.0, 0.0, 0.0, 1.0);
524     // MAT3mult_vec(vec, eye, EYE_TO_WORLD);
525     // printf("\neye -> world = %.2f %.2f %.2f\n", vec[0], vec[1], vec[2]);
526
527     // MAT3_SET_HVEC(vec1, view_pos.x, view_pos.y, view_pos.z, 1.0);
528     // MAT3mult_vec(vec, vec1, WORLD_TO_EYE);
529     // printf( "\nabs_view_pos -> eye = %.2f %.2f %.2f\n", 
530     //         vec[0], vec[1], vec[2]);
531 }
532
533
534 #if 0
535 // Reject non viewable spheres from current View Frustrum by Curt
536 // Olson curt@me.umn.edu and Norman Vine nhv@yahoo.com with 'gentle
537 // guidance' from Steve Baker sbaker@link.com
538 int
539 fgVIEW::SphereClip( const Point3D& cp, const double radius )
540 {
541     double x1, y1;
542
543     MAT3vec eye;        
544     double *mat;
545     double x, y, z;
546
547     x = cp->x;
548     y = cp->y;
549     z = cp->z;
550         
551     mat = (double *)(WORLD_TO_EYE);
552         
553     eye[2] =  x*mat[2] + y*mat[6] + z*mat[10] + mat[14];
554         
555     // Check near and far clip plane
556     if( ( eye[2] > radius ) ||
557         ( eye[2] + radius + current_weather.visibility < 0) )
558         // ( eye[2] + radius + far_plane < 0) )
559     {
560         return 1;
561     }
562         
563     // check right and left clip plane (from eye perspective)
564     x1 = radius * fov_x_clip;
565     eye[0] = (x*mat[0] + y*mat[4] + z*mat[8] + mat[12]) * slope_x;
566     if( (eye[2] > -(eye[0]+x1)) || (eye[2] > (eye[0]-x1)) ) {
567         return(1);
568     }
569         
570     // check bottom and top clip plane (from eye perspective)
571     y1 = radius * fov_y_clip;
572     eye[1] = (x*mat[1] + y*mat[5] + z*mat[9] + mat[13]) * slope_y; 
573     if( (eye[2] > -(eye[1]+y1)) || (eye[2] > (eye[1]-y1)) ) {
574         return 1;
575     }
576
577     return 0;
578 }
579 #endif
580
581
582 // Destructor
583 fgVIEW::~fgVIEW( void ) {
584 }
585
586
587 // $Log$
588 // Revision 1.23  1998/10/17 01:34:26  curt
589 // C++ ifying ...
590 //
591 // Revision 1.22  1998/10/16 00:54:03  curt
592 // Converted to Point3D class.
593 //
594 // Revision 1.21  1998/09/17 18:35:33  curt
595 // Added F8 to toggle fog and F9 to toggle texturing.
596 //
597 // Revision 1.20  1998/09/08 15:04:35  curt
598 // Optimizations by Norman Vine.
599 //
600 // Revision 1.19  1998/08/20 20:32:34  curt
601 // Reshuffled some of the code in and around views.[ch]xx
602 //
603 // Revision 1.18  1998/07/24 21:57:02  curt
604 // Set near clip plane to 0.5 meters when close to the ground.  Also, let the view get a bit closer to the ground before hitting the hard limit.
605 //
606 // Revision 1.17  1998/07/24 21:39:12  curt
607 // Debugging output tweaks.
608 // Cast glGetString to (char *) to avoid compiler errors.
609 // Optimizations to fgGluLookAt() by Norman Vine.
610 //
611 // Revision 1.16  1998/07/13 21:01:41  curt
612 // Wrote access functions for current fgOPTIONS.
613 //
614 // Revision 1.15  1998/07/12 03:14:43  curt
615 // Added ground collision detection.
616 // Did some serious horsing around to be able to "hug" the ground properly
617 //   and still be able to take off.
618 // Set the near clip plane to 1.0 meters when less than 10 meters above the
619 //   ground.
620 // Did some serious horsing around getting the initial airplane position to be
621 //   correct based on rendered terrain elevation.
622 // Added a little cheat/hack that will prevent the view position from ever
623 //   dropping below the terrain, even when the flight model doesn't quite
624 //   put you as high as you'd like.
625 //
626 // Revision 1.14  1998/07/08 14:45:08  curt
627 // polar3d.h renamed to polar3d.hxx
628 // vector.h renamed to vector.hxx
629 // updated audio support so it waits to create audio classes (and tie up
630 //   /dev/dsp) until the mpg123 player is finished.
631 //
632 // Revision 1.13  1998/07/04 00:52:27  curt
633 // Add my own version of gluLookAt() (which is nearly identical to the
634 // Mesa/glu version.)  But, by calculating the Model View matrix our selves
635 // we can save this matrix without having to read it back in from the video
636 // card.  This hopefully allows us to save a few cpu cycles when rendering
637 // out the fragments because we can just use glLoadMatrixd() with the
638 // precalculated matrix for each tile rather than doing a push(), translate(),
639 // pop() for every fragment.
640 //
641 // Panel status defaults to off for now until it gets a bit more developed.
642 //
643 // Extract OpenGL driver info on initialization.
644 //
645 // Revision 1.12  1998/06/03 00:47:15  curt
646 // Updated to compile in audio support if OSS available.
647 // Updated for new version of Steve's audio library.
648 // STL includes don't use .h
649 // Small view optimizations.
650 //
651 // Revision 1.11  1998/05/27 02:24:05  curt
652 // View optimizations by Norman Vine.
653 //
654 // Revision 1.10  1998/05/17 16:59:03  curt
655 // First pass at view frustum culling now operational.
656 //
657 // Revision 1.9  1998/05/16 13:08:37  curt
658 // C++ - ified views.[ch]xx
659 // Shuffled some additional view parameters into the fgVIEW class.
660 // Changed tile-radius to tile-diameter because it is a much better
661 //   name.
662 // Added a WORLD_TO_EYE transformation to views.cxx.  This allows us
663 //  to transform world space to eye space for view frustum culling.
664 //
665 // Revision 1.8  1998/05/02 01:51:01  curt
666 // Updated polartocart conversion routine.
667 //
668 // Revision 1.7  1998/04/30 12:34:20  curt
669 // Added command line rendering options:
670 //   enable/disable fog/haze
671 //   specify smooth/flat shading
672 //   disable sky blending and just use a solid color
673 //   enable wireframe drawing mode
674 //
675 // Revision 1.6  1998/04/28 01:20:23  curt
676 // Type-ified fgTIME and fgVIEW.
677 // Added a command line option to disable textures.
678 //
679 // Revision 1.5  1998/04/26 05:10:04  curt
680 // "struct fgLIGHT" -> "fgLIGHT" because fgLIGHT is typedef'd.
681 //
682 // Revision 1.4  1998/04/25 22:04:53  curt
683 // Use already calculated LaRCsim values to create the roll/pitch/yaw
684 // transformation matrix (we call it LOCAL)
685 //
686 // Revision 1.3  1998/04/25 20:24:02  curt
687 // Cleaned up initialization sequence to eliminate interdependencies
688 // between sun position, lighting, and view position.  This creates a
689 // valid single pass initialization path.
690 //
691 // Revision 1.2  1998/04/24 00:49:22  curt
692 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
693 // Trying out some different option parsing code.
694 // Some code reorganization.
695 //
696 // Revision 1.1  1998/04/22 13:25:45  curt
697 // C++ - ifing the code.
698 // Starting a bit of reorganization of lighting code.
699 //
700 // Revision 1.16  1998/04/18 04:11:29  curt
701 // Moved fg_debug to it's own library, added zlib support.
702 //
703 // Revision 1.15  1998/02/20 00:16:24  curt
704 // Thursday's tweaks.
705 //
706 // Revision 1.14  1998/02/09 15:07:50  curt
707 // Minor tweaks.
708 //
709 // Revision 1.13  1998/02/07 15:29:45  curt
710 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
711 // <chotchkiss@namg.us.anritsu.com>
712 //
713 // Revision 1.12  1998/01/29 00:50:28  curt
714 // Added a view record field for absolute x, y, z position.
715 //
716 // Revision 1.11  1998/01/27 00:47:58  curt
717 // Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
718 // system and commandline/config file processing code.
719 //
720 // Revision 1.10  1998/01/19 19:27:09  curt
721 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
722 // This should simplify things tremendously.
723 //
724 // Revision 1.9  1998/01/13 00:23:09  curt
725 // Initial changes to support loading and management of scenery tiles.  Note,
726 // there's still a fair amount of work left to be done.
727 //
728 // Revision 1.8  1997/12/30 22:22:33  curt
729 // Further integration of event manager.
730 //
731 // Revision 1.7  1997/12/30 20:47:45  curt
732 // Integrated new event manager with subsystem initializations.
733 //
734 // Revision 1.6  1997/12/22 04:14:32  curt
735 // Aligned sky with sun so dusk/dawn effects can be correct relative to the sun.
736 //
737 // Revision 1.5  1997/12/18 04:07:02  curt
738 // Worked on properly translating and positioning the sky dome.
739 //
740 // Revision 1.4  1997/12/17 23:13:36  curt
741 // Began working on rendering a sky.
742 //
743 // Revision 1.3  1997/12/15 23:54:50  curt
744 // Add xgl wrappers for debugging.
745 // Generate terrain normals on the fly.
746 //
747 // Revision 1.2  1997/12/10 22:37:48  curt
748 // Prepended "fg" on the name of all global structures that didn't have it yet.
749 // i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
750 //
751 // Revision 1.1  1997/08/27 21:31:17  curt
752 // Initial revision.
753 //