]> git.mxchange.org Git - simgear.git/blob - simgear/bucket/newbucket.cxx
Added a touch of error checking to the screen dump routine, i.e. don't
[simgear.git] / simgear / bucket / newbucket.cxx
1 /**************************************************************************
2  * newbucket.hxx -- new bucket routines for better world modeling
3  *
4  * Written by Curtis L. Olson, started February 1999.
5  *
6  * Copyright (C) 1999  Curtis L. Olson - curt@flightgear.org
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA  02111-1307, USA.
22  *
23  * $Id$
24  **************************************************************************/
25
26
27 #ifdef HAVE_CONFIG_H
28 #  include <config.h>
29 #endif
30
31
32 #include <math.h>
33
34 #include <simgear/misc/fgpath.hxx>
35
36 #include "newbucket.hxx"
37
38
39 // Build the path name for this bucket
40 string FGBucket::gen_base_path() const {
41     // long int index;
42     int top_lon, top_lat, main_lon, main_lat;
43     char hem, pole;
44     char raw_path[256];
45
46     top_lon = lon / 10;
47     main_lon = lon;
48     if ( (lon < 0) && (top_lon * 10 != lon) ) {
49         top_lon -= 1;
50     }
51     top_lon *= 10;
52     if ( top_lon >= 0 ) {
53         hem = 'e';
54     } else {
55         hem = 'w';
56         top_lon *= -1;
57     }
58     if ( main_lon < 0 ) {
59         main_lon *= -1;
60     }
61     
62     top_lat = lat / 10;
63     main_lat = lat;
64     if ( (lat < 0) && (top_lat * 10 != lat) ) {
65         top_lat -= 1;
66     }
67     top_lat *= 10;
68     if ( top_lat >= 0 ) {
69         pole = 'n';
70     } else {
71         pole = 's';
72         top_lat *= -1;
73     }
74     if ( main_lat < 0 ) {
75         main_lat *= -1;
76     }
77
78     sprintf(raw_path, "%c%03d%c%02d/%c%03d%c%02d", 
79             hem, top_lon, pole, top_lat, 
80             hem, main_lon, pole, main_lat);
81
82     FGPath path( raw_path );
83
84     return path.str();
85 }
86
87
88 // find the bucket which is offset by the specified tile units in the
89 // X & Y direction.  We need the current lon and lat to resolve
90 // ambiguities when going from a wider tile to a narrower one above or
91 // below.  This assumes that we are feeding in
92 FGBucket fgBucketOffset( double dlon, double dlat, int dx, int dy ) {
93     FGBucket result( dlon, dlat );
94     double clat = result.get_center_lat() + dy * FG_BUCKET_SPAN;
95
96     // walk dy units in the lat direction
97     result.set_bucket( dlon, clat );
98
99     // find the lon span for the new latitude
100     double span = bucket_span( clat );
101
102     // walk dx units in the lon direction
103     double tmp = dlon + dx * span;
104     while ( tmp < -180.0 ) {
105         tmp += 360.0;
106     }
107     while ( tmp >= 180.0 ) {
108         tmp -= 360.0;
109     }
110     result.set_bucket( tmp, clat );
111
112     return result;
113 }
114
115
116 // calculate the offset between two buckets
117 void fgBucketDiff( const FGBucket& b1, const FGBucket& b2, int *dx, int *dy ) {
118
119     // Latitude difference
120     double c1_lat = b1.get_center_lat();
121     double c2_lat = b2.get_center_lat();
122     double diff_lat = c2_lat - c1_lat;
123
124 #ifdef HAVE_RINT
125     *dy = (int)rint( diff_lat / FG_BUCKET_SPAN );
126 #else
127     if ( diff_lat > 0 ) {
128         *dy = (int)( diff_lat / FG_BUCKET_SPAN + 0.5 );
129     } else {
130         *dy = (int)( diff_lat / FG_BUCKET_SPAN - 0.5 );
131     }
132 #endif
133
134     // longitude difference
135     double c1_lon = b1.get_center_lon();
136     double c2_lon = b2.get_center_lon();
137     double diff_lon = c2_lon - c1_lon;
138     double span;
139     if ( bucket_span(c1_lat) <= bucket_span(c2_lat) ) {
140         span = bucket_span(c1_lat);
141     } else {
142         span = bucket_span(c2_lat);
143     }
144
145 #ifdef HAVE_RINT
146     *dx = (int)rint( diff_lon / span );
147 #else
148     if ( diff_lon > 0 ) {
149         *dx = (int)( diff_lon / span + 0.5 );
150     } else {
151         *dx = (int)( diff_lon / span - 0.5 );
152     }
153 #endif
154 }
155
156