]> Pileus Git - grits/blobdiff - src/tile_test.c
Update copyright and email address
[grits] / src / tile_test.c
index dd27cc7c9428378ce4b68a0a3737e856c0cebf7e..ccac9f3b256ab3582b1f890f63d2c7eb8eb86e11 100644 (file)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #include <gtk/gtk.h>
 #include <gdk/gdkkeysyms.h>
 
@@ -29,32 +46,58 @@ void chunk_callback(gsize cur, gsize total, gpointer _state)
                gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(state->progress), (gdouble)cur/total);
 }
 
-gpointer do_cache(gpointer _image)
+gpointer do_bmng_cache(gpointer _image)
 {
        GtkImage *image = _image;
-       g_message("Creating tile");
+       g_message("Creating bmng tile");
        GisTile *tile = gis_tile_new(NULL, NORTH, SOUTH, EAST, WEST);
        tile->children[0][1] = gis_tile_new(tile, NORTH, 0, 0, WEST);
        tile = tile->children[0][1];
 
-       g_message("Fetching image");
+       g_message("Fetching bmng image");
        GisWms *bmng_wms = gis_wms_new(
                "http://www.nasa.network.com/wms", "bmng200406", "image/jpeg",
                "bmng_test/", "jpg", 512, 256);
        const char *path = gis_wms_make_local(bmng_wms, tile);
 
-       g_message("Loading image: [%s]", path);
+       g_message("Loading bmng image: [%s]", path);
        GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path, NULL);
        gdk_threads_enter();
        gtk_image_set_from_pixbuf(GTK_IMAGE(image), pixbuf);
        gdk_threads_leave();
 
-       g_message("Cleaning up");
+       g_message("Cleaning bmng up");
        gis_wms_free(bmng_wms);
        gis_tile_free(tile, NULL, NULL);
        return NULL;
 }
 
+gpointer do_osm_cache(gpointer _image)
+{
+       GtkImage *image = _image;
+       g_message("Creating osm tile");
+       GisTile *tile = gis_tile_new(NULL, NORTH, SOUTH, EAST, WEST);
+       tile->children[0][1] = gis_tile_new(tile, NORTH, 0, 0, WEST);
+       tile = tile->children[0][1];
+
+       g_message("Fetching osm image");
+       GisWms *osm_wms = gis_wms_new(
+               "http://labs.metacarta.com/wms/vmap0", "basic", "image/png",
+               "osm_test/", "png", 512, 256);
+       const char *path = gis_wms_make_local(osm_wms, tile);
+
+       g_message("Loading osm image: [%s]", path);
+       GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path, NULL);
+       gdk_threads_enter();
+       gtk_image_set_from_pixbuf(GTK_IMAGE(image), pixbuf);
+       gdk_threads_leave();
+
+       g_message("Cleaning osm up");
+       gis_wms_free(osm_wms);
+       gis_tile_free(tile, NULL, NULL);
+       return NULL;
+}
+
 gboolean key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer user_data)
 {
        if (event->keyval == GDK_q)
@@ -75,18 +118,21 @@ int main(int argc, char **argv)
        GtkWidget *scroll     = gtk_scrolled_window_new(NULL, NULL);
        GtkWidget *bmng_image = gtk_image_new();
        GtkWidget *srtm_image = gtk_image_new();
+       GtkWidget *osm_image  = gtk_image_new();
        gtk_container_add(GTK_CONTAINER(win), vbox1);
        gtk_box_pack_start(GTK_BOX(vbox1), scroll, TRUE, TRUE, 0);
        gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scroll), vbox2);
        gtk_box_pack_start(GTK_BOX(vbox2), bmng_image, TRUE, TRUE, 0);
        gtk_box_pack_start(GTK_BOX(vbox2), srtm_image, TRUE, TRUE, 0);
+       gtk_box_pack_start(GTK_BOX(vbox2), osm_image,  TRUE, TRUE, 0);
        gtk_box_pack_start(GTK_BOX(vbox1), status, FALSE, FALSE, 0);
        g_signal_connect(win, "key-press-event", G_CALLBACK(key_press_cb), NULL);
        g_signal_connect(win, "destroy", gtk_main_quit, NULL);
        gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
                        GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
 
-       g_thread_create(do_cache, bmng_image, FALSE, NULL);
+       g_thread_create(do_bmng_cache, bmng_image, FALSE, NULL);
+       g_thread_create(do_osm_cache,  osm_image,  FALSE, NULL);
 
        gtk_widget_show_all(win);
        gtk_main();