1997-05-21 15:57:49 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* GLmain.c -- top level sim routines
|
|
|
|
*
|
|
|
|
* Written by Curtis Olson for OpenGL, started May 1997.
|
|
|
|
*
|
1997-05-23 15:40:24 +00:00
|
|
|
* Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
1997-05-21 15:57:49 +00:00
|
|
|
* $Id$
|
|
|
|
* (Log is kept at end of this file)
|
|
|
|
**************************************************************************/
|
|
|
|
|
1997-06-22 21:44:40 +00:00
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
1997-05-29 22:39:49 +00:00
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
#ifdef GLUT
|
|
|
|
#include <GL/glut.h>
|
|
|
|
#include "GLUTkey.h"
|
|
|
|
#elif MESA_TK
|
|
|
|
/* assumes -I/usr/include/mesa in compile command */
|
|
|
|
#include "gltk.h"
|
|
|
|
#include "GLTKkey.h"
|
|
|
|
#endif
|
|
|
|
|
1997-06-21 17:12:38 +00:00
|
|
|
#include "../Aircraft/aircraft.h"
|
|
|
|
#include "../Scenery/scenery.h"
|
1997-05-30 19:26:56 +00:00
|
|
|
#include "../mat3/mat3.h"
|
1997-06-21 17:12:38 +00:00
|
|
|
#include "../Timer/fg_timer.h"
|
1997-05-30 19:26:56 +00:00
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-31 19:16:24 +00:00
|
|
|
#define DEG_TO_RAD 0.017453292
|
|
|
|
#define RAD_TO_DEG 57.29577951
|
1997-05-29 22:39:49 +00:00
|
|
|
|
1997-06-25 15:39:44 +00:00
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846 /* pi */
|
|
|
|
#endif
|
|
|
|
|
1997-06-17 16:51:58 +00:00
|
|
|
#ifndef PI2
|
|
|
|
#define PI2 (M_PI + M_PI)
|
|
|
|
#endif
|
|
|
|
|
1997-06-25 15:39:44 +00:00
|
|
|
|
|
|
|
#ifndef M_PI_2
|
|
|
|
#define M_PI_2 1.57079632679489661923 /* pi/2 */
|
|
|
|
#endif
|
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
/* This is a record containing all the info for the aircraft currently
|
|
|
|
being operated */
|
|
|
|
struct aircraft_params current_aircraft;
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/* view parameters */
|
|
|
|
static GLfloat win_ratio = 1.0;
|
|
|
|
|
1997-05-31 04:13:51 +00:00
|
|
|
/* sun direction */
|
|
|
|
static GLfloat sun_vec[4] = {-3.0, 1.0, 2.0, 0.0 };
|
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
/* temporary hack */
|
|
|
|
extern struct mesh *mesh_ptr;
|
|
|
|
/* Function prototypes */
|
1997-05-27 17:44:31 +00:00
|
|
|
GLint fgSceneryCompile();
|
|
|
|
static void fgSceneryDraw();
|
1997-06-22 21:44:40 +00:00
|
|
|
|
|
|
|
/* pointer to scenery structure */
|
|
|
|
static GLint scenery, runway;
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/* Another hack */
|
|
|
|
double fogDensity = 2000.0;
|
1997-06-02 03:01:38 +00:00
|
|
|
double view_offset = 0.0;
|
|
|
|
double goal_view_offset = 0.0;
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/* Another hack */
|
1997-06-17 03:41:10 +00:00
|
|
|
#define DEFAULT_TIMER_HZ 20
|
1997-05-29 22:39:49 +00:00
|
|
|
#define DEFAULT_MULTILOOP 6
|
1997-06-17 03:41:10 +00:00
|
|
|
#define DEFAULT_MODEL_HZ (DEFAULT_TIMER_HZ * DEFAULT_MULTILOOP)
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
double Simtime;
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-06-17 03:41:10 +00:00
|
|
|
/* Another hack */
|
1997-06-17 16:51:58 +00:00
|
|
|
int use_signals = 0;
|
1997-06-17 03:41:10 +00:00
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* fgInitVisuals() -- Initialize various GL/view parameters
|
|
|
|
**************************************************************************/
|
1997-05-23 00:35:09 +00:00
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
static void fgInitVisuals() {
|
1997-05-21 15:57:49 +00:00
|
|
|
/* if the 4th field is 0.0, this specifies a direction ... */
|
1997-05-27 17:44:31 +00:00
|
|
|
static GLfloat fogColor[4] = {0.65, 0.65, 0.85, 1.0};
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-23 00:35:09 +00:00
|
|
|
glEnable( GL_DEPTH_TEST );
|
1997-05-27 17:44:31 +00:00
|
|
|
glFrontFace(GL_CW);
|
1997-05-21 15:57:49 +00:00
|
|
|
glEnable( GL_CULL_FACE );
|
1997-05-23 00:35:09 +00:00
|
|
|
|
|
|
|
/* If enabled, normal vectors specified with glNormal are scaled
|
|
|
|
to unit length after transformation. See glNormal. */
|
|
|
|
glEnable( GL_NORMALIZE );
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
glLightfv( GL_LIGHT0, GL_POSITION, sun_vec );
|
1997-05-21 15:57:49 +00:00
|
|
|
glEnable( GL_LIGHTING );
|
|
|
|
glEnable( GL_LIGHT0 );
|
1997-05-23 00:35:09 +00:00
|
|
|
|
|
|
|
glShadeModel( GL_FLAT ); /* glShadeModel( GL_SMOOTH ); */
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
glEnable( GL_FOG );
|
1997-05-23 15:40:24 +00:00
|
|
|
glFogi (GL_FOG_MODE, GL_LINEAR);
|
1997-05-21 15:57:49 +00:00
|
|
|
/* glFogf (GL_FOG_START, 1.0); */
|
1997-05-27 17:44:31 +00:00
|
|
|
glFogf (GL_FOG_END, fogDensity);
|
1997-05-21 15:57:49 +00:00
|
|
|
glFogfv (GL_FOG_COLOR, fogColor);
|
1997-05-23 15:40:24 +00:00
|
|
|
/* glFogf (GL_FOG_DENSITY, fogDensity); */
|
1997-05-23 00:35:09 +00:00
|
|
|
/* glHint (GL_FOG_HINT, GL_FASTEST); */
|
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
glClearColor(0.6, 0.6, 0.9, 1.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* Update the view volume, position, and orientation
|
|
|
|
**************************************************************************/
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
static void fgUpdateViewParams() {
|
1997-05-29 22:39:49 +00:00
|
|
|
double pos_x, pos_y, pos_z;
|
1997-05-21 15:57:49 +00:00
|
|
|
struct flight_params *f;
|
1997-06-02 03:01:38 +00:00
|
|
|
MAT3mat R, TMP;
|
|
|
|
MAT3vec vec, up, forward, fwrd_view;
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
f = ¤t_aircraft.flight;
|
|
|
|
|
|
|
|
/* Tell GL we are about to modify the projection parameters */
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
glLoadIdentity();
|
1997-06-18 02:21:23 +00:00
|
|
|
gluPerspective(45.0, 1.0/win_ratio, 0.01, 6000.0);
|
1997-05-23 15:40:24 +00:00
|
|
|
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
glLoadIdentity();
|
1997-05-29 22:39:49 +00:00
|
|
|
|
1997-05-30 19:26:56 +00:00
|
|
|
/* calculate position in arc seconds */
|
1997-05-31 19:16:24 +00:00
|
|
|
pos_x = (FG_Longitude * RAD_TO_DEG) * 3600.0;
|
|
|
|
pos_y = (FG_Latitude * RAD_TO_DEG) * 3600.0;
|
1997-05-30 03:54:10 +00:00
|
|
|
pos_z = FG_Altitude * 0.01; /* (Convert feet to aproximate arcsecs) */
|
|
|
|
|
1997-06-18 02:21:23 +00:00
|
|
|
printf("*** pos_z = %.2f\n", pos_z);
|
|
|
|
|
1997-05-30 19:26:56 +00:00
|
|
|
/* build current rotation matrix */
|
|
|
|
MAT3_SET_VEC(vec, 1.0, 0.0, 0.0);
|
|
|
|
MAT3rotate(R, vec, FG_Phi);
|
|
|
|
/* printf("Roll matrix\n"); */
|
|
|
|
/* MAT3print(R, stdout); */
|
|
|
|
|
1997-06-02 03:01:38 +00:00
|
|
|
MAT3_SET_VEC(vec, 0.0, 1.0, 0.0);
|
|
|
|
/* MAT3mult_vec(vec, vec, R); */
|
|
|
|
MAT3rotate(TMP, vec, -FG_Theta);
|
1997-05-30 19:26:56 +00:00
|
|
|
/* printf("Pitch matrix\n"); */
|
1997-06-02 03:01:38 +00:00
|
|
|
/* MAT3print(TMP, stdout); */
|
|
|
|
MAT3mult(R, R, TMP);
|
1997-05-30 19:26:56 +00:00
|
|
|
|
|
|
|
MAT3_SET_VEC(vec, 0.0, 0.0, -1.0);
|
1997-06-02 03:01:38 +00:00
|
|
|
/* MAT3mult_vec(vec, vec, R); */
|
|
|
|
/* MAT3rotate(TMP, vec, M_PI + M_PI_2 + FG_Psi + view_offset); */
|
|
|
|
MAT3rotate(TMP, vec, FG_Psi - M_PI_2);
|
1997-05-30 19:26:56 +00:00
|
|
|
/* printf("Yaw matrix\n");
|
1997-06-02 03:01:38 +00:00
|
|
|
MAT3print(TMP, stdout); */
|
|
|
|
MAT3mult(R, R, TMP);
|
1997-05-30 19:26:56 +00:00
|
|
|
|
|
|
|
/* MAT3print(R, stdout); */
|
|
|
|
|
1997-06-02 03:01:38 +00:00
|
|
|
/* generate the current up, forward, and fwrd-view vectors */
|
|
|
|
MAT3_SET_VEC(vec, 0.0, 0.0, 1.0);
|
|
|
|
MAT3mult_vec(up, vec, R);
|
|
|
|
|
1997-05-30 19:26:56 +00:00
|
|
|
MAT3_SET_VEC(vec, 1.0, 0.0, 0.0);
|
|
|
|
MAT3mult_vec(forward, vec, R);
|
|
|
|
printf("Forward vector is (%.2f,%.2f,%.2f)\n", forward[0], forward[1],
|
|
|
|
forward[2]);
|
1997-06-02 03:01:38 +00:00
|
|
|
|
|
|
|
MAT3rotate(TMP, up, view_offset);
|
|
|
|
MAT3mult_vec(fwrd_view, forward, TMP);
|
1997-05-29 22:39:49 +00:00
|
|
|
|
|
|
|
gluLookAt(pos_x, pos_y, pos_z,
|
1997-06-02 03:01:38 +00:00
|
|
|
pos_x + fwrd_view[0], pos_y + fwrd_view[1], pos_z + fwrd_view[2],
|
1997-05-30 19:26:56 +00:00
|
|
|
up[0], up[1], up[2]);
|
1997-05-30 03:54:10 +00:00
|
|
|
|
1997-05-31 04:13:51 +00:00
|
|
|
glLightfv( GL_LIGHT0, GL_POSITION, sun_vec );
|
1997-05-21 15:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* Update all Visuals (redraws anything graphics related)
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
static void fgUpdateVisuals( void ) {
|
1997-05-21 15:57:49 +00:00
|
|
|
/* update view volume parameters */
|
1997-05-27 17:44:31 +00:00
|
|
|
fgUpdateViewParams();
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-23 00:35:09 +00:00
|
|
|
glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
|
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
/* Tell GL we are switching to model view parameters */
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
1997-05-23 15:40:24 +00:00
|
|
|
/* glLoadIdentity(); */
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-06-22 21:44:40 +00:00
|
|
|
/* draw scenery */
|
1997-05-27 17:44:31 +00:00
|
|
|
fgSceneryDraw();
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
#ifdef GLUT
|
|
|
|
glutSwapBuffers();
|
|
|
|
#elif MESA_TK
|
|
|
|
tkSwapBuffers();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/**************************************************************************
|
1997-06-16 19:32:50 +00:00
|
|
|
* Update internal time dependent calculations (i.e. flight model)
|
1997-05-27 17:44:31 +00:00
|
|
|
**************************************************************************/
|
|
|
|
|
1997-06-17 03:41:10 +00:00
|
|
|
void fgUpdateTimeDepCalcs(int multi_loop) {
|
1997-05-29 22:39:49 +00:00
|
|
|
struct flight_params *f;
|
1997-06-17 04:19:16 +00:00
|
|
|
int i;
|
1997-05-31 04:13:51 +00:00
|
|
|
|
1997-05-29 22:39:49 +00:00
|
|
|
f = ¤t_aircraft.flight;
|
1997-05-27 17:44:31 +00:00
|
|
|
|
1997-05-29 12:31:39 +00:00
|
|
|
/* update the flight model */
|
1997-06-17 03:41:10 +00:00
|
|
|
if ( multi_loop < 0 ) {
|
1997-06-17 04:19:16 +00:00
|
|
|
multi_loop = DEFAULT_MULTILOOP;
|
1997-06-17 03:41:10 +00:00
|
|
|
}
|
1997-05-29 12:31:39 +00:00
|
|
|
|
1997-06-17 04:19:16 +00:00
|
|
|
/* printf("updating flight model x %d\n", multi_loop); */
|
|
|
|
fgFlightModelUpdate(FG_LARCSIM, f, multi_loop);
|
|
|
|
|
|
|
|
for ( i = 0; i < multi_loop; i++ ) {
|
|
|
|
if ( fabs(goal_view_offset - view_offset) < 0.05 ) {
|
|
|
|
view_offset = goal_view_offset;
|
|
|
|
break;
|
1997-06-02 03:40:06 +00:00
|
|
|
} else {
|
1997-06-17 04:19:16 +00:00
|
|
|
/* move view_offset towards goal_view_offset */
|
|
|
|
if ( goal_view_offset > view_offset ) {
|
|
|
|
if ( goal_view_offset - view_offset < M_PI ) {
|
|
|
|
view_offset += 0.01;
|
|
|
|
} else {
|
|
|
|
view_offset -= 0.01;
|
|
|
|
}
|
1997-06-02 03:40:06 +00:00
|
|
|
} else {
|
1997-06-17 04:19:16 +00:00
|
|
|
if ( view_offset - goal_view_offset < M_PI ) {
|
|
|
|
view_offset -= 0.01;
|
|
|
|
} else {
|
|
|
|
view_offset += 0.01;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( view_offset > PI2 ) {
|
|
|
|
view_offset -= PI2;
|
|
|
|
} else if ( view_offset < 0 ) {
|
|
|
|
view_offset += PI2;
|
1997-06-02 03:40:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1997-05-27 17:44:31 +00:00
|
|
|
}
|
|
|
|
|
1997-06-16 19:32:50 +00:00
|
|
|
|
|
|
|
void fgInitTimeDepCalcs() {
|
|
|
|
/* initialize timer */
|
1997-06-17 03:41:10 +00:00
|
|
|
fgTimerInit( 1.0 / DEFAULT_TIMER_HZ, fgUpdateTimeDepCalcs );
|
1997-05-27 17:44:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Scenery management routines
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
static void fgSceneryInit() {
|
1997-06-22 21:44:40 +00:00
|
|
|
/* make scenery */
|
|
|
|
scenery = fgSceneryCompile();
|
1997-06-18 02:21:23 +00:00
|
|
|
runway = fgRunwayHack(0.69, 53.07);
|
1997-05-27 17:44:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-06-22 21:44:40 +00:00
|
|
|
/* create the scenery */
|
1997-05-27 17:44:31 +00:00
|
|
|
GLint fgSceneryCompile() {
|
1997-06-22 21:44:40 +00:00
|
|
|
GLint scenery;
|
1997-06-18 02:21:23 +00:00
|
|
|
|
1997-06-22 21:44:40 +00:00
|
|
|
scenery = mesh2GL(mesh_ptr);
|
1997-06-18 02:21:23 +00:00
|
|
|
|
1997-06-22 21:44:40 +00:00
|
|
|
return(scenery);
|
1997-06-18 02:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* hack in a runway */
|
|
|
|
GLint fgRunwayHack(double width, double length) {
|
|
|
|
static GLfloat concrete[4] = { 0.5, 0.5, 0.5, 1.0 };
|
|
|
|
static GLfloat line[4] = { 0.9, 0.9, 0.9, 1.0 };
|
|
|
|
int i;
|
1997-06-18 04:10:31 +00:00
|
|
|
int num_lines = 16;
|
1997-06-18 02:21:23 +00:00
|
|
|
float line_len, line_width_2, cur_pos;
|
|
|
|
|
|
|
|
runway = glGenLists(1);
|
|
|
|
glNewList(runway, GL_COMPILE);
|
|
|
|
|
|
|
|
/* draw concrete */
|
|
|
|
glBegin(GL_POLYGON);
|
|
|
|
glMaterialfv( GL_FRONT, GL_AMBIENT_AND_DIFFUSE, concrete );
|
|
|
|
glNormal3f(0.0, 0.0, 1.0);
|
|
|
|
|
|
|
|
glVertex3d( 0.0, -width/2.0, 0.0);
|
|
|
|
glVertex3d( 0.0, width/2.0, 0.0);
|
|
|
|
glVertex3d(length, width/2.0, 0.0);
|
|
|
|
glVertex3d(length, -width/2.0, 0.0);
|
|
|
|
glEnd();
|
|
|
|
|
|
|
|
/* draw center line */
|
|
|
|
glMaterialfv( GL_FRONT, GL_AMBIENT_AND_DIFFUSE, line );
|
|
|
|
line_len = length / ( 2 * num_lines + 1);
|
|
|
|
printf("line_len = %.3f\n", line_len);
|
|
|
|
line_width_2 = 0.02;
|
|
|
|
cur_pos = line_len;
|
|
|
|
for ( i = 0; i < num_lines; i++ ) {
|
|
|
|
glBegin(GL_POLYGON);
|
|
|
|
glVertex3d( cur_pos, -line_width_2, 0.005);
|
|
|
|
glVertex3d( cur_pos, line_width_2, 0.005);
|
|
|
|
cur_pos += line_len;
|
|
|
|
glVertex3d( cur_pos, line_width_2, 0.005);
|
|
|
|
glVertex3d( cur_pos, -line_width_2, 0.005);
|
|
|
|
cur_pos += line_len;
|
|
|
|
glEnd();
|
|
|
|
}
|
1997-05-27 17:44:31 +00:00
|
|
|
|
1997-06-18 02:21:23 +00:00
|
|
|
glEndList();
|
1997-05-27 17:44:31 +00:00
|
|
|
|
1997-06-18 02:21:23 +00:00
|
|
|
return(runway);
|
1997-05-27 17:44:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-06-22 21:44:40 +00:00
|
|
|
/* draw the scenery */
|
1997-05-27 17:44:31 +00:00
|
|
|
static void fgSceneryDraw() {
|
1997-06-18 02:21:23 +00:00
|
|
|
static float z = 32.35;
|
|
|
|
|
1997-06-21 17:12:38 +00:00
|
|
|
glPushMatrix();
|
|
|
|
|
1997-06-22 21:44:40 +00:00
|
|
|
glCallList(scenery);
|
1997-06-18 02:21:23 +00:00
|
|
|
|
|
|
|
printf("*** Drawing runway at %.2f\n", z);
|
|
|
|
|
1997-06-21 17:12:38 +00:00
|
|
|
glTranslatef( -398391.28, 120070.41, 32.35);
|
1997-06-18 02:21:23 +00:00
|
|
|
glRotatef(170.0, 0.0, 0.0, 1.0);
|
|
|
|
glCallList(runway);
|
1997-06-21 17:12:38 +00:00
|
|
|
|
|
|
|
glPopMatrix();
|
1997-05-21 15:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* What should we do when we have nothing else to do? How about get
|
|
|
|
* ready for the next move?*/
|
1997-06-17 03:41:10 +00:00
|
|
|
static void fgMainLoop( void ) {
|
|
|
|
static int remainder = 0;
|
|
|
|
int elapsed, multi_loop;
|
|
|
|
|
|
|
|
elapsed = fgGetTimeInterval();
|
1997-06-17 16:51:58 +00:00
|
|
|
printf("Time interval is = %d, previous remainder is = %d\n", elapsed,
|
|
|
|
remainder);
|
1997-06-17 04:19:16 +00:00
|
|
|
printf("--> Frame rate is = %.2f\n", 1000.0 / (float)elapsed);
|
|
|
|
elapsed += remainder;
|
1997-06-17 03:41:10 +00:00
|
|
|
|
|
|
|
multi_loop = ((float)elapsed * 0.001) * DEFAULT_MODEL_HZ;
|
|
|
|
remainder = elapsed - ((multi_loop*1000) / DEFAULT_MODEL_HZ);
|
1997-06-17 16:51:58 +00:00
|
|
|
printf("Model iterations needed = %d, new remainder = %d\n", multi_loop,
|
|
|
|
remainder);
|
1997-06-17 03:41:10 +00:00
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
aircraft_debug(1);
|
1997-05-27 17:44:31 +00:00
|
|
|
fgUpdateVisuals();
|
1997-06-17 03:41:10 +00:00
|
|
|
|
|
|
|
if ( ! use_signals ) {
|
|
|
|
fgUpdateTimeDepCalcs(multi_loop);
|
|
|
|
}
|
1997-05-21 15:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* Handle new window size or exposure
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
static void fgReshape( int width, int height ) {
|
|
|
|
/* Do this so we can call fgReshape(0,0) ourselves without having to know
|
1997-05-21 15:57:49 +00:00
|
|
|
* what the values of width & height are. */
|
|
|
|
if ( (height > 0) && (width > 0) ) {
|
|
|
|
win_ratio = (GLfloat) height / (GLfloat) width;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Inform gl of our view window size */
|
|
|
|
glViewport(0, 0, (GLint)width, (GLint)height);
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
fgUpdateViewParams();
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Main ...
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
int main( int argc, char *argv[] ) {
|
1997-05-29 22:39:49 +00:00
|
|
|
struct flight_params *f;
|
|
|
|
|
|
|
|
f = ¤t_aircraft.flight;
|
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
#ifdef GLUT
|
|
|
|
/* initialize GLUT */
|
|
|
|
glutInit(&argc, argv);
|
|
|
|
|
|
|
|
/* Define Display Parameters */
|
|
|
|
glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE );
|
|
|
|
|
1997-05-23 00:35:09 +00:00
|
|
|
/* Define initial window size */
|
1997-05-29 22:39:49 +00:00
|
|
|
glutInitWindowSize(640, 480);
|
1997-05-23 00:35:09 +00:00
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
/* Initialize the main window */
|
1997-06-22 21:44:40 +00:00
|
|
|
glutCreateWindow("Flight Gear");
|
1997-05-21 15:57:49 +00:00
|
|
|
#elif MESA_TK
|
|
|
|
/* Define initial window size */
|
1997-05-29 22:39:49 +00:00
|
|
|
tkInitPosition(0, 0, 640, 480);
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
/* Define Display Parameters */
|
|
|
|
tkInitDisplayMode( TK_RGB | TK_DEPTH | TK_DOUBLE | TK_DIRECT );
|
|
|
|
|
|
|
|
/* Initialize the main window */
|
1997-06-22 21:44:40 +00:00
|
|
|
if (tkInitWindow("Flight Gear") == GL_FALSE) {
|
1997-05-21 15:57:49 +00:00
|
|
|
tkQuit();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* setup view parameters, only makes GL calls */
|
1997-05-27 17:44:31 +00:00
|
|
|
fgInitVisuals();
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-31 19:16:24 +00:00
|
|
|
/* Globe Aiport, AZ */
|
|
|
|
FG_Runway_altitude = 3234.5;
|
|
|
|
FG_Runway_latitude = 120070.41;
|
|
|
|
FG_Runway_longitude = -398391.28;
|
|
|
|
FG_Runway_heading = 102.0 * DEG_TO_RAD;
|
1997-05-29 22:39:49 +00:00
|
|
|
|
|
|
|
/* Initial Position */
|
1997-05-31 19:16:24 +00:00
|
|
|
FG_Latitude = ( 120070.41 / 3600.0 ) * DEG_TO_RAD;
|
|
|
|
FG_Longitude = ( -398391.28 / 3600.0 ) * DEG_TO_RAD;
|
|
|
|
FG_Altitude = FG_Runway_altitude + 3.758099;
|
1997-05-29 22:39:49 +00:00
|
|
|
|
|
|
|
printf("Initial position is: (%.4f, %.4f, %.2f)\n", FG_Latitude,
|
|
|
|
FG_Longitude, FG_Altitude);
|
|
|
|
|
1997-05-31 19:16:24 +00:00
|
|
|
|
1997-05-29 22:39:49 +00:00
|
|
|
/* Initial Velocity */
|
|
|
|
FG_V_north = 0.0 /* 7.287719E+00 */;
|
|
|
|
FG_V_east = 0.0 /* 1.521770E+03 */;
|
|
|
|
FG_V_down = 0.0 /* -1.265722E-05 */;
|
|
|
|
|
|
|
|
/* Initial Orientation */
|
|
|
|
FG_Phi = -2.658474E-06;
|
|
|
|
FG_Theta = 7.401790E-03;
|
1997-06-02 03:01:38 +00:00
|
|
|
FG_Psi = 282.0 * DEG_TO_RAD;
|
1997-05-29 22:39:49 +00:00
|
|
|
|
|
|
|
/* Initial Angular B rates */
|
|
|
|
FG_P_body = 7.206685E-05;
|
|
|
|
FG_Q_body = 0.000000E+00;
|
|
|
|
FG_R_body = 9.492658E-05;
|
|
|
|
|
|
|
|
FG_Earth_position_angle = 0.000000E+00;
|
|
|
|
|
|
|
|
/* Mass properties and geometry values */
|
|
|
|
FG_Mass = 8.547270E+01;
|
|
|
|
FG_I_xx = 1.048000E+03;
|
|
|
|
FG_I_yy = 3.000000E+03;
|
|
|
|
FG_I_zz = 3.530000E+03;
|
|
|
|
FG_I_xz = 0.000000E+00;
|
|
|
|
|
|
|
|
/* CG position w.r.t. ref. point */
|
|
|
|
FG_Dx_cg = 0.000000E+00;
|
|
|
|
FG_Dy_cg = 0.000000E+00;
|
|
|
|
FG_Dz_cg = 0.000000E+00;
|
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
/* Set initial position and slew parameters */
|
1997-05-31 19:16:24 +00:00
|
|
|
/* fgSlewInit(-398391.3, 120070.41, 244, 3.1415); */ /* GLOBE Airport */
|
1997-05-29 02:33:23 +00:00
|
|
|
/* fgSlewInit(-335340,162540, 15, 4.38); */
|
1997-05-29 22:39:49 +00:00
|
|
|
/* fgSlewInit(-398673.28,120625.64, 53, 4.38); */
|
|
|
|
|
1997-06-17 03:41:10 +00:00
|
|
|
fgFlightModelInit( FG_LARCSIM, f, 1.0 / DEFAULT_MODEL_HZ );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-06-17 03:41:10 +00:00
|
|
|
if ( use_signals ) {
|
|
|
|
/* init timer routines, signals, etc. Arrange for an alarm
|
|
|
|
signal to be generated, etc. */
|
|
|
|
fgInitTimeDepCalcs();
|
|
|
|
}
|
1997-06-16 19:32:50 +00:00
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/* build all objects */
|
1997-06-22 21:44:40 +00:00
|
|
|
|
|
|
|
/* parse the scenery file, and build the OpenGL call list */
|
|
|
|
/* this function will eventually move to the scenery management system */
|
|
|
|
if ( strlen(argv[1]) ) {
|
|
|
|
parse_scenery(argv[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize the scenery */
|
1997-05-27 17:44:31 +00:00
|
|
|
fgSceneryInit();
|
|
|
|
|
1997-05-21 15:57:49 +00:00
|
|
|
#ifdef GLUT
|
1997-05-27 17:44:31 +00:00
|
|
|
/* call fgReshape() on window resizes */
|
|
|
|
glutReshapeFunc( fgReshape );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
/* call key() on keyboard event */
|
|
|
|
glutKeyboardFunc( GLUTkey );
|
1997-05-31 04:13:51 +00:00
|
|
|
glutSpecialFunc( GLUTspecialkey );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/* call fgMainLoop() whenever there is nothing else to do */
|
|
|
|
glutIdleFunc( fgMainLoop );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
/* draw the scene */
|
1997-05-27 17:44:31 +00:00
|
|
|
glutDisplayFunc( fgUpdateVisuals );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
/* pass control off to the GLUT event handler */
|
|
|
|
glutMainLoop();
|
|
|
|
#elif MESA_TK
|
1997-05-27 17:44:31 +00:00
|
|
|
/* call fgReshape() on expose events */
|
|
|
|
tkExposeFunc( fgReshape );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/* call fgReshape() on window resizes */
|
|
|
|
tkReshapeFunc( fgReshape );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
/* call key() on keyboard event */
|
|
|
|
tkKeyDownFunc( GLTKkey );
|
|
|
|
|
1997-05-27 17:44:31 +00:00
|
|
|
/* call fgMainLoop() whenever there is nothing else to do */
|
|
|
|
tkIdleFunc( fgMainLoop );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
/* draw the scene */
|
1997-05-27 17:44:31 +00:00
|
|
|
tkDisplayFunc( fgUpdateVisuals );
|
1997-05-21 15:57:49 +00:00
|
|
|
|
|
|
|
/* pass control off to the tk event handler */
|
|
|
|
tkExec();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* $Log$
|
1997-06-25 15:39:44 +00:00
|
|
|
/* Revision 1.22 1997/06/25 15:39:47 curt
|
|
|
|
/* Minor changes to compile with rsxnt/win32.
|
1997-05-31 04:13:51 +00:00
|
|
|
/*
|
1997-06-25 15:39:44 +00:00
|
|
|
* Revision 1.21 1997/06/22 21:44:41 curt
|
|
|
|
* Working on intergrating the VRML (subset) parser.
|
|
|
|
*
|
1997-06-22 21:44:40 +00:00
|
|
|
* Revision 1.20 1997/06/21 17:12:53 curt
|
|
|
|
* Capitalized subdirectory names.
|
|
|
|
*
|
1997-06-21 17:12:38 +00:00
|
|
|
* Revision 1.19 1997/06/18 04:10:31 curt
|
|
|
|
* A couple more runway tweaks ...
|
|
|
|
*
|
1997-06-18 04:10:31 +00:00
|
|
|
* Revision 1.18 1997/06/18 02:21:24 curt
|
|
|
|
* Hacked in a runway
|
|
|
|
*
|
1997-06-18 02:21:23 +00:00
|
|
|
* Revision 1.17 1997/06/17 16:51:58 curt
|
|
|
|
* Timer interval stuff now uses gettimeofday() instead of ftime()
|
|
|
|
*
|
1997-06-17 16:51:58 +00:00
|
|
|
* Revision 1.16 1997/06/17 04:19:16 curt
|
|
|
|
* More timer related tweaks with respect to view direction changes.
|
|
|
|
*
|
1997-06-17 04:19:16 +00:00
|
|
|
* Revision 1.15 1997/06/17 03:41:10 curt
|
|
|
|
* Nonsignal based interval timing is now working.
|
|
|
|
* This would be a good time to look at cleaning up the code structure a bit.
|
|
|
|
*
|
1997-06-17 03:41:10 +00:00
|
|
|
* Revision 1.14 1997/06/16 19:32:51 curt
|
|
|
|
* Starting to add general timer support.
|
|
|
|
*
|
1997-06-16 19:32:50 +00:00
|
|
|
* Revision 1.13 1997/06/02 03:40:06 curt
|
|
|
|
* A tiny bit more view tweaking.
|
|
|
|
*
|
1997-06-02 03:40:06 +00:00
|
|
|
* Revision 1.12 1997/06/02 03:01:38 curt
|
|
|
|
* Working on views (side, front, back, transitions, etc.)
|
|
|
|
*
|
1997-06-02 03:01:38 +00:00
|
|
|
* Revision 1.11 1997/05/31 19:16:25 curt
|
|
|
|
* Elevator trim added.
|
|
|
|
*
|
1997-05-31 19:16:24 +00:00
|
|
|
* Revision 1.10 1997/05/31 04:13:52 curt
|
|
|
|
* WE CAN NOW FLY!!!
|
|
|
|
*
|
|
|
|
* Continuing work on the LaRCsim flight model integration.
|
|
|
|
* Added some MSFS-like keyboard input handling.
|
|
|
|
*
|
1997-05-31 04:13:51 +00:00
|
|
|
* Revision 1.9 1997/05/30 19:27:01 curt
|
|
|
|
* The LaRCsim flight model is starting to look like it is working.
|
|
|
|
*
|
1997-05-30 19:26:56 +00:00
|
|
|
* Revision 1.8 1997/05/30 03:54:10 curt
|
|
|
|
* Made a bit more progress towards integrating the LaRCsim flight model.
|
|
|
|
*
|
1997-05-30 03:54:10 +00:00
|
|
|
* Revision 1.7 1997/05/29 22:39:49 curt
|
|
|
|
* Working on incorporating the LaRCsim flight model.
|
|
|
|
*
|
1997-05-29 22:39:49 +00:00
|
|
|
* Revision 1.6 1997/05/29 12:31:39 curt
|
|
|
|
* Minor tweaks, moving towards general flight model integration.
|
|
|
|
*
|
1997-05-29 12:31:39 +00:00
|
|
|
* Revision 1.5 1997/05/29 02:33:23 curt
|
|
|
|
* Updated to reflect changing interfaces in other "modules."
|
|
|
|
*
|
1997-05-29 02:33:23 +00:00
|
|
|
* Revision 1.4 1997/05/27 17:44:31 curt
|
|
|
|
* Renamed & rearranged variables and routines. Added some initial simple
|
|
|
|
* timer/alarm routines so the flight model can be updated on a regular
|
|
|
|
* interval.
|
|
|
|
*
|
1997-05-27 17:44:31 +00:00
|
|
|
* Revision 1.3 1997/05/23 15:40:25 curt
|
|
|
|
* Added GNU copyright headers.
|
|
|
|
* Fog now works!
|
|
|
|
*
|
1997-05-23 15:40:24 +00:00
|
|
|
* Revision 1.2 1997/05/23 00:35:12 curt
|
|
|
|
* Trying to get fog to work ...
|
|
|
|
*
|
1997-05-23 00:35:09 +00:00
|
|
|
* Revision 1.1 1997/05/21 15:57:51 curt
|
|
|
|
* Renamed due to added GLUT support.
|
|
|
|
*
|
1997-05-21 15:57:49 +00:00
|
|
|
* Revision 1.3 1997/05/19 18:22:42 curt
|
|
|
|
* Parameter tweaking ... starting to stub in fog support.
|
|
|
|
*
|
|
|
|
* Revision 1.2 1997/05/17 00:17:34 curt
|
|
|
|
* Trying to stub in support for standard OpenGL.
|
|
|
|
*
|
|
|
|
* Revision 1.1 1997/05/16 16:05:52 curt
|
|
|
|
* Initial revision.
|
|
|
|
*
|
|
|
|
*/
|