]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/tilemgr.hxx
Updates to JSBsim from Jon's CVS.
[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  - curt@infoplane.com
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifndef _TILEMGR_HXX
25 #define _TILEMGR_HXX
26
27
28 #ifndef __cplusplus                                                          
29 # error This library requires C++
30 #endif                                   
31
32 #include <simgear/compiler.h>
33
34 #include <list>
35
36 #include <plib/ssg.h>
37
38 #include <simgear/bucket/newbucket.hxx>
39
40 #include "hitlist.hxx"
41
42 FG_USING_STD(list);
43
44
45 #define FG_LOCAL_X_Y         81  // max(o->tile_diameter) ** 2
46
47 #define FG_SQUARE( X ) ( (X) * (X) )
48
49 #if defined(USE_MEM) || defined(WIN32)
50 #  define FG_MEM_COPY(to,from,n)        memcpy(to, from, n)
51 #else
52 #  define FG_MEM_COPY(to,from,n)        bcopy(from, to, n)
53 #endif
54
55
56 // forward declaration
57 class FGTileEntry;
58
59
60 class FGLoadRec {
61
62 public:
63
64     FGBucket b;
65     int cache_index;
66 };
67
68
69 class FGTileMgr {
70
71 private:
72
73     // Tile loading state
74     enum load_state {
75         Start = 0,
76         Inited = 1,
77         Running = 2
78     };
79
80     load_state state;
81
82     enum SCROLL_DIRECTION {
83         SCROLL_INIT = -1,
84         SCROLL_NONE = 0,
85         SCROLL_NORTH,
86         SCROLL_EAST,
87         SCROLL_SOUTH,
88         SCROLL_WEST,
89     };
90
91     SCROLL_DIRECTION scroll_direction;
92
93     // pending tile load queue
94     list < FGLoadRec > load_queue;
95
96     // initialize the cache
97     void initialize_queue( void );
98
99     FGBucket BucketOffset( int dx, int dy );
100
101     // schedule a tile for loading
102     int sched_tile( const FGBucket& b );
103
104     // load a tile
105     void load_tile( const FGBucket& b, int cache_index );
106
107     // schedule a tile row(column) for loading
108     void scroll( void );
109
110     // see comment at prep_ssg_nodes()
111     void prep_ssg_node( int idx );
112         
113     // int hitcount;
114     // sgdVec3 hit_pts [ MAX_HITS ] ;
115
116     // ssgEntity *last_hit;
117     FGHitList hit_list;
118
119     FGBucket previous_bucket;
120     FGBucket current_bucket;
121     FGBucket pending;
122         
123     FGTileEntry *current_tile;
124         
125     // index of current tile in tile cache;
126     long int tile_index;
127     int tile_diameter;
128         
129     // current longitude latitude
130     double longitude;
131     double latitude;
132     double last_longitude;
133     double last_latitude;
134
135 public:
136
137     // Constructor
138     FGTileMgr ( void );
139
140     // Destructor
141     ~FGTileMgr ( void );
142
143     // Initialize the Tile Manager subsystem
144     int init( void );
145
146     // given the current lon/lat, fill in the array of local chunks.
147     // If the chunk isn't already in the cache, then read it from
148     // disk.
149     int update( double junk1, double junk2 );
150
151     // Determine scenery altitude.  Normally this just happens when we
152     // render the scene, but we'd also like to be able to do this
153     // explicitely.  lat & lon are in radians.  abs_view_pos in
154     // meters.  Returns result in meters.
155     void my_ssg_los( string s, ssgBranch *branch, sgdMat4 m, 
156                      const sgdVec3 p, const sgdVec3 dir, sgdVec3 normal );
157         
158     void my_ssg_los( ssgBranch *branch, sgdMat4 m, 
159                      const sgdVec3 p, const sgdVec3 dir,
160                      FGHitList *list );
161
162     bool current_elev_ssg( const Point3D& abs_view_pos, 
163                            const Point3D& view_pos );
164         
165     // Prepare the ssg nodes ... for each tile, set it's proper
166     // transform and update it's range selector based on current
167     // visibilty
168     void prep_ssg_nodes( void );
169 };
170
171
172 // the tile manager
173 extern FGTileMgr global_tile_mgr;
174
175
176 #endif // _TILEMGR_HXX