Fixed:Core:Improved map querying api
[navit-package] / navit / popup.c
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * version 2 as published by the Free Software Foundation.
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, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #include <stdarg.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <fcntl.h>
24 #include <unistd.h>
25 #include <glib.h>
26 #include "popup.h"
27 #include "debug.h"
28 #include "navit.h"
29 #include "coord.h"
30 #include "gui.h"
31 #include "menu.h"
32 #include "point.h"
33 #include "transform.h"
34 #include "projection.h"
35 #include "item.h"
36 #include "map.h"
37 #include "graphics.h"
38 #include "callback.h"
39 #include "route.h"
40 #include "navit_nls.h"
41
42 #if 0
43 static void
44 popup_set_no_passing(struct popup_item *item, void *param)
45 {
46 #if 0
47         struct display_list *l=param;
48         struct segment *seg=(struct segment *)(l->data);
49         struct street_str *str=(struct street_str *)(seg->data[0]);
50         char log[256];
51         int segid=str->segid;
52         if (segid < 0)
53                 segid=-segid;
54
55         sprintf(log,"Attributes Street 0x%x updated: limit=0x%x(0x%x)", segid, 0x33, str->limit);
56         str->limit=0x33;
57         log_write(log, seg->blk_inf.file, str, sizeof(*str));
58 #endif
59 }
60
61 #endif
62
63 static void
64 popup_set_destination(struct navit *nav, struct pcoord *pc)
65 {
66         struct coord c;
67         struct coord_geo g;
68         char buffer[1024];
69         char buffer_geo[1024];
70         c.x = pc->x;
71         c.y = pc->y;
72         transform_to_geo(transform_get_projection(navit_get_trans(nav)), &c, &g);
73         coord_format(g.lat,g.lng,DEGREES_MINUTES_SECONDS,buffer_geo,sizeof(buffer_geo));
74         sprintf(buffer,"Map Point %s", buffer_geo);
75         navit_set_destination(nav, pc, buffer);
76 }
77
78 static void
79 popup_set_bookmark(struct navit *nav, struct pcoord *pc)
80 {
81         struct coord c;
82         struct coord_geo g;
83         char buffer[1024];
84         char buffer_geo[1024];
85         c.x = pc->x;
86         c.y = pc->y;
87         transform_to_geo(pc->pro, &c, &g);
88         coord_format(g.lat,g.lng,DEGREES_MINUTES_SECONDS,buffer_geo,sizeof(buffer_geo));
89         sprintf(buffer,"Map Point %s", buffer_geo);
90         if (!gui_add_bookmark(navit_get_gui(nav), pc, buffer)) 
91                 navit_add_bookmark(nav, pc, buffer);
92 }
93
94
95 extern void *vehicle;
96
97 static void
98 popup_set_position(struct navit *nav, struct pcoord *pc)
99 {
100         dbg(0,"%p %p\n", nav, pc);
101         navit_set_position(nav, pc);
102 }
103
104 #if 0
105 static void
106 popup_break_crossing(struct display_list *l)
107 {
108         struct segment *seg=(struct segment *)(l->data);
109         struct street_str *str=(struct street_str *)(seg->data[0]);
110         char log[256];
111         int segid=str->segid;
112         if (segid < 0)
113                 segid=-segid;
114
115         sprintf(log,"Coordinates Street 0x%x updated: limit=0x%x(0x%x)", segid, 0x33, str->limit);
116         str->limit=0x33;
117         log_write(log, seg->blk_inf.file, str, sizeof(*str));
118 }
119 #endif
120
121
122 #define popup_printf(menu, type, fmt...) popup_printf_cb(menu, type, NULL, fmt)
123
124 static void *
125 popup_printf_cb(void *menu, enum menu_type type, struct callback *cb, const char *fmt, ...)
126 {
127         gchar *str;
128         va_list ap;
129         void *ret;
130
131         va_start(ap, fmt);
132         str=g_strdup_vprintf(fmt, ap);
133         dbg(0,"%s\n", str);
134         ret=menu_add(menu, str, type, cb);
135         va_end(ap);
136         g_free(str);
137         return ret;
138 }
139
140 static void
141 popup_show_attr_val(struct map *map, void *menu, struct attr *attr)
142 {
143         char *attr_name=attr_to_name(attr->type);
144         char *str;
145
146         str=attr_to_text(attr, map, 1);
147         popup_printf(menu, menu_type_menu, "%s: %s", attr_name, str);
148         g_free(str);
149 }
150
151 #if 0
152 static void
153 popup_show_attr(void *menu, struct item *item, enum attr_type attr_type)
154 {
155         struct attr attr;
156         memset(&attr, 0, sizeof(attr));
157         attr.type=attr_type;
158         if (item_attr_get(item, attr_type, &attr)) 
159                 popup_show_attr_val(menu, &attr);
160 }
161 #endif
162
163 static void
164 popup_show_attrs(struct map *map, void *menu, struct item *item)
165 {
166 #if 0
167         popup_show_attr(menu, item, attr_debug);
168         popup_show_attr(menu, item, attr_address);
169         popup_show_attr(menu, item, attr_phone);
170         popup_show_attr(menu, item, attr_phone);
171         popup_show_attr(menu, item, attr_entry_fee);
172         popup_show_attr(menu, item, attr_open_hours);
173 #else
174         struct attr attr;
175         for (;;) {
176                 memset(&attr, 0, sizeof(attr));
177                 if (item_attr_get(item, attr_any, &attr)) 
178                         popup_show_attr_val(map, menu, &attr);
179                 else
180                         break;
181         }
182         
183 #endif
184 }
185
186 static void
187 popup_show_item(struct navit *nav, void *popup, struct displayitem *di)
188 {
189         struct map_rect *mr;
190         void *menu, *menu_map, *menu_item;
191         char *label;
192         struct item *item;
193
194         label=graphics_displayitem_get_label(di);
195         item=graphics_displayitem_get_item(di);
196
197         if (label) 
198                 menu=popup_printf(popup, menu_type_submenu, "%s '%s'", item_to_name(item->type), label);
199         else
200                 menu=popup_printf(popup, menu_type_submenu, "%s", item_to_name(item->type));
201         menu_item=popup_printf(menu, menu_type_submenu, "Item");
202         popup_printf(menu_item, menu_type_menu, "type: 0x%x", item->type);
203         popup_printf(menu_item, menu_type_menu, "id: 0x%x 0x%x", item->id_hi, item->id_lo);
204         if (item->map) {
205                 mr=map_rect_new(item->map,NULL);
206                 item=map_rect_get_item_byid(mr, item->id_hi, item->id_lo);
207                 dbg(1,"item=%p\n", item);
208                 if (item) {
209                         popup_show_attrs(item->map, menu_item, item);
210                         if (item->type < type_line) {
211                                 struct coord co;
212                                 struct pcoord *c;
213                                 if (item_coord_get(item, &co, 1)) {
214                                         c=g_new(struct pcoord, 1);
215                                         c->pro = transform_get_projection(navit_get_trans(nav));
216                                         c->x = co.x;
217                                         c->y = co.y;
218                                         popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_position), nav, c), _("Set as position"));
219                                         popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_destination), nav, c), _("Set as destination"));
220                                         popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_bookmark), nav, c), _("Add as bookmark"));
221                                 }
222                         }
223                 }
224                 map_rect_destroy(mr);
225                 menu_map=popup_printf(menu, menu_type_submenu, "Map");
226         } else {
227                 popup_printf(menu, menu_type_menu, "(No map)");
228         }
229 }
230
231 static void
232 popup_display(struct navit *nav, void *popup, struct point *p)
233 {
234         struct displaylist_handle *dlh;
235         struct displaylist *display;
236         struct displayitem *di;
237
238         display=navit_get_displaylist(nav);
239         dlh=graphics_displaylist_open(display);
240         while ((di=graphics_displaylist_next(dlh))) {
241                 if (graphics_displayitem_within_dist(di, p, 5)) {
242                         popup_show_item(nav, popup, di);
243                 }
244         }
245         graphics_displaylist_close(dlh);
246 }
247
248 static struct pcoord c;
249
250 void
251 popup(struct navit *nav, int button, struct point *p)
252 {
253         void *popup,*men;
254         char buffer[1024];
255         struct coord_geo g;
256         struct coord co;
257
258         popup=gui_popup_new(navit_get_gui(nav));
259         if (! popup)
260                 return;
261         transform_reverse(navit_get_trans(nav), p, &co);
262         men=popup_printf(popup, menu_type_submenu, _("Point 0x%x 0x%x"), co.x, co.y);
263         popup_printf(men, menu_type_menu, _("Screen coord : %d %d"), p->x, p->y);
264         transform_to_geo(transform_get_projection(navit_get_trans(nav)), &co, &g);
265         coord_format(g.lat,g.lng,DEGREES_MINUTES_SECONDS,buffer,sizeof(buffer));
266         popup_printf(men, menu_type_menu, "%s", buffer);
267         popup_printf(men, menu_type_menu, "%f %f", g.lat, g.lng);
268         dbg(0,"%p %p\n", nav, &c);
269         c.pro = transform_get_projection(navit_get_trans(nav));
270         c.x = co.x;
271         c.y = co.y;
272         popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_position), nav, &c), _("Set as position"));
273         popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_destination), nav, &c), _("Set as destination"));
274         popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_bookmark), nav, &c), _("Add as bookmark"));
275         popup_display(nav, popup, p);
276         menu_popup(popup);
277 }