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