]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/scenery.hxx
std:: namespace fixes, AIBase cleanup.
[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 namespace simgear {
42 class BVHMaterial;
43 }
44
45 // Define a structure containing global scenery parameters
46 class FGScenery : public SGSubsystem {
47
48     // scene graph
49     osg::ref_ptr<osg::Group> scene_graph;
50     osg::ref_ptr<osg::Group> terrain_branch;
51     osg::ref_ptr<osg::Group> models_branch;
52     osg::ref_ptr<osg::Group> aircraft_branch;
53     osg::ref_ptr<flightgear::SceneryPager> _pager;
54
55 public:
56
57     FGScenery();
58     ~FGScenery();
59
60     // Implementation of SGSubsystem.
61     void init ();
62     void bind ();
63     void unbind ();
64     void update (double dt);
65
66     /// Compute the elevation of the scenery at geodetic latitude lat,
67     /// geodetic longitude lon and not higher than max_alt.
68     /// If the exact flag is set to true, the scenery center is moved to
69     /// gain a higher accuracy of that query. The center is restored past
70     /// that to the original value.
71     /// The altitude hit is returned in the alt argument.
72     /// The method returns true if the scenery is available for the given
73     /// lat/lon pair. If there is no scenery for that point, the altitude
74     /// value is undefined. 
75     /// All values are meant to be in meters or degrees.
76     bool get_elevation_m(const SGGeod& geod, double& alt,
77                          const simgear::BVHMaterial** material,
78                          const osg::Node* butNotFrom = 0);
79
80     /// Compute the elevation of the scenery below the cartesian point pos.
81     /// you the returned scenery altitude is not higher than the position
82     /// pos plus an offset given with max_altoff.
83     /// If the exact flag is set to true, the scenery center is moved to
84     /// gain a higher accuracy of that query. The center is restored past
85     /// that to the original value.
86     /// The altitude hit is returned in the alt argument.
87     /// The method returns true if the scenery is available for the given
88     /// lat/lon pair. If there is no scenery for that point, the altitude
89     /// value is undefined.
90     /// All values are meant to be in meters.
91     bool get_cart_elevation_m(const SGVec3d& pos, double max_altoff,
92                               double& elevation,
93                               const simgear::BVHMaterial** material,
94                               const osg::Node* butNotFrom = 0);
95
96     /// Compute the nearest intersection point of the line starting from 
97     /// start going in direction dir with the terrain.
98     /// The input and output values should be in cartesian coordinates in the
99     /// usual earth centered wgs84 coordinate system. Units are meters.
100     /// On success, true is returned.
101     bool get_cart_ground_intersection(const SGVec3d& start, const SGVec3d& dir,
102                                       SGVec3d& nearestHit,
103                                       const osg::Node* butNotFrom = 0);
104
105     osg::Group *get_scene_graph () const { return scene_graph.get(); }
106     osg::Group *get_terrain_branch () const { return terrain_branch.get(); }
107     osg::Group *get_models_branch () const { return models_branch.get(); }
108     osg::Group *get_aircraft_branch () const { return aircraft_branch.get(); }
109
110     /// Returns true if scenery is available for the given lat, lon position
111     /// within a range of range_m.
112     /// lat and lon are expected to be in degrees.
113     bool scenery_available(const SGGeod& position, double range_m);
114
115     // Static because access to the pager is needed before the rest of
116     // the scenery is initialized.
117     static flightgear::SceneryPager* getPagerSingleton();
118     flightgear::SceneryPager* getPager() { return _pager.get(); }
119 };
120
121
122 #endif // _SCENERY_HXX
123
124