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