]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/tileentry.hxx
Check for the plib version when using display lists, just to be sure.
[flightgear.git] / src / Scenery / tileentry.hxx
1 // tileentry.hxx -- routines to handle an individual scenery tile
2 //
3 // Written by Curtis Olson, started May 1998.
4 //
5 // Copyright (C) 1998 - 2001  Curtis L. Olson  - curt@flightgear.org
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 _TILEENTRY_HXX
25 #define _TILEENTRY_HXX
26
27
28 #ifndef __cplusplus                                                          
29 # error This library requires C++
30 #endif                                   
31
32 #ifdef HAVE_CONFIG_H
33 #  include <config.h>
34 #endif
35
36 #include <simgear/compiler.h>
37
38 #include <vector>
39 #include STL_STRING
40
41 #include <simgear/bucket/newbucket.hxx>
42 #include <simgear/math/point3d.hxx>
43 #include <simgear/misc/sg_path.hxx>
44
45 #if defined( sgi )
46 #include <strings.h>
47 #endif
48
49 SG_USING_STD(string);
50 SG_USING_STD(vector);
51
52
53 typedef vector < Point3D > point_list;
54 typedef point_list::iterator point_list_iterator;
55 typedef point_list::const_iterator const_point_list_iterator;
56
57
58 class ssgLeaf;
59 class ssgBranch;
60 class ssgTransform;
61 class ssgSelector;
62 class ssgRangeSelector;
63 class ssgVertexArray;
64 class FGTileEntry;
65
66
67 /**
68  * A class to hold deferred model loading info
69  */
70 class FGDeferredModel {
71
72 private:
73
74     string model_path;
75     string texture_path;
76     FGTileEntry *tile;
77     ssgTransform *obj_trans;
78     SGBucket bucket;
79
80
81 public:
82
83     inline FGDeferredModel() { }
84     inline FGDeferredModel( const string mp, const string tp, SGBucket b,
85                      FGTileEntry *t, ssgTransform *ot )
86     {
87         model_path = mp;
88         texture_path = tp;
89         bucket = b;
90         tile = t;
91         obj_trans = ot;
92     }
93     inline ~FGDeferredModel() { }
94     inline string get_model_path() const { return model_path; }
95     inline string get_texture_path() const { return texture_path; }
96     inline SGBucket get_bucket() const { return bucket; }
97     inline FGTileEntry *get_tile() const { return tile; }
98     inline ssgTransform *get_obj_trans() const { return obj_trans; }
99 };
100
101
102 /**
103  * A class to encapsulate everything we need to know about a scenery tile.
104  */
105 class FGTileEntry {
106
107 public:
108
109     // global tile culling data
110     Point3D center;
111     double bounding_radius;
112     Point3D offset;
113
114     // this tile's official location in the world
115     SGBucket tile_bucket;
116
117 private:
118
119     // ssg tree structure for this tile is as follows:
120     // ssgRoot(scene)
121     //     - ssgBranch(terrain)
122     //        - ssgTransform(tile)
123     //           - ssgRangeSelector(tile)
124     //              - ssgEntity(tile)
125     //                 - kid1(fan)
126     //                 - kid2(fan)
127     //                   ...
128     //                 - kidn(fan)
129
130     // pointer to ssg transform for this tile
131     ssgTransform *terra_transform;
132     ssgTransform *vasi_lights_transform;
133     ssgTransform *rwy_lights_transform;
134     ssgTransform *taxi_lights_transform;
135     ssgTransform *gnd_lights_transform;
136
137     // pointer to ssg range selector for this tile
138     ssgRangeSelector *terra_range;
139     ssgRangeSelector *gnd_lights_range;
140
141     // we create several preset brightness and can choose which one we
142     // want based on lighting conditions.
143     ssgSelector *gnd_lights_brightness;
144
145     // we need to be able to turn runway lights on or off (doing this
146     // via a call back would be nifty, but then the call back needs to
147     // know about the higher level application's global state which is
148     // a problem if we move the code into simgear.)
149     ssgSelector *vasi_lights_selector;
150     ssgSelector *rwy_lights_selector;
151     ssgSelector *taxi_lights_selector;
152
153     /**
154      * Indicates this tile has been loaded from a file and connected
155      * into the scene graph.  Note that this may be set asynchronously
156      * by another thread.
157      */
158     volatile bool loaded;
159
160     /**
161      * Count of pending models to load for this tile.  This tile
162      * cannot be removed until this number reaches zero (i.e. no
163      * pending models to load for this tile.)
164      */
165     volatile int pending_models;
166
167     bool obj_load( const string& path,
168                    ssgBranch* geometry,
169                    ssgBranch* vasi_lights,
170                    ssgBranch* rwy_lights,
171                    ssgBranch* taxi_lights,
172                    ssgVertexArray* gound_lights,
173                    bool is_base );
174
175     ssgLeaf* gen_lights( SGMaterialLib *matlib, ssgVertexArray *lights,
176                          int inc, float bright );
177
178     double timestamp;
179
180     /**
181      * this value is used by the tile scheduler/loader to mark which
182      * tiles are in the primary ring (i.e. the current tile or the
183      * surrounding eight.)  Other routines then can use this as an
184      * optimization and not do some operation to tiles outside of this
185      * inner ring.  (For instance vasi color updating)
186      */
187     bool is_inner_ring;
188
189     /**
190      * this variable tracks the status of the incremental memory
191      * freeing.
192      */
193     enum {
194         NODES = 0x01,
195         VEC_PTRS = 0x02,
196         TERRA_NODE = 0x04,
197         GROUND_LIGHTS = 0x08,
198         VASI_LIGHTS = 0x10,
199         RWY_LIGHTS = 0x20,
200         TAXI_LIGHTS = 0x40,
201         LIGHTMAPS = 0x80
202     };
203     int free_tracker;
204
205 public:
206
207     // Constructor
208     FGTileEntry( const SGBucket& b );
209
210     // Destructor
211     ~FGTileEntry();
212
213     // Clean up the memory used by this tile and delete the arrays
214     // used by ssg as well as the whole ssg branch.  This does a
215     // partial clean up and exits so we can spread the load across
216     // multiple frames.  Returns false if work remaining to be done,
217     // true if dynamically allocated memory used by this tile is
218     // completely freed.
219     bool free_tile();
220
221     // Calculate this tile's offset
222     void SetOffset( const Point3D& p)
223     {
224         offset = center - p;
225     }
226
227     // Return this tile's offset
228     inline Point3D get_offset() const { return offset; }
229
230     // Update the ssg transform node for this tile so it can be
231     // properly drawn relative to our (0,0,0) point
232     void prep_ssg_node( const Point3D& p, sgVec3 up, float vis);
233
234     /**
235      * Load tile data from a file.
236      * @param base name of directory containing tile data file.
237      * @param is_base is this a base terrain object for which we should generate
238      *        random ground light points */
239     void load( const string_list &base_path, bool is_base );
240
241     /**
242      * Return true if the tile entry is loaded, otherwise return false
243      * indicating that the loading thread is still working on this.
244      */
245     inline bool is_loaded() const { return loaded; }
246
247     /**
248      * decrement the pending models count
249      */
250     inline void dec_pending_models() { pending_models--; }
251
252     /**
253      * return the number of remaining pending models for this tile
254      */
255     inline int get_pending_models() const { return pending_models; }
256
257     /**
258      * Return the "bucket" for this tile
259      */
260     inline SGBucket get_tile_bucket() const { return tile_bucket; }
261
262     /**
263      * Apply ssgLeaf::makeDList to all leaf of a branch
264      */
265     void makeDList( ssgBranch *b );
266
267     /**
268      * Add terrain mesh and ground lighting to scene graph.
269      */
270     void add_ssg_nodes( ssgBranch *terrain_branch,
271                         ssgBranch *gnd_lights_branch,
272                         ssgBranch *vasi_lights_branch,
273                         ssgBranch *rwy_lights_branch,
274                         ssgBranch *taxi_lights_branch );
275
276     /**
277      * disconnect terrain mesh and ground lighting nodes from scene
278      * graph for this tile.
279      */
280     void disconnect_ssg_nodes();
281
282         
283     /**
284      * return the SSG Transform node for the terrain
285      */
286     inline ssgTransform *get_terra_transform() { return terra_transform; }
287
288     inline double get_timestamp() const { return timestamp; }
289     inline void set_timestamp( double time_ms ) { timestamp = time_ms; }
290
291     inline bool get_inner_ring() const { return is_inner_ring; }
292     inline void set_inner_ring( bool val ) { is_inner_ring = val; }
293 };
294
295
296 #endif // _TILEENTRY_HXX