Fix:Core:More navigation fixes
[navit-package] / navit / navit.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 <stdio.h>
21 #include <stdlib.h>
22 #include <signal.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <glib.h>
27 #include <math.h>
28 #include <time.h>
29 #include "config.h"
30 #include "debug.h"
31 #include "navit.h"
32 #include "callback.h"
33 #include "gui.h"
34 #include "item.h"
35 #include "projection.h"
36 #include "map.h"
37 #include "mapset.h"
38 #include "main.h"
39 #include "coord.h"
40 #include "point.h"
41 #include "transform.h"
42 #include "param.h"
43 #include "menu.h"
44 #include "graphics.h"
45 #include "cursor.h"
46 #include "popup.h"
47 #include "data_window.h"
48 #include "route.h"
49 #include "navigation.h"
50 #include "speech.h"
51 #include "track.h"
52 #include "vehicle.h"
53 #include "color.h"
54 #include "layout.h"
55 #include "log.h"
56 #include "attr.h"
57 #include "event.h"
58 #include "file.h"
59 #include "profile.h"
60 #include "navit_nls.h"
61
62 /**
63  * @defgroup navit the navit core instance. navit is the object containing nearly everything: A set of maps, one or more vehicle, a graphics object for rendering the map, a gui object for displaying the user interface, a route object, a navigation object and so on. Be warned that it is theoretically possible to have more than one navit object
64  * @{
65  */
66
67 //! The navit_vehicule
68 struct navit_vehicle {
69         int update;
70         /*! Limit of the update counter. See navit_add_vehicle */
71         int update_curr;
72         /*! Deprecated : Update counter itself. When it reaches 'update' counts, route is updated */
73         int follow;
74         /*! Limit of the follow counter. See navit_add_vehicle */
75         int follow_curr;
76         /*! Deprecated : follow counter itself. When it reaches 'update' counts, map is recentered*/
77         struct coord coord;
78         int dir;
79         int speed;
80         struct coord last; /*< Position of the last update of this vehicle */
81         struct color c;
82         struct color *c2;
83         struct cursor *cursor;
84         struct vehicle *vehicle;
85         struct attr callback;
86         int animate_cursor;
87 };
88
89 struct navit {
90         struct attr self;
91         GList *mapsets;
92         GList *layouts;
93         struct gui *gui;
94         struct layout *layout_current;
95         struct graphics *gra;
96         struct action *action;
97         struct transformation *trans;
98         struct compass *compass;
99         struct route *route;
100         struct navigation *navigation;
101         struct speech *speech;
102         struct tracking *tracking;
103         int ready;
104         struct window *win;
105         struct displaylist *displaylist;
106         int cursor_flag;
107         int tracking_flag;
108         int orientation;
109         int recentdest_count;
110         GList *vehicles;
111         GList *windows_items;
112         struct navit_vehicle *vehicle;
113         struct callback_list *attr_cbl;
114         int pid;
115         struct callback *nav_speech_cb;
116         struct callback *roadbook_callback;
117         struct callback *popup_callback;
118         struct datawindow *roadbook_window;
119         struct map *bookmark;
120         struct map *former_destination;
121         GHashTable *bookmarks_hash;
122         struct point pressed, last, current;
123         int button_pressed,moved,popped,zoomed;
124         time_t last_moved;
125         int center_timeout;
126         struct event_timeout *button_timeout, *motion_timeout;
127         struct callback *motion_timeout_callback;
128         int ignore_button;
129         int ignore_graphics_events;
130         struct log *textfile_debug_log;
131         struct pcoord destination;
132         int destination_valid;
133         int blocked;
134         int w,h;
135         int drag_bitmap;
136         int use_mousewheel;
137         GHashTable *commands;
138         struct callback *resize_callback,*button_callback,*motion_callback;
139 };
140
141 struct gui *main_loop_gui;
142
143 struct attr_iter {
144         union {
145                 GList *list;
146                 struct mapset_handle *mapset_handle;
147         } u;
148 };
149
150 static void navit_vehicle_update(struct navit *this_, struct navit_vehicle *nv);
151 static void navit_vehicle_draw(struct navit *this_, struct navit_vehicle *nv, struct point *pnt);
152 static int navit_add_vehicle(struct navit *this_, struct vehicle *v);
153
154 void
155 navit_add_mapset(struct navit *this_, struct mapset *ms)
156 {
157         this_->mapsets = g_list_append(this_->mapsets, ms);
158 }
159
160 struct mapset *
161 navit_get_mapset(struct navit *this_)
162 {
163         if(this_->mapsets){
164                 return this_->mapsets->data;
165         } else {
166                 dbg(0,"No mapsets enabled! Is it on purpose? Navit can't draw a map. Please check your navit.xml\n");
167         }
168         return NULL;
169 }
170
171 struct tracking *
172 navit_get_tracking(struct navit *this_)
173 {
174         return this_->tracking;
175 }
176
177 void
178 navit_draw(struct navit *this_)
179 {
180         GList *l;
181         struct navit_vehicle *nv;
182
183         if (this_->blocked) {
184                 this_->blocked |= 2;
185                 return;
186         }
187         transform_setup_source_rect(this_->trans);
188         l=this_->vehicles;
189         while (l) {
190                 nv=l->data;
191                 navit_vehicle_draw(this_, nv, NULL);
192                 l=g_list_next(l);
193         }
194         graphics_draw(this_->gra, this_->displaylist, this_->mapsets, this_->trans, this_->layout_current);
195 }
196
197 void
198 navit_draw_displaylist(struct navit *this_)
199 {
200         if (this_->ready == 3)
201                 graphics_displaylist_draw(this_->gra, this_->displaylist, this_->trans, this_->layout_current, 1);
202 }
203
204 void
205 navit_handle_resize(struct navit *this_, int w, int h)
206 {
207         struct map_selection sel;
208         memset(&sel, 0, sizeof(sel));
209         sel.u.p_rect.rl.x=w;
210         sel.u.p_rect.rl.y=h;
211         this_->w=w;
212         this_->h=h;
213         transform_set_screen_selection(this_->trans, &sel);
214         this_->ready |= 2;
215         graphics_resize(this_->gra, w, h);
216         if (this_->ready == 3)
217                 navit_draw(this_);
218 }
219
220 static void
221 navit_resize(void *data, int w, int h)
222 {
223         struct navit *this=data;
224         if (!this->ignore_graphics_events)
225                 navit_handle_resize(this, w, h);
226 }
227
228 int
229 navit_get_width(struct navit *this_)
230 {
231         return this_->w;
232 }
233
234
235 int
236 navit_get_height(struct navit *this_)
237 {
238         return this_->h;
239 }
240
241 static void
242 navit_popup(void *data)
243 {
244         struct navit *this_=data;
245         popup(this_, 1, &this_->pressed);
246         this_->button_timeout=NULL;
247         this_->popped=1;
248 }
249
250
251 void
252 navit_ignore_button(struct navit *this_)
253 {
254         this_->ignore_button=1;
255 }
256
257 void
258 navit_ignore_graphics_events(struct navit *this_, int ignore)
259 {
260         this_->ignore_graphics_events=ignore;
261 }
262
263 int
264 navit_handle_button(struct navit *this_, int pressed, int button, struct point *p, struct callback *popup_callback)
265 {
266         int border=16;
267
268         callback_list_call_attr_4(this_->attr_cbl, attr_button, this_, (void *)pressed, (void *)button, p);
269         if (this_->ignore_button) {
270                 this_->ignore_button=0;
271                 return 0;
272         }
273         if (pressed) {
274                 this_->pressed=*p;
275                 this_->last=*p;
276                 this_->zoomed=0;
277                 if (button == 1) {
278                         this_->button_pressed=1;
279                         this_->moved=0;
280                         this_->popped=0;
281                         if (popup_callback)
282                                 this_->button_timeout=event_add_timeout(500, 0, popup_callback);
283                 }
284                 if (button == 2)
285                         navit_set_center_screen(this_, p);
286                 if (button == 3)
287                         popup(this_, button, p);
288                 if (button == 4 && this_->use_mousewheel) {
289                         this_->zoomed = 1;
290                         navit_zoom_in(this_, 2, p);
291                 }
292                 if (button == 5 && this_->use_mousewheel) {
293                         this_->zoomed = 1;
294                         navit_zoom_out(this_, 2, p);
295                 }
296         } else {
297                 this_->button_pressed=0;
298                 if (this_->button_timeout) {
299                         event_remove_timeout(this_->button_timeout);
300                         this_->button_timeout=NULL;
301                         if (! this_->moved && ! transform_within_border(this_->trans, p, border)) {
302                                 if (!this_->zoomed) {
303                                         this_->last_moved = time(NULL);
304                                 }
305                                 navit_set_center_screen(this_, p);
306                         }
307                 }
308                 if (this_->motion_timeout) {
309                         event_remove_timeout(this_->motion_timeout);
310                         this_->motion_timeout=NULL;
311                 }
312                 if (this_->moved) {
313                         struct point pt;
314                         this_->last=*p;
315                         transform_get_size(this_->trans, &pt.x, &pt.y);
316                         pt.x/=2;
317                         pt.y/=2;
318                         pt.x-=this_->last.x-this_->pressed.x;
319                         pt.y-=this_->last.y-this_->pressed.y;
320                         graphics_draw_drag(this_->gra, NULL);
321                         graphics_overlay_disable(this_->gra, 0);
322                         if (!this_->zoomed) {
323                                 this_->last_moved = time(NULL);
324                         }
325                         navit_set_center_screen(this_, &pt);
326                 } else
327                         return 1;
328         }
329         return 0;
330 }
331
332 static void
333 navit_button(void *data, int pressed, int button, struct point *p)
334 {
335         struct navit *this=data;
336         if (!this->ignore_graphics_events) {
337                 if (! this->popup_callback)
338                         this->popup_callback=callback_new_1(callback_cast(navit_popup), this);
339                 navit_handle_button(this, pressed, button, p, this->popup_callback);
340         }
341 }
342
343
344 static void
345 navit_motion_timeout(struct navit *this_)
346 {
347         int dx, dy;
348
349         if (this_->drag_bitmap) {
350                 struct point point;
351                 point.x=(this_->current.x-this_->pressed.x);
352                 point.y=(this_->current.y-this_->pressed.y);
353                 if (graphics_draw_drag(this_->gra, &point)) {
354                         graphics_overlay_disable(this_->gra, 1);
355                         graphics_draw_mode(this_->gra, draw_mode_end);
356                         this_->moved=1;
357                         this_->motion_timeout=NULL;
358                         return;
359                 }
360         } 
361         dx=(this_->current.x-this_->last.x);
362         dy=(this_->current.y-this_->last.y);
363         if (dx || dy) {
364                 this_->last=this_->current;
365                 graphics_overlay_disable(this_->gra, 1);
366                 graphics_displaylist_move(this_->displaylist, dx, dy);
367                 graphics_displaylist_draw(this_->gra, this_->displaylist, this_->trans, this_->layout_current, 0);
368                 this_->moved=1;
369         }
370         this_->motion_timeout=NULL;
371         return;
372 }
373
374 void
375 navit_handle_motion(struct navit *this_, struct point *p)
376 {
377         int dx, dy;
378
379         if (this_->button_pressed && !this_->popped) {
380                 dx=(p->x-this_->pressed.x);
381                 dy=(p->y-this_->pressed.y);
382                 if (dx < -8 || dx > 8 || dy < -8 || dy > 8) {
383                         if (this_->button_timeout) {
384                                 event_remove_timeout(this_->button_timeout);
385                                 this_->button_timeout=NULL;
386                         }
387                         this_->current=*p;
388                         if (! this_->motion_timeout_callback)
389                                 this_->motion_timeout_callback=callback_new_1(callback_cast(navit_motion_timeout), this_);
390                         if (! this_->motion_timeout)
391                                 this_->motion_timeout=event_add_timeout(100, 0, this_->motion_timeout_callback);
392                 }
393         }
394 }
395
396 static void
397 navit_motion(void *data, struct point *p)
398 {
399         struct navit *this=data;
400         if (!this->ignore_graphics_events) 
401                 navit_handle_motion(this, p);
402 }
403
404 static void
405 navit_scale(struct navit *this_, long scale, struct point *p)
406 {
407         struct coord c1, c2, *center;
408         if (p)
409                 transform_reverse(this_->trans, p, &c1);
410         transform_set_scale(this_->trans, scale);
411         if (p) {
412                 transform_reverse(this_->trans, p, &c2);
413                 center = transform_center(this_->trans);
414                 center->x += c1.x - c2.x;
415                 center->y += c1.y - c2.y;
416         }
417         navit_draw(this_);
418 }
419
420 /**
421  * Change the current zoom level, zooming closer to the ground
422  *
423  * @param navit The navit instance
424  * @param factor The zoom factor, usually 2
425  * @param p The invariant point (if set to NULL, default to center)
426  * @returns nothing
427  */
428 void
429 navit_zoom_in(struct navit *this_, int factor, struct point *p)
430 {
431         long scale=transform_get_scale(this_->trans)/factor;
432         if (scale < 1)
433                 scale=1;
434         navit_scale(this_, scale, p);
435 }
436
437 /**
438  * Change the current zoom level
439  *
440  * @param navit The navit instance
441  * @param factor The zoom factor, usually 2
442  * @param p The invariant point (if set to NULL, default to center)
443  * @returns nothing
444  */
445 void
446 navit_zoom_out(struct navit *this_, int factor, struct point *p)
447 {
448         long scale=transform_get_scale(this_->trans)*factor;
449         navit_scale(this_, scale, p);
450 }
451
452 struct navit *
453 navit_new(struct attr *parent, struct attr **attrs)
454 {
455         struct navit *this_=g_new0(struct navit, 1);
456         struct pcoord center;
457         struct coord co;
458         struct coord_geo g;
459         enum projection pro=projection_mg;
460         int zoom = 256;
461         FILE *f;
462         g.lat=53.13;
463         g.lng=11.70;
464
465         main_add_navit(this_);
466         this_->self.type=attr_navit;
467         this_->self.u.navit=this_;
468         this_->attr_cbl=callback_list_new();
469
470 #if !defined(_WIN32) && !defined(__CEGCC__)
471         f=popen("pidof /usr/bin/ipaq-sleep","r");
472         if (f) {
473                 fscanf(f,"%d",&this_->pid);
474                 dbg(1,"ipaq_sleep pid=%d\n", this_->pid);
475                 pclose(f);
476         }
477 #endif
478
479         this_->bookmarks_hash=g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
480
481         this_->cursor_flag=1;
482         this_->orientation=-1;
483         this_->tracking_flag=1;
484         this_->recentdest_count=10;
485
486         this_->last_moved = 0;
487         this_->center_timeout = 10;
488         this_->use_mousewheel = 1;
489
490         for (;*attrs; attrs++) {
491                 switch((*attrs)->type) {
492                 case attr_zoom:
493                         zoom=(*attrs)->u.num;
494                         break;
495                 case attr_center:
496                         g=*((*attrs)->u.coord_geo);
497                         break;
498                 case attr_cursor:
499                         this_->cursor_flag=!!(*attrs)->u.num;
500                         break;
501                 case attr_orientation:
502                         this_->orientation=(*attrs)->u.num;
503                         break;
504                 case attr_tracking:
505                         this_->tracking_flag=!!(*attrs)->u.num;
506                         break;
507                 case attr_recent_dest:
508                         this_->recentdest_count=(*attrs)->u.num;
509                         break;
510                 case attr_drag_bitmap:
511                         this_->drag_bitmap=!!(*attrs)->u.num;
512                         break;
513                 case attr_use_mousewheel:
514                         this_->use_mousewheel=!!(*attrs)->u.num;
515                         break;
516                 case attr_timeout:
517                         this_->center_timeout = (*attrs)->u.num;
518                         break;
519                 default:
520                         dbg(0, "Unexpected attribute %x\n",(*attrs)->type);
521                         break;
522                 }
523         }
524         transform_from_geo(pro, &g, &co);
525         center.x=co.x;
526         center.y=co.y;
527         center.pro = pro;
528
529         this_->trans=transform_new();
530         transform_setup(this_->trans, &center, zoom, (this_->orientation != -1) ? this_->orientation : 0);
531         this_->displaylist=graphics_displaylist_new();
532         this_->commands=g_hash_table_new(g_str_hash, g_str_equal);
533         navit_command_register(this_, "zoom_in", callback_new_3(callback_cast(navit_zoom_in), this_, (void *)2, NULL));
534         navit_command_register(this_, "zoom_out", callback_new_3(callback_cast(navit_zoom_out), this_, (void *)2, NULL));
535         return this_;
536 }
537
538 static int
539 navit_set_gui(struct navit *this_, struct gui *gui)
540 {
541         if (this_->gui)
542                 return 0;
543         this_->gui=gui;
544         if (gui_has_main_loop(this_->gui)) {
545                 if (! main_loop_gui) {
546                         main_loop_gui=this_->gui;
547                 } else {
548                         dbg(0,"gui with main loop already active, ignoring this instance");
549                         return 0;
550                 }
551         }
552         return 1;
553 }
554
555 static int
556 navit_set_graphics(struct navit *this_, struct graphics *gra)
557 {
558         if (this_->gra)
559                 return 0;
560         this_->gra=gra;
561         this_->resize_callback=callback_new_attr_1(callback_cast(navit_resize), attr_resize, this_);
562         graphics_add_callback(gra, this_->resize_callback);
563         this_->button_callback=callback_new_attr_1(callback_cast(navit_button), attr_button, this_);
564         graphics_add_callback(gra, this_->button_callback);
565         this_->motion_callback=callback_new_attr_1(callback_cast(navit_motion), attr_motion, this_);
566         graphics_add_callback(gra, this_->motion_callback);
567         return 1;
568 }
569
570 struct graphics *
571 navit_get_graphics(struct navit *this_)
572 {
573         return this_->gra;
574 }
575
576 static void
577 navit_projection_set(struct navit *this_, enum projection pro)
578 {
579         struct coord_geo g;
580         struct coord *c;
581
582         c=transform_center(this_->trans);
583         transform_to_geo(transform_get_projection(this_->trans), c, &g);
584         transform_set_projection(this_->trans, pro);
585         transform_from_geo(pro, &g, c);
586         navit_draw(this_);
587 }
588
589 /**
590  * @param limit Limits the number of entries in the "backlog". Set to 0 for "infinite"
591  */
592 static void
593 navit_append_coord(struct navit *this_, char *file, struct pcoord *c, const char *type, const char *description, GHashTable *h, int limit)
594 {
595         FILE *f;
596         int offset=0;
597         char *buffer;
598         int ch,prev,lines=0;
599         int numc,readc;
600         int fd;
601         const char *prostr;
602
603         f=fopen(file, "r");
604         if (!f)
605                 goto new_file;
606         if (limit != 0) {
607                 prev = '\n';
608                 while ((ch = fgetc(f)) != EOF) {
609                         if ((ch == '\n') && (prev != '\n')) {
610                                 lines++;
611                         }
612                         prev = ch;
613                 }
614
615                 if (prev != '\n') { // Last line did not end with a newline
616                         lines++;
617                 }
618
619                 fclose(f);
620                 f = fopen(file, "r+");
621                 fd = fileno(f);
622                 while (lines >= limit) { // We have to "scroll up"
623                         rewind(f);
624                         numc = 0; // Counts how many bytes we have in our line to scroll up
625                         while ((ch = fgetc(f)) != EOF) {
626                                 numc++;
627                                 if (ch == '\n') {
628                                         break;
629                                 }
630                         }
631
632                         buffer=g_malloc(numc);
633                         offset = numc; // Offset holds where we currently are
634                         
635                         do {
636                                 fseek(f,offset,SEEK_SET);
637                                 readc = fread(buffer,1,numc,f);
638                                 
639                                 fseek(f,-(numc+readc),SEEK_CUR);
640                                 fwrite(buffer,1,readc,f);
641
642                                 offset += readc;
643                         } while (readc == numc);
644
645                         g_free(buffer);
646                         fflush(f);
647                         ftruncate(fd,(offset-numc));
648 #ifdef HAVE_FSYNC
649                         fsync(fd);
650 #endif
651
652                         lines--;
653                 }
654                 fclose(f);
655         }
656
657 new_file:
658         f=fopen(file, "a");
659         if (f) {
660                 if (c) {
661                         prostr = projection_to_name(c->pro);
662                         fprintf(f,"%s%s%s0x%x %s0x%x type=%s label=\"%s\"\n",
663                                  prostr, *prostr ? ":" : "", 
664                                  c->x >= 0 ? "":"-", c->x >= 0 ? c->x : -c->x, 
665                                  c->y >= 0 ? "":"-", c->y >= 0 ? c->y : -c->y, 
666                                  type, description);
667                 } else
668                         fprintf(f,"\n");
669                 fclose(f);
670         }
671 }
672
673 /*
674  * navit_get_user_data_directory
675  * 
676  * returns the directory used to store user data files (center.txt,
677  * destination.txt, bookmark.txt, ...)
678  *
679  * arg: gboolean create: create the directory if it does not exist
680  */
681 static char*
682 navit_get_user_data_directory(gboolean create) {
683         char *dir;
684         dir = getenv("NAVIT_USER_DATADIR");
685         if (create && !file_exists(dir)) {
686                 dbg(0,"creating dir %s\n", dir);
687                 if (file_mkdir(dir,0)) {
688                         dbg(0,"failed creating dir %s\n", dir);
689                         return NULL;
690                 }
691         }
692
693         return dir;
694 }
695
696 /*
697  * navit_get_destination_file
698  * 
699  * returns the name of the file used to store destinations with its
700  * full path
701  *
702  * arg: gboolean create: create the directory where the file is stored
703  * if it does not exist
704  */
705 static char*
706 navit_get_destination_file(gboolean create)
707 {
708         return g_strjoin(NULL, navit_get_user_data_directory(create), "/destination.txt", NULL);
709 }
710
711 /*
712  * navit_get_bookmark_file
713  * 
714  * returns the name of the file used to store bookmarks with its
715  * full path
716  *
717  * arg: gboolean create: create the directory where the file is stored
718  * if it does not exist
719  */
720 static char*
721 navit_get_bookmark_file(gboolean create)
722 {
723         return g_strjoin(NULL, navit_get_user_data_directory(create), "/bookmark.txt", NULL);
724 }
725
726
727 /*
728  * navit_get_bookmark_file
729  * 
730  * returns the name of the file used to store the center file  with its
731  * full path
732  *
733  * arg: gboolean create: create the directory where the file is stored
734  * if it does not exist
735  */
736 static char*
737 navit_get_center_file(gboolean create)
738 {
739         return g_strjoin(NULL, navit_get_user_data_directory(create), "/center.txt", NULL);
740 }
741
742 static void
743 navit_set_center_from_file(struct navit *this_, char *file)
744 {
745         FILE *f;
746         char *line = NULL;
747
748         size_t line_size = 0;
749         enum projection pro;
750         struct coord *center;
751
752         f = fopen(file, "r");
753         if (! f)
754                 return;
755         getline(&line, &line_size, f);
756         fclose(f);
757         if (line) {
758                 center = transform_center(this_->trans);
759                 pro = transform_get_projection(this_->trans);
760                 coord_parse(g_strchomp(line), pro, center);
761                 free(line);
762         }
763         return;
764 }
765  
766 static void
767 navit_write_center_to_file(struct navit *this_, char *file)
768 {
769         FILE *f;
770         enum projection pro;
771         struct coord *center;
772
773         f = fopen(file, "w+");
774         if (f) {
775                 center = transform_center(this_->trans);
776                 pro = transform_get_projection(this_->trans);
777                 coord_print(pro, center, f);
778                 fclose(f);
779         } else {
780                 perror(file);
781         }
782         return;
783 }
784
785
786 /**
787  * Start the route computing to a given set of coordinates
788  *
789  * @param navit The navit instance
790  * @param c The coordinate to start routing to
791  * @param description A label which allows the user to later identify this destination in the former destinations selection
792  * @returns nothing
793  */
794 void
795 navit_set_destination(struct navit *this_, struct pcoord *c, char *description)
796 {
797         if (c) {
798                 this_->destination=*c;
799                 this_->destination_valid=1;
800         } else
801                 this_->destination_valid=0;
802         char *destination_file = navit_get_destination_file(TRUE);
803         navit_append_coord(this_, destination_file, c, "former_destination", description, NULL, this_->recentdest_count);
804         g_free(destination_file);
805         callback_list_call_attr_0(this_->attr_cbl, attr_destination);
806         if (this_->route) {
807                 route_set_destination(this_->route, c);
808                 if (this_->navigation) {
809                         navigation_flush(this_->navigation);
810                         navigation_update(this_->navigation, this_->route);
811                 }
812
813                 if (this_->ready == 3)
814                         navit_draw(this_);
815         }
816 }
817
818 /**
819  * @brief Checks if a route is calculated
820  *
821  * This function checks if a route is calculated.
822  *
823  * @param this_ The navit struct whose route should be checked.
824  * @return True if the route is set, false otherwise.
825  */
826 int
827 navit_check_route(struct navit *this_)
828 {
829         if (this_->route) {
830                 return route_get_path_set(this_->route);
831         }
832
833         return 0;
834 }
835
836 /**
837  * Record the given set of coordinates as a bookmark
838  *
839  * @param navit The navit instance
840  * @param c The coordinate to store
841  * @param description A label which allows the user to later identify this bookmark
842  * @returns nothing
843  */
844 void
845 navit_add_bookmark(struct navit *this_, struct pcoord *c, const char *description)
846 {
847         char *bookmark_file = navit_get_bookmark_file(TRUE);
848         navit_append_coord(this_,bookmark_file, c, "bookmark", description, this_->bookmarks_hash,0);
849         g_free(bookmark_file);
850
851         callback_list_call_attr_0(this_->attr_cbl, attr_bookmark_map);
852 }
853
854 struct navit *global_navit;
855
856 static void
857 navit_add_bookmarks_from_file(struct navit *this_)
858 {
859         char *bookmark_file = navit_get_bookmark_file(FALSE);
860         struct attr parent={attr_navit, .u.navit=this_};
861         struct attr type={attr_type, {"textfile"}}, data={attr_data, {bookmark_file}};
862         struct attr *attrs[]={&type, &data, NULL};
863
864         this_->bookmark=map_new(&parent, attrs);
865         g_free(bookmark_file);
866 }
867
868 static int
869 navit_former_destinations_active(struct navit *this_)
870 {
871         char *destination_file = navit_get_destination_file(FALSE);
872         FILE *f;
873         int active=0;
874         char buffer[3];
875         f=fopen(destination_file,"r");
876         if (f) {
877                 if(!fseek(f, -2, SEEK_END) && fread(buffer, 2, 1, f) == 1 && (buffer[0]!='\n' || buffer[1]!='\n')) 
878                         active=1;
879                 fclose(f);
880         }
881         g_free(destination_file);
882         return active;
883 }
884
885 static void
886 navit_add_former_destinations_from_file(struct navit *this_)
887 {
888         char *destination_file = navit_get_destination_file(FALSE);
889         struct attr parent={attr_navit, .u.navit=this_};
890         struct attr type={attr_type, {"textfile"}}, data={attr_data, {destination_file}};
891         struct attr *attrs[]={&type, &data, NULL};
892         struct map_rect *mr;
893         struct item *item;
894         int valid=0;
895         struct coord c;
896         struct pcoord pc;
897
898         this_->former_destination=map_new(&parent, attrs);
899         g_free(destination_file);
900         if (!this_->route || !navit_former_destinations_active(this_))
901                 return; 
902         mr=map_rect_new(this_->former_destination, NULL);
903         while ((item=map_rect_get_item(mr))) {
904                 if (item->type == type_former_destination && item_coord_get(item, &c, 1)) 
905                         valid=1;
906         }
907         map_rect_destroy(mr);
908         pc.pro=map_projection(this_->former_destination);
909         pc.x=c.x;
910         pc.y=c.y;
911         if (valid) {
912                 route_set_destination(this_->route, &pc);
913                 this_->destination=pc;
914                 this_->destination_valid=1;
915         }
916 }
917
918
919 static void
920 navit_textfile_debug_log(struct navit *this_, const char *fmt, ...)
921 {
922         va_list ap;
923         char *str1,*str2;
924         va_start(ap, fmt);
925         if (this_->textfile_debug_log && this_->vehicle) {
926                 str1=g_strdup_vprintf(fmt, ap);
927                 str2=g_strdup_printf("0x%x 0x%x%s%s\n", this_->vehicle->coord.x, this_->vehicle->coord.y, strlen(str1) ? " " : "", str1);
928                 log_write(this_->textfile_debug_log, str2, strlen(str2));
929                 g_free(str2);
930                 g_free(str1);
931         }
932         va_end(ap);
933 }
934
935 void
936 navit_say(struct navit *this_, char *text)
937 {
938         speech_say(this_->speech, text);
939 }
940
941 void
942 navit_speak(struct navit *this_)
943 {
944         struct navigation *nav=this_->navigation;
945         struct map *map=NULL;
946         struct map_rect *mr=NULL;
947         struct item *item;
948         struct attr attr;
949
950         if (nav)
951                 map=navigation_get_map(nav);
952         if (map)
953                 mr=map_rect_new(map, NULL);
954         if (mr) {
955                 while ((item=map_rect_get_item(mr)) && item->type == type_nav_position);
956                 if (item && item_attr_get(item, attr_navigation_speech, &attr)) {
957                         speech_say(this_->speech, attr.u.str);
958                         navit_textfile_debug_log(this_, "type=announcement label=\"%s\"", attr.u.str);
959                 }
960                 map_rect_destroy(mr);
961         }
962 }
963
964 static void
965 navit_window_roadbook_update(struct navit *this_)
966 {
967         struct navigation *nav=this_->navigation;
968         struct map *map=NULL;
969         struct map_rect *mr=NULL;
970         struct item *item;
971         struct attr attr;
972         struct param_list param[5];
973         int secs;
974
975         dbg(1,"enter\n");
976         datawindow_mode(this_->roadbook_window, 1);
977         if (nav)
978                 map=navigation_get_map(nav);
979         if (map)
980                 mr=map_rect_new(map, NULL);
981         dbg(0,"nav=%p map=%p mr=%p\n", nav, map, mr);
982         if (mr) {
983                 dbg(0,"while loop\n");
984                 while ((item=map_rect_get_item(mr))) {
985                         dbg(0,"item=%p\n", item);
986                         attr.u.str=NULL;
987                         if (item->type != type_nav_position) {
988                                 item_attr_get(item, attr_navigation_long, &attr);
989                                 dbg(2, "Command='%s'\n", attr.u.str);
990                                 param[0].value=g_strdup(attr.u.str);
991                         } else
992                                 param[0].value=_("Position");
993                         param[0].name=_("Command");
994
995                         item_attr_get(item, attr_length, &attr);
996                         dbg(2, "Length=%d\n", attr.u.num);
997                         param[1].name=_("Length");
998
999                         if ( attr.u.num >= 2000 )
1000                         {
1001                                 param[1].value=g_strdup_printf("%5.1f %s",(float)attr.u.num / 1000, _("km") );
1002                         }
1003                         else
1004                         {
1005                                 param[1].value=g_strdup_printf("%7d %s",attr.u.num, _("m"));
1006                         }
1007
1008                         item_attr_get(item, attr_time, &attr);
1009                         dbg(2, "Time=%d\n", attr.u.num);
1010                         secs=attr.u.num/10;
1011                         param[2].name=_("Time");
1012                         if ( secs >= 3600 )
1013                         {
1014                                 param[2].value=g_strdup_printf("%d:%02d:%02d",secs / 60, ( secs / 60 ) % 60 , secs % 60);
1015                         }
1016                         else
1017                         {
1018                                 param[2].value=g_strdup_printf("%d:%02d",secs / 60, secs % 60);
1019                         }
1020
1021                         item_attr_get(item, attr_destination_length, &attr);
1022                         dbg(2, "Destlength=%d\n", attr.u.num);
1023                         param[3].name=_("Destination Length");
1024                         if ( attr.u.num >= 2000 )
1025                         {
1026                                 param[3].value=g_strdup_printf("%5.1f %s",(float)attr.u.num / 1000, _("km") );
1027                         }
1028                         else
1029                         {
1030                                 param[3].value=g_strdup_printf("%d %s",attr.u.num, _("m"));
1031                         }
1032
1033                         item_attr_get(item, attr_destination_time, &attr);
1034                         dbg(2, "Desttime=%d\n", attr.u.num);
1035                         secs=attr.u.num/10;
1036                         param[4].name=_("Destination Time");
1037                         if ( secs >= 3600 )
1038                         {
1039                                 param[4].value=g_strdup_printf("%d:%02d:%02d",secs / 3600, (secs / 60 ) % 60 , secs % 60);
1040                         }
1041                         else
1042                         {
1043                                 param[4].value=g_strdup_printf("%d:%02d",secs / 60, secs % 60);
1044                         }
1045                         datawindow_add(this_->roadbook_window, param, 5);
1046                 }
1047                 map_rect_destroy(mr);
1048         }
1049         datawindow_mode(this_->roadbook_window, 0);
1050 }
1051
1052 void
1053 navit_window_roadbook_destroy(struct navit *this_)
1054 {
1055         dbg(0, "enter\n");
1056         navigation_unregister_callback(this_->navigation, attr_navigation_long, this_->roadbook_callback);
1057         this_->roadbook_window=NULL;
1058         this_->roadbook_callback=NULL;
1059 }
1060 void
1061 navit_window_roadbook_new(struct navit *this_)
1062 {
1063         if (this_->roadbook_callback || this_->roadbook_window) {
1064                 return;
1065         }
1066
1067         this_->roadbook_callback=callback_new_1(callback_cast(navit_window_roadbook_update), this_);
1068         navigation_register_callback(this_->navigation, attr_navigation_long, this_->roadbook_callback);
1069         this_->roadbook_window=gui_datawindow_new(this_->gui, _("Roadbook"), NULL, callback_new_1(callback_cast(navit_window_roadbook_destroy), this_));
1070         navit_window_roadbook_update(this_);
1071 }
1072
1073 static void
1074 get_direction(char *buffer, int angle, int mode)
1075 {
1076         angle=angle%360;
1077         switch (mode) {
1078         case 0:
1079                 sprintf(buffer,"%d",angle);
1080                 break;
1081         case 1:
1082                 if (angle < 69 || angle > 291)
1083                         *buffer++='N';
1084                 if (angle > 111 && angle < 249)
1085                         *buffer++='S';
1086                 if (angle > 22 && angle < 158)
1087                         *buffer++='E';
1088                 if (angle > 202 && angle < 338)
1089                         *buffer++='W';
1090                 *buffer++='\0';
1091                 break;
1092         case 2:
1093                 angle=(angle+15)/30;
1094                 if (! angle)
1095                         angle=12;
1096                 sprintf(buffer,"%d H", angle);
1097                 break;
1098         }
1099 }
1100
1101 struct navit_window_items {
1102         struct datawindow *win;
1103         struct callback *click;
1104         char *name;
1105         int distance;
1106         GHashTable *hash;
1107         GList *list;
1108 };
1109
1110 static void
1111 navit_window_items_click(struct navit *this_, struct navit_window_items *nwi, char **col)
1112 {
1113         struct pcoord c;
1114         char *description;
1115
1116         // FIXME
1117         dbg(0,"enter col=%s,%s,%s,%s,%s\n", col[0], col[1], col[2], col[3], col[4]);
1118         sscanf(col[4], "0x%x,0x%x", &c.x, &c.y);
1119         c.pro = projection_mg;
1120         dbg(0,"0x%x,0x%x\n", c.x, c.y);
1121         description=g_strdup_printf("%s %s", nwi->name, col[3]);
1122         navit_set_destination(this_, &c, description);
1123         g_free(description);
1124 }
1125
1126 static void
1127 navit_window_items_open(struct navit *this_, struct navit_window_items *nwi)
1128 {
1129         struct map_selection sel;
1130         struct coord c,*center;
1131         struct mapset_handle *h;
1132         struct map *m;
1133         struct map_rect *mr;
1134         struct item *item;
1135         struct attr attr;
1136         int idist,dist;
1137         struct param_list param[5];
1138         char distbuf[32];
1139         char dirbuf[32];
1140         char coordbuf[64];
1141
1142         dbg(0, "distance=%d\n", nwi->distance);
1143         if (nwi->distance == -1)
1144                 dist=40000000;
1145         else
1146                 dist=nwi->distance*1000;
1147         param[0].name="Distance";
1148         param[1].name="Direction";
1149         param[2].name="Type";
1150         param[3].name="Name";
1151         param[4].name=NULL;
1152         sel.next=NULL;
1153 #if 0
1154         sel.order[layer_town]=18;
1155         sel.order[layer_street]=18;
1156         sel.order[layer_poly]=18;
1157 #else
1158         sel.order=0;
1159         sel.range=item_range_all;
1160 #endif
1161         center=transform_center(this_->trans);
1162         sel.u.c_rect.lu.x=center->x-dist;
1163         sel.u.c_rect.lu.y=center->y+dist;
1164         sel.u.c_rect.rl.x=center->x+dist;
1165         sel.u.c_rect.rl.y=center->y-dist;
1166         dbg(2,"0x%x,0x%x - 0x%x,0x%x\n", sel.u.c_rect.lu.x, sel.u.c_rect.lu.y, sel.u.c_rect.rl.x, sel.u.c_rect.rl.y);
1167         nwi->click=callback_new_2(callback_cast(navit_window_items_click), this_, nwi);
1168         nwi->win=gui_datawindow_new(this_->gui, nwi->name, nwi->click, NULL);
1169         h=mapset_open(navit_get_mapset(this_));
1170         while ((m=mapset_next(h, 1))) {
1171 #if 0
1172                 dbg(2,"m=%p %s\n", m, map_get_filename(m));
1173 #endif
1174                 mr=map_rect_new(m, &sel);
1175                 dbg(2,"mr=%p\n", mr);
1176                 while ((item=map_rect_get_item(mr))) {
1177                         if (item_coord_get(item, &c, 1)) {
1178                                 if (coord_rect_contains(&sel.u.c_rect, &c) && g_hash_table_lookup(nwi->hash, &item->type)) {
1179                                         if (! item_attr_get(item, attr_label, &attr))
1180                                                 attr.u.str="";
1181                                         idist=transform_distance(map_projection(item->map), center, &c);
1182                                         if (idist < dist) {
1183                                                 get_direction(dirbuf, transform_get_angle_delta(center, &c, 0), 1);
1184                                                 param[0].value=distbuf;
1185                                                 param[1].value=dirbuf;
1186                                                 param[2].value=item_to_name(item->type);
1187                                                 sprintf(distbuf,"%d", idist/1000);
1188                                                 param[3].value=attr.u.str;
1189                                                 sprintf(coordbuf, "0x%x,0x%x", c.x, c.y);
1190                                                 param[4].value=coordbuf;
1191                                                 datawindow_add(nwi->win, param, 5);
1192                                         }
1193                                         /* printf("gefunden %s %s %d\n",item_to_name(item->type), attr.u.str, idist/1000); */
1194                                 }
1195                                 if (item->type >= type_line)
1196                                         while (item_coord_get(item, &c, 1));
1197                         }
1198                 }
1199                 map_rect_destroy(mr);
1200         }
1201         mapset_close(h);
1202 }
1203
1204 struct navit_window_items *
1205 navit_window_items_new(const char *name, int distance)
1206 {
1207         struct navit_window_items *nwi=g_new0(struct navit_window_items, 1);
1208         nwi->name=g_strdup(name);
1209         nwi->distance=distance;
1210         nwi->hash=g_hash_table_new(g_int_hash, g_int_equal);
1211
1212         return nwi;
1213 }
1214
1215 void
1216 navit_window_items_add_item(struct navit_window_items *nwi, enum item_type type)
1217 {
1218         nwi->list=g_list_prepend(nwi->list, (void *)type);
1219         g_hash_table_insert(nwi->hash, &nwi->list->data, (void *)1);
1220 }
1221
1222 void
1223 navit_add_window_items(struct navit *this_, struct navit_window_items *nwi)
1224 {
1225         this_->windows_items=g_list_append(this_->windows_items, nwi);
1226 }
1227
1228 static void
1229 navit_add_menu_windows_items(struct navit *this_, struct menu *men)
1230 {
1231         struct navit_window_items *nwi;
1232         struct callback *cb;
1233         GList *l;
1234         l=this_->windows_items;
1235         while (l) {
1236                 nwi=l->data;
1237                 cb=callback_new_2(callback_cast(navit_window_items_open), this_, nwi);
1238                 menu_add(men, nwi->name, menu_type_menu, cb);
1239                 l=g_list_next(l);
1240         }
1241 }
1242
1243 void
1244 navit_init(struct navit *this_)
1245 {
1246         struct mapset *ms;
1247         struct map *map;
1248         GList *l;
1249         struct navit_vehicle *nv;
1250
1251         if (!this_->gui) {
1252                 dbg(0,"no gui\n");
1253                 navit_destroy(this_);
1254                 return;
1255         }
1256         if (!this_->gra) {
1257                 dbg(0,"no graphics\n");
1258                 navit_destroy(this_);
1259                 return;
1260         }
1261         if (gui_set_graphics(this_->gui, this_->gra)) {
1262                 struct attr attr_type_gui, attr_type_graphics;
1263                 gui_get_attr(this_->gui, attr_type, &attr_type_gui, NULL);
1264                 graphics_get_attr(this_->gra, attr_type, &attr_type_graphics, NULL);
1265                 dbg(0,"failed to connect graphics '%s' to gui '%s'\n", attr_type_graphics.u.str, attr_type_gui.u.str);
1266                 dbg(0," Please see http://wiki.navit-project.org/index.php/Failed_to_connect_graphics_to_gui\n");
1267                 dbg(0," for explanations and solutions\n");
1268
1269                 navit_destroy(this_);
1270                 return;
1271         }
1272         graphics_init(this_->gra);
1273         l=this_->vehicles;
1274         while (l) {
1275                 dbg(1,"parsed one vehicle\n");
1276                 nv=l->data;
1277                 nv->callback.type=attr_callback;
1278                 nv->callback.u.callback=callback_new_2(callback_cast(navit_vehicle_update), this_, nv);
1279                 vehicle_add_attr(nv->vehicle, &nv->callback);
1280                 vehicle_set_attr(nv->vehicle, &this_->self, NULL);
1281                 l=g_list_next(l);
1282         }
1283         if (this_->mapsets) {
1284                 ms=this_->mapsets->data;
1285                 if (this_->route) {
1286                         if ((map=route_get_map(this_->route)))
1287                                 mapset_add_attr(ms, &(struct attr){attr_map,.u.map=map});
1288                         if ((map=route_get_graph_map(this_->route))) {
1289                                 mapset_add_attr(ms, &(struct attr){attr_map,.u.map=map});
1290                                 map_set_attr(map, &(struct attr ){attr_active,.u.num=0});
1291                         }
1292                         route_set_mapset(this_->route, ms);
1293                         route_set_projection(this_->route, transform_get_projection(this_->trans));
1294                 }
1295                 if (this_->tracking) {
1296                         tracking_set_mapset(this_->tracking, ms);
1297                         if (this_->route)
1298                                 tracking_set_route(this_->tracking, this_->route);
1299                 }
1300                 if (this_->navigation) {
1301                         if ((map=navigation_get_map(this_->navigation))) {
1302                                 mapset_add_attr(ms, &(struct attr){attr_map,.u.map=map});
1303                                 map_set_attr(map, &(struct attr ){attr_active,.u.num=0});
1304                         }
1305                 }
1306                 if (this_->tracking) {
1307                         if ((map=tracking_get_map(this_->tracking))) {
1308                                 mapset_add_attr(ms, &(struct attr){attr_map,.u.map=map});
1309                                 map_set_attr(map, &(struct attr ){attr_active,.u.num=0});
1310                         }
1311                 }
1312                 navit_add_bookmarks_from_file(this_);
1313                 navit_add_former_destinations_from_file(this_);
1314         }
1315         if (this_->navigation && this_->speech) {
1316                 this_->nav_speech_cb=callback_new_1(callback_cast(navit_speak), this_);
1317                 navigation_register_callback(this_->navigation, attr_navigation_speech, this_->nav_speech_cb);
1318         }
1319         char *center_file = navit_get_center_file(FALSE);
1320         navit_set_center_from_file(this_, center_file);
1321         g_free(center_file);
1322 #if 0
1323         if (this_->menubar) {
1324                 men=menu_add(this_->menubar, "Data", menu_type_submenu, NULL);
1325                 if (men) {
1326                         navit_add_menu_windows_items(this_, men);
1327                 }
1328         }
1329 #endif
1330         global_navit=this_;
1331 #if 0
1332         navit_window_roadbook_new(this_);
1333         navit_window_items_new(this_);
1334 #endif
1335         callback_list_call_attr_1(this_->attr_cbl, attr_navit, this_);
1336         this_->ready|=1;
1337         if (this_->ready == 3)
1338                 navit_draw(this_);
1339 }
1340
1341 void
1342 navit_zoom_to_route(struct navit *this_)
1343 {
1344         struct map *map;
1345         struct map_rect *mr;
1346         struct item *item;
1347         struct coord c,*ct;
1348         struct coord_rect r;
1349         int count=0,scale=16;
1350         if (! this_->route)
1351                 return;
1352         map=route_get_map(this_->route);
1353         if (! map)
1354                 return;
1355         mr=map_rect_new(map, NULL);
1356         if (! mr)
1357                 return;
1358         while ((item=map_rect_get_item(mr))) {
1359                 while (item_coord_get(item, &c, 1)) {
1360                         if (!count) 
1361                                 r.lu=r.rl=c;
1362                         else
1363                                 coord_rect_extend(&r, &c);      
1364                         count++;
1365                 }
1366         }
1367         if (! count)
1368                 return;
1369         c.x=(r.rl.x+r.lu.x)/2;
1370         c.y=(r.rl.y+r.lu.y)/2;
1371         dbg(0,"count=%d\n",count);
1372         ct=transform_center(this_->trans);
1373         *ct=c;
1374         dbg(0,"%x,%x-%x,%x\n", r.rl.x,r.rl.y,r.lu.x,r.lu.y);
1375         while (scale < 1<<20) {
1376                 struct point p1,p2;
1377                 transform_set_scale(this_->trans, scale);
1378                 transform_setup_source_rect(this_->trans);
1379                 transform(this_->trans, transform_get_projection(this_->trans), &r.lu, &p1, 1, 0);
1380                 transform(this_->trans, transform_get_projection(this_->trans), &r.rl, &p2, 1, 0);
1381                 dbg(0,"%d,%d-%d,%d\n",p1.x,p1.y,p2.x,p2.y);
1382                 if (p1.x < 0 || p2.x < 0 || p1.x > this_->w || p2.x > this_->w ||
1383                     p1.y < 0 || p2.y < 0 || p1.y > this_->h || p2.y > this_->h)
1384                         scale*=2;
1385                 else
1386                         break;
1387         
1388         }
1389         if (this_->ready == 3)
1390                 navit_draw(this_);
1391 }
1392
1393 /**
1394  * Change the current zoom level
1395  *
1396  * @param navit The navit instance
1397  * @param center The point where to center the map, including its projection
1398  * @returns nothing
1399  */
1400 void
1401 navit_set_center(struct navit *this_, struct pcoord *center)
1402 {
1403         struct coord *c=transform_center(this_->trans);
1404         struct coord c1,c2;
1405         enum projection pro = transform_get_projection(this_->trans);
1406         if (pro != center->pro) {
1407                 c1.x = center->x;
1408                 c1.y = center->y;
1409                 transform_from_to(&c1, center->pro, &c2, pro);
1410         } else {
1411                 c2.x = center->x;
1412                 c2.y = center->y;
1413         }
1414         *c=c2;
1415         if (this_->ready == 3)
1416                 navit_draw(this_);
1417 }
1418
1419 static void
1420 navit_set_center_cursor(struct navit *this_, struct coord *cursor, int dir, int xpercent, int ypercent)
1421 {
1422         struct coord *c=transform_center(this_->trans);
1423         int width, height;
1424         struct point p;
1425         struct coord cnew;
1426
1427         transform_get_size(this_->trans, &width, &height);
1428         *c=*cursor;
1429         transform_set_angle(this_->trans, dir);
1430         p.x=(100-xpercent)*width/100;
1431         p.y=(100-ypercent)*height/100;
1432         transform_reverse(this_->trans, &p, &cnew);
1433         *c=cnew;
1434         if (this_->ready == 3)
1435                 navit_draw(this_);
1436 }
1437
1438
1439 void
1440 navit_set_center_screen(struct navit *this_, struct point *p)
1441 {
1442         struct coord c;
1443         struct pcoord pc;
1444         transform_reverse(this_->trans, p, &c);
1445         pc.x = c.x;
1446         pc.y = c.y;
1447         pc.pro = transform_get_projection(this_->trans);
1448         navit_set_center(this_, &pc);
1449 }
1450
1451 int
1452 navit_set_attr(struct navit *this_, struct attr *attr)
1453 {
1454         int dir=0, orient_old=0, attr_updated=0;
1455
1456         switch (attr->type) {
1457         case attr_cursor:
1458                 if (this_->cursor_flag != !!attr->u.num) {
1459                         this_->cursor_flag=!!attr->u.num;
1460                         attr_updated=1;
1461                 }
1462                 break;
1463         case attr_layout:
1464                 if(this_->layout_current!=attr->u.layout) {
1465                         this_->layout_current=attr->u.layout;
1466                         graphics_font_destroy_all(this_->gra);
1467                         navit_draw(this_);
1468                         attr_updated=1;
1469                 }
1470                 break;
1471         case attr_orientation:
1472                 orient_old=this_->orientation;
1473                 this_->orientation=attr->u.num;
1474                 if (this_->orientation != -1) {
1475                         dir = this_->orientation;
1476                 } else {
1477                         if (this_->vehicle) {
1478                                 dir = this_->vehicle->dir;
1479                         }
1480                 }
1481                 transform_set_angle(this_->trans, dir);
1482                 if (orient_old != this_->orientation) {
1483                         if (this_->ready == 3)
1484                                 navit_draw(this_);
1485                         attr_updated=1;
1486                 }
1487                 break;
1488         case attr_projection:
1489                 if(this_->trans && transform_get_projection(this_->trans) != attr->u.projection) {
1490                         navit_projection_set(this_, attr->u.projection);
1491                         attr_updated=1;
1492                 }
1493                 break;
1494         case attr_tracking:
1495                 if (this_->tracking_flag != !!attr->u.num) {
1496                         this_->tracking_flag=!!attr->u.num;
1497                         attr_updated=1;
1498                 }
1499                 break;
1500         case attr_vehicle:
1501                 if (!this_->vehicle || this_->vehicle->vehicle != attr->u.vehicle) {
1502                         GList *l;
1503                         l=this_->vehicles;
1504                         while(l) {
1505                                 if (((struct navit_vehicle *)l->data)->vehicle == attr->u.vehicle) {
1506                                         this_->vehicle=(struct navit_vehicle *)l->data;
1507                                         attr_updated=1;
1508                                 }
1509                                 l=g_list_next(l);
1510                         }
1511                 }
1512                 break;
1513         default:
1514                 return 0;
1515         }
1516         if (attr_updated) {
1517                 callback_list_call_attr_2(this_->attr_cbl, attr->type, this_, attr);
1518         }
1519         return 1;
1520 }
1521
1522 int
1523 navit_get_attr(struct navit *this_, enum attr_type type, struct attr *attr, struct attr_iter *iter)
1524 {
1525         switch (type) {
1526         case attr_bookmark_map:
1527                 attr->u.map=this_->bookmark;
1528                 break;
1529         case attr_cursor:
1530                 attr->u.num=this_->cursor_flag;
1531                 break;
1532         case attr_destination:
1533                 if (! this_->destination_valid)
1534                         return 0;
1535                 attr->u.pcoord=&this_->destination;
1536                 break;
1537         case attr_former_destination_map:
1538                 attr->u.map=this_->former_destination;
1539                 break;
1540         case attr_layout:
1541                 if (iter) {
1542                         if (iter->u.list) {
1543                                 iter->u.list=g_list_next(iter->u.list);
1544                         } else { 
1545                                 iter->u.list=this_->layouts;
1546                         }
1547                         if (!iter->u.list)
1548                                 return 0;
1549                         attr->u.layout=(struct layout *)iter->u.list->data;
1550                 } else {
1551                         attr->u.layout=this_->layout_current;
1552                 }
1553                 break;
1554         case attr_map:
1555                 if (iter && this_->mapsets) {
1556                         if (!iter->u.mapset_handle) {
1557                                 iter->u.mapset_handle=mapset_open((struct mapset *)this_->mapsets->data);
1558                         }
1559                         attr->u.map=mapset_next(iter->u.mapset_handle, 0);
1560                         if(!attr->u.map) {
1561                                 mapset_close(iter->u.mapset_handle);
1562                                 return 0;
1563                         }
1564                 } else {
1565                         return 0;
1566                 }
1567                 break;
1568         case attr_navigation:
1569                 attr->u.navigation=this_->navigation;
1570                 break;
1571         case attr_orientation:
1572                 attr->u.num=this_->orientation;
1573                 break;
1574         case attr_projection:
1575                 if(this_->trans) {
1576                         attr->u.num=transform_get_projection(this_->trans);
1577                 } else {
1578                         return 0;
1579                 }
1580                 break;
1581         case attr_route:
1582                 attr->u.route=this_->route;
1583                 break;
1584         case attr_tracking:
1585                 attr->u.num=this_->tracking_flag;
1586                 break;
1587         case attr_vehicle:
1588                 if(iter) {
1589                         if(iter->u.list) {
1590                                 iter->u.list=g_list_next(iter->u.list);
1591                         } else { 
1592                                 iter->u.list=this_->vehicles;
1593                         }
1594                         if(!iter->u.list)
1595                                 return 0;
1596                         attr->u.vehicle=((struct navit_vehicle*)iter->u.list->data)->vehicle;
1597                 } else {
1598                         if(this_->vehicle) {
1599                                 attr->u.vehicle=this_->vehicle->vehicle;
1600                         } else {
1601                                 return 0;
1602                         }
1603                 }
1604                 break;
1605         case attr_zoom:
1606                 attr->u.num=transform_get_scale(this_->trans);
1607                 break;
1608         default:
1609                 return 0;
1610         }
1611         attr->type=type;
1612         return 1;
1613 }
1614
1615 static int
1616 navit_add_log(struct navit *this_, struct log *log)
1617 {
1618         struct attr type_attr;
1619         if (!log_get_attr(log, attr_type, &type_attr, NULL))
1620                 return 0;
1621         if (!strcmp(type_attr.u.str, "textfile_debug")) {
1622                 char *header = "type=track_tracked\n";
1623                 if (this_->textfile_debug_log)
1624                         return 0;
1625                 log_set_header(log, header, strlen(header));
1626                 this_->textfile_debug_log=log;
1627                 return 1;
1628         }
1629         return 0;
1630 }
1631
1632 int
1633 navit_add_attr(struct navit *this_, struct attr *attr)
1634 {
1635         switch (attr->type) {
1636         case attr_log:
1637                 return navit_add_log(this_, attr->u.log);
1638         case attr_gui:
1639                 return navit_set_gui(this_, attr->u.gui);
1640         case attr_graphics:
1641                 return navit_set_graphics(this_, attr->u.graphics);
1642         case attr_layout:
1643                 this_->layouts = g_list_append(this_->layouts, attr->u.layout);
1644                 if(!this_->layout_current) 
1645                         this_->layout_current=attr->u.layout;
1646                 return 1;
1647         case attr_route:
1648                 this_->route=attr->u.route;
1649                 break;
1650         case attr_mapset:
1651                 this_->mapsets = g_list_append(this_->mapsets, attr->u.mapset);
1652                 break;
1653         case attr_navigation:
1654                 this_->navigation=attr->u.navigation;
1655                 break;
1656         case attr_recent_dest:
1657                 this_->recentdest_count = attr->u.num;
1658                 break;
1659         case attr_speech:
1660                 this_->speech=attr->u.speech;
1661                 break;
1662         case attr_tracking:
1663                 this_->tracking=attr->u.tracking;
1664                 break;
1665         case attr_vehicle:
1666                 return navit_add_vehicle(this_, attr->u.vehicle);
1667                 break;
1668         case attr_timeout:
1669                 this_->center_timeout = attr->u.num;
1670                 break;
1671         default:
1672                 return 0;
1673         }
1674         return 1;
1675 }
1676
1677 struct attr_iter *
1678 navit_attr_iter_new()
1679 {
1680         return g_new0(struct attr_iter, 1);
1681 }
1682
1683 void
1684 navit_attr_iter_destroy(struct attr_iter *iter)
1685 {
1686         g_free(iter);
1687 }
1688
1689 void
1690 navit_add_callback(struct navit *this_, struct callback *cb)
1691 {
1692         callback_list_add(this_->attr_cbl, cb);
1693 }
1694
1695 void
1696 navit_remove_callback(struct navit *this_, struct callback *cb)
1697 {
1698         callback_list_remove(this_->attr_cbl, cb);
1699 }
1700
1701 /**
1702  * Toggle the cursor update : refresh the map each time the cursor has moved (instead of only when it reaches a border)
1703  *
1704  * @param navit The navit instance
1705  * @returns nothing
1706  */
1707
1708 static void
1709 navit_vehicle_draw(struct navit *this_, struct navit_vehicle *nv, struct point *pnt)
1710 {
1711         struct point cursor_pnt;
1712         enum projection pro;
1713         struct attr cursor;
1714
1715         if (this_->blocked)
1716                 return;
1717         if (! vehicle_get_attr(nv->vehicle, attr_cursor, &cursor, NULL))
1718                 return;
1719         if (! cursor.u.cursor)
1720                 return;
1721         if (pnt)
1722                 cursor_pnt=*pnt;
1723         else {
1724                 pro=transform_get_projection(this_->trans);
1725                 transform(this_->trans, pro, &nv->coord, &cursor_pnt, 1, 0);
1726         }
1727         cursor_draw(cursor.u.cursor, this_->gra, &cursor_pnt, pnt ? 0:1, nv->dir-transform_get_angle(this_->trans, 0), nv->speed);
1728 #if 0   
1729         if (pnt)
1730                 pnt2=*pnt;
1731         else {
1732                 pro=transform_get_projection(this_->trans);
1733                 transform(this_->trans, pro, &nv->coord, &pnt2, 1, 0);
1734         }
1735 #if 1
1736         cursor_draw(nv->cursor, &pnt2, nv->dir-transform_get_angle(this_->trans, 0), nv->speed > 2, pnt == NULL);
1737 #else
1738         cursor_draw(nv->cursor, &pnt2, nv->dir-transform_get_angle(this_->trans, 0), nv->speed > 2, 1);
1739 #endif
1740 #endif
1741 }
1742
1743 static void
1744 navit_vehicle_update(struct navit *this_, struct navit_vehicle *nv)
1745 {
1746         struct attr attr_dir, attr_speed, attr_pos;
1747         struct pcoord cursor_pc;
1748         struct point cursor_pnt, *pnt=&cursor_pnt;
1749         enum projection pro;
1750         int border=16;
1751         int route_path_set=0;
1752         int recenter = 1; // indicates if we should recenter the map
1753
1754         profile(0,NULL);
1755         if (this_->ready != 3) {
1756                 profile(0,"return 1\n");
1757                 return;
1758         }
1759
1760         if (! vehicle_get_attr(nv->vehicle, attr_position_direction, &attr_dir, NULL) ||
1761             ! vehicle_get_attr(nv->vehicle, attr_position_speed, &attr_speed, NULL) ||
1762             ! vehicle_get_attr(nv->vehicle, attr_position_coord_geo, &attr_pos, NULL)) {
1763                 profile(0,"return 2\n");
1764                 return;
1765         }
1766         nv->dir=*attr_dir.u.numd;
1767         nv->speed=*attr_speed.u.numd;
1768         pro=transform_get_projection(this_->trans);
1769         transform_from_geo(pro, attr_pos.u.coord_geo, &nv->coord);
1770         if (nv != this_->vehicle) {
1771                 navit_vehicle_draw(this_, nv, NULL);
1772                 profile(0,"return 3\n");
1773                 return;
1774         }
1775
1776         if (nv->speed < 10) {
1777                 long long diff,diff_x,diff_y;
1778
1779                 diff_x = abs(nv->coord.x - nv->last.x);
1780                 diff_y = abs(nv->coord.y - nv->last.y);
1781                 diff = (diff_x * diff_x) + (diff_y * diff_y);
1782
1783                 if ((diff < 20) && (diff > 0)) { // if our long is only 32 bit wide, we could run into an overflow here
1784                         recenter = 0;
1785                 }
1786         }
1787         if (recenter) {
1788                 nv->last = nv->coord;
1789         }
1790
1791         if (this_->route)
1792                 route_path_set=route_get_path_set(this_->route);
1793         cursor_pc.x = nv->coord.x;
1794         cursor_pc.y = nv->coord.y;
1795         cursor_pc.pro = pro;
1796         if (this_->tracking && this_->tracking_flag) {
1797                 if (tracking_update(this_->tracking, &cursor_pc, nv->dir)) {
1798                         nv->coord.x=cursor_pc.x;
1799                         nv->coord.y=cursor_pc.y;
1800                 }
1801         }
1802         if (nv->update_curr == 1) {
1803                 if (this_->route) {
1804                         if (this_->tracking && this_->tracking_flag)
1805                                 route_set_position_from_tracking(this_->route, this_->tracking);
1806                         else
1807                                 route_set_position(this_->route, &cursor_pc);
1808                 }
1809                 callback_list_call_attr_0(this_->attr_cbl, attr_position);
1810         }
1811         navit_textfile_debug_log(this_, "type=trackpoint_tracked");
1812         transform(this_->trans, pro, &nv->coord, &cursor_pnt, 1, 0);
1813         if (!transform_within_border(this_->trans, &cursor_pnt, border)) {
1814                 if (!this_->cursor_flag) {
1815                         profile(0,"return 4\n");
1816                         return;
1817                 }
1818                 if ((nv->follow_curr != 1) && ((time(NULL) - this_->last_moved) > this_->center_timeout) && (this_->button_pressed != 1) && (recenter)) {
1819                         if (this_->orientation != -1) {
1820                                 int dir=nv->dir-this_->orientation;
1821                                 navit_set_center_cursor(this_, &nv->coord, 0, 50 - 30.*sin(M_PI*dir/180.), 50 + 30.*cos(M_PI*dir/180.));
1822                         }
1823                         else
1824                                 navit_set_center_cursor(this_, &nv->coord, nv->dir, 50, 80);
1825                         pnt=NULL;
1826                 }
1827         }
1828
1829 #ifndef _WIN32
1830         if (this_->pid && nv->speed > 2)
1831                 kill(this_->pid, SIGWINCH);
1832 #endif
1833         if (this_->route && nv->update_curr == 1)
1834                 navigation_update(this_->navigation, this_->route);
1835         if ((nv->follow_curr == 1) && (!this_->button_pressed)) {
1836                 if (this_->cursor_flag && ((time(NULL) - this_->last_moved) > this_->center_timeout) && (recenter)) {
1837                         navit_set_center_cursor(this_, &nv->coord, nv->dir, 50, 80);
1838                         pnt=NULL;
1839                 } else { // We don't want to center, but redraw because otherwise the old route "lags"
1840                         navit_draw(this_);
1841                 }
1842         }
1843         if (pnt && this_->route && !route_path_set && route_get_path_set(this_->route))
1844                 navit_draw(this_);
1845         if (nv->follow_curr > 1)
1846                 nv->follow_curr--;
1847         else
1848                 nv->follow_curr=nv->follow;
1849         if (nv->update_curr > 1)
1850                 nv->update_curr--;
1851         else
1852                 nv->update_curr=nv->update;
1853         callback_list_call_attr_2(this_->attr_cbl, attr_position_coord_geo, this_, nv->vehicle);
1854         if (pnt)
1855                 navit_vehicle_draw(this_, nv, pnt);
1856
1857         /* Finally, if we reached our destination, stop navigation. */
1858         if (this_->route && route_destination_reached(this_->route)) {
1859                 navit_set_destination(this_, NULL, NULL);
1860         }
1861         profile(0,"return 5\n");
1862 }
1863
1864 /**
1865  * Set the position of the vehicle
1866  *
1867  * @param navit The navit instance
1868  * @param c The coordinate to set as position
1869  * @returns nothing
1870  */
1871
1872 void
1873 navit_set_position(struct navit *this_, struct pcoord *c)
1874 {
1875         if (this_->route) {
1876                 route_set_position(this_->route, c);
1877                 callback_list_call_attr_0(this_->attr_cbl, attr_position);
1878                 if (this_->navigation) {
1879                         navigation_update(this_->navigation, this_->route);
1880 #if 0
1881                         map_dump_file(route_get_map(this_->route), "route.txt");
1882                         map_dump_file(navigation_get_map(this_->navigation), "navigation.txt");
1883 #endif
1884                 }
1885         }
1886         if (this_->ready == 3)
1887                 navit_draw(this_);
1888 }
1889
1890 static void
1891 navit_set_vehicle(struct navit *this_, struct navit_vehicle *nv)
1892 {
1893         this_->vehicle=nv;
1894 }
1895
1896 /**
1897  * Register a new vehicle
1898  *
1899  * @param navit The navit instance
1900  * @param v The vehicle instance
1901  * @returns 1 for success
1902  */
1903 static int
1904 navit_add_vehicle(struct navit *this_, struct vehicle *v)
1905 {
1906         struct navit_vehicle *nv=g_new0(struct navit_vehicle, 1);
1907         struct attr update,follow,color,active, color2, animate;
1908         nv->vehicle=v;
1909         nv->update=1;
1910         nv->follow=0;
1911         nv->last.x = 0;
1912         nv->last.y = 0;
1913         nv->animate_cursor=0;
1914         if ((vehicle_get_attr(v, attr_update, &update, NULL)))
1915                 nv->update=nv->update=update.u.num;
1916         if ((vehicle_get_attr(v, attr_follow, &follow, NULL)))
1917                 nv->follow=nv->follow=follow.u.num;
1918         if ((vehicle_get_attr(v, attr_color, &color, NULL)))
1919                 nv->c=*(color.u.color);
1920         if ((vehicle_get_attr(v, attr_color2, &color2, NULL)))
1921                 nv->c2=color2.u.color;
1922         else
1923                 nv->c2=NULL;
1924         nv->update_curr=nv->update;
1925         nv->follow_curr=nv->follow;
1926         this_->vehicles=g_list_append(this_->vehicles, nv);
1927         if ((vehicle_get_attr(v, attr_active, &active, NULL)) && active.u.num)
1928                 navit_set_vehicle(this_, nv);
1929         if ((vehicle_get_attr(v, attr_animate, &animate, NULL)))
1930                 nv->animate_cursor=animate.u.num;
1931         return 1;
1932 }
1933
1934
1935
1936
1937 struct gui *
1938 navit_get_gui(struct navit *this_)
1939 {
1940         return this_->gui;
1941 }
1942
1943 struct transformation *
1944 navit_get_trans(struct navit *this_)
1945 {
1946         return this_->trans;
1947 }
1948
1949 struct route *
1950 navit_get_route(struct navit *this_)
1951 {
1952         return this_->route;
1953 }
1954
1955 struct navigation *
1956 navit_get_navigation(struct navit *this_)
1957 {
1958         return this_->navigation;
1959 }
1960
1961 struct displaylist *
1962 navit_get_displaylist(struct navit *this_)
1963 {
1964         return this_->displaylist;
1965 }
1966
1967 int
1968 navit_block(struct navit *this_, int block)
1969 {
1970         if (block) {
1971                 this_->blocked |= 1;
1972                 return 0;
1973         }
1974         if (this_->blocked & 2) {
1975                 this_->blocked=0;
1976                 navit_draw(this_);
1977                 return 1;
1978         }
1979         this_->blocked=0;
1980         return 0;
1981 }
1982
1983 int
1984 navit_command_register(struct navit *this_, char *command, struct callback *cb)
1985 {
1986         dbg(1,"registering '%s'\n", command);
1987         g_hash_table_insert(this_->commands, command, cb);
1988
1989         return 0;
1990 }
1991
1992 struct callback *
1993 navit_command_unregister(struct navit *this_, char *command)
1994 {
1995         struct callback *ret=g_hash_table_lookup(this_->commands, command);
1996         if (ret) {
1997                 g_hash_table_remove(this_->commands, command);
1998         }
1999
2000         return ret;
2001 }
2002
2003 int
2004 navit_command_call(struct navit *this_, char *command)
2005 {
2006         struct callback *cb=g_hash_table_lookup(this_->commands, command);
2007         dbg(0,"calling callback %p for '%s'\n", cb, command);
2008         if (! cb)
2009                 return 1;
2010         callback_call_1(cb, command);
2011         return 0;
2012 }
2013
2014 void
2015 navit_destroy(struct navit *this_)
2016 {
2017         /* TODO: destroy objects contained in this_ */
2018         main_remove_navit(this_);
2019         char *center_file = navit_get_center_file(TRUE);
2020         navit_write_center_to_file(this_, center_file);
2021         g_free(center_file);
2022         callback_destroy(navit_command_unregister(this_, "zoom_in"));
2023         callback_destroy(navit_command_unregister(this_, "zoom_out"));
2024         g_hash_table_destroy(this_->commands);
2025         g_free(this_);
2026 }
2027
2028 /** @} */