]> git.mxchange.org Git - flightgear.git/blob - Scenery/tilecache.h
10c204b936629c0570c5779d0a296434fc0ca5d5
[flightgear.git] / Scenery / tilecache.h
1 /**************************************************************************
2  * tilecache.h -- routines to handle scenery tile caching
3  *
4  * Written by Curtis Olson, started January 1998.
5  *
6  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * $Id$
23  * (Log is kept at end of this file)
24  **************************************************************************/
25
26
27 #ifndef _TILECACHE_H
28 #define _TILECACHE_H
29
30
31 #ifdef __cplusplus                                                          
32 extern "C" {                            
33 #endif                                   
34
35
36 #include <config.h>
37
38 #ifdef HAVE_WINDOWS_H
39 #  include <windows.h>
40 #endif
41
42 #include <GL/glut.h>
43 #include <XGL/xgl.h>
44
45 #include <Bucket/bucketutils.h>
46 #include <Include/fg_types.h>
47
48 /* For best results ... i.e. to avoid tile load problems and blank areas
49  *
50  * FG_TILE_CACHE_SIZE >= FG_LOCAL_X_Y + 2*max(FG_LOCAL_X, FG_LOCAL_Y) + 1 */
51 #define FG_TILE_CACHE_SIZE 100
52
53
54 /* Tile cache record */
55 struct fgTILE {
56     struct fgBUCKET tile_bucket;
57     GLint display_list;
58     struct fgCartesianPoint local_ref;
59     double bounding_radius;
60     int used;
61     int priority;
62 };
63
64 /* tile cache */
65 extern struct fgTILE tile_cache[FG_TILE_CACHE_SIZE];
66
67
68 /* Initialize the tile cache subsystem */
69 void fgTileCacheInit( void );
70
71 /* Search for the specified "bucket" in the cache */
72 int fgTileCacheExists( struct fgBUCKET *p );
73
74 /* Return index of next available slot in tile cache */
75 int fgTileCacheNextAvail( void );
76
77 /* Fill in a tile cache entry with real data for the specified bucket */
78 void fgTileCacheEntryFillIn( int index, struct fgBUCKET *p );
79
80 /* Return info for a tile cache entry */
81 void fgTileCacheEntryInfo( int index, GLint *display_list, 
82                            struct fgCartesianPoint *local_ref );
83
84
85 #ifdef __cplusplus
86 }
87 #endif
88
89
90 #endif /* _TILECACHE_H */
91
92
93 /* $Log$
94 /* Revision 1.10  1998/04/21 17:02:45  curt
95 /* Prepairing for C++ integration.
96 /*
97  * Revision 1.9  1998/04/14 02:23:17  curt
98  * Code reorganizations.  Added a Lib/ directory for more general libraries.
99  *
100  * Revision 1.8  1998/04/08 23:30:08  curt
101  * Adopted Gnu automake/autoconf system.
102  *
103  * Revision 1.7  1998/04/03 22:11:38  curt
104  * Converting to Gnu autoconf system.
105  *
106  * Revision 1.6  1998/02/18 15:07:10  curt
107  * Tweaks to build with SGI OpenGL (and therefor hopefully other accelerated
108  * drivers will work.)
109  *
110  * Revision 1.5  1998/02/16 13:39:45  curt
111  * Miscellaneous weekend tweaks.  Fixed? a cache problem that caused whole
112  * tiles to occasionally be missing.
113  *
114  * Revision 1.4  1998/01/31 00:43:27  curt
115  * Added MetroWorks patches from Carmen Volpe.
116  *
117  * Revision 1.3  1998/01/29 00:51:40  curt
118  * First pass at tile cache, dynamic tile loading and tile unloading now works.
119  *
120  * Revision 1.2  1998/01/27 00:48:04  curt
121  * Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
122  * system and commandline/config file processing code.
123  *
124  * Revision 1.1  1998/01/24 00:03:29  curt
125  * Initial revision.
126  *
127  */
128
129