]> Pileus Git - grits/blob - src/plugins/map.c
5799ca05eb6c1b6709dd9279c4459f755b1c4254
[grits] / src / plugins / map.c
1 /*
2  * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /**
19  * SECTION:map
20  * @short_description: Map plugin
21  *
22  * #GisPluginMap provides map overlays. Much of this data is obtained from the
23  * OpenStreetMap project.
24  */
25
26 #include <time.h>
27 #include <stdlib.h>
28 #include <glib/gstdio.h>
29 #include <GL/gl.h>
30
31 #include <gis.h>
32
33 #include "map.h"
34
35 #define MAX_RESOLUTION 500
36 #define TILE_WIDTH     1024
37 #define TILE_HEIGHT    512
38
39 static const guchar colormap[][2][4] = {
40         {{0x73, 0x91, 0xad}, {0x73, 0x91, 0xad, 0x20}}, // Oceans
41         {{0xf6, 0xee, 0xee}, {0xf6, 0xee, 0xee, 0x00}}, // Ground
42         {{0xff, 0xff, 0xff}, {0xff, 0xff, 0xff, 0xff}}, // Borders
43         {{0x73, 0x93, 0xad}, {0x73, 0x93, 0xad, 0x40}}, // Lakes
44         {{0xff, 0xe1, 0x80}, {0xff, 0xe1, 0x80, 0x60}}, // Cities
45 };
46
47 struct _LoadTileData {
48         GisPluginMap *map;
49         GisTile      *tile;
50         gchar        *path;
51 };
52 static gboolean _load_tile_cb(gpointer _data)
53 {
54         struct _LoadTileData *data = _data;
55         GisPluginMap *map  = data->map;
56         GisTile      *tile = data->tile;
57         gchar        *path = data->path;
58         g_free(data);
59
60         /* Load pixbuf */
61         g_debug("GisPluginMap: _load_tile_cb start");
62         GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path, NULL);
63         if (!pixbuf) {
64                 g_warning("GisPluginMap: _load_tile - Error loading pixbuf %s", path);
65                 g_remove(path);
66                 g_free(path);
67                 return FALSE;
68         }
69         g_free(path);
70
71         /* Create Texture */
72         guchar   *pixels = gdk_pixbuf_get_pixels(pixbuf);
73         gboolean  alpha  = gdk_pixbuf_get_has_alpha(pixbuf);
74         gint      width  = gdk_pixbuf_get_width(pixbuf);
75         gint      height = gdk_pixbuf_get_height(pixbuf);
76
77         for (int i = 0; i < width*height; i++) {
78                 for (int j = 0; j < G_N_ELEMENTS(colormap); j++) {
79                         if (pixels[i*4+0] == colormap[j][0][0] &&
80                             pixels[i*4+1] == colormap[j][0][1] &&
81                             pixels[i*4+2] == colormap[j][0][2]) {
82                                 pixels[i*4+0] = colormap[j][1][0];
83                                 pixels[i*4+1] = colormap[j][1][1];
84                                 pixels[i*4+2] = colormap[j][1][2];
85                                 pixels[i*4+3] = colormap[j][1][3];
86                                 break;
87                         }
88                 }
89         }
90
91         guint *tex = g_new0(guint, 1);
92         glGenTextures(1, tex);
93         glBindTexture(GL_TEXTURE_2D, *tex);
94
95         glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
96         glPixelStorei(GL_PACK_ALIGNMENT, 1);
97         glTexImage2D(GL_TEXTURE_2D, 0, 4, width, height, 0,
98                         (alpha ? GL_RGBA : GL_RGB), GL_UNSIGNED_BYTE, pixels);
99         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
100         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
101         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
102         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
103         glFlush();
104
105         tile->data = tex;
106         gtk_widget_queue_draw(GTK_WIDGET(map->viewer));
107         g_object_unref(pixbuf);
108         return FALSE;
109 }
110
111 static void _load_tile(GisTile *tile, gpointer _map)
112 {
113         GisPluginMap *map = _map;
114         g_debug("GisPluginMap: _load_tile start %p", g_thread_self());
115         struct _LoadTileData *data = g_new0(struct _LoadTileData, 1);
116         data->map  = map;
117         data->tile = tile;
118         data->path = gis_wms_fetch(map->wms, tile, GIS_ONCE, NULL, NULL);
119         g_idle_add_full(G_PRIORITY_LOW, _load_tile_cb, data, NULL);
120         g_debug("GisPluginMap: _load_tile end %p", g_thread_self());
121 }
122
123 static gboolean _free_tile_cb(gpointer data)
124 {
125         glDeleteTextures(1, data);
126         g_free(data);
127         return FALSE;
128 }
129 static void _free_tile(GisTile *tile, gpointer _map)
130 {
131         GisPluginMap *map = _map;
132         g_debug("GisPluginMap: _free_tile: %p", tile->data);
133         if (tile->data)
134                 g_idle_add_full(G_PRIORITY_LOW, _free_tile_cb, tile->data, NULL);
135 }
136
137 static gpointer _update_tiles(gpointer _map)
138 {
139         g_debug("GisPluginMap: _update_tiles");
140         GisPluginMap *map = _map;
141         if (!g_mutex_trylock(map->mutex))
142                 return NULL;
143         GisPoint eye;
144         gis_viewer_get_location(map->viewer, &eye.lat, &eye.lon, &eye.elev);
145         gis_tile_update(map->tiles, &eye,
146                         MAX_RESOLUTION, TILE_WIDTH, TILE_WIDTH,
147                         _load_tile, map);
148         gis_tile_gc(map->tiles, time(NULL)-10,
149                         _free_tile, map);
150         g_mutex_unlock(map->mutex);
151         return NULL;
152 }
153
154 /*************
155  * Callbacks *
156  *************/
157 static void _on_location_changed(GisViewer *viewer,
158                 gdouble lat, gdouble lon, gdouble elev, GisPluginMap *map)
159 {
160         g_thread_create(_update_tiles, map, FALSE, NULL);
161 }
162
163 static gpointer _threaded_init(GisPluginMap *map)
164 {
165         _load_tile(map->tiles, map);
166         _update_tiles(map);
167         return NULL;
168 }
169
170 /***********
171  * Methods *
172  ***********/
173 /**
174  * gis_plugin_map_new:
175  * @viewer: the #GisViewer to use for drawing
176  *
177  * Create a new instance of the map plugin.
178  *
179  * Returns: the new #GisPluginMap
180  */
181 GisPluginMap *gis_plugin_map_new(GisViewer *viewer)
182 {
183         g_debug("GisPluginMap: new");
184         GisPluginMap *map = g_object_new(GIS_TYPE_PLUGIN_MAP, NULL);
185         map->viewer = g_object_ref(viewer);
186
187         /* Load initial tiles */
188         g_thread_create((GThreadFunc)_threaded_init, map, FALSE, NULL);
189
190         /* Connect signals */
191         map->sigid = g_signal_connect(map->viewer, "location-changed",
192                         G_CALLBACK(_on_location_changed), map);
193
194         /* Add renderers */
195         gis_viewer_add(viewer, GIS_OBJECT(map->tiles), GIS_LEVEL_OVERLAY-1, 0);
196
197         return map;
198 }
199
200
201 /****************
202  * GObject code *
203  ****************/
204 /* Plugin init */
205 static void gis_plugin_map_plugin_init(GisPluginInterface *iface);
206 G_DEFINE_TYPE_WITH_CODE(GisPluginMap, gis_plugin_map, G_TYPE_OBJECT,
207                 G_IMPLEMENT_INTERFACE(GIS_TYPE_PLUGIN,
208                         gis_plugin_map_plugin_init));
209 static void gis_plugin_map_plugin_init(GisPluginInterface *iface)
210 {
211         g_debug("GisPluginMap: plugin_init");
212         /* Add methods to the interface */
213 }
214 /* Class/Object init */
215 static void gis_plugin_map_init(GisPluginMap *map)
216 {
217         g_debug("GisPluginMap: init");
218         /* Set defaults */
219         map->mutex  = g_mutex_new();
220         map->tiles  = gis_tile_new(NULL, NORTH, SOUTH, EAST, WEST);
221         map->wms    = gis_wms_new(
222                 "http://labs.metacarta.com/wms/vmap0", "basic", "image/png",
223                 "osm/", "png", TILE_WIDTH, TILE_HEIGHT);
224 }
225 static void gis_plugin_map_dispose(GObject *gobject)
226 {
227         g_debug("GisPluginMap: dispose");
228         GisPluginMap *map = GIS_PLUGIN_MAP(gobject);
229         /* Drop references */
230         if (map->viewer) {
231                 g_signal_handler_disconnect(map->viewer, map->sigid);
232                 g_object_unref(map->viewer);
233                 map->viewer = NULL;
234         }
235         G_OBJECT_CLASS(gis_plugin_map_parent_class)->dispose(gobject);
236 }
237 static void gis_plugin_map_finalize(GObject *gobject)
238 {
239         g_debug("GisPluginMap: finalize");
240         GisPluginMap *map = GIS_PLUGIN_MAP(gobject);
241         /* Free data */
242         gis_tile_free(map->tiles, _free_tile, map);
243         gis_wms_free(map->wms);
244         g_mutex_free(map->mutex);
245         G_OBJECT_CLASS(gis_plugin_map_parent_class)->finalize(gobject);
246
247 }
248 static void gis_plugin_map_class_init(GisPluginMapClass *klass)
249 {
250         g_debug("GisPluginMap: class_init");
251         GObjectClass *gobject_class = (GObjectClass*)klass;
252         gobject_class->dispose  = gis_plugin_map_dispose;
253         gobject_class->finalize = gis_plugin_map_finalize;
254 }