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