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