1998-01-07 23:23:40 +00:00
|
|
|
/**************************************************************************
|
1998-01-07 23:50:01 +00:00
|
|
|
* tileutils.h -- support routines to handle dynamic management of scenery tiles
|
1998-01-07 23:23:40 +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-01-10 00:01:47 +00:00
|
|
|
#ifndef TILEUTILS_H
|
|
|
|
#define TILEUTILS_H
|
|
|
|
|
|
|
|
|
1998-01-07 23:23:40 +00:00
|
|
|
struct bucket {
|
|
|
|
int lon; /* longitude (-180 to 179) */
|
|
|
|
int lat; /* latitude (-90 to 89) */
|
|
|
|
int x; /* x (0 to 7) */
|
|
|
|
int y; /* y (0 to 7) */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1998-01-07 23:50:01 +00:00
|
|
|
/* Generate the unique scenery tile index containing the specified
|
1998-01-07 23:23:40 +00:00
|
|
|
lon/lat parameters.
|
|
|
|
|
|
|
|
The index is constructed as follows:
|
|
|
|
|
|
|
|
9 bits - to represent 360 degrees of longitude (-180 to 179)
|
|
|
|
8 bits - to represent 180 degrees of latitude (-90 to 89)
|
|
|
|
|
1998-01-07 23:50:01 +00:00
|
|
|
Each 1 degree by 1 degree tile is further broken down into an 8x8
|
1998-01-07 23:23:40 +00:00
|
|
|
grid. So we also need:
|
|
|
|
|
|
|
|
3 bits - to represent x (0 to 7)
|
|
|
|
3 bits - to represent y (0 to 7) */
|
1998-01-10 00:01:47 +00:00
|
|
|
long int gen_index(struct bucket *p);
|
1998-01-07 23:23:40 +00:00
|
|
|
|
|
|
|
|
1998-01-07 23:50:01 +00:00
|
|
|
/* Parse a unique scenery tile index and find the lon, lat, x, and y */
|
1998-01-10 00:01:47 +00:00
|
|
|
void parse_index(long int index, struct bucket *p);
|
1998-01-07 23:23:40 +00:00
|
|
|
|
|
|
|
|
1998-01-07 23:50:01 +00:00
|
|
|
/* Build a path name from an tile index */
|
1998-01-10 00:01:47 +00:00
|
|
|
void gen_base_path(struct bucket *p, char *path);
|
1998-01-07 23:23:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* offset an bucket struct by the specified amounts in the X & Y direction */
|
1998-01-07 23:50:01 +00:00
|
|
|
/* static void offset_bucket(struct bucket *in, struct bucket *out, int x, int y); */
|
1998-01-07 23:23:40 +00:00
|
|
|
|
|
|
|
|
1998-01-07 23:50:01 +00:00
|
|
|
/* Given a lat/lon, find the "bucket" or tile that it falls within */
|
|
|
|
void find_bucket(double lon, double lat, struct bucket *p);
|
1998-01-07 23:23:40 +00:00
|
|
|
|
|
|
|
|
1998-01-07 23:50:01 +00:00
|
|
|
/* Given a lat/lon, fill in the local tile index array */
|
1998-01-13 00:23:08 +00:00
|
|
|
void gen_idx_array(struct bucket *p1, struct bucket *tiles,
|
1998-01-07 23:23:40 +00:00
|
|
|
int width, int height);
|
|
|
|
|
|
|
|
|
1998-01-10 00:01:47 +00:00
|
|
|
#endif /* TILEUTILS_H */
|
|
|
|
|
|
|
|
|
1998-01-07 23:23:40 +00:00
|
|
|
/* $Log$
|
1998-01-13 00:23:08 +00:00
|
|
|
/* Revision 1.4 1998/01/13 00:23:12 curt
|
|
|
|
/* Initial changes to support loading and management of scenery tiles. Note,
|
|
|
|
/* there's still a fair amount of work left to be done.
|
1998-01-07 23:23:40 +00:00
|
|
|
/*
|
1998-01-13 00:23:08 +00:00
|
|
|
* Revision 1.3 1998/01/10 00:01:48 curt
|
|
|
|
* Misc api changes and tweaks.
|
|
|
|
*
|
1998-01-10 00:01:47 +00:00
|
|
|
* Revision 1.2 1998/01/08 02:22:28 curt
|
|
|
|
* Continue working on basic features.
|
|
|
|
*
|
1998-01-08 02:22:26 +00:00
|
|
|
* Revision 1.1 1998/01/07 23:50:52 curt
|
|
|
|
* "area" renamed to "tile"
|
|
|
|
*
|
1998-01-07 23:50:01 +00:00
|
|
|
* Revision 1.1 1998/01/07 23:23:40 curt
|
|
|
|
* Initial revision.
|
|
|
|
*
|
1998-01-07 23:23:40 +00:00
|
|
|
* */
|
|
|
|
|
|
|
|
|