summaryrefslogtreecommitdiff
path: root/navit/popup.c
blob: 79d997b46187fa2894ca8a55df8c0ed5f3e072ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/**
 * Navit, a modular navigation system.
 * Copyright (C) 2005-2008, 2010 Navit Team
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * 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, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 */

#include "config.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <glib.h>
#include "popup.h"
#include "debug.h"
#include "navit.h"
#include "coord.h"
#include "gui.h"
#include "menu.h"
#include "point.h"
#include "transform.h"
#include "projection.h"
#include "item.h"
#include "map.h"
#include "graphics.h"
#include "callback.h"
#include "route.h"
#include "navit_nls.h"
#include "bookmarks.h"

#if 0
static void popup_set_no_passing(struct popup_item *item, void *param) {
#if 0
    struct display_list *l=param;
    struct segment *seg=(struct segment *)(l->data);
    struct street_str *str=(struct street_str *)(seg->data[0]);
    char log[256];
    int segid=str->segid;
    if (segid < 0)
        segid=-segid;

    sprintf(log,"Attributes Street 0x%x updated: limit=0x%x(0x%x)", segid, 0x33, str->limit);
    str->limit=0x33;
    log_write(log, seg->blk_inf.file, str, sizeof(*str));
#endif
}

#endif

static void popup_traffic_distortion(struct item *item, char *attr) {
    /* add the configuration directory to the name of the file to use */
    char *dist_filename = g_strjoin(NULL, navit_get_user_data_directory(TRUE),
                                    "/distortion.txt", NULL);
    if (dist_filename) {				/* if we built the filename */
        FILE *map=fopen(dist_filename,"a");
        if (map) {					/* if the file was opened */
            struct coord c;
            struct map_rect *mr;
            fprintf(map,"type=traffic_distortion %s\n",attr);
            mr=map_rect_new(item->map,NULL);
            item=map_rect_get_item_byid(mr, item->id_hi, item->id_lo);
            while (item_coord_get(item, &c, 1)) {
                fprintf(map,"0x%x 0x%x\n",c.x,c.y);
            }
            fclose(map);
        } else {
            dbg(lvl_error,"could not open file for distortions !!");

        } /* else - if (map) */
        g_free(dist_filename);			/* free the file name */
    } /* if (dist_filename) */

} /* end: popup_traffic_distortion(..) */


static void popup_traffic_distortion_blocked(struct item *item) {
    dbg(lvl_debug,"item=%p",item);
    popup_traffic_distortion(item, "maxspeed=0");
}

static void popup_traffic_distortion_speed(struct item *item, int maxspeed) {
    char buffer[256];
    sprintf(buffer,"maxspeed=%d",maxspeed);
    popup_traffic_distortion(item,buffer);
}

static void popup_traffic_distortion_delay(struct item *item, int delay) {
    char buffer[256];
    sprintf(buffer,"delay=%d",delay*600);
    popup_traffic_distortion(item,buffer);
}

static void popup_set_destination(struct navit *nav, struct pcoord *pc) {
    struct coord c;
    struct coord_geo g;
    char buffer[1024 +10]; /* +10 for "Map Point "*/
    char buffer_geo[1024];
    c.x = pc->x;
    c.y = pc->y;
    transform_to_geo(transform_get_projection(navit_get_trans(nav)), &c, &g);
    coord_format(g.lat,g.lng,DEGREES_MINUTES_SECONDS,buffer_geo,sizeof(buffer_geo));
    sprintf(buffer,"Map Point %s", buffer_geo);
    navit_set_destination(nav, pc, buffer, 1);
}


void popup_set_visitbefore(struct navit *nav, struct pcoord *pc,int visitbefore) {
    struct pcoord *dst;
    char buffer[1024];
    int i, dstcount_new;
    sprintf(buffer, _("Waypoint %d"), visitbefore+1);
    dstcount_new=navit_get_destination_count(nav)+1;
    dst=g_alloca(dstcount_new*sizeof(struct pcoord));
    navit_get_destinations(nav,dst,dstcount_new);
    for (i=dstcount_new-1; i>visitbefore; i--) {
        dst[i]=dst[i-1];
    }
    dst[visitbefore]=*pc;
    navit_add_destination_description(nav,pc,buffer);
    navit_set_destinations(nav, dst, dstcount_new, buffer, 1);
}



static void popup_set_bookmark(struct navit *nav, struct pcoord *pc) {
    struct attr attr;
    struct coord c;
    struct coord_geo g;
    char buffer[1024 + 10]; /* + 10 for "Map Point " */
    char buffer_geo[1024];
    c.x = pc->x;
    c.y = pc->y;
    transform_to_geo(pc->pro, &c, &g);
    coord_format(g.lat,g.lng,DEGREES_MINUTES_SECONDS,buffer_geo,sizeof(buffer_geo));
    sprintf(buffer,"Map Point %s", buffer_geo);
    if (!gui_add_bookmark(navit_get_gui(nav), pc, buffer)) {
        navit_get_attr(nav, attr_bookmarks, &attr, NULL);
        bookmarks_add_bookmark(attr.u.bookmarks, pc, buffer);
    }
}


extern void *vehicle;

static void popup_set_position(struct navit *nav, struct pcoord *pc) {
    dbg(lvl_debug,"%p %p", nav, pc);
    navit_set_position(nav, pc);
}

#if 0
static void popup_break_crossing(struct display_list *l) {
    struct segment *seg=(struct segment *)(l->data);
    struct street_str *str=(struct street_str *)(seg->data[0]);
    char log[256];
    int segid=str->segid;
    if (segid < 0)
        segid=-segid;

    sprintf(log,"Coordinates Street 0x%x updated: limit=0x%x(0x%x)", segid, 0x33, str->limit);
    str->limit=0x33;
    log_write(log, seg->blk_inf.file, str, sizeof(*str));
}
#endif


#define popup_printf(menu, type, ...) popup_printf_cb(menu, type, NULL, __VA_ARGS__)

static void *popup_printf_cb(void *menu, enum menu_type type, struct callback *cb, const char *fmt, ...) {
    gchar *str,*us;
    int usc=0;
    va_list ap;
    void *ret;

    va_start(ap, fmt);
    str=g_strdup_vprintf(fmt, ap);
    dbg(lvl_debug,"%s", str);
    us=str;
    while (*us) {
        if (*us == '_')
            usc++;
        us++;
    }
    if (usc) {
        gchar *str2=g_malloc(strlen(str)+usc+1);
        gchar *us2=str2;
        us=str;
        while (*us) {
            if (*us == '_')
                *us2++=*us;
            *us2++=*us++;
        }
        *us2='\0';
        g_free(str);
        str=str2;
    }
    ret=menu_add(menu, str, type, cb);
    va_end(ap);
    g_free(str);
    return ret;
}



static void popup_show_visitbefore(struct navit *nav,struct pcoord *pc, void *menu) {
    void *menuvisitbefore;
    char buffer[100];
    int i, dstcount;
    dstcount=navit_get_destination_count(nav);
    if (dstcount>=1) {
        menuvisitbefore=popup_printf(menu, menu_type_submenu, _("Visit before..."));
        for (i=0; i<dstcount; i++) {
            sprintf(buffer,_("Waypoint %d"),i+1);
            popup_printf_cb(menuvisitbefore, menu_type_menu, callback_new_3(callback_cast(popup_set_visitbefore), nav, pc,i),
                            buffer);
        }
    }
}

static void popup_show_attr_val(struct map *map, void *menu, struct attr *attr) {
    char *attr_name=attr_to_name(attr->type);
    char *str;

    str=attr_to_text(attr, map, 1);
    popup_printf(menu, menu_type_menu, "%s: %s", attr_name, str);
    g_free(str);
}

#if 0
static void popup_show_attr(void *menu, struct item *item, enum attr_type attr_type) {
    struct attr attr;
    memset(&attr, 0, sizeof(attr));
    attr.type=attr_type;
    if (item_attr_get(item, attr_type, &attr))
        popup_show_attr_val(menu, &attr);
}
#endif

static void popup_show_attrs(struct map *map, void *menu, struct item *item) {
#if 0
    popup_show_attr(menu, item, attr_debug);
    popup_show_attr(menu, item, attr_address);
    popup_show_attr(menu, item, attr_phone);
    popup_show_attr(menu, item, attr_phone);
    popup_show_attr(menu, item, attr_entry_fee);
    popup_show_attr(menu, item, attr_open_hours);
#else
    struct attr attr;
    for (;;) {
        memset(&attr, 0, sizeof(attr));
        if (item_attr_get(item, attr_any, &attr))
            popup_show_attr_val(map, menu, &attr);
        else
            break;
    }

#endif
}

static void popup_item_dump(struct item *item) {
    struct map_rect *mr;
    mr=map_rect_new(item->map,NULL);
    item=map_rect_get_item_byid(mr, item->id_hi, item->id_lo);
    dbg(lvl_debug,"item=%p",item);
    item_dump_filedesc(item,item->map,stdout);
    map_rect_destroy(mr);
}


static void popup_show_item(struct navit *nav, void *popup, struct displayitem *di) {
    struct map_rect *mr;
    void *menu, *menu_item, *menu_dist;
    char *label;
    struct item *item,*diitem;
    int count;

    label=graphics_displayitem_get_label(di);
    diitem=graphics_displayitem_get_item(di);
    count=graphics_displayitem_get_coord_count(di);

    dbg_assert(diitem);

    if (label)
        menu=popup_printf(popup, menu_type_submenu, "%s '%s' (%d coords)", item_to_name(diitem->type), label, count);
    else
        menu=popup_printf(popup, menu_type_submenu, "%s (%d coords)", item_to_name(diitem->type), count);
    menu_item=popup_printf(menu, menu_type_submenu, "Item");
    popup_printf(menu_item, menu_type_menu, "type: 0x%x", diitem->type);
    popup_printf(menu_item, menu_type_menu, "id: 0x%x 0x%x", diitem->id_hi, diitem->id_lo);
    if (diitem->map) {
        struct attr type,data;
        if (!map_get_attr(diitem->map, attr_type, &type, NULL))
            type.u.str="";
        if (!map_get_attr(diitem->map, attr_data, &data, NULL))
            data.u.str="";
        popup_printf(menu_item, menu_type_menu, "map: %s:%s", type.u.str, data.u.str);
    }
    if (diitem->map) {
        mr=map_rect_new(diitem->map,NULL);
        item=map_rect_get_item_byid(mr, diitem->id_hi, diitem->id_lo);
        dbg(lvl_debug,"item=%p", item);
        if (item) {
            popup_show_attrs(item->map, menu_item, item);
            popup_printf_cb(menu_item, menu_type_menu, callback_new_1(callback_cast(popup_item_dump), diitem), "Dump");
            if (item->type < type_line) {
                struct coord co;
                struct pcoord *c;
                if (item_coord_get(item, &co, 1)) {
                    c=g_new(struct pcoord, 1);
                    c->pro = transform_get_projection(navit_get_trans(nav));
                    c->x = co.x;
                    c->y = co.y;
                    popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_position), nav, c),
                                    _("Set as position"));
                    popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_destination), nav, c),
                                    _("Set as destination"));
                    popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_set_bookmark), nav, c),
                                    _("Add as bookmark"));
                }
            }
        }
        map_rect_destroy(mr);
    } else {
        popup_printf(menu, menu_type_menu, "(No map)");
    }
    if (item_get_default_flags(diitem->type)) {
        int speeds[]= {5,10,20,30,40,50,60,70,80,90,100};
        int delays[]= {1,2,3,5,10,15,20,30,45,60,75,90,120,150,180,240,300};
        int i;
        menu_dist=popup_printf(menu, menu_type_submenu, "Traffic distortion");
        popup_printf_cb(menu_dist, menu_type_menu, callback_new_1(callback_cast(popup_traffic_distortion_blocked), diitem),
                        "Blocked");
        menu_item=popup_printf(menu_dist, menu_type_submenu,"Max speed");
        for (i = 0 ; i < sizeof(speeds)/sizeof(int); i++) {
            popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_traffic_distortion_speed), diitem,
                            speeds[i]), "%d km/h",speeds[i]);
        }
        menu_item=popup_printf(menu_dist, menu_type_submenu,"Delay");
        for (i = 0 ; i < sizeof(delays)/sizeof(int); i++) {
            popup_printf_cb(menu_item, menu_type_menu, callback_new_2(callback_cast(popup_traffic_distortion_delay), diitem,
                            delays[i]*600), "%d min",delays[i]);
        }
    }
}

static void popup_display(struct navit *nav, void *popup, struct point *p) {
    struct displaylist_handle *dlh;
    struct displaylist *display;
    struct displayitem *di;

    display=navit_get_displaylist(nav);
    dlh=graphics_displaylist_open(display);
    while ((di=graphics_displaylist_next(dlh))) {
        if (graphics_displayitem_within_dist(display, di, p, 5)) {
            popup_show_item(nav, popup, di);
        }
    }
    graphics_displaylist_close(dlh);
}

static struct pcoord c;

void popup(struct navit *nav, int button, struct point *p) {
    void *popup,*men;
    char buffer[1024];
    struct coord_geo g;
    struct coord co;

    popup=gui_popup_new(navit_get_gui(nav));
    if (! popup)
        return;
    transform_reverse(navit_get_trans(nav), p, &co);
    men=popup_printf(popup, menu_type_submenu, _("Point 0x%x 0x%x"), co.x, co.y);
    popup_printf(men, menu_type_menu, _("Screen coord : %d %d"), p->x, p->y);
    transform_to_geo(transform_get_projection(navit_get_trans(nav)), &co, &g);
    coord_format(g.lat,g.lng,DEGREES_MINUTES_SECONDS,buffer,sizeof(buffer));
    popup_printf(men, menu_type_menu, "%s", buffer);
    popup_printf(men, menu_type_menu, "%f %f", g.lat, g.lng);
    dbg(lvl_debug,"%p %p", nav, &c);
    c.pro = transform_get_projection(navit_get_trans(nav));
    c.x = co.x;
    c.y = co.y;
    popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_position), nav, &c), _("Set as position"));
    popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_destination), nav, &c),
                    _("Set as destination"));
    popup_show_visitbefore(nav,&c,men);
    popup_printf_cb(men, menu_type_menu, callback_new_2(callback_cast(popup_set_bookmark), nav, &c), _("Add as bookmark"));
    popup_display(nav, popup, p);
    menu_popup(popup);
}