X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/fc589d03c2e24cca56c03eed0864a2641ece788d..7184955fad5bf76a77e7679584cef80c2165e9aa:/src/vikmaptype.c diff --git a/src/vikmaptype.c b/src/vikmaptype.c index 63a3a774..ae3b8894 100644 --- a/src/vikmaptype.c +++ b/src/vikmaptype.c @@ -1,7 +1,7 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */ /* * viking - * Copyright (C) Guilhem Bonnefille 2009 + * Copyright (C) 2009, Guilhem Bonnefille * * viking is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,26 +16,40 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ + + /** + * SECTION:vikmaptype + * @short_description: the adapter class to support old map source declaration + * + * The #VikMapType class handles is an adapter to allow to reuse + * old map source (see #VikMapsLayer_MapType). + */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "vikmaptype.h" #include "vikmapslayer_compat.h" +#include "download.h" -static guint8 map_type_get_uniq_id (VikMapSource *self); +static const gchar *map_type_get_name (VikMapSource *self); +static guint16 map_type_get_uniq_id (VikMapSource *self); static const gchar *map_type_get_label (VikMapSource *self); static guint16 map_type_get_tilesize_x (VikMapSource *self); static guint16 map_type_get_tilesize_y (VikMapSource *self); static VikViewportDrawMode map_type_get_drawmode (VikMapSource *self); static gboolean map_type_coord_to_mapcoord (VikMapSource *self, const VikCoord *src, gdouble xzoom, gdouble yzoom, MapCoord *dest ); static void map_type_mapcoord_to_center_coord (VikMapSource *self, MapCoord *src, VikCoord *dest); -static int map_type_download (VikMapSource * self, MapCoord * src, const gchar * dest_fn); +static DownloadResult_t map_type_download (VikMapSource * self, MapCoord * src, const gchar * dest_fn, void * handle); +static void * map_type_download_handle_init (VikMapSource * self); +static void map_type_download_handle_cleanup (VikMapSource * self, void * handle); typedef struct _VikMapTypePrivate VikMapTypePrivate; struct _VikMapTypePrivate { gchar *label; + gchar *name; VikMapsLayer_MapType map_type; }; @@ -49,6 +63,7 @@ vik_map_type_init (VikMapType *object) { VikMapTypePrivate *priv = VIK_MAP_TYPE_PRIVATE(object); priv->label = NULL; + priv->name = NULL; } VikMapType * @@ -78,6 +93,7 @@ vik_map_type_class_init (VikMapTypeClass *klass) VikMapSourceClass* parent_class = VIK_MAP_SOURCE_CLASS (klass); /* Overiding methods */ + parent_class->get_name = map_type_get_name; parent_class->get_uniq_id = map_type_get_uniq_id; parent_class->get_label = map_type_get_label; parent_class->get_tilesize_x = map_type_get_tilesize_x; @@ -86,17 +102,28 @@ vik_map_type_class_init (VikMapTypeClass *klass) parent_class->coord_to_mapcoord = map_type_coord_to_mapcoord; parent_class->mapcoord_to_center_coord = map_type_mapcoord_to_center_coord; parent_class->download = map_type_download; + parent_class->download_handle_init = map_type_download_handle_init; + parent_class->download_handle_cleanup = map_type_download_handle_cleanup; g_type_class_add_private (klass, sizeof (VikMapTypePrivate)); object_class->finalize = vik_map_type_finalize; } -static guint8 +static const gchar * +map_type_get_name (VikMapSource *self) +{ + VikMapTypePrivate *priv = VIK_MAP_TYPE_PRIVATE(self); + g_return_val_if_fail (priv != NULL, NULL); + + return priv->name; +} + +static guint16 map_type_get_uniq_id (VikMapSource *self) { VikMapTypePrivate *priv = VIK_MAP_TYPE_PRIVATE(self); - g_return_val_if_fail (priv != NULL, (guint8)0); + g_return_val_if_fail (priv != NULL, (guint16)0); return priv->map_type.uniq_id; } @@ -152,15 +179,32 @@ map_type_mapcoord_to_center_coord (VikMapSource *self, MapCoord *src, VikCoord * VikMapTypePrivate *priv = VIK_MAP_TYPE_PRIVATE(self); g_return_if_fail (self != NULL); - return (priv->map_type.mapcoord_to_center_coord)(src, dest); + (priv->map_type.mapcoord_to_center_coord)(src, dest); +} + +static DownloadResult_t +map_type_download (VikMapSource * self, MapCoord * src, const gchar * dest_fn, void * handle) +{ + VikMapTypePrivate *priv = VIK_MAP_TYPE_PRIVATE(self); + g_return_val_if_fail (priv != NULL, 0); + + return (priv->map_type.download)(src, dest_fn, handle); } -static int -map_type_download (VikMapSource * self, MapCoord * src, const gchar * dest_fn) +static void * +map_type_download_handle_init (VikMapSource * self) { VikMapTypePrivate *priv = VIK_MAP_TYPE_PRIVATE(self); g_return_val_if_fail (priv != NULL, 0); - return (priv->map_type.download)(src, dest_fn); + return (priv->map_type.download_handle_init)(); } +static void +map_type_download_handle_cleanup (VikMapSource * self, void * handle) +{ + VikMapTypePrivate *priv = VIK_MAP_TYPE_PRIVATE(self); + g_return_if_fail ( priv != NULL ); + + (priv->map_type.download_handle_cleanup)(handle); +}