]> git.street.me.uk Git - andy/viking.git/blob - src/terraservermapsource.c
Merge branch 'TrackLabelling'
[andy/viking.git] / src / terraservermapsource.c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * viking
4  * Copyright (C) 2009, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
5  * 
6  * viking is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  * 
11  * viking is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along
17  * with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22
23 #ifdef HAVE_MATH_H
24 #include <math.h>
25 #endif
26
27 #include "globals.h"
28 #include "terraservermapsource.h"
29
30 static gboolean _coord_to_mapcoord ( VikMapSource *self, const VikCoord *src, gdouble xzoom, gdouble yzoom, MapCoord *dest );
31 static void _mapcoord_to_center_coord ( VikMapSource *self, MapCoord *src, VikCoord *dest );
32 static gboolean _is_direct_file_access ( VikMapSource *self );
33
34 static gchar *_get_uri( VikMapSourceDefault *self, MapCoord *src );
35 static gchar *_get_hostname( VikMapSourceDefault *self );
36 static DownloadMapOptions *_get_download_options( VikMapSourceDefault *self );
37
38 /* FIXME Huge gruik */
39 static DownloadMapOptions terraserver_options = { FALSE, FALSE, NULL, 0, a_check_map_file, NULL };
40
41 typedef struct _TerraserverMapSourcePrivate TerraserverMapSourcePrivate;
42 struct _TerraserverMapSourcePrivate
43 {
44   guint8 type;
45 };
46
47 #define TERRASERVER_MAP_SOURCE_PRIVATE(o)  (G_TYPE_INSTANCE_GET_PRIVATE ((o), TERRASERVER_TYPE_MAP_SOURCE, TerraserverMapSourcePrivate))
48
49 /* properties */
50 enum
51 {
52   PROP_0,
53
54   PROP_TYPE,
55 };
56
57 G_DEFINE_TYPE (TerraserverMapSource, terraserver_map_source, VIK_TYPE_MAP_SOURCE_DEFAULT);
58
59 static void
60 terraserver_map_source_init (TerraserverMapSource *self)
61 {
62         /* initialize the object here */
63         g_object_set (G_OBJECT (self),
64                       "tilesize-x", 200,
65                       "tilesize-y", 200,
66                       "drawmode", VIK_VIEWPORT_DRAWMODE_UTM,
67                       NULL);
68 }
69
70 static void
71 terraserver_map_source_finalize (GObject *object)
72 {
73         /* TODO: Add deinitalization code here */
74
75         G_OBJECT_CLASS (terraserver_map_source_parent_class)->finalize (object);
76 }
77
78 static void
79 terraserver_map_source_set_property (GObject      *object,
80                                      guint         property_id,
81                                      const GValue *value,
82                                      GParamSpec   *pspec)
83 {
84   TerraserverMapSource *self = TERRASERVER_MAP_SOURCE (object);
85   TerraserverMapSourcePrivate *priv = TERRASERVER_MAP_SOURCE_PRIVATE (self);
86
87   switch (property_id)
88     {
89     case PROP_TYPE:
90       priv->type = g_value_get_uint (value);
91       break;
92
93     default:
94       /* We don't have any other property... */
95       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
96       break;
97     }
98 }
99
100 static void
101 terraserver_map_source_get_property (GObject    *object,
102                                      guint       property_id,
103                                      GValue     *value,
104                                      GParamSpec *pspec)
105 {
106   TerraserverMapSource *self = TERRASERVER_MAP_SOURCE (object);
107   TerraserverMapSourcePrivate *priv = TERRASERVER_MAP_SOURCE_PRIVATE (self);
108
109   switch (property_id)
110     {
111     case PROP_TYPE:
112       g_value_set_uint (value, priv->type);
113       break;
114
115     default:
116       /* We don't have any other property... */
117       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
118       break;
119     }
120 }
121
122 static void
123 terraserver_map_source_class_init (TerraserverMapSourceClass *klass)
124 {
125         GObjectClass* object_class = G_OBJECT_CLASS (klass);
126         VikMapSourceClass* grandparent_class = VIK_MAP_SOURCE_CLASS (klass);
127         VikMapSourceDefaultClass* parent_class = VIK_MAP_SOURCE_DEFAULT_CLASS (klass);
128     GParamSpec *pspec = NULL;
129         
130         object_class->set_property = terraserver_map_source_set_property;
131     object_class->get_property = terraserver_map_source_get_property;
132         
133         /* Overiding methods */
134         grandparent_class->coord_to_mapcoord =        _coord_to_mapcoord;
135         grandparent_class->mapcoord_to_center_coord = _mapcoord_to_center_coord;
136         grandparent_class->is_direct_file_access = _is_direct_file_access;
137         
138         parent_class->get_uri = _get_uri;
139         parent_class->get_hostname = _get_hostname;
140         parent_class->get_download_options = _get_download_options;
141
142         pspec = g_param_spec_uint ("type",
143                                    "Type",
144                                "Type of Terraserver map",
145                                0  /* minimum value */,
146                                G_MAXUINT8 /* maximum value */,
147                                0  /* default value */,
148                                G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
149         g_object_class_install_property (object_class, PROP_TYPE, pspec);
150
151         g_type_class_add_private (klass, sizeof (TerraserverMapSourcePrivate));
152         
153         object_class->finalize = terraserver_map_source_finalize;
154 }
155
156 #define TERRASERVER_SITE "msrmaps.com"
157 #define MARGIN_OF_ERROR 0.001
158
159 static int mpp_to_scale ( gdouble mpp, guint8 type )
160 {
161   mpp *= 4;
162   gint t = (gint) mpp;
163   if ( ABS(mpp - t) > MARGIN_OF_ERROR )
164     return FALSE;
165
166   switch ( t ) {
167     case 1: return (type == 4) ? 8 : 0;
168     case 2: return (type == 4) ? 9 : 0;
169     case 4: return (type != 2) ? 10 : 0;
170     case 8: return 11;
171     case 16: return 12;
172     case 32: return 13;
173     case 64: return 14;
174     case 128: return 15;
175     case 256: return 16;
176     case 512: return 17;
177     case 1024: return 18;
178     case 2048: return 19;
179     default: return 0;
180   }
181 }
182
183 static gdouble scale_to_mpp ( gint scale )
184 {
185   return pow(2,scale - 10);
186 }
187
188 static gboolean
189 _coord_to_mapcoord ( VikMapSource *self, const VikCoord *src, gdouble xmpp, gdouble ympp, MapCoord *dest )
190 {
191         g_return_val_if_fail(TERRASERVER_IS_MAP_SOURCE(self), FALSE);
192         
193         TerraserverMapSourcePrivate *priv = TERRASERVER_MAP_SOURCE_PRIVATE(self);
194         int type = priv->type;
195         if ( src->mode != VIK_COORD_UTM )
196                 return FALSE;
197
198         if ( xmpp != ympp )
199                 return FALSE;
200
201         dest->scale = mpp_to_scale ( xmpp, type );
202         if ( ! dest->scale )
203                 return FALSE;
204
205         dest->x = (gint)(((gint)(src->east_west))/(200*xmpp));
206         dest->y = (gint)(((gint)(src->north_south))/(200*xmpp));
207         dest->z = src->utm_zone;
208         return TRUE;
209 }
210
211 static gboolean
212 _is_direct_file_access ( VikMapSource *self )
213 {
214         return FALSE;
215 }
216
217 static void
218 _mapcoord_to_center_coord ( VikMapSource *self, MapCoord *src, VikCoord *dest )
219 {
220         // FIXME: slowdown here!
221         gdouble mpp = scale_to_mpp ( src->scale );
222         dest->mode = VIK_COORD_UTM;
223         dest->utm_zone = src->z;
224         dest->east_west = ((src->x * 200) + 100) * mpp;
225         dest->north_south = ((src->y * 200) + 100) * mpp;
226 }
227
228 static gchar *
229 _get_uri( VikMapSourceDefault *self, MapCoord *src )
230 {
231         g_return_val_if_fail (TERRASERVER_IS_MAP_SOURCE(self), NULL);
232         
233         TerraserverMapSourcePrivate *priv = TERRASERVER_MAP_SOURCE_PRIVATE(self);
234         int type = priv->type;
235         gchar *uri = g_strdup_printf ( "/tile.ashx?T=%d&S=%d&X=%d&Y=%d&Z=%d", type,
236                                   src->scale, src->x, src->y, src->z );
237         return uri;
238
239
240 static gchar *
241 _get_hostname( VikMapSourceDefault *self )
242 {
243         g_return_val_if_fail (TERRASERVER_IS_MAP_SOURCE(self), NULL);
244         
245         return g_strdup( TERRASERVER_SITE );
246 }
247
248 static DownloadMapOptions *
249 _get_download_options( VikMapSourceDefault *self )
250 {
251         g_return_val_if_fail (TERRASERVER_IS_MAP_SOURCE(self), NULL);
252         
253         return &terraserver_options;
254 }
255
256 TerraserverMapSource *
257 terraserver_map_source_new_with_id (guint16 id, const char *label, int type)
258 {
259         char *copyright = NULL;
260         switch (type)
261         {
262         case 1:
263                 copyright = "© DigitalGlobe";
264                 break;
265         case 2:
266                 copyright = "© LandVoyage";
267                 break;
268         case 4:
269                 copyright = "© DigitalGlobe";
270                 break;
271         default:
272                 g_critical("Houston, we've had a problem. type=%d", type);
273         }
274
275         return g_object_new(TERRASERVER_TYPE_MAP_SOURCE,
276                             "id", id, "label", label, "type", type,
277                             "copyright", copyright,
278                             NULL);
279 }