]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/scenery.hxx
Move viewer-related sources to separate folder.
[flightgear.git] / src / Scenery / scenery.hxx
1 // scenery.hxx -- data structures and routines for managing scenery.
2 //
3 // Written by Curtis Olson, started May 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifndef _SCENERY_HXX
25 #define _SCENERY_HXX
26
27
28 #ifndef __cplusplus                                                          
29 # error This library requires C++
30 #endif                                   
31
32 #include <osg/ref_ptr>
33 #include <osg/Group>
34
35 #include <simgear/compiler.h>
36 #include <simgear/math/SGMath.hxx>
37 #include <simgear/structure/subsystem_mgr.hxx>
38
39 #include "SceneryPager.hxx"
40
41 class SGMaterial;
42
43 // Define a structure containing global scenery parameters
44 class FGScenery : public SGSubsystem {
45
46     // scene graph
47     osg::ref_ptr<osg::Group> scene_graph;
48     osg::ref_ptr<osg::Group> terrain_branch;
49     osg::ref_ptr<osg::Group> models_branch;
50     osg::ref_ptr<osg::Group> aircraft_branch;
51     osg::ref_ptr<flightgear::SceneryPager> _pager;
52
53 public:
54
55     FGScenery();
56     ~FGScenery();
57
58     // Implementation of SGSubsystem.
59     void init ();
60     void bind ();
61     void unbind ();
62     void update (double dt);
63
64     /// Compute the elevation of the scenery at geodetic latitude lat,
65     /// geodetic longitude lon and not higher than max_alt.
66     /// If the exact flag is set to true, the scenery center is moved to
67     /// gain a higher accuracy of that query. The center is restored past
68     /// that to the original value.
69     /// The altitude hit is returned in the alt argument.
70     /// The method returns true if the scenery is available for the given
71     /// lat/lon pair. If there is no scenery for that point, the altitude
72     /// value is undefined. 
73     /// All values are meant to be in meters or degrees.
74     bool get_elevation_m(const SGGeod& geod, double& alt,
75                          const SGMaterial** material,
76                          const osg::Node* butNotFrom = 0);
77
78     /// Compute the elevation of the scenery below the cartesian point pos.
79     /// you the returned scenery altitude is not higher than the position
80     /// pos plus an offset given with max_altoff.
81     /// If the exact flag is set to true, the scenery center is moved to
82     /// gain a higher accuracy of that query. The center is restored past
83     /// that to the original value.
84     /// The altitude hit is returned in the alt argument.
85     /// The method returns true if the scenery is available for the given
86     /// lat/lon pair. If there is no scenery for that point, the altitude
87     /// value is undefined.
88     /// All values are meant to be in meters.
89     bool get_cart_elevation_m(const SGVec3d& pos, double max_altoff,
90                               double& elevation, const SGMaterial** material,
91                               const osg::Node* butNotFrom = 0);
92
93     /// Compute the nearest intersection point of the line starting from 
94     /// start going in direction dir with the terrain.
95     /// The input and output values should be in cartesian coordinates in the
96     /// usual earth centered wgs84 coordinate system. Units are meters.
97     /// On success, true is returned.
98     bool get_cart_ground_intersection(const SGVec3d& start, const SGVec3d& dir,
99                                       SGVec3d& nearestHit,
100                                       const osg::Node* butNotFrom = 0);
101
102     osg::Group *get_scene_graph () const { return scene_graph.get(); }
103     osg::Group *get_terrain_branch () const { return terrain_branch.get(); }
104     osg::Group *get_models_branch () const { return models_branch.get(); }
105     osg::Group *get_aircraft_branch () const { return aircraft_branch.get(); }
106
107     /// Returns true if scenery is available for the given lat, lon position
108     /// within a range of range_m.
109     /// lat and lon are expected to be in degrees.
110     bool scenery_available(const SGGeod& position, double range_m);
111
112     // Static because access to the pager is needed before the rest of
113     // the scenery is initialized.
114     static flightgear::SceneryPager* getPagerSingleton();
115     flightgear::SceneryPager* getPager() { return _pager.get(); }
116 };
117
118
119 #endif // _SCENERY_HXX
120
121