]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/tilemgr.hxx
Fix SceneryPager destruction sequence.
[flightgear.git] / src / Scenery / tilemgr.hxx
1 // tilemgr.hxx -- routines to handle dynamic management of scenery tiles
2 //
3 // Written by Curtis Olson, started January 1998.
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 _TILEMGR_HXX
25 #define _TILEMGR_HXX
26
27 #include <simgear/compiler.h>
28
29 #include <simgear/structure/subsystem_mgr.hxx>
30 #include <simgear/bucket/newbucket.hxx>
31 #include "SceneryPager.hxx"
32 #include "tileentry.hxx"
33 #include "tilecache.hxx"
34
35 namespace osg
36 {
37 class Node;
38 }
39
40 namespace simgear
41 {
42 class SGTerraSync;
43 class SGReaderWriterOptions;
44 }
45
46 class FGTileMgr : public SGSubsystem {
47
48 private:
49
50     // Tile loading state
51     enum load_state {
52         Start = 0,
53         Inited = 1,
54         Running = 2
55     };
56
57     load_state state, last_state;
58
59     // schedule a tile for loading, returns true when tile is already loaded
60     bool sched_tile( const SGBucket& b, double priority,bool current_view, double request_time);
61
62     // schedule a needed buckets for loading
63     void schedule_needed(const SGBucket& curr_bucket, double rangeM);
64
65     SGBucket previous_bucket;
66     SGBucket current_bucket;
67     SGBucket pending;
68     osg::ref_ptr<simgear::SGReaderWriterOptions> _options;
69
70     // current longitude latitude
71     double longitude;
72     double latitude;
73     double scheduled_visibility;
74
75     /**
76      * tile cache
77      */
78     TileCache tile_cache;
79     simgear::SGTerraSync* _terra_sync;
80
81     // Update the various queues maintained by the tilemagr (private
82     // internal function, do not call directly.)
83     void update_queues();
84
85     static void refresh_tile(void* tileMgr, long tileIndex);
86
87     SGPropertyNode_ptr _visibilityMeters;
88     SGPropertyNode_ptr _maxTileRangeM, _disableNasalHooks;
89
90     osg::ref_ptr<flightgear::SceneryPager> _pager;
91
92 public:
93     FGTileMgr();
94
95     ~FGTileMgr();
96
97     // Initialize the Tile Manager
98     virtual void init();
99     virtual void reinit();
100
101     virtual void update(double dt);
102
103     int schedule_tiles_at(const SGGeod& location, double rangeM);
104
105
106     const SGBucket& get_current_bucket () const { return current_bucket; }
107
108     /// Returns true if scenery is available for the given lat, lon position
109     /// within a range of range_m.
110     /// lat and lon are expected to be in degrees.
111     bool schedule_scenery(const SGGeod& position, double range_m, double duration=0.0);
112
113     // Returns true if tiles around current view position have been loaded
114     bool isSceneryLoaded();
115 };
116
117
118 #endif // _TILEMGR_HXX