]> git.mxchange.org Git - flightgear.git/blob - Main/views.h
Add xgl wrappers for debugging.
[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/types.h"
32 #include "../Flight/flight.h"
33 #include "../Math/mat3.h"
34
35
36 /* Define a structure containing view information */
37 struct fgVIEW {
38     struct fgCartesianPoint view_pos;
39     MAT3vec local_up, view_up, view_forward;
40     double view_offset, goal_view_offset;
41 };
42
43
44 extern struct fgVIEW current_view;
45
46
47 /* Initialize a view structure */
48 void fgViewInit(struct fgVIEW *v);
49
50 /* Update the view parameters */
51 void fgViewUpdate(struct fgFLIGHT *f, struct fgVIEW *v);
52
53
54 #endif /* VIEWS_H */
55
56
57 /* $Log$
58 /* Revision 1.3  1997/12/15 23:54:51  curt
59 /* Add xgl wrappers for debugging.
60 /* Generate terrain normals on the fly.
61 /*
62  * Revision 1.2  1997/12/10 22:37:48  curt
63  * Prepended "fg" on the name of all global structures that didn't have it yet.
64  * i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
65  *
66  * Revision 1.1  1997/08/27 21:31:18  curt
67  * Initial revision.
68  *
69  */