1998-01-24 00:03:27 +00:00
|
|
|
/**************************************************************************
|
1998-04-30 12:35:26 +00:00
|
|
|
* tilecache.hxx -- routines to handle scenery tile caching
|
1998-01-24 00:03:27 +00:00
|
|
|
*
|
|
|
|
* Written by Curtis Olson, started January 1998.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
* (Log is kept at end of this file)
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
1998-04-30 12:35:26 +00:00
|
|
|
#ifndef _TILECACHE_HXX
|
|
|
|
#define _TILECACHE_HXX
|
1998-01-24 00:03:27 +00:00
|
|
|
|
|
|
|
|
1998-04-22 13:21:26 +00:00
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
1998-04-21 17:02:27 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1998-04-24 00:51:07 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
1998-04-03 22:09:02 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_WINDOWS_H
|
1998-01-24 00:03:27 +00:00
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <GL/glut.h>
|
|
|
|
#include <XGL/xgl.h>
|
|
|
|
|
1998-04-14 02:23:04 +00:00
|
|
|
#include <Bucket/bucketutils.h>
|
1998-01-27 00:47:41 +00:00
|
|
|
#include <Include/fg_types.h>
|
1998-01-24 00:03:27 +00:00
|
|
|
|
1998-02-16 13:39:42 +00:00
|
|
|
/* For best results ... i.e. to avoid tile load problems and blank areas
|
1998-01-29 00:51:38 +00:00
|
|
|
*
|
1998-05-16 13:09:57 +00:00
|
|
|
* FG_TILE_CACHE_SIZE >= (o->tile_diameter + 1) ** 2 */
|
1998-05-07 23:15:20 +00:00
|
|
|
#define FG_TILE_CACHE_SIZE 121
|
1998-01-24 00:03:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Tile cache record */
|
|
|
|
struct fgTILE {
|
|
|
|
struct fgBUCKET tile_bucket;
|
|
|
|
GLint display_list;
|
1998-05-02 01:52:14 +00:00
|
|
|
fgCartesianPoint3d local_ref;
|
1998-01-31 00:42:57 +00:00
|
|
|
double bounding_radius;
|
1998-01-24 00:03:27 +00:00
|
|
|
int used;
|
1998-01-27 00:47:41 +00:00
|
|
|
int priority;
|
1998-01-24 00:03:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* tile cache */
|
|
|
|
extern struct fgTILE tile_cache[FG_TILE_CACHE_SIZE];
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize the tile cache subsystem */
|
|
|
|
void fgTileCacheInit( void );
|
|
|
|
|
1998-01-29 00:51:38 +00:00
|
|
|
/* Search for the specified "bucket" in the cache */
|
|
|
|
int fgTileCacheExists( struct fgBUCKET *p );
|
|
|
|
|
1998-01-24 00:03:27 +00:00
|
|
|
/* Return index of next available slot in tile cache */
|
|
|
|
int fgTileCacheNextAvail( void );
|
|
|
|
|
|
|
|
/* Fill in a tile cache entry with real data for the specified bucket */
|
|
|
|
void fgTileCacheEntryFillIn( int index, struct fgBUCKET *p );
|
|
|
|
|
|
|
|
/* Return info for a tile cache entry */
|
|
|
|
void fgTileCacheEntryInfo( int index, GLint *display_list,
|
1998-05-16 13:09:57 +00:00
|
|
|
fgCartesianPoint3d *local_ref,
|
|
|
|
double *radius );
|
1998-01-24 00:03:27 +00:00
|
|
|
|
|
|
|
|
1998-04-30 12:35:26 +00:00
|
|
|
#endif /* _TILECACHE_HXX */
|
1998-01-24 00:03:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* $Log$
|
1998-05-16 13:09:57 +00:00
|
|
|
/* Revision 1.7 1998/05/16 13:09:57 curt
|
|
|
|
/* Beginning to add support for view frustum culling.
|
|
|
|
/* Added some temporary code to calculate bouding radius, until the
|
|
|
|
/* scenery generation tools and scenery can be updated.
|
1998-01-24 00:03:27 +00:00
|
|
|
/*
|
1998-05-16 13:09:57 +00:00
|
|
|
* Revision 1.6 1998/05/07 23:15:20 curt
|
|
|
|
* Fixed a glTexImage2D() usage bug where width and height were mis-swapped.
|
|
|
|
* Added support for --tile-radius=n option.
|
|
|
|
*
|
1998-05-07 23:15:20 +00:00
|
|
|
* Revision 1.5 1998/05/02 01:52:17 curt
|
|
|
|
* Playing around with texture coordinates.
|
|
|
|
*
|
1998-05-02 01:52:14 +00:00
|
|
|
* Revision 1.4 1998/04/30 12:35:31 curt
|
|
|
|
* Added a command line rendering option specify smooth/flat shading.
|
|
|
|
*
|
1998-04-30 12:35:26 +00:00
|
|
|
* Revision 1.3 1998/04/25 22:06:32 curt
|
|
|
|
* Edited cvs log messages in source files ... bad bad bad!
|
|
|
|
*
|
1998-04-25 22:06:24 +00:00
|
|
|
* Revision 1.2 1998/04/24 00:51:08 curt
|
|
|
|
* Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
|
|
|
|
* Tweaked the scenery file extentions to be "file.obj" (uncompressed)
|
|
|
|
* or "file.obz" (compressed.)
|
|
|
|
*
|
1998-04-24 00:51:07 +00:00
|
|
|
* Revision 1.1 1998/04/22 13:22:47 curt
|
|
|
|
* C++ - ifing the code a bit.
|
|
|
|
*
|
1998-04-22 13:21:26 +00:00
|
|
|
* Revision 1.10 1998/04/21 17:02:45 curt
|
|
|
|
* Prepairing for C++ integration.
|
|
|
|
*
|
1998-04-21 17:02:27 +00:00
|
|
|
* Revision 1.9 1998/04/14 02:23:17 curt
|
|
|
|
* Code reorganizations. Added a Lib/ directory for more general libraries.
|
|
|
|
*
|
1998-04-14 02:23:04 +00:00
|
|
|
* Revision 1.8 1998/04/08 23:30:08 curt
|
|
|
|
* Adopted Gnu automake/autoconf system.
|
|
|
|
*
|
1998-04-08 23:30:04 +00:00
|
|
|
* Revision 1.7 1998/04/03 22:11:38 curt
|
|
|
|
* Converting to Gnu autoconf system.
|
|
|
|
*
|
1998-04-03 22:09:02 +00:00
|
|
|
* Revision 1.6 1998/02/18 15:07:10 curt
|
|
|
|
* Tweaks to build with SGI OpenGL (and therefor hopefully other accelerated
|
|
|
|
* drivers will work.)
|
|
|
|
*
|
1998-02-18 15:07:02 +00:00
|
|
|
* Revision 1.5 1998/02/16 13:39:45 curt
|
|
|
|
* Miscellaneous weekend tweaks. Fixed? a cache problem that caused whole
|
|
|
|
* tiles to occasionally be missing.
|
|
|
|
*
|
1998-02-16 13:39:42 +00:00
|
|
|
* Revision 1.4 1998/01/31 00:43:27 curt
|
|
|
|
* Added MetroWorks patches from Carmen Volpe.
|
|
|
|
*
|
1998-01-31 00:42:57 +00:00
|
|
|
* Revision 1.3 1998/01/29 00:51:40 curt
|
|
|
|
* First pass at tile cache, dynamic tile loading and tile unloading now works.
|
|
|
|
*
|
1998-01-29 00:51:38 +00:00
|
|
|
* Revision 1.2 1998/01/27 00:48:04 curt
|
1998-04-25 22:06:24 +00:00
|
|
|
* Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
|
1998-01-29 00:51:38 +00:00
|
|
|
* system and commandline/config file processing code.
|
|
|
|
*
|
1998-01-27 00:47:41 +00:00
|
|
|
* Revision 1.1 1998/01/24 00:03:29 curt
|
|
|
|
* Initial revision.
|
|
|
|
*
|
1998-01-24 00:03:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|