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