Patch:core:Fixes a bug in the switching of day to night layouts as pre ticket #637...
[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                         if (!strcmp(name.u.str,"none"))
1377                                 c=NULL;
1378                         else
1379                                 c=layout_get_cursor(this_->layout_current, name.u.str);
1380                 } else
1381                         c=layout_get_cursor(this_->layout_current, "default");
1382                 vehicle_set_cursor(nv->vehicle, c);
1383                 v=g_list_next(v);
1384         }
1385         return;
1386 }
1387
1388 static int
1389 navit_get_cursor_pnt(struct navit *this_, struct point *p, int *dir)
1390 {
1391         int width, height;
1392         struct navit_vehicle *nv=this_->vehicle;
1393
1394         float offset=this_->radius;      // Cursor offset from the center of the screen (percent).
1395 #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 */
1396         float min_offset = 0.;      // Percent offset at min_offset_speed.
1397         float max_offset = 30.;     // Percent offset at max_offset_speed.
1398         int min_offset_speed = 2;   // Speed in km/h
1399         int max_offset_speed = 50;  // Speed ini km/h
1400         // Calculate cursor offset from the center of the screen, upon speed.
1401         if (nv->speed <= min_offset_speed) {
1402             offset = min_offset;
1403         } else if (nv->speed > max_offset_speed) {
1404             offset = max_offset;
1405         } else {
1406             offset = (max_offset - min_offset) / (max_offset_speed - min_offset_speed) * (nv->speed - min_offset_speed);
1407         }
1408 #endif
1409
1410         transform_get_size(this_->trans, &width, &height);
1411         if (this_->orientation == -1) {
1412                 p->x=50*width/100;
1413                 p->y=(50 + offset)*height/100;
1414                 if (dir)
1415                         *dir=nv->dir;
1416         } else {
1417                 int mdir;
1418                 if (this_->tracking && this_->tracking_flag) {
1419                         mdir = tracking_get_angle(this_->tracking) - this_->orientation;
1420                 } else {
1421                         mdir=nv->dir-this_->orientation;
1422                 }
1423
1424                 p->x=(50 - offset*sin(M_PI*mdir/180.))*width/100;
1425                 p->y=(50 + offset*cos(M_PI*mdir/180.))*height/100;
1426                 if (dir)
1427                         *dir=this_->orientation;
1428         }
1429         return 1;
1430 }
1431
1432 static void
1433 navit_set_center_cursor(struct navit *this_)
1434 {
1435         int dir;
1436         struct point pn;
1437         struct navit_vehicle *nv=this_->vehicle;
1438         navit_get_cursor_pnt(this_, &pn, &dir);
1439         transform_set_yaw(this_->trans, dir);
1440         navit_set_center_coord_screen(this_, &nv->coord, &pn, 0);
1441         navit_autozoom(this_, &nv->coord, nv->speed, 0);
1442         if (this_->ready == 3)
1443                 navit_draw_async(this_, 1);
1444 }
1445
1446 static void
1447 navit_cmd_set_center_cursor(struct navit *this_)
1448 {
1449         navit_set_center_cursor(this_);
1450 }
1451
1452 void
1453 navit_set_center_screen(struct navit *this_, struct point *p, int set_timeout)
1454 {
1455         struct coord c;
1456         struct pcoord pc;
1457         transform_reverse(this_->trans, p, &c);
1458         pc.x = c.x;
1459         pc.y = c.y;
1460         pc.pro = transform_get_projection(this_->trans);
1461         navit_set_center(this_, &pc, set_timeout);
1462 }
1463
1464 #if 0
1465                 switch((*attrs)->type) {
1466                 case attr_zoom:
1467                         zoom=(*attrs)->u.num;
1468                         break;
1469                 case attr_center:
1470                         g=*((*attrs)->u.coord_geo);
1471                         break;
1472 #endif
1473
1474 static int
1475 navit_set_attr_do(struct navit *this_, struct attr *attr, int init)
1476 {
1477         int dir=0, orient_old=0, attr_updated=0;
1478         struct coord co;
1479         long zoom;
1480         GList *l;
1481         struct navit_vehicle *nv;
1482         struct attr active=(struct attr){attr_active,{(void *)0}};
1483         struct layout *lay;
1484
1485         switch (attr->type) {
1486         case attr_autozoom:
1487                 attr_updated=(this_->autozoom_secs != attr->u.num);
1488                 this_->autozoom_secs = attr->u.num;
1489                 break;
1490         case attr_autozoom_active:
1491                 attr_updated=(this_->autozoom_active != attr->u.num);
1492                 this_->autozoom_active = attr->u.num;
1493                 break;
1494         case attr_center:
1495                 transform_from_geo(transform_get_projection(this_->trans), attr->u.coord_geo, &co);
1496                 dbg(1,"0x%x,0x%x\n",co.x,co.y);
1497                 transform_set_center(this_->trans, &co);
1498                 break;
1499         case attr_drag_bitmap:
1500                 attr_updated=(this_->drag_bitmap != !!attr->u.num);
1501                 this_->drag_bitmap=!!attr->u.num;
1502                 break;
1503         case attr_flags:
1504                 attr_updated=(this_->flags != attr->u.num);
1505                 this_->flags=attr->u.num;
1506                 break;
1507         case attr_flags_graphics:
1508                 attr_updated=(this_->graphics_flags != attr->u.num);
1509                 this_->graphics_flags=attr->u.num;
1510                 break;
1511         case attr_follow:
1512                 if (!this_->vehicle)
1513                         return 0;
1514                 attr_updated=(this_->vehicle->follow_curr != attr->u.num);
1515                 this_->vehicle->follow_curr = attr->u.num;
1516                 break;
1517         case attr_layout:
1518                 if(this_->layout_current!=attr->u.layout) {
1519                         this_->layout_current=attr->u.layout;
1520                         graphics_font_destroy_all(this_->gra);
1521                         navit_set_cursors(this_);
1522                         if (this_->ready == 3)
1523                                 navit_draw(this_);
1524                         attr_updated=1;
1525                 }
1526                 break;
1527         case attr_layout_name:
1528                 l=this_->layouts;
1529                 while (l) {
1530                         lay=l->data;
1531                         if (!strcmp(lay->name,attr->u.str)) {
1532                                 struct attr attr;
1533                                 attr.type=attr_layout;
1534                                 attr.u.layout=lay;
1535                                 return navit_set_attr_do(this_, &attr, init);
1536                         }
1537                         l=g_list_next(l);
1538                 }               
1539                 return 0;
1540         case attr_orientation:
1541                 orient_old=this_->orientation;
1542                 this_->orientation=attr->u.num;
1543                 if (!init) {
1544                         if (this_->orientation != -1) {
1545                                 dir = this_->orientation;
1546                         } else {
1547                                 if (this_->vehicle) {
1548                                         dir = this_->vehicle->dir;
1549                                 }
1550                         }
1551                         transform_set_yaw(this_->trans, dir);
1552                         if (orient_old != this_->orientation) {
1553 #if 0
1554                                 if (this_->ready == 3)
1555                                         navit_draw(this_);
1556 #endif
1557                                 attr_updated=1;
1558                         }
1559                 }
1560                 break;
1561         case attr_osd_configuration:
1562                 dbg(0,"setting osd_configuration to %d (was %d)\n", attr->u.num, this_->osd_configuration);
1563                 attr_updated=(this_->osd_configuration != attr->u.num);
1564                 this_->osd_configuration=attr->u.num;
1565                 break;
1566         case attr_pitch:
1567                 attr_updated=(this_->pitch != attr->u.num);
1568                 this_->pitch=attr->u.num;
1569                 transform_set_pitch(this_->trans, this_->pitch);
1570                 if (!init && attr_updated && this_->ready == 3)
1571                         navit_draw(this_);
1572                 break;
1573         case attr_projection:
1574                 if(this_->trans && transform_get_projection(this_->trans) != attr->u.projection) {
1575                         navit_projection_set(this_, attr->u.projection, !init);
1576                         attr_updated=1;
1577                 }
1578                 break;
1579         case attr_radius:
1580                 attr_updated=(this_->radius != attr->u.num);
1581                 this_->radius=attr->u.num;
1582                 break;
1583         case attr_recent_dest:
1584                 attr_updated=(this_->recentdest_count != attr->u.num);
1585                 this_->recentdest_count=attr->u.num;
1586                 break;
1587         case attr_speech:
1588                 if(this_->speech && this_->speech != attr->u.speech) {
1589                         attr_updated=1;
1590                         this_->speech = attr->u.speech;
1591                 }
1592                 break;
1593         case attr_timeout:
1594                 attr_updated=(this_->center_timeout != attr->u.num);
1595                 this_->center_timeout = attr->u.num;
1596                 break;
1597         case attr_tracking:
1598                 attr_updated=(this_->tracking_flag != !!attr->u.num);
1599                 this_->tracking_flag=!!attr->u.num;
1600                 break;
1601         case attr_transformation:
1602                 this_->trans=attr->u.transformation;
1603                 break;
1604         case attr_use_mousewheel:
1605                 attr_updated=(this_->use_mousewheel != !!attr->u.num);
1606                 this_->use_mousewheel=!!attr->u.num;
1607                 break;
1608         case attr_vehicle:
1609                 l=this_->vehicles;
1610                 while(l) {
1611                         nv=l->data;
1612                         if (nv->vehicle == attr->u.vehicle) {
1613                                 if (!this_->vehicle || this_->vehicle->vehicle != attr->u.vehicle) {
1614                                         if (this_->vehicle)
1615                                                 vehicle_set_attr(this_->vehicle->vehicle, &active);
1616                                         active.u.num=1;
1617                                         vehicle_set_attr(nv->vehicle, &active);
1618                                         attr_updated=1;
1619                                 }
1620                                 navit_set_vehicle(this_, nv);
1621                         }
1622                         l=g_list_next(l);
1623                 }
1624                 break;
1625         case attr_zoom:
1626                 zoom=transform_get_scale(this_->trans);
1627                 attr_updated=(zoom != attr->u.num);
1628                 transform_set_scale(this_->trans, attr->u.num);
1629                 if (attr_updated && !init) 
1630                         navit_draw(this_);
1631                 break;
1632         case attr_zoom_min:
1633                 attr_updated=(attr->u.num != this_->zoom_min);
1634                 this_->zoom_min=attr->u.num;
1635                 break;
1636         case attr_zoom_max:
1637                 attr_updated=(attr->u.num != this_->zoom_max);
1638                 this_->zoom_max=attr->u.num;
1639                 break;
1640         case attr_message:
1641                 navit_add_message(this_, attr->u.str);
1642                 break;
1643         case attr_follow_cursor:
1644                 attr_updated=(this_->follow_cursor != !!attr->u.num);
1645                 this_->follow_cursor=!!attr->u.num;
1646                 break;
1647         default:
1648                 return 0;
1649         }
1650         if (attr_updated && !init) {
1651                 callback_list_call_attr_2(this_->attr_cbl, attr->type, this_, attr);
1652                 if (attr->type == attr_osd_configuration)
1653                         graphics_draw_mode(this_->gra, draw_mode_end);
1654         }
1655         return 1;
1656 }
1657
1658 int
1659 navit_set_attr(struct navit *this_, struct attr *attr)
1660 {
1661         return navit_set_attr_do(this_, attr, 0);
1662 }
1663
1664 int
1665 navit_get_attr(struct navit *this_, enum attr_type type, struct attr *attr, struct attr_iter *iter)
1666 {
1667         struct message *msg;
1668         int len,offset;
1669         int ret=1;
1670
1671         switch (type) {
1672         case attr_message:
1673                 msg = navit_get_messages(this_);
1674                 
1675                 if (!msg) {
1676                         return 0;
1677                 }
1678
1679                 len = 0;
1680                 while (msg) {
1681                         len += strlen(msg->text) + 1;
1682                         msg = msg->next;
1683                 }
1684                 attr->u.str = g_malloc(len + 1);
1685                 
1686                 msg = navit_get_messages(this_);
1687                 offset = 0;
1688                 while (msg) {
1689                         g_stpcpy((attr->u.str + offset), msg->text);
1690                         offset += strlen(msg->text);
1691                         attr->u.str[offset] = '\n';
1692                         offset++;
1693
1694                         msg = msg->next;
1695                 }
1696
1697                 attr->u.str[len] = '\0';
1698                 break;
1699         case attr_bookmark_map:
1700                 attr->u.map=bookmarks_get_map(this_->bookmarks);
1701                 break;
1702         case attr_bookmarks:
1703                 attr->u.bookmarks=this_->bookmarks;
1704                 break;
1705         case attr_callback_list:
1706                 attr->u.callback_list=this_->attr_cbl;
1707                 break;
1708         case attr_destination:
1709                 if (! this_->destination_valid)
1710                         return 0;
1711                 attr->u.pcoord=&this_->destination;
1712                 break;
1713         case attr_displaylist:
1714                 attr->u.displaylist=this_->displaylist;
1715                 return (attr->u.displaylist != NULL);
1716         case attr_follow:
1717                 if (!this_->vehicle)
1718                         return 0;
1719                 attr->u.num=this_->vehicle->follow_curr;
1720                 break;
1721         case attr_former_destination_map:
1722                 attr->u.map=this_->former_destination;
1723                 break;
1724         case attr_graphics:
1725                 attr->u.graphics=this_->gra;
1726                 ret=(attr->u.graphics != NULL);
1727                 break;
1728         case attr_gui:
1729                 attr->u.gui=this_->gui;
1730                 ret=(attr->u.gui != NULL);
1731                 break;
1732         case attr_layout:
1733                 if (iter) {
1734                         if (iter->u.list) {
1735                                 iter->u.list=g_list_next(iter->u.list);
1736                         } else { 
1737                                 iter->u.list=this_->layouts;
1738                         }
1739                         if (!iter->u.list)
1740                                 return 0;
1741                         attr->u.layout=(struct layout *)iter->u.list->data;
1742                 } else {
1743                         attr->u.layout=this_->layout_current;
1744                 }
1745                 break;
1746         case attr_map:
1747                 if (iter && this_->mapsets) {
1748                         if (!iter->u.mapset_handle) {
1749                                 iter->u.mapset_handle=mapset_open((struct mapset *)this_->mapsets->data);
1750                         }
1751                         attr->u.map=mapset_next(iter->u.mapset_handle, 0);
1752                         if(!attr->u.map) {
1753                                 mapset_close(iter->u.mapset_handle);
1754                                 return 0;
1755                         }
1756                 } else {
1757                         return 0;
1758                 }
1759                 break;
1760         case attr_mapset:
1761                 attr->u.mapset=this_->mapsets->data;
1762                 ret=(attr->u.mapset != NULL);
1763                 break;
1764         case attr_navigation:
1765                 attr->u.navigation=this_->navigation;
1766                 break;
1767         case attr_orientation:
1768                 attr->u.num=this_->orientation;
1769                 break;
1770         case attr_osd_configuration:
1771                 attr->u.num=this_->osd_configuration;
1772                 break;
1773         case attr_pitch:
1774                 attr->u.num=transform_get_pitch(this_->trans);
1775                 break;
1776         case attr_projection:
1777                 if(this_->trans) {
1778                         attr->u.num=transform_get_projection(this_->trans);
1779                 } else {
1780                         return 0;
1781                 }
1782                 break;
1783         case attr_route:
1784                 attr->u.route=this_->route;
1785                 break;
1786         case attr_speech:
1787                 attr->u.speech=this_->speech;
1788                 break;
1789         case attr_tracking:
1790                 attr->u.num=this_->tracking_flag;
1791                 break;
1792         case attr_trackingo:
1793                 attr->u.tracking=this_->tracking;
1794                 break;
1795         case attr_transformation:
1796                 attr->u.transformation=this_->trans;
1797                 break;
1798         case attr_vehicle:
1799                 if(iter) {
1800                         if(iter->u.list) {
1801                                 iter->u.list=g_list_next(iter->u.list);
1802                         } else { 
1803                                 iter->u.list=this_->vehicles;
1804                         }
1805                         if(!iter->u.list)
1806                                 return 0;
1807                         attr->u.vehicle=((struct navit_vehicle*)iter->u.list->data)->vehicle;
1808                 } else {
1809                         if(this_->vehicle) {
1810                                 attr->u.vehicle=this_->vehicle->vehicle;
1811                         } else {
1812                                 return 0;
1813                         }
1814                 }
1815                 break;
1816         case attr_vehicleprofile:
1817                 attr->u.vehicleprofile=this_->vehicleprofile;
1818                 break;
1819         case attr_zoom:
1820                 attr->u.num=transform_get_scale(this_->trans);
1821                 break;
1822         case attr_autozoom_active:
1823                 attr->u.num=this_->autozoom_active;
1824                 break;
1825         case attr_follow_cursor:
1826                 attr->u.num=this_->follow_cursor;
1827                 break;
1828         default:
1829                 return 0;
1830         }
1831         attr->type=type;
1832         return ret;
1833 }
1834
1835 static int
1836 navit_add_log(struct navit *this_, struct log *log)
1837 {
1838         struct attr type_attr;
1839         if (!log_get_attr(log, attr_type, &type_attr, NULL))
1840                 return 0;
1841         if (!strcmp(type_attr.u.str, "textfile_debug")) {
1842                 char *header = "type=track_tracked\n";
1843                 if (this_->textfile_debug_log)
1844                         return 0;
1845                 log_set_header(log, header, strlen(header));
1846                 this_->textfile_debug_log=log;
1847                 return 1;
1848         }
1849         return 0;
1850 }
1851
1852 int
1853 navit_add_attr(struct navit *this_, struct attr *attr)
1854 {
1855         int ret=1;
1856         switch (attr->type) {
1857         case attr_callback:
1858                 navit_add_callback(this_, attr->u.callback);
1859                 break;
1860         case attr_log:
1861                 ret=navit_add_log(this_, attr->u.log);
1862                 break;
1863         case attr_gui:
1864                 ret=navit_set_gui(this_, attr->u.gui);
1865                 break;
1866         case attr_graphics:
1867                 ret=navit_set_graphics(this_, attr->u.graphics);
1868                 break;
1869         case attr_layout:
1870                 this_->layouts = g_list_append(this_->layouts, attr->u.layout);
1871                 if(!this_->layout_current) 
1872                         this_->layout_current=attr->u.layout;
1873                 break;
1874         case attr_route:
1875                 this_->route=attr->u.route;
1876                 break;
1877         case attr_mapset:
1878                 this_->mapsets = g_list_append(this_->mapsets, attr->u.mapset);
1879                 break;
1880         case attr_navigation:
1881                 this_->navigation=attr->u.navigation;
1882                 break;
1883         case attr_recent_dest:
1884                 this_->recentdest_count = attr->u.num;
1885                 break;
1886         case attr_speech:
1887                 this_->speech=attr->u.speech;
1888                 break;
1889         case attr_tracking:
1890                 this_->tracking=attr->u.tracking;
1891                 break;
1892         case attr_vehicle:
1893                 ret=navit_add_vehicle(this_, attr->u.vehicle);
1894                 break;
1895         case attr_vehicleprofile:
1896                 this_->vehicleprofiles=g_list_prepend(this_->vehicleprofiles, attr->u.vehicleprofile);
1897                 break;
1898         case attr_autozoom_min:
1899                 this_->autozoom_min = attr->u.num;
1900                 break;
1901         default:
1902                 return 0;
1903         }
1904         callback_list_call_attr_2(this_->attr_cbl, attr->type, this_, attr);
1905         return ret;
1906 }
1907
1908 int
1909 navit_remove_attr(struct navit *this_, struct attr *attr)
1910 {
1911         int ret=1;
1912         switch (attr->type) {
1913         case attr_callback:
1914                 navit_remove_callback(this_, attr->u.callback);
1915                 break;
1916         default:
1917                 return 0;
1918         }
1919         return ret;
1920 }
1921
1922 struct attr_iter *
1923 navit_attr_iter_new(void)
1924 {
1925         return g_new0(struct attr_iter, 1);
1926 }
1927
1928 void
1929 navit_attr_iter_destroy(struct attr_iter *iter)
1930 {
1931         g_free(iter);
1932 }
1933
1934 void
1935 navit_add_callback(struct navit *this_, struct callback *cb)
1936 {
1937         callback_list_add(this_->attr_cbl, cb);
1938 }
1939
1940 void
1941 navit_remove_callback(struct navit *this_, struct callback *cb)
1942 {
1943         callback_list_remove(this_->attr_cbl, cb);
1944 }
1945
1946 /**
1947  * Toggle the cursor update : refresh the map each time the cursor has moved (instead of only when it reaches a border)
1948  *
1949  * @param navit The navit instance
1950  * @returns nothing
1951  */
1952
1953 static void
1954 navit_vehicle_draw(struct navit *this_, struct navit_vehicle *nv, struct point *pnt)
1955 {
1956         struct point cursor_pnt;
1957         enum projection pro;
1958
1959         if (this_->blocked)
1960                 return;
1961         if (pnt)
1962                 cursor_pnt=*pnt;
1963         else {
1964                 pro=transform_get_projection(this_->trans);
1965                 transform(this_->trans, pro, &nv->coord, &cursor_pnt, 1, 0, 0, NULL);
1966         }
1967         vehicle_draw(nv->vehicle, this_->gra, &cursor_pnt, pnt ? 0:1, nv->dir-transform_get_yaw(this_->trans), nv->speed);
1968 #if 0   
1969         if (pnt)
1970                 pnt2=*pnt;
1971         else {
1972                 pro=transform_get_projection(this_->trans);
1973                 transform(this_->trans, pro, &nv->coord, &pnt2, 1);
1974         }
1975 #if 1
1976         cursor_draw(nv->cursor, &pnt2, nv->dir-transform_get_angle(this_->trans, 0), nv->speed > 2, pnt == NULL);
1977 #else
1978         cursor_draw(nv->cursor, &pnt2, nv->dir-transform_get_angle(this_->trans, 0), nv->speed > 2, 1);
1979 #endif
1980 #endif
1981 }
1982
1983 static void
1984 navit_vehicle_update(struct navit *this_, struct navit_vehicle *nv)
1985 {
1986         struct attr attr_valid, attr_dir, attr_speed, attr_pos;
1987         struct pcoord cursor_pc;
1988         struct point cursor_pnt, *pnt=&cursor_pnt;
1989         struct tracking *tracking=NULL;
1990         enum projection pro=transform_get_projection(this_->trans);
1991         int border=16;
1992         int (*get_attr)(void *, enum attr_type, struct attr *, struct attr_iter *);
1993         void *attr_object;
1994
1995         profile(0,NULL);
1996         if (this_->ready != 3) {
1997                 profile(0,"return 1\n");
1998                 return;
1999         }
2000         navit_layout_switch(this_);
2001         if (this_->vehicle == nv && this_->tracking_flag)
2002                 tracking=this_->tracking;
2003         if (tracking) {
2004                 tracking_update(tracking, nv->vehicle, this_->vehicleprofile, pro);
2005                 attr_object=tracking;
2006                 get_attr=(int (*)(void *, enum attr_type, struct attr *, struct attr_iter *))tracking_get_attr;
2007         } else {
2008                 attr_object=nv->vehicle;
2009                 get_attr=(int (*)(void *, enum attr_type, struct attr *, struct attr_iter *))vehicle_get_attr;
2010         }
2011         if (get_attr(attr_object, attr_position_valid, &attr_valid, NULL))
2012                 if (!attr_valid.u.num != attr_position_valid_invalid)
2013                         return;
2014         if (! get_attr(attr_object, attr_position_direction, &attr_dir, NULL) ||
2015             ! get_attr(attr_object, attr_position_speed, &attr_speed, NULL) ||
2016             ! get_attr(attr_object, attr_position_coord_geo, &attr_pos, NULL)) {
2017                 profile(0,"return 2\n");
2018                 return;
2019         }
2020         nv->dir=*attr_dir.u.numd;
2021         nv->speed=*attr_speed.u.numd;
2022         transform_from_geo(pro, attr_pos.u.coord_geo, &nv->coord);
2023         if (nv != this_->vehicle) {
2024                 navit_vehicle_draw(this_, nv, NULL);
2025                 profile(0,"return 3\n");
2026                 return;
2027         }
2028         cursor_pc.x = nv->coord.x;
2029         cursor_pc.y = nv->coord.y;
2030         cursor_pc.pro = pro;
2031         if (this_->route) {
2032                 if (tracking)
2033                         route_set_position_from_tracking(this_->route, tracking, pro);
2034                 else
2035                         route_set_position(this_->route, &cursor_pc);
2036         }
2037         callback_list_call_attr_0(this_->attr_cbl, attr_position);
2038         navit_textfile_debug_log(this_, "type=trackpoint_tracked");
2039         if (this_->gui && nv->speed > 2)
2040                 navit_disable_suspend();
2041
2042         transform(this_->trans, pro, &nv->coord, &cursor_pnt, 1, 0, 0, NULL);
2043         if (this_->button_pressed != 1 && this_->follow_cursor && nv->follow_curr <= nv->follow && 
2044                 (nv->follow_curr == 1 || !transform_within_border(this_->trans, &cursor_pnt, border)))
2045                 navit_set_center_cursor(this_);
2046         else
2047                 navit_vehicle_draw(this_, nv, pnt);
2048
2049         if (nv->follow_curr > 1)
2050                 nv->follow_curr--;
2051         else
2052                 nv->follow_curr=nv->follow;
2053         callback_list_call_attr_2(this_->attr_cbl, attr_position_coord_geo, this_, nv->vehicle);
2054
2055         /* Finally, if we reached our destination, stop navigation. */
2056         if (this_->route) {
2057                 switch(route_destination_reached(this_->route)) {
2058                 case 1:
2059                         route_remove_waypoint(this_->route);
2060                         break;  
2061                 case 2:
2062                         navit_set_destination(this_, NULL, NULL, 0);
2063                         break;
2064                 }
2065         }
2066         profile(0,"return 5\n");
2067 }
2068
2069 /**
2070  * Set the position of the vehicle
2071  *
2072  * @param navit The navit instance
2073  * @param c The coordinate to set as position
2074  * @returns nothing
2075  */
2076
2077 void
2078 navit_set_position(struct navit *this_, struct pcoord *c)
2079 {
2080         if (this_->route) {
2081                 route_set_position(this_->route, c);
2082                 callback_list_call_attr_0(this_->attr_cbl, attr_position);
2083         }
2084         if (this_->ready == 3)
2085                 navit_draw(this_);
2086 }
2087
2088 static int
2089 navit_set_vehicleprofile(struct navit *this_, char *name)
2090 {
2091         struct attr attr;
2092         GList *l;
2093         l=this_->vehicleprofiles;
2094         while (l) {
2095                 if (vehicleprofile_get_attr(l->data, attr_name, &attr, NULL)) {
2096                         if (!strcmp(attr.u.str, name)) {
2097                                 this_->vehicleprofile=l->data;
2098                                 if (this_->route)
2099                                         route_set_profile(this_->route, this_->vehicleprofile);
2100                                 return 1;
2101                         }
2102                 }
2103                 l=g_list_next(l);
2104         }
2105         return 0;
2106 }
2107
2108 static void
2109 navit_set_vehicle(struct navit *this_, struct navit_vehicle *nv)
2110 {
2111         struct attr attr;
2112         this_->vehicle=nv;
2113         if (nv && vehicle_get_attr(nv->vehicle, attr_profilename, &attr, NULL)) {
2114                 if (navit_set_vehicleprofile(this_, attr.u.str))
2115                         return;
2116         }
2117         if (!navit_set_vehicleprofile(this_,"car")) {
2118                 /* We do not have a fallback "car" profile
2119                 * so lets set any profile */
2120                 GList *l;
2121                 l=this_->vehicleprofiles;
2122                 if (l) {
2123                     this_->vehicleprofile=l->data;
2124                     if (this_->route)
2125                         route_set_profile(this_->route, this_->vehicleprofile);
2126                 }
2127         }
2128 }
2129
2130 /**
2131  * Register a new vehicle
2132  *
2133  * @param navit The navit instance
2134  * @param v The vehicle instance
2135  * @returns 1 for success
2136  */
2137 static int
2138 navit_add_vehicle(struct navit *this_, struct vehicle *v)
2139 {
2140         struct navit_vehicle *nv=g_new0(struct navit_vehicle, 1);
2141         struct attr follow, active, animate;
2142         nv->vehicle=v;
2143         nv->follow=0;
2144         nv->last.x = 0;
2145         nv->last.y = 0;
2146         nv->animate_cursor=0;
2147         if ((vehicle_get_attr(v, attr_follow, &follow, NULL)))
2148                 nv->follow=nv->follow=follow.u.num;
2149         nv->follow_curr=nv->follow;
2150         this_->vehicles=g_list_append(this_->vehicles, nv);
2151         if ((vehicle_get_attr(v, attr_active, &active, NULL)) && active.u.num)
2152                 navit_set_vehicle(this_, nv);
2153         if ((vehicle_get_attr(v, attr_animate, &animate, NULL)))
2154                 nv->animate_cursor=animate.u.num;
2155         nv->callback.type=attr_callback;
2156         nv->callback.u.callback=callback_new_attr_2(callback_cast(navit_vehicle_update), attr_position_coord_geo, this_, nv);
2157         vehicle_add_attr(nv->vehicle, &nv->callback);
2158         vehicle_set_attr(nv->vehicle, &this_->self);
2159         return 1;
2160 }
2161
2162
2163
2164
2165 struct gui *
2166 navit_get_gui(struct navit *this_)
2167 {
2168         return this_->gui;
2169 }
2170
2171 struct transformation *
2172 navit_get_trans(struct navit *this_)
2173 {
2174         return this_->trans;
2175 }
2176
2177 struct route *
2178 navit_get_route(struct navit *this_)
2179 {
2180         return this_->route;
2181 }
2182
2183 struct navigation *
2184 navit_get_navigation(struct navit *this_)
2185 {
2186         return this_->navigation;
2187 }
2188
2189 struct displaylist *
2190 navit_get_displaylist(struct navit *this_)
2191 {
2192         return this_->displaylist;
2193 }
2194
2195 void
2196 navit_layout_switch(struct navit *n) 
2197 {
2198
2199     int currTs=0;
2200     struct attr iso8601_attr,geo_attr,valid_attr,layout_attr;
2201     double trise,tset,trise_actual;
2202     struct layout *l;
2203     int year, month, day;
2204     
2205     if (navit_get_attr(n,attr_layout,&layout_attr,NULL)!=1) {
2206         return; //No layout - nothing to switch
2207     }
2208     if (!n->vehicle)
2209         return;
2210     l=layout_attr.u.layout;
2211     
2212     if (l->dayname || l->nightname) {
2213         //Ok, we know that we have profile to switch
2214         
2215         //Check that we aren't calculating too fast
2216         if (vehicle_get_attr(n->vehicle->vehicle, attr_position_time_iso8601,&iso8601_attr,NULL)==1) {
2217                 currTs=iso8601_to_secs(iso8601_attr.u.str);
2218                 dbg(1,"currTs: %u:%u\n",currTs%86400/3600,((currTs%86400)%3600)/60);
2219         }
2220         if (currTs-(n->prevTs)<60) {
2221             //We've have to wait a little
2222             return;
2223         }
2224         if (sscanf(iso8601_attr.u.str,"%d-%02d-%02dT",&year,&month,&day) != 3)
2225                 return;
2226         if (vehicle_get_attr(n->vehicle->vehicle, attr_position_coord_geo,&geo_attr,NULL)!=1) {
2227                 //No position - no sun
2228                 return;
2229         }
2230         if (vehicle_get_attr(n->vehicle->vehicle, attr_position_valid, &valid_attr,NULL) && valid_attr.u.num==attr_position_valid_invalid) {
2231                 return; //No valid fix yet
2232         }
2233         
2234         //We calculate sunrise anyway, cause it is needed both for day and for night
2235         if (__sunriset__(year,month,day,geo_attr.u.coord_geo->lng,geo_attr.u.coord_geo->lat,-5,1,&trise,&tset)!=0) {
2236                 //near the pole sun never rises/sets, so we should never switch profiles
2237                 dbg(1,"trise: %u:%u, sun never visible, never switch profile\n",HOURS(trise),MINUTES(trise));
2238                 n->prevTs=currTs;
2239                 return;
2240             }
2241         
2242         trise_actual=trise;
2243         dbg(1,"trise: %u:%u\n",HOURS(trise),MINUTES(trise));
2244         if (l->dayname) {
2245         
2246             if ((HOURS(trise)*60+MINUTES(trise)==(currTs%86400)/60) || 
2247                     (n->prevTs==0 && ((HOURS(trise)*60+MINUTES(trise)<(currTs%86400)/60)))) {
2248                 //The sun is rising now!
2249                 if (strcmp(l->name,l->dayname)) {
2250                     navit_set_layout_by_name(n,l->dayname);
2251                 }
2252             }
2253         }
2254         if (l->nightname) {
2255             if (__sunriset__(year,month,day,geo_attr.u.coord_geo->lng,geo_attr.u.coord_geo->lat,-5,1,&trise,&tset)!=0) {
2256                 //near the pole sun never rises/sets, so we should never switch profiles
2257                 dbg(1,"tset: %u:%u, sun always visible, never switch profile\n",HOURS(tset),MINUTES(tset));
2258                 n->prevTs=currTs;
2259                 return;
2260             }
2261             dbg(1,"tset: %u:%u\n",HOURS(tset),MINUTES(tset));
2262             if (HOURS(tset)*60+MINUTES(tset)==((currTs%86400)/60)
2263                 || (n->prevTs==0 && (((HOURS(tset)*60+MINUTES(tset)<(currTs%86400)/60)) || 
2264                         ((HOURS(trise_actual)*60+MINUTES(trise_actual)>(currTs%86400)/60))))) {
2265                 //Time to sleep
2266                 if (strcmp(l->name,l->nightname)) {
2267                     navit_set_layout_by_name(n,l->nightname);
2268                 }
2269             }   
2270         }
2271         
2272         n->prevTs=currTs;
2273     }
2274 }
2275
2276 int 
2277 navit_set_vehicle_by_name(struct navit *n,const char *name) 
2278 {
2279     struct vehicle *v;
2280     struct attr_iter *iter;
2281     struct attr vehicle_attr, name_attr;
2282
2283         iter=navit_attr_iter_new();
2284
2285     while (navit_get_attr(n,attr_vehicle,&vehicle_attr,iter)) {
2286                 v=vehicle_attr.u.vehicle;
2287                 vehicle_get_attr(v,attr_name,&name_attr,NULL);
2288                 if (name_attr.type==attr_name) {
2289                         if (!strcmp(name,name_attr.u.str)) {
2290                                 navit_set_attr(n,&vehicle_attr);                                
2291                                 navit_attr_iter_destroy(iter);
2292                                 return 1;
2293                         }
2294                 }
2295         }
2296     navit_attr_iter_destroy(iter);
2297     return 0;
2298 }
2299
2300 int 
2301 navit_set_layout_by_name(struct navit *n,const char *name) 
2302 {
2303     struct layout *l;
2304     struct attr_iter iter;
2305     struct attr layout_attr;
2306
2307     iter.u.list=0x00;
2308
2309     if (navit_get_attr(n,attr_layout,&layout_attr,&iter)!=1) {
2310         return 0; //No layouts - nothing to do
2311     }
2312     if (iter.u.list==NULL) {
2313         return 0;
2314     }
2315     
2316     iter.u.list=g_list_first(iter.u.list);
2317     
2318     while(iter.u.list) {
2319         l=(struct layout*)iter.u.list->data;
2320         if (!strcmp(name,l->name)) {
2321             layout_attr.u.layout=l;
2322             layout_attr.type=attr_layout;
2323             navit_set_attr(n,&layout_attr);
2324             iter.u.list=g_list_first(iter.u.list);
2325             return 1;
2326         }
2327         iter.u.list=g_list_next(iter.u.list);
2328     }
2329
2330     iter.u.list=g_list_first(iter.u.list);
2331     return 0;
2332 }
2333
2334 void
2335 navit_disable_suspend() {
2336         gui_disable_suspend(global_navit->gui);
2337         callback_list_call_attr_0(global_navit->attr_cbl,attr_unsuspend);
2338 }
2339
2340 int
2341 navit_block(struct navit *this_, int block)
2342 {
2343         if (block > 0) {
2344                 this_->blocked |= 1;
2345                 if (graphics_draw_cancel(this_->gra, this_->displaylist))
2346                         this_->blocked |= 2;
2347                 return 0;
2348         }
2349         if ((this_->blocked & 2) || block < 0) {
2350                 this_->blocked=0;
2351                 navit_draw(this_);
2352                 return 1;
2353         }
2354         this_->blocked=0;
2355         return 0;
2356 }
2357
2358 void
2359 navit_destroy(struct navit *this_)
2360 {
2361         /* TODO: destroy objects contained in this_ */
2362         if (this_->vehicle)
2363                 vehicle_destroy(this_->vehicle->vehicle);
2364         if (this_->bookmarks) {
2365                 char *center_file = bookmarks_get_center_file(TRUE);
2366                 bookmarks_write_center_to_file(this_->bookmarks, center_file);
2367                 g_free(center_file);
2368                 bookmarks_destroy(this_->bookmarks);
2369         }
2370         callback_destroy(this_->nav_speech_cb);
2371         callback_destroy(this_->roadbook_callback);
2372         callback_destroy(this_->popup_callback);
2373         callback_destroy(this_->motion_timeout_callback);
2374         if(this_->gra)
2375           graphics_remove_callback(this_->gra, this_->resize_callback);
2376         callback_destroy(this_->resize_callback);
2377         if(this_->gra)
2378           graphics_remove_callback(this_->gra, this_->button_callback);
2379         callback_destroy(this_->button_callback);
2380         if(this_->gra)
2381           graphics_remove_callback(this_->gra, this_->motion_callback);
2382         callback_destroy(this_->motion_callback);
2383         route_destroy(this_->route);
2384         g_free(this_);
2385 }
2386
2387 /** @} */