Contents of /trunk/src/map-tool.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 143 - (hide annotations)
Mon Oct 26 19:55:00 2009 UTC (14 years, 6 months ago) by harbaum
File MIME type: text/plain
File size: 25546 byte(s)
Hopefully n810 seg fault fix
1 harbaum 33 /*
2 harbaum 55 * Copyright (C) 2008-2009 Till Harbaum <till@harbaum.org>.
3 harbaum 33 *
4     * This file is part of GPXView.
5     *
6     * GPXView is free software: you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation, either version 3 of the License, or
9     * (at your option) any later version.
10     *
11     * GPXView is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with GPXView. If not, see <http://www.gnu.org/licenses/>.
18     */
19    
20 harbaum 93 /*
21     * http://topo.geofabrik.de/relief/${z}/${x}/${y}.png 8-15
22     * http://topo.geofabrik.de/trail/${z}/${x}/${y}.png 8-15
23     */
24    
25 harbaum 33 #include "gpxview.h"
26 harbaum 61 #include "converter.h"
27 harbaum 34 #include <math.h> // for isnan
28 harbaum 33
29     #ifdef ENABLE_OSM_GPS_MAP
30     #include "osm-gps-map.h"
31 harbaum 73 #include "osm-gps-map-osd-classic.h"
32 harbaum 33 #endif
33    
34 harbaum 77 #if defined(USE_MAEMO) && (MAEMO_VERSION_MAJOR == 5)
35     #include <gdk/gdkx.h>
36     #include <X11/Xatom.h>
37     #endif
38    
39 harbaum 98 /* default values */
40 harbaum 84 #define MAP_SOURCE OSM_GPS_MAP_SOURCE_OPENCYCLEMAP
41 harbaum 48 #define GPS_DEFAULT_ZOOM 13
42    
43 harbaum 34 #define PROXY_KEY "/system/http_proxy/"
44    
45     static const char *get_proxy_uri(appdata_t *appdata) {
46     static char proxy_buffer[64] = "";
47 harbaum 33
48 harbaum 143 printf("get_proxy_uri in\n");
49    
50 harbaum 33 /* use environment settings if preset */
51     const char *proxy = g_getenv("http_proxy");
52     if(proxy) {
53     printf("http_proxy: %s\n", proxy);
54     return proxy;
55     }
56    
57 harbaum 34 /* ------------- get proxy settings -------------------- */
58     if(gconf_client_get_bool(appdata->gconf_client,
59     PROXY_KEY "use_http_proxy", NULL)) {
60 harbaum 33
61 harbaum 34 /* we can savely ignore things like "ignore_hosts" since we */
62     /* are pretty sure not inside the net of one of our map renderers */
63     /* (unless the user works at google :-) */
64    
65     /* get basic settings */
66     char *host =
67     gconf_client_get_string(appdata->gconf_client, PROXY_KEY "host", NULL);
68     if(host) {
69     int port =
70     gconf_client_get_int(appdata->gconf_client, PROXY_KEY "port", NULL);
71 harbaum 33
72 harbaum 34 snprintf(proxy_buffer, sizeof(proxy_buffer),
73     "http://%s:%u", host, port);
74 harbaum 33
75 harbaum 34 g_free(host);
76     }
77 harbaum 35 return proxy_buffer;
78 harbaum 34 }
79    
80 harbaum 143 printf("get_proxy_uri out\n");
81 harbaum 35 return NULL;
82 harbaum 33 }
83    
84 harbaum 66 static void
85 harbaum 73 cb_map_gps(osd_button_t but, map_context_t *context) {
86 harbaum 143 printf("cb_map_gps in\n");
87    
88 harbaum 73 if(but == OSD_GPS) {
89     pos_t *refpos = get_pos(context->appdata);
90     if(refpos && !isnan(refpos->lat) && !isnan(refpos->lon)) {
91 harbaum 81 gint zoom;
92     g_object_get(OSM_GPS_MAP(context->widget), "zoom", &zoom, NULL);
93     if(zoom < 10)
94     osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),
95     refpos->lat, refpos->lon, GPS_DEFAULT_ZOOM);
96     else
97     osm_gps_map_set_center(OSM_GPS_MAP(context->widget),
98     refpos->lat, refpos->lon);
99    
100 harbaum 77 /* re-enable centering */
101     g_object_set(context->widget, "auto-center", TRUE, NULL);
102 harbaum 73 } else {
103     /* no coordinates given: display the entire world */
104     osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),
105     0.0, 0.0, 1);
106     }
107 harbaum 34 }
108 harbaum 143 printf("cb_map_gps out\n");
109 harbaum 33 }
110    
111 harbaum 55 static int dist2pixel(map_context_t *context, float km, float lat) {
112     return 1000.0*km/osm_gps_map_get_scale(OSM_GPS_MAP(context->widget));
113     }
114    
115 harbaum 33 static gboolean map_gps_update(gpointer data) {
116     map_context_t *context = (map_context_t*)data;
117    
118 harbaum 143 printf("map_gps_update in\n");
119    
120 harbaum 51 /* get reference position ... */
121 harbaum 34 pos_t *refpos = get_pos(context->appdata);
122     gboolean ok = (refpos!= NULL) && !isnan(refpos->lat) && !isnan(refpos->lon);
123 harbaum 33
124 harbaum 51 /* ... and enable "goto" button if it's valid */
125 harbaum 66 osm_gps_map_osd_enable_gps (OSM_GPS_MAP(context->widget),
126 harbaum 73 OSM_GPS_MAP_OSD_CALLBACK(ok?cb_map_gps:NULL), context);
127 harbaum 34
128 harbaum 51 if(ok) {
129 harbaum 53 float heading = NAN;
130 harbaum 54 int radius = 0;
131 harbaum 51
132 harbaum 53 if(context->appdata->use_gps) {
133     heading = gps_get_heading(context->appdata);
134    
135     /* get error */
136     float eph = gps_get_eph(context->appdata);
137 harbaum 55 if(!isnan(eph))
138     radius = dist2pixel(context, eph/1000, refpos->lat);
139 harbaum 53 }
140    
141     g_object_set(context->widget, "gps-track-highlight-radius", radius, NULL);
142     osm_gps_map_draw_gps(OSM_GPS_MAP(context->widget),
143 harbaum 51 refpos->lat, refpos->lon, heading);
144     } else
145     osm_gps_map_clear_gps(OSM_GPS_MAP(context->widget));
146    
147 harbaum 143 printf("map_gps_update out\n");
148 harbaum 33 return TRUE;
149     }
150    
151 harbaum 143 static void map_draw_cache(GtkWidget *map, cache_t *cache) {
152     printf("map_draw_cache in\n");
153    
154     GdkPixbuf *icon = icon_get(ICON_CACHE_TYPE, cache->type);
155    
156     /* check if there's also an overwritten coordinate */
157     if(cache->notes && cache->notes->override) {
158     GdkPixbuf *over = icon_get(ICON_MISC, 1);
159    
160     osm_gps_map_add_image(OSM_GPS_MAP(map),
161     cache->notes->pos.lat, cache->notes->pos.lon, icon);
162    
163     osm_gps_map_add_image(OSM_GPS_MAP(map),
164     cache->notes->pos.lat, cache->notes->pos.lon, over);
165     } else {
166     if(!isnan(cache->pos.lat) && !isnan(cache->pos.lon))
167     osm_gps_map_add_image(OSM_GPS_MAP(map),
168     cache->pos.lat, cache->pos.lon, icon);
169     }
170     printf("map_draw_cache out\n");
171     }
172    
173     static void map_draw_gpx(appdata_t *appdata, GtkWidget *map, gpx_t *gpx) {
174     printf("map_draw_gpx in\n");
175    
176     if(!gpx->notes_loaded) {
177     notes_load_all(appdata, gpx);
178     gpx->notes_loaded = TRUE;
179     }
180    
181     cache_t *cache = gpx->cache;
182     while(cache) {
183     map_draw_cache(map, cache);
184     cache = cache->next;
185     }
186     printf("map_draw_gpx out\n");
187     }
188    
189     /* draw geocaches and set window title */
190     static void map_setup(map_context_t *context) {
191     char *name = NULL;
192    
193     printf("map_setup in\n");
194    
195     if(!context->appdata->cur_gpx && !context->appdata->cur_cache) {
196     if(context->state != MAP_ALL) {
197     printf("map_setup(ALL)\n");
198    
199     #ifdef OSD_NAV
200     /* no navigation in this mode */
201     osm_gps_map_osd_clear_nav (OSM_GPS_MAP(context->widget));
202     #endif
203    
204     /* clear all existing ccahe images */
205     osm_gps_map_clear_images (OSM_GPS_MAP(context->widget));
206    
207     /* draw all geocaches */
208     gpx_t *gpx = context->appdata->gpx;
209     while(gpx) {
210     map_draw_gpx(context->appdata, context->widget, gpx);
211     gpx = gpx->next;
212     }
213     name = g_strdup(_("all"));
214     context->state = MAP_ALL;
215     }
216     } else if(!context->appdata->cur_cache) {
217     if(context->state != MAP_GPX) {
218     printf("map_setup(GPX)\n");
219    
220     #ifdef OSD_NAV
221     /* no navigation in this mode */
222     osm_gps_map_osd_clear_nav (OSM_GPS_MAP(context->widget));
223     #endif
224    
225     /* clear all existing ccahe images */
226     osm_gps_map_clear_images (OSM_GPS_MAP(context->widget));
227    
228     map_draw_gpx(context->appdata, context->widget,
229     context->appdata->cur_gpx);
230     name = g_strdup(context->appdata->cur_gpx->name);
231     context->state = MAP_GPX;
232     }
233     } else {
234     cache_t *cache = context->appdata->cur_cache;
235    
236     printf("map_setp(CACHE)\n");
237    
238     /* no balloons in this mode */
239     context->balloon = NULL;
240     osm_gps_map_osd_clear_balloon (OSM_GPS_MAP(context->widget));
241    
242     /* clear all existing ccahe images */
243     osm_gps_map_clear_images (OSM_GPS_MAP(context->widget));
244    
245     map_draw_cache(context->widget, cache);
246     name = g_strdup(cache->name);
247     context->state = MAP_CACHE;
248    
249     /* navigation in this mode! */
250     pos_t cpos = gpx_cache_pos(cache);
251    
252     #ifdef OSD_NAV
253     osm_gps_map_osd_draw_nav (OSM_GPS_MAP(context->widget),
254     context->appdata->imperial,
255     cpos.lat, cpos.lon, cache->name);
256     #else
257     #warning OSD_NAV not defined!
258     #endif
259     }
260    
261     if(name) {
262     char *title = g_strdup_printf(_("Map - %s"), name);
263     g_free(name);
264    
265     gtk_window_set_title(GTK_WINDOW(context->window), title);
266    
267     g_free(title);
268     } else
269     printf("map_setup(keep)\n");
270    
271     printf("map_setup out\n");
272     }
273    
274 harbaum 35 static gboolean on_map_configure(GtkWidget *widget,
275     GdkEventConfigure *event,
276     map_context_t *context) {
277 harbaum 33
278 harbaum 143 /* for some reason there's a configure event with 1/1 */
279     /* on diablo. We just ignore this! */
280 harbaum 85
281 harbaum 143 printf("on_map_configure %d %d\n",
282     widget->allocation.width,
283     widget->allocation.height);
284    
285     if(!context->map_complete &&
286     (widget->allocation.width > 100) &&
287     (widget->allocation.height > 100)) {
288    
289     /* setup cache state */
290     map_setup(context);
291    
292 harbaum 85 /* set default values if they are invalid */
293     if(!context->appdata->map.zoom ||
294     isnan(context->appdata->map.pos.lat) ||
295     isnan(context->appdata->map.pos.lon)) {
296     printf("no valid map position found\n");
297    
298     pos_t *refpos = get_pos(context->appdata);
299     if(refpos && !isnan(refpos->lat) && !isnan(refpos->lon)) {
300 harbaum 143 printf("use refpos\n");
301    
302 harbaum 85 /* use gps position if present */
303     context->appdata->map.pos = *refpos;
304     context->appdata->map.zoom = GPS_DEFAULT_ZOOM;
305     } else {
306 harbaum 143 printf("use zero pos\n");
307    
308 harbaum 85 /* use world map otherwise */
309     context->appdata->map.pos.lat = 0.0;
310     context->appdata->map.pos.lon = 0.0;
311     context->appdata->map.zoom = 1;
312     }
313     }
314 harbaum 48
315 harbaum 85 /* jump to initial position */
316 harbaum 143 printf("osm_gps_map_set_mapcenter(%f,%f,%d)\n",
317     context->appdata->map.pos.lat,
318     context->appdata->map.pos.lon,
319     context->appdata->map.zoom);
320    
321 harbaum 85 osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),
322     context->appdata->map.pos.lat,
323     context->appdata->map.pos.lon,
324     context->appdata->map.zoom);
325     context->map_complete = TRUE;
326 harbaum 48 }
327 harbaum 35
328 harbaum 143 printf("map configure done\n");
329 harbaum 35 return FALSE;
330     }
331    
332 harbaum 41 static void
333     map_cachelist_nearest(cache_t *cache, pos_t *pos,
334     cache_t **result, float *distance) {
335 harbaum 143 printf("map_cachelist_nearest in\n");
336 harbaum 41 while(cache) {
337 harbaum 120 pos_t cpos = gpx_cache_pos(cache);
338    
339 harbaum 41 float dist =
340 harbaum 120 pow(cpos.lat - pos->lat, 2) +
341     pow(cpos.lon - pos->lon, 2);
342 harbaum 41
343     if(!(dist > *distance)) {
344     *result = cache;
345     *distance = dist;
346     }
347    
348     cache = cache->next;
349     }
350 harbaum 143 printf("map_cachelist_nearest out\n");
351 harbaum 41 }
352    
353     static cache_t *map_closest(map_context_t *context, pos_t *pos) {
354     cache_t *result = NULL;
355     float distance = NAN;
356    
357 harbaum 143 printf("map_closest in\n");
358    
359 harbaum 120 if(!context->appdata->cur_gpx && !context->appdata->cur_cache) {
360 harbaum 41 /* search all geocaches */
361     gpx_t *gpx = context->appdata->gpx;
362     while(gpx) {
363     map_cachelist_nearest(gpx->cache, pos, &result, &distance);
364     gpx = gpx->next;
365     }
366 harbaum 120 } else if(context->appdata->cur_gpx) {
367 harbaum 41 map_cachelist_nearest(context->appdata->cur_gpx->cache,
368     pos, &result, &distance);
369 harbaum 120 } else
370     result = context->appdata->cur_gpx->cache;
371 harbaum 41
372 harbaum 143 printf("map_closest out\n");
373 harbaum 41 return result;
374     }
375    
376     /* translate between osm-gps-map positions and gpxview ones */
377     pos_t coord2pos(coord_t coo) {
378     pos_t pos;
379 harbaum 61 pos.lat = rad2deg(coo.rlat);
380     pos.lon = rad2deg(coo.rlon);
381 harbaum 41 return pos;
382     }
383    
384 harbaum 47 #define CLICK_FUZZ (24)
385 harbaum 42
386 harbaum 41 static gboolean
387     on_map_button_press_event(GtkWidget *widget,
388     GdkEventButton *event, map_context_t *context) {
389 harbaum 143 printf("on_map_button_press_event in\n");
390    
391 harbaum 41 OsmGpsMap *map = OSM_GPS_MAP(context->widget);
392    
393 harbaum 86 /* check if we actually clicked parts of the OSD */
394 harbaum 143 if(osm_gps_map_osd_check(map, event->x, event->y) != OSD_NONE) {
395     printf("on_map_button_press_event out 1\n");
396 harbaum 86 return FALSE;
397 harbaum 143 }
398 harbaum 86
399 harbaum 44 /* got a press event without release event? eat it! */
400     if(context->press_on != NULL) {
401     printf("PRESS: already\n");
402 harbaum 86 return FALSE;
403 harbaum 44 }
404    
405 harbaum 41 pos_t pos =
406 harbaum 42 coord2pos(osm_gps_map_get_co_ordinates(map, event->x, event->y));
407 harbaum 41
408 harbaum 42 cache_t *nearest = map_closest(context, &pos);
409     if(nearest) {
410 harbaum 120 pos_t cpos = gpx_cache_pos(nearest);
411    
412     float dist = gpx_pos_get_distance(pos, cpos, FALSE);
413     if(dist2pixel(context, dist, cpos.lat) < CLICK_FUZZ)
414 harbaum 42 context->press_on = nearest;
415     }
416 harbaum 44
417 harbaum 143 printf("on_map_button_press_event out\n");
418 harbaum 41 return FALSE;
419     }
420    
421 harbaum 58 static void
422     cairo_draw_pixbuf(cairo_t *cr, GdkPixbuf *buf, gint x, gint y) {
423     /* convert the pixbuf into something cairo can handle */
424    
425 harbaum 143 printf("cairo_draw_pixbuf in\n");
426    
427 harbaum 58 // Create a new ImageSurface
428     cairo_surface_t *image_surface =
429     cairo_image_surface_create(CAIRO_FORMAT_ARGB32,
430     gdk_pixbuf_get_width(buf),
431     gdk_pixbuf_get_height(buf));
432    
433     // Create the new Context for the ImageSurface
434     cairo_t *context = cairo_create(image_surface);
435    
436     // Draw the image on the new Context
437     gdk_cairo_set_source_pixbuf(context, buf, 0.0, 0.0);
438     cairo_paint(context);
439    
440     // now draw this onto the original context
441     cairo_set_source_surface(cr, image_surface, x, y);
442 harbaum 60
443 harbaum 58 cairo_paint(cr);
444 harbaum 143 printf("cairo_draw_pixbuf out\n");
445 harbaum 58 }
446    
447 harbaum 65 #ifndef BIG_BALLOONS
448 harbaum 60 #define LINE_SKIP 7
449 harbaum 65 #else
450     #define LINE_SKIP 12
451     #endif
452 harbaum 59
453 harbaum 58 static void
454 harbaum 136 balloon_cb(osm_gps_map_balloon_event_t *event, gpointer data) {
455 harbaum 143 printf("balloon event:\n");
456    
457 harbaum 136 map_context_t *context = (map_context_t*)data;
458     cache_t *cache = context->balloon;
459 harbaum 58
460 harbaum 136 if(event->type == OSM_GPS_MAP_BALLOON_EVENT_TYPE_DRAW) {
461     printf("draw\n");
462    
463 harbaum 58 #if 0
464 harbaum 136 /* draw pink background to check clipping */
465     cairo_rectangle (event->data.draw.cr,
466     event->data.draw.rect->x-20, event->data.draw.rect->y-20,
467     event->data.draw.rect->w+40, event->data.draw.rect->h+40);
468     cairo_set_source_rgba (event->data.draw.cr, 1, 0, 0, 0.3);
469     cairo_fill_preserve (event->data.draw.cr);
470     cairo_set_line_width (event->data.draw.cr, 0);
471     cairo_stroke (event->data.draw.cr);
472 harbaum 58 #endif
473 harbaum 136
474     /* leave a little border top and left */
475     gint x = event->data.draw.rect->x, y = event->data.draw.rect->y;
476    
477     /* draw the cache type icon ... */
478     GdkPixbuf *icon = icon_get(ICON_CACHE_TYPE, cache->type);
479     cairo_draw_pixbuf(event->data.draw.cr, icon, x, y);
480    
481     if(cache->notes && cache->notes->override) {
482     GdkPixbuf *over = icon_get(ICON_MISC, 1);
483     cairo_draw_pixbuf(event->data.draw.cr, over, x, y);
484     }
485    
486     /* ... and right of it the waypoint id */
487     cairo_text_extents_t extents;
488    
489     if(cache->id) {
490     cairo_select_font_face (event->data.draw.cr, "Sans",
491     CAIRO_FONT_SLANT_NORMAL,
492     CAIRO_FONT_WEIGHT_BOLD);
493    
494 harbaum 65 #ifndef BIG_BALLOONS
495 harbaum 136 cairo_set_font_size (event->data.draw.cr, 20.0);
496 harbaum 65 #else
497 harbaum 136 cairo_set_font_size (event->data.draw.cr, 36.0);
498 harbaum 65 #endif
499 harbaum 136
500     cairo_text_extents (event->data.draw.cr, cache->id, &extents);
501    
502     /* display id right of icon vertically centered */
503     x += gdk_pixbuf_get_width(icon) + 5;
504     y += (gdk_pixbuf_get_height(icon) + extents.height)/2;
505     cairo_move_to (event->data.draw.cr, x, y);
506     cairo_set_source_rgba (event->data.draw.cr, 0, 0, 0, 1);
507     cairo_show_text (event->data.draw.cr, cache->id);
508     cairo_stroke (event->data.draw.cr);
509    
510     y += (gdk_pixbuf_get_height(icon) - extents.height)/2 + LINE_SKIP;
511     } else
512     y += gdk_pixbuf_get_height(icon);
513    
514     /* return to the left border and below icon/text */
515     x = event->data.draw.rect->x;
516    
517     /* everything from here uses the same font */
518     cairo_select_font_face (event->data.draw.cr, "Sans", CAIRO_FONT_SLANT_NORMAL,
519     CAIRO_FONT_WEIGHT_NORMAL);
520 harbaum 65 #ifndef BIG_BALLOONS
521 harbaum 136 cairo_set_font_size (event->data.draw.cr, 14.0);
522 harbaum 65 #else
523 harbaum 136 cairo_set_font_size (event->data.draw.cr, 22.0);
524 harbaum 65 #endif
525 harbaum 136
526     if(cache->name) {
527     /* draw cache name */
528     cairo_text_extents (event->data.draw.cr, cache->name, &extents);
529     y += extents.height;
530     cairo_move_to (event->data.draw.cr, x, y);
531     cairo_set_source_rgba (event->data.draw.cr, 0, 0, 0, 1);
532     cairo_show_text (event->data.draw.cr, cache->name);
533     cairo_stroke (event->data.draw.cr);
534    
535     /* return to the left border and below text */
536     y += LINE_SKIP;
537     x = event->data.draw.rect->x;
538     }
539    
540     if(cache->terrain) {
541     /* draw cache rating */
542     const char *terrain = "Terrain:";
543     icon = icon_get(ICON_STARS, (int)(cache->terrain*2-2));
544     cairo_text_extents (event->data.draw.cr, _(terrain), &extents);
545     y += (gdk_pixbuf_get_height(icon) + extents.height)/2;
546    
547     /* draw "Terrain:" string */
548     cairo_move_to (event->data.draw.cr, x, y);
549     cairo_set_source_rgba (event->data.draw.cr, 0, 0, 0, 1);
550     cairo_show_text (event->data.draw.cr, _(terrain));
551     cairo_stroke (event->data.draw.cr);
552     x += extents.width + 2;
553    
554     /* draw terrain stars */
555     cairo_draw_pixbuf(event->data.draw.cr, icon, x, y -
556     (gdk_pixbuf_get_height(icon) + extents.height)/2);
557    
558     x += gdk_pixbuf_get_width(icon) + LINE_SKIP;
559 harbaum 60 y -= (gdk_pixbuf_get_height(icon) + extents.height)/2;
560 harbaum 136 }
561 harbaum 60
562 harbaum 136 if(cache->difficulty) {
563     const char *difficulty = "Difficulty:";
564     cairo_text_extents (event->data.draw.cr, _(difficulty), &extents);
565     y += (gdk_pixbuf_get_height(icon) + extents.height)/2;
566    
567     /* draw "Difficulty:" string */
568     cairo_move_to (event->data.draw.cr, x, y);
569     cairo_set_source_rgba (event->data.draw.cr, 0, 0, 0, 1);
570     cairo_show_text (event->data.draw.cr, _(difficulty));
571     cairo_stroke (event->data.draw.cr);
572     x += extents.width + 2;
573    
574     icon = icon_get(ICON_STARS, (int)(cache->difficulty*2-2));
575     cairo_draw_pixbuf(event->data.draw.cr, icon, x, y -
576 harbaum 60 (gdk_pixbuf_get_height(icon) + extents.height)/2);
577 harbaum 136 }
578     } else if(event->type == OSM_GPS_MAP_BALLOON_EVENT_TYPE_CLICK) {
579     printf("click %s event at %d %d\n",
580     event->data.click.down?"down":"up",
581     event->data.click.x, event->data.click.y);
582    
583 harbaum 142 /* make the main screen jump to that cache */
584     if(!event->data.click.down) {
585     if(context->appdata->cur_cache) {
586     printf("ERROR: no current cache should be visible!\n");
587     } else {
588     gpx_t *is_in = NULL;
589    
590     if(!context->appdata->cur_gpx) {
591     printf("click while in \"all\" view\n");
592    
593     /* we first need to figure out which gpx file this cache */
594     /* is in so we can open it first */
595     gpx_t *gpx = context->appdata->gpx;
596     while(gpx && !is_in) {
597     cache_t *cur = gpx->cache;
598     while(cur && !is_in) {
599     if(cur == cache)
600     is_in = gpx;
601     cur = cur->next;
602     }
603     gpx = gpx->next;
604     }
605    
606     if(is_in)
607     gpxlist_goto_cachelist(context->appdata, is_in);
608    
609     } else
610     /* the simple case: there already is an open gpx file and */
611     /* we just jump into the "cache" view */
612     is_in = context->appdata->cur_gpx;
613    
614     if(is_in) {
615     printf("selecting %s in %s\n",
616     cache->id,
617     context->appdata->cur_gpx->name);
618    
619     cachelist_goto_cache(context->appdata, cache);
620    
621     /* give focus to main screen (important for maemo) */
622     printf("raising main window\n");
623     gtk_window_present(GTK_WINDOW(context->appdata->window));
624     }
625     }
626     }
627 harbaum 136 } else if(event->type == OSM_GPS_MAP_BALLOON_EVENT_TYPE_REMOVED) {
628     printf("removed\n");
629     context->balloon = NULL;
630 harbaum 60 }
631 harbaum 143 printf("balloon out\n");
632 harbaum 58 }
633    
634 harbaum 41 static gboolean
635     on_map_button_release_event(GtkWidget *widget,
636     GdkEventButton *event, map_context_t *context) {
637 harbaum 48 OsmGpsMap *map = OSM_GPS_MAP(context->widget);
638    
639 harbaum 143 printf("on_map_button_release_event in\n");
640    
641 harbaum 133 /* in "MAP_CACHE" state only one cache is visible */
642     /* and the map is in navigation mode. the balloon is */
643     /* pretty useless there */
644     if(context->press_on && (context->state != MAP_CACHE)) {
645    
646 harbaum 57 coord_t coo;
647     coo = osm_gps_map_get_co_ordinates(map, event->x, event->y);
648    
649 harbaum 42 pos_t pos =
650     coord2pos(osm_gps_map_get_co_ordinates(map, event->x, event->y));
651 harbaum 41
652 harbaum 42 cache_t *nearest = map_closest(context, &pos);
653     if(nearest && nearest == context->press_on) {
654 harbaum 120 pos_t cpos = gpx_cache_pos(nearest);
655    
656     float dist = gpx_pos_get_distance(pos, cpos, FALSE);
657     if(dist2pixel(context, dist, cpos.lat) < CLICK_FUZZ) {
658 harbaum 57
659 harbaum 136 context->balloon = nearest;
660 harbaum 120 osm_gps_map_osd_draw_balloon(map, cpos.lat, cpos.lon,
661 harbaum 136 balloon_cb, context);
662 harbaum 57 }
663 harbaum 42 }
664 harbaum 44 context->press_on = NULL;
665 harbaum 48 } else {
666     /* save new map position */
667     gfloat lat, lon;
668     g_object_get(map, "latitude", &lat, "longitude", &lon, NULL);
669     context->appdata->map.pos.lat = lat;
670     context->appdata->map.pos.lon = lon;
671 harbaum 41 }
672    
673 harbaum 143 printf("on_map_button_release_event out\n");
674 harbaum 41 return FALSE;
675     }
676    
677 harbaum 56 static void on_window_destroy(GtkWidget *widget, map_context_t *context) {
678     appdata_t *appdata = context->appdata;
679    
680     printf("destroy map window\n");
681    
682 harbaum 48 /* save map parameters */
683     OsmGpsMap *map = OSM_GPS_MAP(context->widget);
684     gint zoom;
685     g_object_get(map, "zoom", &zoom, NULL);
686     context->appdata->map.zoom = zoom;
687 harbaum 44
688 harbaum 48 gfloat lat, lon;
689     g_object_get(map, "latitude", &lat, "longitude", &lon, NULL);
690     context->appdata->map.pos.lat = lat;
691     context->appdata->map.pos.lon = lon;
692    
693 harbaum 89 gint source;
694     g_object_get(map, "map-source", &source, NULL);
695     context->appdata->map.source = source;
696    
697 harbaum 40 #if MAEMO_VERSION_MAJOR == 5
698     /* restore cur_view */
699     context->appdata->cur_view = context->old_view;
700 harbaum 56 #endif
701 harbaum 40
702     gtk_timeout_remove(context->handler_id);
703 harbaum 56
704 harbaum 40 g_free(context);
705 harbaum 56 appdata->map.context = NULL;
706 harbaum 40 }
707    
708 harbaum 77 #if (MAEMO_VERSION_MAJOR == 5) && !defined(__i386__)
709     /* get access to zoom buttons */
710     static void
711     on_window_realize(GtkWidget *widget, gpointer data) {
712     if (widget->window) {
713     unsigned char value = 1;
714     Atom hildon_zoom_key_atom =
715     gdk_x11_get_xatom_by_name("_HILDON_ZOOM_KEY_ATOM"),
716     integer_atom = gdk_x11_get_xatom_by_name("INTEGER");
717     Display *dpy =
718     GDK_DISPLAY_XDISPLAY(gdk_drawable_get_display(widget->window));
719     Window w = GDK_WINDOW_XID(widget->window);
720    
721     XChangeProperty(dpy, w, hildon_zoom_key_atom,
722     integer_atom, 8, PropModeReplace, &value, 1);
723     }
724     }
725     #endif
726    
727 harbaum 143 /* on maemo a window is either on top or completely invisible. this */
728     /* means that we only need to update the map window if its raised. */
729     /* on ordinary desktops this is different and we always update */
730 harbaum 125
731 harbaum 129 static gboolean on_focus_in(GtkWidget *widget, GdkEventFocus *event,
732     gpointer data) {
733 harbaum 133 printf("map got focus\n");
734 harbaum 130 map_setup((map_context_t*)data);
735 harbaum 129 return FALSE;
736     }
737    
738     void map_update(appdata_t *appdata) {
739 harbaum 143 printf("map_update\n");
740 harbaum 130 #ifndef USE_MAEMO
741     if(appdata->map.context)
742     map_setup(appdata->map.context);
743     #endif
744 harbaum 129 }
745    
746 harbaum 33 void map(appdata_t *appdata) {
747 harbaum 56 map_context_t *context = NULL;
748    
749 harbaum 143 printf("map 1\n");
750    
751 harbaum 56 /* if the map window already exists, just raise it */
752     if(appdata->map.context) {
753 harbaum 125 printf("using existing map!\n");
754 harbaum 56 gtk_window_present(GTK_WINDOW(appdata->map.context->window));
755 harbaum 125 map_setup(appdata->map.context);
756 harbaum 56 return;
757     }
758    
759 harbaum 143 printf("map 2\n");
760    
761 harbaum 56 context = appdata->map.context = g_new0(map_context_t, 1);
762 harbaum 40 context->appdata = appdata;
763 harbaum 85 context->map_complete = FALSE;
764 harbaum 130 context->state = MAP_NONE;
765 harbaum 33
766 harbaum 77 /* cleanup old (pre 0.8.7) path if it exists */
767     char *old_path = g_strdup_printf("%s/map/", appdata->image_path);
768     if(g_file_test(old_path, G_FILE_TEST_IS_DIR)) {
769     printf("old file path %s exists\n", old_path);
770     rmdir_recursive(old_path);
771     }
772    
773 harbaum 143 printf("map 3\n");
774    
775 harbaum 77 /* It is recommanded that all applications share these same */
776     /* map path, so data is only cached once. The path should be: */
777     /* ~/.osm-gps-map on standard PC (users home) */
778     /* /home/user/.osm-gps-map on Maemo5 (ext3 on internal card) */
779     /* /media/mmc2/osm-gps-map on Maemo4 (vfat on internal card) */
780     #if !defined(USE_MAEMO)
781     char *p = getenv("HOME");
782     if(!p) p = "/tmp";
783     char *path = g_strdup_printf("%s/.osm-gps-map", p);
784     #else
785     #if MAEMO_VERSION_MAJOR == 5
786     char *path = g_strdup("/home/user/.osm-gps-map");
787     #else
788     char *path = g_strdup("/media/mmc2/osm-gps-map");
789     #endif
790     #endif
791    
792 harbaum 41 const char *proxy = get_proxy_uri(appdata);
793    
794 harbaum 89 gint source = context->appdata->map.source;
795     if(!source) source = MAP_SOURCE;
796    
797 harbaum 143 printf("map 4\n");
798    
799 harbaum 41 context->widget = g_object_new(OSM_TYPE_GPS_MAP,
800 harbaum 89 "map-source", source,
801 harbaum 55 "tile-cache", path,
802     "auto-center", FALSE,
803     "record-trip-history", FALSE,
804     "show-trip-history", FALSE,
805     proxy?"proxy-uri":NULL, proxy,
806 harbaum 41 NULL);
807    
808     g_free(path);
809    
810 harbaum 73 osm_gps_map_osd_classic_init(OSM_GPS_MAP(context->widget));
811 harbaum 125
812 harbaum 143 printf("map 5\n");
813    
814 harbaum 41 #ifdef USE_MAEMO
815 harbaum 125 /* we don't use a stackable window here on fremantle, since */
816     /* this leaves the main window independent from the map and */
817     /* the user can e.g. still navigate the main menu */
818     context->window = hildon_window_new();
819 harbaum 41
820 harbaum 125 #if (MAEMO_VERSION_MAJOR == 5) && !defined(__i386__)
821 harbaum 77 g_signal_connect(G_OBJECT(context->window), "realize",
822     G_CALLBACK(on_window_realize), NULL);
823     #endif // MAEMO_VERSION
824 harbaum 40 #else
825 harbaum 56 context->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
826     #endif
827 harbaum 33
828 harbaum 143 printf("map 6\n");
829 harbaum 56
830 harbaum 33 #ifndef USE_MAEMO
831 harbaum 56 gtk_window_set_default_size(GTK_WINDOW(context->window), 640, 480);
832 harbaum 33 #endif
833    
834 harbaum 129 g_signal_connect(G_OBJECT(context->widget), "focus-in-event",
835     G_CALLBACK(on_focus_in), context);
836    
837 harbaum 41 g_signal_connect(G_OBJECT(context->widget), "configure-event",
838     G_CALLBACK(on_map_configure), context);
839 harbaum 33
840 harbaum 41 g_signal_connect(G_OBJECT(context->widget), "button-press-event",
841     G_CALLBACK(on_map_button_press_event), context);
842 harbaum 33
843 harbaum 40 g_signal_connect(G_OBJECT(context->widget), "button-release-event",
844     G_CALLBACK(on_map_button_release_event), context);
845 harbaum 33
846     /* install handler for timed updates of the gps button */
847 harbaum 40 context->handler_id = gtk_timeout_add(1000, map_gps_update, context);
848 harbaum 33
849 harbaum 143 printf("map 7\n");
850    
851 harbaum 40 #if MAEMO_VERSION_MAJOR == 5
852     /* prevent some of the main screen things */
853     context->old_view = appdata->cur_view;
854     appdata->cur_view = NULL;
855 harbaum 56 #endif
856 harbaum 40
857 harbaum 143 printf("map 8\n");
858    
859 harbaum 56 g_signal_connect(G_OBJECT(context->window), "destroy",
860 harbaum 40 G_CALLBACK(on_window_destroy), context);
861    
862 harbaum 143 printf("map 9\n");
863 harbaum 63 gtk_container_add(GTK_CONTAINER(context->window), context->widget);
864 harbaum 143 printf("map 10\n");
865 harbaum 56 gtk_widget_show_all(GTK_WIDGET(context->window));
866 harbaum 143
867     printf("map 11\n");
868 harbaum 33 }