]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/TileCache.hxx
Merge branch 'topics/remove_point3d' of git@gitorious.org:~zakalawe/fg/james-simgear...
[simgear.git] / simgear / scene / tgdb / TileCache.hxx
1 // newcache.hxx -- routines to handle scenery tile caching
2 //
3 // Written by Curtis Olson, started December 2000.
4 //
5 // Copyright (C) 2000  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 _TILECACHE_HXX
25 #define _TILECACHE_HXX
26
27 #include <map>
28
29 #include <simgear/bucket/newbucket.hxx>
30 #include <simgear/scene/tgdb/TileEntry.hxx>
31
32 using std::map;
33
34 namespace simgear {
35
36 // A class to store and manage a pile of tiles
37 class TileCache {
38 public:
39     typedef map < long, simgear::TileEntry * > tile_map;
40     typedef tile_map::iterator tile_map_iterator;
41     typedef tile_map::const_iterator const_tile_map_iterator;
42 private:
43     // cache storage space
44     tile_map tile_cache;
45
46     // maximum cache size
47     int max_cache_size;
48
49     // pointers to allow an external linear traversal of cache entries
50     tile_map_iterator current;
51
52     // Free a tile cache entry
53     void entry_free( long cache_index );
54
55     double current_time;
56
57 public:
58     tile_map_iterator begin() { return tile_cache.begin(); }
59     tile_map_iterator end() { return tile_cache.end(); }
60     const_tile_map_iterator begin() const { return tile_cache.begin(); }
61     const_tile_map_iterator end() const { return tile_cache.end(); }
62
63     // Constructor
64     TileCache();
65
66     // Destructor
67     ~TileCache();
68
69     // Initialize the tile cache subsystem
70     void init( void );
71
72     // Check if the specified "bucket" exists in the cache
73     bool exists( const SGBucket& b ) const;
74
75     // Return the index of the oldest tile in the cache, return -1 if
76     // nothing available to be removed.
77     long get_oldest_tile();
78
79     // Clear the inner ring flag for all tiles in the cache so that
80     // the external tile scheduler can flag the inner ring correctly.
81     void clear_inner_ring_flags();
82
83     // Clear a cache entry, note that the cache only holds pointers
84     // and this does not free the object which is pointed to.
85     void clear_entry( long cache_entry );
86
87     // Clear all completely loaded tiles (ignores partially loaded tiles)
88     void clear_cache();
89
90     // Return a pointer to the specified tile cache entry
91     inline simgear::TileEntry *get_tile( const long tile_index ) const {
92         const_tile_map_iterator it = tile_cache.find( tile_index );
93         if ( it != tile_cache.end() ) {
94             return it->second;
95         } else {
96             return NULL;
97         }
98     }
99
100     // Return a pointer to the specified tile cache entry
101     inline simgear::TileEntry *get_tile( const SGBucket& b ) const {
102         return get_tile( b.gen_index() );
103     }
104
105     // Return the cache size
106     inline size_t get_size() const { return tile_cache.size(); }
107
108     // External linear traversal of cache
109     inline void reset_traversal() { current = tile_cache.begin(); }
110     inline bool at_end() { return current == tile_cache.end(); }
111     inline simgear::TileEntry *get_current() const {
112         // cout << "index = " << current->first << endl;
113         return current->second;
114     }
115     inline void next() { ++current; }
116
117     inline int get_max_cache_size() const { return max_cache_size; }
118     inline void set_max_cache_size( int m ) { max_cache_size = m; }
119
120     /**
121      * Create a new tile and enqueue it for loading.
122      * @param b
123      * @return success/failure
124      */
125     bool insert_tile( simgear::TileEntry* e );
126
127     void set_current_time(double val) { current_time = val; }
128     double get_current_time() const { return current_time; }
129 };
130
131 }
132
133 #endif // _TILECACHE_HXX