]> git.mxchange.org Git - flightgear.git/blob - Main/views.h
Prepairing for C++ integration.
[flightgear.git] / Main / views.h
1 /**************************************************************************
2  * views.h -- data structures and routines for managing and view 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
27 #ifndef _VIEWS_H
28 #define _VIEWS_H
29
30
31 #ifdef __cplusplus                                                          
32 extern "C" {                            
33 #endif                                   
34
35
36 #include <Include/fg_types.h>
37 #include <Flight/flight.h>
38 #include <Math/mat3.h>
39 #include <Time/fg_time.h>
40
41
42 /* Define a structure containing view information */
43 struct fgVIEW {
44     /* absolute view position */
45     struct fgCartesianPoint abs_view_pos;
46
47     /* view position translated to scenery.center */
48     struct fgCartesianPoint view_pos;
49
50     /* cartesion coordinates of current lon/lat if at sea level
51      * translated to scenery.center*/
52     struct fgCartesianPoint cur_zero_elev;
53
54     /* vector in cartesian coordinates from current position to the
55      * postion on the earth's surface the sun is directly over */
56     MAT3vec to_sun;
57     
58     /* surface direction to go to head towards sun */
59     MAT3vec surface_to_sun;
60
61     /* surface vector heading south */
62     MAT3vec surface_south;
63
64     /* surface vector heading east (used to unambiguously align sky with sun) */
65     MAT3vec surface_east;
66
67     /* local up vector (normal to the plane tangent to the earth's
68      * surface at the spot we are directly above */
69     MAT3vec local_up;
70
71     /* up vector for the view (usually point straight up through the
72      * top of the aircraft */
73     MAT3vec view_up;
74
75     /* the vector pointing straight out the nose of the aircraft */
76     MAT3vec view_forward;
77
78     /* the current offset from forward for viewing */
79     double view_offset;
80
81     /* the goal view offset for viewing (used for smooth view changes) */
82     double goal_view_offset;
83 };
84
85
86 extern struct fgVIEW current_view;
87
88
89 /* Initialize a view structure */
90 void fgViewInit(struct fgVIEW *v);
91
92 /* Update the view parameters */
93 void fgViewUpdate(fgFLIGHT *f, struct fgVIEW *v, struct fgLIGHT *l);
94
95
96 #ifdef __cplusplus
97 }
98 #endif
99
100
101 #endif /* _VIEWS_H */
102
103
104 /* $Log$
105 /* Revision 1.11  1998/04/21 17:02:42  curt
106 /* Prepairing for C++ integration.
107 /*
108  * Revision 1.10  1998/02/07 15:29:45  curt
109  * Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
110  * <chotchkiss@namg.us.anritsu.com>
111  *
112  * Revision 1.9  1998/01/29 00:50:29  curt
113  * Added a view record field for absolute x, y, z position.
114  *
115  * Revision 1.8  1998/01/27 00:47:58  curt
116  * Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
117  * system and commandline/config file processing code.
118  *
119  * Revision 1.7  1998/01/22 02:59:38  curt
120  * Changed #ifdef FILE_H to #ifdef _FILE_H
121  *
122  * Revision 1.6  1998/01/19 19:27:10  curt
123  * Merged in make system changes from Bob Kuehne <rpk@sgi.com>
124  * This should simplify things tremendously.
125  *
126  * Revision 1.5  1997/12/22 04:14:32  curt
127  * Aligned sky with sun so dusk/dawn effects can be correct relative to the sun.
128  *
129  * Revision 1.4  1997/12/17 23:13:36  curt
130  * Began working on rendering a sky.
131  *
132  * Revision 1.3  1997/12/15 23:54:51  curt
133  * Add xgl wrappers for debugging.
134  * Generate terrain normals on the fly.
135  *
136  * Revision 1.2  1997/12/10 22:37:48  curt
137  * Prepended "fg" on the name of all global structures that didn't have it yet.
138  * i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
139  *
140  * Revision 1.1  1997/08/27 21:31:18  curt
141  * Initial revision.
142  *
143  */