change async to 0 to fix TIVI-114
[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 #define _USE_MATH_DEFINES 1
21 #include "config.h"
22 #ifdef HAVE_UNISTD_H
23 #include <unistd.h>
24 #endif
25 #include <stdio.h>
26 #include <errno.h>
27 #include <stdlib.h>
28 #include <signal.h>
29 #include <string.h>
30 #include <fcntl.h>
31 #include <glib.h>
32 #include <math.h>
33 #include <time.h>
34 #include "debug.h"
35 #include "navit.h"
36 #include "callback.h"
37 #include "gui.h"
38 #include "item.h"
39 #include "projection.h"
40 #include "map.h"
41 #include "mapset.h"
42 #include "main.h"
43 #include "coord.h"
44 #include "point.h"
45 #include "transform.h"
46 #include "param.h"
47 #include "menu.h"
48 #include "graphics.h"
49 #include "popup.h"
50 #include "data_window.h"
51 #include "route.h"
52 #include "navigation.h"
53 #include "speech.h"
54 #include "track.h"
55 #include "vehicle.h"
56 #include "layout.h"
57 #include "log.h"
58 #include "attr.h"
59 #include "event.h"
60 #include "file.h"
61 #include "profile.h"
62 #include "command.h"
63 #include "navit_nls.h"
64 #include "map.h"
65 #include "util.h"
66 #include "messages.h"
67 #include "vehicleprofile.h"
68 #include "sunriset.h"
69 #include "bookmarks.h"
70 #include "xmlconfig.h"
71 #ifdef HAVE_API_WIN32_BASE
72 #include <windows.h>
73 #include "util.h"
74 #endif
75 #ifdef HAVE_API_WIN32_CE
76 #include "libc.h"
77 #endif
78
79 /* define string for bookmark handling */
80 #define TEXTFILE_COMMENT_NAVI_STOPPED "# navigation stopped\n"
81
82 /**
83  * @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
84  * @{
85  */
86
87 //! The navit_vehicule
88 struct navit_vehicle {
89         int follow;
90         /*! Limit of the follow counter. See navit_add_vehicle */
91         int follow_curr;
92         /*! Deprecated : follow counter itself. When it reaches 'update' counts, map is recentered*/
93         struct coord coord;
94         int dir;
95         int speed;
96         struct coord last; /*< Position of the last update of this vehicle */
97         struct vehicle *vehicle;
98         struct attr callback;
99         int animate_cursor;
100 };
101
102 struct navit {
103         struct object_func *func;
104         int refcount;
105         struct attr **attrs;
106         struct attr self;
107         GList *mapsets;
108         GList *layouts;
109         struct gui *gui;
110         struct layout *layout_current;
111         struct graphics *gra;
112         struct action *action;
113         struct transformation *trans, *trans_cursor;
114         struct compass *compass;
115         struct route *route;
116         struct navigation *navigation;
117         struct speech *speech;
118         struct tracking *tracking;
119         int ready;
120         struct window *win;
121         struct displaylist *displaylist;
122         int tracking_flag;
123         int orientation;
124         int recentdest_count;
125         int osd_configuration;
126         GList *vehicles;
127         GList *windows_items;
128         struct navit_vehicle *vehicle;
129         struct callback_list *attr_cbl;
130         struct callback *nav_speech_cb, *roadbook_callback, *popup_callback, *route_cb, *progress_cb;
131         struct datawindow *roadbook_window;
132         struct map *former_destination;
133         struct point pressed, last, current;
134         int button_pressed,moved,popped,zoomed;
135         int center_timeout;
136         int autozoom_secs;
137         int autozoom_min;
138         int autozoom_active;
139         struct event_timeout *button_timeout, *motion_timeout;
140         struct callback *motion_timeout_callback;
141         int ignore_button;
142         int ignore_graphics_events;
143         struct log *textfile_debug_log;
144         struct pcoord destination;
145         int destination_valid;
146         int blocked;
147         int w,h;
148         int drag_bitmap;
149         int use_mousewheel;
150         struct messagelist *messages;
151         struct callback *resize_callback,*button_callback,*motion_callback,*predraw_callback;
152         struct vehicleprofile *vehicleprofile;
153         GList *vehicleprofiles;
154         int pitch;
155         int follow_cursor;
156         int prevTs;
157         int graphics_flags;
158         int zoom_min, zoom_max;
159         int radius;
160         struct bookmarks *bookmarks;
161         int flags;
162                  /* 1=No graphics ok */
163                  /* 2=No gui ok */
164         int border;
165         int imperial;
166         int waypoints_flag;
167         struct coord_geo center;
168         struct attr **attr_list;
169 };
170
171 struct gui *main_loop_gui;
172
173 struct attr_iter {
174         void *iter;
175         union {
176                 GList *list;
177                 struct mapset_handle *mapset_handle;
178         } u;
179 };
180
181 static void navit_vehicle_update(struct navit *this_, struct navit_vehicle *nv);
182 static void navit_vehicle_draw(struct navit *this_, struct navit_vehicle *nv, struct point *pnt);
183 static int navit_add_vehicle(struct navit *this_, struct vehicle *v);
184 static int navit_set_attr_do(struct navit *this_, struct attr *attr, int init);
185 static int navit_get_cursor_pnt(struct navit *this_, struct point *p, int keep_orientation, int *dir);
186 static void navit_set_cursors(struct navit *this_);
187 static void navit_cmd_zoom_to_route(struct navit *this);
188 static void navit_cmd_set_center_cursor(struct navit *this_);
189 static void navit_cmd_announcer_toggle(struct navit *this_);
190 static void navit_set_vehicle(struct navit *this_, struct navit_vehicle *nv);
191 struct object_func navit_func;
192
193 struct navit *global_navit;
194
195 void
196 navit_add_mapset(struct navit *this_, struct mapset *ms)
197 {
198         this_->mapsets = g_list_append(this_->mapsets, ms);
199 }
200
201 struct mapset *
202 navit_get_mapset(struct navit *this_)
203 {
204         if(this_->mapsets){
205                 return this_->mapsets->data;
206         } else {
207                 dbg(0,"No mapsets enabled! Is it on purpose? Navit can't draw a map. Please check your navit.xml\n");
208         }
209         return NULL;
210 }
211
212 struct tracking *
213 navit_get_tracking(struct navit *this_)
214 {
215         return this_->tracking;
216 }
217
218 /**
219  * @brief       Get the user data directory.
220  * @param[in]    create - create the directory if it does not exist
221  *
222  * @return      char * to the data directory string.
223  *
224  * returns the directory used to store user data files (center.txt,
225  * destination.txt, bookmark.txt, ...)
226  *
227  */
228 char*
229 navit_get_user_data_directory(int create) {
230         char *dir;
231         dir = getenv("NAVIT_USER_DATADIR");
232         if (create && !file_exists(dir)) {
233                 dbg(0,"creating dir %s\n", dir);
234                 if (file_mkdir(dir,0)) {
235                         dbg(0,"failed creating dir %s\n", dir);
236                         return NULL;
237                 }
238         }
239         return dir;
240 } /* end: navit_get_user_data_directory(gboolean create) */
241
242
243 void
244 navit_draw_async(struct navit *this_, int async)
245 {
246
247         if (this_->blocked) {
248                 this_->blocked |= 2;
249                 return;
250         }
251         transform_setup_source_rect(this_->trans);
252         graphics_draw(this_->gra, this_->displaylist, this_->mapsets->data, this_->trans, this_->layout_current, async, NULL, this_->graphics_flags|1);
253 }
254
255 void
256 navit_draw(struct navit *this_)
257 {
258         if (this_->ready == 3)
259                 navit_draw_async(this_, 0);
260 }
261
262 int
263 navit_get_ready(struct navit *this_)
264 {
265         return this_->ready;
266 }
267
268
269
270 void
271 navit_draw_displaylist(struct navit *this_)
272 {
273         if (this_->ready == 3)
274                 graphics_displaylist_draw(this_->gra, this_->displaylist, this_->trans, this_->layout_current, this_->graphics_flags|1);
275 }
276
277 static void
278 navit_map_progress(struct navit *this_)
279 {
280         struct map *map;
281         struct mapset *ms;
282         struct mapset_handle *msh;
283         struct attr attr;
284         struct point p;
285         if (this_->ready != 3)
286                 return;
287         p.x=10;
288         p.y=32;
289
290         ms=this_->mapsets->data;
291         msh=mapset_open(ms);
292         while (msh && (map=mapset_next(msh, 0))) {
293                 if (map_get_attr(map, attr_progress, &attr, NULL)) {
294                         char *str=g_strdup_printf("%s           ",attr.u.str);
295                         graphics_draw_mode(this_->gra, draw_mode_begin);
296                         graphics_draw_text_std(this_->gra, 16, str, &p);
297                         g_free(str);
298                         p.y+=32;
299                         graphics_draw_mode(this_->gra, draw_mode_end);
300                 }
301         }
302         mapset_close(msh);
303 }
304
305 static void
306 navit_redraw_route(struct navit *this_, struct route *route, struct attr *attr)
307 {
308         int updated;
309         if (attr->type != attr_route_status)
310                 return;
311         updated=attr->u.num;
312         if (this_->ready != 3)
313                 return;
314         if (updated != route_status_path_done_new)
315                 return;
316         if (this_->vehicle) {
317                 if (this_->vehicle->follow_curr == 1)
318                         return;
319                 if (this_->vehicle->follow_curr <= this_->vehicle->follow)
320                         this_->vehicle->follow_curr=this_->vehicle->follow;
321         }
322         navit_draw(this_);
323 }
324
325 void
326 navit_handle_resize(struct navit *this_, int w, int h)
327 {
328         struct map_selection sel;
329         int callback=(this_->ready == 1);
330         this_->ready |= 2;
331         memset(&sel, 0, sizeof(sel));
332         this_->w=w;
333         this_->h=h;
334         sel.u.p_rect.rl.x=w;
335         sel.u.p_rect.rl.y=h;
336         transform_set_screen_selection(this_->trans, &sel);
337         graphics_init(this_->gra);
338         graphics_set_rect(this_->gra, &sel.u.p_rect);
339         if (callback) 
340                 callback_list_call_attr_1(this_->attr_cbl, attr_graphics_ready, this_);
341         if (this_->ready == 3)
342                 navit_draw_async(this_, 1);
343 }
344
345 static void
346 navit_resize(void *data, int w, int h)
347 {
348         struct navit *this=data;
349         if (!this->ignore_graphics_events)
350                 navit_handle_resize(this, w, h);
351 }
352
353 int
354 navit_get_width(struct navit *this_)
355 {
356         return this_->w;
357 }
358
359
360 int
361 navit_get_height(struct navit *this_)
362 {
363         return this_->h;
364 }
365
366 static void
367 navit_popup(void *data)
368 {
369         struct navit *this_=data;
370         popup(this_, 1, &this_->pressed);
371         this_->button_timeout=NULL;
372         this_->popped=1;
373 }
374
375
376 int
377 navit_ignore_button(struct navit *this_)
378 {
379         if (this_->ignore_button)
380                 return 1;
381         this_->ignore_button=1;
382         return 0;
383 }
384
385 void
386 navit_ignore_graphics_events(struct navit *this_, int ignore)
387 {
388         this_->ignore_graphics_events=ignore;
389 }
390
391 static void
392 update_transformation(struct transformation *tr, struct point *old, struct point *new, struct point *rot)
393 {
394         struct coord co,cn;
395         struct coord c,*cp;
396         int yaw;
397         double angleo,anglen;
398
399         if (!transform_reverse(tr, old, &co))
400                 return;
401         if (rot) {
402                 angleo=atan2(old->y-rot->y, old->x-rot->x)*180/M_PI;
403                 anglen=atan2(new->y-rot->y, new->x-rot->x)*180/M_PI;
404                 yaw=transform_get_yaw(tr)+angleo-anglen;
405                 transform_set_yaw(tr, yaw % 360);
406         }
407         if (!transform_reverse(tr, new, &cn))
408                 return;
409         cp=transform_get_center(tr);
410         c.x=cp->x+co.x-cn.x;
411         c.y=cp->y+co.y-cn.y;
412         dbg(1,"from 0x%x,0x%x to 0x%x,0x%x\n", cp->x, cp->y, c.x, c.y);
413         transform_set_center(tr, &c);
414 }
415
416 void
417 navit_set_timeout(struct navit *this_)
418 {
419         struct attr follow;
420         follow.type=attr_follow;
421         follow.u.num=this_->center_timeout;
422         navit_set_attr(this_, &follow);
423 }
424
425 int
426 navit_handle_button(struct navit *this_, int pressed, int button, struct point *p, struct callback *popup_callback)
427 {
428         int border=16;
429
430         dbg(1,"enter %d %d (ignore %d)\n",pressed,button,this_->ignore_button);
431         callback_list_call_attr_4(this_->attr_cbl, attr_button, this_, GINT_TO_POINTER(pressed), GINT_TO_POINTER(button), p);
432         if (this_->ignore_button) {
433                 this_->ignore_button=0;
434                 return 0;
435         }
436         if (pressed) {
437                 this_->pressed=*p;
438                 this_->last=*p;
439                 this_->zoomed=0;
440                 if (button == 1) {
441                         this_->button_pressed=1;
442                         this_->moved=0;
443                         this_->popped=0;
444                         if (popup_callback)
445                                 this_->button_timeout=event_add_timeout(500, 0, popup_callback);
446                 }
447                 if (button == 2)
448                         navit_set_center_screen(this_, p, 1);
449                 if (button == 3)
450                         popup(this_, button, p);
451                 if (button == 4 && this_->use_mousewheel) {
452                         this_->zoomed = 1;
453                         navit_zoom_in(this_, 2, p);
454                 }
455                 if (button == 5 && this_->use_mousewheel) {
456                         this_->zoomed = 1;
457                         navit_zoom_out(this_, 2, p);
458                 }
459         } else {
460
461                 this_->button_pressed=0;
462                 if (this_->button_timeout) {
463                         event_remove_timeout(this_->button_timeout);
464                         this_->button_timeout=NULL;
465                         if (! this_->moved && ! transform_within_border(this_->trans, p, border)) {
466                                 navit_set_center_screen(this_, p, !this_->zoomed);
467                         }
468                 }
469                 if (this_->motion_timeout) {
470                         event_remove_timeout(this_->motion_timeout);
471                         this_->motion_timeout=NULL;
472                 }
473                 if (this_->moved) {
474                         struct point pr;
475                         pr.x=this_->w/2;
476                         pr.y=this_->h;
477 #if 0
478                         update_transformation(this_->trans, &this_->pressed, p, &pr);
479 #else
480                         update_transformation(this_->trans, &this_->pressed, p, NULL);
481 #endif
482                         graphics_draw_drag(this_->gra, NULL);
483                         transform_copy(this_->trans, this_->trans_cursor);
484                         graphics_overlay_disable(this_->gra, 0);
485                         if (!this_->zoomed) 
486                                 navit_set_timeout(this_);
487                         navit_draw(this_);
488                 } else
489                         return 1;
490         }
491         return 0;
492 }
493
494 static void
495 navit_button(void *data, int pressed, int button, struct point *p)
496 {
497         struct navit *this=data;
498         dbg(1,"enter %d %d ignore %d\n",pressed,button,this->ignore_graphics_events);
499         if (!this->ignore_graphics_events) {
500                 if (! this->popup_callback)
501                         this->popup_callback=callback_new_1(callback_cast(navit_popup), this);
502                 navit_handle_button(this, pressed, button, p, this->popup_callback);
503         }
504 }
505
506
507 static void
508 navit_motion_timeout(struct navit *this_)
509 {
510         int dx, dy;
511
512         if (this_->drag_bitmap) {
513                 struct point point;
514                 point.x=(this_->current.x-this_->pressed.x);
515                 point.y=(this_->current.y-this_->pressed.y);
516                 if (graphics_draw_drag(this_->gra, &point)) {
517                         graphics_overlay_disable(this_->gra, 1);
518                         graphics_draw_mode(this_->gra, draw_mode_end);
519                         this_->moved=1;
520                         this_->motion_timeout=NULL;
521                         return;
522                 }
523         } 
524         dx=(this_->current.x-this_->last.x);
525         dy=(this_->current.y-this_->last.y);
526         if (dx || dy) {
527                 struct transformation *tr;
528                 struct point pr;
529                 this_->last=this_->current;
530                 graphics_overlay_disable(this_->gra, 1);
531                 tr=transform_dup(this_->trans);
532                 pr.x=this_->w/2;
533                 pr.y=this_->h;
534 #if 0
535                 update_transformation(tr, &this_->pressed, &this_->current, &pr);
536 #else
537                 update_transformation(tr, &this_->pressed, &this_->current, NULL);
538 #endif
539 #if 0
540                 graphics_displaylist_move(this_->displaylist, dx, dy);
541 #endif
542                 graphics_draw_cancel(this_->gra, this_->displaylist);
543                 graphics_displaylist_draw(this_->gra, this_->displaylist, tr, this_->layout_current, this_->graphics_flags|512);
544                 transform_destroy(tr);
545                 this_->moved=1;
546         }
547         this_->motion_timeout=NULL;
548         return;
549 }
550
551 void
552 navit_handle_motion(struct navit *this_, struct point *p)
553 {
554         int dx, dy;
555
556         if (this_->button_pressed && !this_->popped) {
557                 dx=(p->x-this_->pressed.x);
558                 dy=(p->y-this_->pressed.y);
559                 if (dx < -8 || dx > 8 || dy < -8 || dy > 8) {
560                         this_->moved=1;
561                         if (this_->button_timeout) {
562                                 event_remove_timeout(this_->button_timeout);
563                                 this_->button_timeout=NULL;
564                         }
565                         this_->current=*p;
566                         if (! this_->motion_timeout_callback)
567                                 this_->motion_timeout_callback=callback_new_1(callback_cast(navit_motion_timeout), this_);
568                         if (! this_->motion_timeout)
569                                 this_->motion_timeout=event_add_timeout(100, 0, this_->motion_timeout_callback);
570                 }
571         }
572 }
573
574 static void
575 navit_motion(void *data, struct point *p)
576 {
577         struct navit *this=data;
578         if (!this->ignore_graphics_events) 
579                 navit_handle_motion(this, p);
580 }
581
582 static void
583 navit_predraw(struct navit *this_)
584 {
585         GList *l;
586         struct navit_vehicle *nv;
587         transform_copy(this_->trans, this_->trans_cursor);
588         l=this_->vehicles;
589         while (l) {
590                 nv=l->data;
591                 navit_vehicle_draw(this_, nv, NULL);
592                 l=g_list_next(l);
593         }
594 }
595
596 static void
597 navit_scale(struct navit *this_, long scale, struct point *p, int draw)
598 {
599         struct coord c1, c2, *center;
600         if (scale < this_->zoom_min)
601                 scale=this_->zoom_min;
602         if (scale > this_->zoom_max)
603                 scale=this_->zoom_max;
604         if (p)
605                 transform_reverse(this_->trans, p, &c1);
606         transform_set_scale(this_->trans, scale);
607         if (p) {
608                 transform_reverse(this_->trans, p, &c2);
609                 center = transform_center(this_->trans);
610                 center->x += c1.x - c2.x;
611                 center->y += c1.y - c2.y;
612         }
613         if (draw)
614                 navit_draw(this_);
615 }
616
617 /**
618  * @brief Automatically adjusts zoom level
619  *
620  * This function automatically adjusts the current
621  * zoom level according to the current speed.
622  *
623  * @param this_ The navit struct
624  * @param center The "immovable" point - i.e. the vehicles position if we're centering on the vehicle
625  * @param speed The vehicles speed in meters per second
626  * @param dir The direction into which the vehicle moves
627  */
628 static void
629 navit_autozoom(struct navit *this_, struct coord *center, int speed, int draw)
630 {
631         struct point pc;
632         int distance,w,h;
633         double new_scale;
634         long scale;
635
636         if (! this_->autozoom_active) {
637                 return;
638         }
639
640         distance = speed * this_->autozoom_secs;
641
642         transform_get_size(this_->trans, &w, &h);
643         transform(this_->trans, transform_get_projection(this_->trans), center, &pc, 1, 0, 0, NULL);
644         scale = transform_get_scale(this_->trans);
645
646         /* We make sure that the point we want to see is within a certain range
647          * around the vehicle. The radius of this circle is the size of the
648          * screen. This doesn't necessarily mean the point is visible because of
649          * perspective etc. Quite rough, but should be enough. */
650         
651         if (w > h) {
652                 new_scale = (double)distance / h * 16; 
653         } else {
654                 new_scale = (double)distance / w * 16; 
655         }
656
657         if (abs(new_scale - scale) < 2) { 
658                 return; // Smoothing
659         }
660         
661         if (new_scale >= this_->autozoom_min) {
662                 navit_scale(this_, (long)new_scale, &pc, 0);
663         } else {
664                 if (scale != this_->autozoom_min) {
665                         navit_scale(this_, this_->autozoom_min, &pc, 0);
666                 }
667         }
668 }
669
670 /**
671  * Change the current zoom level, zooming closer to the ground
672  *
673  * @param navit The navit instance
674  * @param factor The zoom factor, usually 2
675  * @param p The invariant point (if set to NULL, default to center)
676  * @returns nothing
677  */
678 void
679 navit_zoom_in(struct navit *this_, int factor, struct point *p)
680 {
681         long scale=transform_get_scale(this_->trans)/factor;
682         if (scale < 1)
683                 scale=1;
684         navit_scale(this_, scale, p, 1);
685 }
686
687 /**
688  * Change the current zoom level
689  *
690  * @param navit The navit instance
691  * @param factor The zoom factor, usually 2
692  * @param p The invariant point (if set to NULL, default to center)
693  * @returns nothing
694  */
695 void
696 navit_zoom_out(struct navit *this_, int factor, struct point *p)
697 {
698         long scale=transform_get_scale(this_->trans)*factor;
699         navit_scale(this_, scale, p, 1);
700 }
701
702 void
703 navit_zoom_in_cursor(struct navit *this_, int factor)
704 {
705         struct point p;
706         if (this_->vehicle && this_->vehicle->follow_curr <= 1 && navit_get_cursor_pnt(this_, &p, 0, NULL)) {
707                 navit_zoom_in(this_, factor, &p);
708                 this_->vehicle->follow_curr=this_->vehicle->follow;
709         } else
710                 navit_zoom_in(this_, factor, NULL);
711 }
712
713 void
714 navit_zoom_out_cursor(struct navit *this_, int factor)
715 {
716         struct point p;
717         if (this_->vehicle && this_->vehicle->follow_curr <= 1 && navit_get_cursor_pnt(this_, &p, 0, NULL)) {
718                 navit_zoom_out(this_, 2, &p);
719                 this_->vehicle->follow_curr=this_->vehicle->follow;
720         } else
721                 navit_zoom_out(this_, 2, NULL);
722 }
723
724 static int
725 navit_cmd_zoom_in(struct navit *this_)
726 {
727         navit_zoom_in_cursor(this_, 2);
728         return 0;
729 }
730
731 static int
732 navit_cmd_zoom_out(struct navit *this_)
733 {
734         navit_zoom_out_cursor(this_, 2);
735         return 0;
736 }
737
738
739 static void
740 navit_cmd_say(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
741 {
742         if (in && in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str) 
743                 navit_say(this, in[0]->u.str);
744 }
745
746 static GHashTable *cmd_int_var_hash = NULL;
747 static GHashTable *cmd_attr_var_hash = NULL;
748
749 /**
750  * Store key value pair for the  command system (for int typed values)
751  *
752  * @param navit The navit instance
753  * @param function unused (needed to match command function signiture)
754  * @param in input attributes in[0] is the key string, in[1] is the integer value to store
755  * @param out output attributes, unused 
756  * @param valid unused 
757  * @returns nothing
758  */
759 static void
760 navit_cmd_set_int_var(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
761 {
762         char*key;
763         struct attr*val;
764         if(!cmd_int_var_hash) {
765                 cmd_int_var_hash = g_hash_table_new(g_str_hash, g_str_equal);
766         }
767
768         if ( (in && in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str) &&
769              (in && in[1] && ATTR_IS_NUMERIC(in[1]->type))) {
770                 val = g_new(struct attr,1);
771                 attr_dup_content(in[1],val);
772                 key = g_strdup(in[0]->u.str);
773                 g_hash_table_insert(cmd_int_var_hash, key, val);
774         }
775 }
776
777
778 /**
779  * Store key value pair for the  command system (for attr typed values, can be used as opaque handles)
780  *
781  * @param navit The navit instance
782  * @param function unused (needed to match command function signiture)
783  * @param in input attributes in[0] is the key string, in[1] is the attr* value to store
784  * @param out output attributes, unused 
785  * @param valid unused 
786  * @returns nothing
787  */
788 //TODO free stored attributes on navit_destroy
789 static void
790 navit_cmd_set_attr_var(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
791 {
792         char*key;
793         struct attr*val;
794         if(!cmd_attr_var_hash) {
795                 cmd_attr_var_hash = g_hash_table_new(g_str_hash, g_str_equal);
796         }
797
798         if ( (in && in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str) &&
799              (in && in[1] )) {
800                 val = attr_dup(in[1]);
801                 //val = in[1];
802                 key = g_strdup(in[0]->u.str);
803                 g_hash_table_insert(cmd_attr_var_hash, key, val);
804         } else {
805                 dbg(1, "Wrong parameters for set_attr_var() command function\n");
806         }
807 }
808
809
810
811 /**
812  * command to toggle the active state of a named layer of the current layout
813  *
814  * @param navit The navit instance
815  * @param function unused (needed to match command function signiture)
816  * @param in input attribute in[0] is the name of the layer
817  * @param out output unused
818  * @param valid unused 
819  * @returns nothing
820  */
821 static void
822 navit_cmd_toggle_layer(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
823 {
824         if (in && in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str) {
825                 if(this->layout_current && this->layout_current->layers) {
826                         GList* layers = this->layout_current->layers;
827                         while (layers) {
828                                 struct layer*l=layers->data;
829                                 if(l && !strcmp(l->name,in[0]->u.str) ) {
830                                         l->active ^= 1;
831                                         navit_draw(this);
832                                         return;
833                                 }
834                                 layers=g_list_next(layers);
835                         }
836                 }
837         }
838 }
839
840 /**
841  * adds an item with the current coordinate of the vehicle to a named map
842  *
843  * @param navit The navit instance
844  * @param function unused (needed to match command function signiture)
845  * @param in input attribute in[0] is the name of the map 
846  * @param out output attribute, 0 on error or the id of the created item on success
847  * @param valid unused 
848  * @returns nothing
849  */
850 static void
851 navit_cmd_map_add_curr_pos(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
852 {
853         struct attr **list = g_new0(struct attr *,2);
854         struct attr*val = g_new0(struct attr,1);
855         struct mapset* ms;
856         struct map_selection sel;
857         const int selection_range = 10;
858         enum item_type item_type;
859         struct item *it;
860         struct map* curr_map = NULL;
861         struct coord curr_coord;
862         struct map_rect *mr;
863         
864         //return invalid item on error
865         val->type   = attr_none;
866         val->u.item  = NULL;    
867         list[0]     = val;
868         list[1]     = NULL;
869         *out = list;
870         if (
871                 in && in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str && //map name
872                       in[1] && ATTR_IS_STRING(in[1]->type) && in[1]->u.str    //item type
873         ) {
874
875                 if(!(ms=navit_get_mapset(this))) {
876                         dbg(1, "Command function map_add_curr_pos(): there is no active mapset\n");
877                         return;
878                 }
879
880                 if((item_type = item_from_name(in[1]->u.str))==type_none) {
881                         dbg(1, "Command function map_add_curr_pos(): unknown item type\n");
882                         return;
883                 }
884
885                 curr_map = mapset_get_map_by_name(ms, in[0]->u.str);
886
887                 //no map with the given name found
888                 if( ! curr_map) {
889                         dbg(1, "Command function map_add_curr_pos(): map not found\n");
890                         return;
891                 }
892         
893                 if(this->vehicle && this->vehicle->vehicle ) {
894                         struct attr pos_attr;
895                         if(vehicle_get_attr(this->vehicle->vehicle,attr_position_coord_geo,&pos_attr,NULL)) {
896                                 transform_from_geo(projection_mg, pos_attr.u.coord_geo, &curr_coord);
897                         } else {
898                                 dbg(1, "Command function map_add_curr_pos(): vehicle position is not accessible\n");
899                                 return;
900                         }
901                 } else {
902                         dbg(1, "Command function map_add_curr_pos(): no vehicle\n");
903                         return;
904                 }
905
906                 sel.next=NULL;
907                 sel.order=18;
908                 sel.range.min=type_none;
909                 sel.range.max=type_tec_common;
910                 sel.u.c_rect.lu.x=curr_coord.x-selection_range;
911                 sel.u.c_rect.lu.y=curr_coord.y+selection_range;
912                 sel.u.c_rect.rl.x=curr_coord.x+selection_range;
913                 sel.u.c_rect.rl.y=curr_coord.y-selection_range;
914  
915                 mr = map_rect_new(curr_map, &sel);
916                 if(mr) {
917                         it = map_rect_create_item( mr, item_type);
918                         if (it) {
919                                 val->type = attr_type_item_begin;
920                                 item_coord_set(it,&curr_coord, 1, change_mode_modify);
921                         }
922                         val->u.item  = it;
923                 }
924                 map_rect_destroy(mr);
925         }
926 }
927
928 /**
929  * sets an attribute (name value pair) of a map item specified by map name and item id
930  *
931  * @param navit The navit instance
932  * @param function unused (needed to match command function signiture)
933  * @param in input attribute in[0] - name of the map  ; in[1] - item  ; in[2] - attr name ; in[3] - attr value
934  * @param out output attribute, 0 on error, 1 on success
935  * @param valid unused 
936  * @returns nothing
937  */
938 static void
939 navit_cmd_map_item_set_attr(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
940 {
941         if (
942                 in && in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str  &&//map name
943                       in[1] && ATTR_IS_ITEM(in[1]->type)   &&                  //item
944                       in[2] && ATTR_IS_STRING(in[2]->type) && in[2]->u.str && //attr_type str
945                       in[3] && ATTR_IS_STRING(in[3]->type) && in[3]->u.str    //attr_value str
946         ) {
947                 struct attr attr_to_set;
948                 struct map* curr_map = NULL;
949                 struct mapset *ms;
950                 struct map_selection sel;
951                 const int selection_range = 500;
952                 struct coord curr_coord;
953                 struct item *it;
954                 
955                 if(ATTR_IS_STRING(attr_from_name(in[2]->u.str))) {
956                         attr_to_set.u.str = in[3]->u.str;
957                         attr_to_set.type = attr_from_name(in[2]->u.str);
958                 }
959                 else if(ATTR_IS_INT(attr_from_name(in[2]->u.str))) {
960                         attr_to_set.u.num = atoi(in[3]->u.str);
961                         attr_to_set.type = attr_from_name(in[2]->u.str);
962                 }
963                 else if(ATTR_IS_DOUBLE(attr_from_name(in[2]->u.str))) {
964                         double* val = g_new0(double,1);
965                         *val = atof(in[3]->u.str);
966                         attr_to_set.u.numd = val;
967                         attr_to_set.type = attr_from_name(in[2]->u.str);
968                 }
969
970                 ms = navit_get_mapset(this);
971
972                 curr_map = mapset_get_map_by_name(ms, in[0]->u.str);
973
974                 if( ! curr_map) {
975                         return;
976                 }
977                 sel.next=NULL;
978                 sel.order=18;
979                 sel.range.min=type_none;
980                 sel.range.max=type_tec_common;
981                 sel.u.c_rect.lu.x=curr_coord.x-selection_range;
982                 sel.u.c_rect.lu.y=curr_coord.y+selection_range;
983                 sel.u.c_rect.rl.x=curr_coord.x+selection_range;
984                 sel.u.c_rect.rl.y=curr_coord.y-selection_range;
985  
986                 it = in[1]->u.item;
987                 if(it) {
988                         item_attr_set(it, &attr_to_set, change_mode_modify);
989                 }
990         } else {
991                 dbg(4,"Error in command function item_set_attr()\n");
992                 dbg(4,"Command function item_set_attr(): map cond:       %d\n",(in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str)?1:0);
993                 dbg(4,"Command function item_set_attr(): item cond:      %d\n",(in[1] && ATTR_IS_ITEM(in[1]->type))?1:0);
994                 dbg(4,"Command function item_set_attr(): attr type cond: %d\n",(in[2] && ATTR_IS_STRING(in[2]->type) && in[2]->u.str)?1:0);
995                 dbg(4,"Command function item_set_attr(): attr val cond:  %d\n",(in[3] && ATTR_IS_STRING(in[3]->type) && in[3]->u.str)?1:0);
996         }
997 }
998
999 /**
1000  * Get attr variable given a key string for the command system (for opaque usage)
1001  *
1002  * @param navit The navit instance
1003  * @param function unused (needed to match command function signiture)
1004  * @param in input attribute in[0] is the key string
1005  * @param out output attribute, the attr for the given key string if exists or NULL  
1006  * @param valid unused 
1007  * @returns nothing
1008  */
1009 static void
1010 navit_cmd_get_attr_var(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1011 {
1012         struct attr **list = g_new0(struct attr *,2);
1013         if(!cmd_attr_var_hash) {
1014                 struct attr*val = g_new0(struct attr,1);
1015                 cmd_attr_var_hash = g_hash_table_new(g_str_hash, g_str_equal);
1016                 val->type   = attr_type_item_begin;
1017                 val->u.item = NULL;
1018                 list[0]     = val;
1019         }
1020         if (in && in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str) {
1021                 struct attr*ret = g_hash_table_lookup(cmd_attr_var_hash, in[0]->u.str);
1022                 if(ret) {
1023                         list[0] = attr_dup(ret);
1024                 }
1025                 else {
1026                         struct attr*val = g_new0(struct attr,1);
1027                         val->type   = attr_type_int_begin;
1028                         val->u.item = NULL;
1029                         list[0]   = val;
1030                 }
1031         }
1032         list[1] = NULL;
1033         *out = list;
1034 }
1035
1036
1037 /**
1038  * Get value given a key string for the command system
1039  *
1040  * @param navit The navit instance
1041  * @param function unused (needed to match command function signiture)
1042  * @param in input attribute in[0] is the key string
1043  * @param out output attribute, the value for the given key string if exists or 0  
1044  * @param valid unused 
1045  * @returns nothing
1046  */
1047 static void
1048 navit_cmd_get_int_var(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1049 {
1050         struct attr **list = g_new0(struct attr *,2);
1051         if(!cmd_int_var_hash) {
1052                 struct attr*val = g_new0(struct attr,1);
1053                 cmd_int_var_hash = g_hash_table_new(g_str_hash, g_str_equal);
1054                 val->type   = attr_type_int_begin;
1055                 val->u.num  = 0;
1056                 list[0]     = val;
1057         }
1058         if (in && in[0] && ATTR_IS_STRING(in[0]->type) && in[0]->u.str) {
1059                 struct attr*ret = g_hash_table_lookup(cmd_int_var_hash, in[0]->u.str);
1060                 if(ret) {
1061                         list[0] = attr_dup(ret);
1062                 }
1063                 else {
1064                         struct attr*val = g_new0(struct attr,1);
1065                         val->type   = attr_type_int_begin;
1066                         val->u.num  = 0;
1067                         list[0]   = val;
1068                 }
1069         }
1070         list[1] = NULL;
1071         *out = list;
1072 }
1073
1074 GList *cmd_int_var_stack = NULL;
1075
1076 /**
1077  * Push an integer to the stack for the command system
1078  *
1079  * @param navit The navit instance
1080  * @param function unused (needed to match command function signiture)
1081  * @param in input attribute in[0] is the integer attibute to push
1082  * @param out output attributes, unused 
1083  * @param valid unused 
1084  * @returns nothing
1085  */
1086 static void
1087 navit_cmd_push_int(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1088 {
1089         if (in && in[0] && ATTR_IS_NUMERIC(in[0]->type)) {
1090                 struct attr*val = g_new(struct attr,1);
1091                 attr_dup_content(in[0],val);
1092                 cmd_int_var_stack = g_list_prepend(cmd_int_var_stack, val);
1093         }
1094 }
1095
1096 /**
1097  * Pop an integer from the command system's integer stack
1098  *
1099  * @param navit The navit instance
1100  * @param function unused (needed to match command function signiture)
1101  * @param in input attributes unused
1102  * @param out output attribute, the value popped if stack isn't empty or 0
1103  * @param valid unused 
1104  * @returns nothing
1105  */
1106 static void
1107 navit_cmd_pop_int(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1108 {
1109         struct attr **list = g_new0(struct attr *,2);
1110         if(!cmd_int_var_stack) {
1111                 struct attr*val = g_new0(struct attr,1);
1112                 val->type = attr_type_int_begin;
1113                 val->u.num  = 0;
1114                 list[0]   = val;
1115         }
1116         else {
1117                 list[0] = cmd_int_var_stack->data;
1118                 cmd_int_var_stack = g_list_remove_link(cmd_int_var_stack,cmd_int_var_stack);
1119         }
1120         list[1] = NULL;
1121         *out = list;
1122 }
1123
1124 /**
1125  * Get current size of command system's integer stack
1126  *
1127  * @param navit The navit instance
1128  * @param function unused (needed to match command function signiture)
1129  * @param in input attributes unused
1130  * @param out output attribute, the size of stack
1131  * @param valid unused 
1132  * @returns nothing
1133  */
1134 static void
1135 navit_cmd_int_stack_size(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1136 {
1137         struct attr **list;
1138         struct attr *attr  = g_new0(struct attr  ,1);
1139         attr->type  = attr_type_int_begin;
1140         if(!cmd_int_var_stack) {
1141                 attr->u.num = 0; 
1142         }
1143         else {
1144                 attr->u.num = g_list_length(cmd_int_var_stack); 
1145         }
1146         list = g_new0(struct attr *,2);
1147         list[0] = attr;
1148         list[1] = NULL;
1149         *out = list;
1150         cmd_int_var_stack = g_list_remove_link(cmd_int_var_stack,cmd_int_var_stack);
1151 }
1152
1153 static struct attr **
1154 navit_get_coord(struct navit *this, struct attr **in, struct pcoord *pc)
1155 {
1156         if (!in)
1157                 return NULL;
1158         if (!in[0])
1159                 return NULL;
1160         pc->pro = transform_get_projection(this->trans);
1161         if (ATTR_IS_STRING(in[0]->type)) {
1162                 struct coord c;
1163                 coord_parse(in[0]->u.str, pc->pro, &c);
1164                 pc->x=c.x;
1165                 pc->y=c.y;
1166                 in++;   
1167         } else if (ATTR_IS_COORD(in[0]->type)) {
1168                 pc->x=in[0]->u.coord->x;
1169                 pc->y=in[0]->u.coord->y;
1170                 in++;
1171         } else if (ATTR_IS_PCOORD(in[0]->type)) {
1172                 *pc=*in[0]->u.pcoord;
1173                 in++;
1174         } else if (in[1] && in[2] && ATTR_IS_INT(in[0]->type) && ATTR_IS_INT(in[1]->type) && ATTR_IS_INT(in[2]->type)) {
1175                 pc->pro=in[0]->u.num;
1176                 pc->x=in[1]->u.num;
1177                 pc->y=in[2]->u.num;
1178                 in+=3;
1179         } else if (in[1] && ATTR_IS_INT(in[0]->type) && ATTR_IS_INT(in[1]->type)) {
1180                 pc->x=in[0]->u.num;
1181                 pc->y=in[1]->u.num;
1182                 in+=2;
1183         } else
1184                 return NULL;
1185         return in;
1186 }
1187
1188 static void
1189 navit_cmd_set_destination(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1190 {
1191         struct pcoord pc;
1192         char *description=NULL;
1193         in=navit_get_coord(this, in, &pc);
1194         if (!in)
1195                 return;
1196         if (in[0] && ATTR_IS_STRING(in[0]->type))
1197                 description=in[0]->u.str;
1198         navit_set_destination(this, &pc, description, 1);
1199 }
1200
1201
1202 static void
1203 navit_cmd_route_remove_next_waypoint(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1204 {
1205         navit_remove_waypoint(this);
1206 }
1207
1208
1209 static void
1210 navit_cmd_route_remove_last_waypoint(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1211 {
1212         navit_remove_nth_waypoint(this, navit_get_destination_count(this)-1);
1213 }
1214
1215
1216 static void
1217 navit_cmd_set_center(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1218 {
1219         struct pcoord pc;
1220         in=navit_get_coord(this, in, &pc);
1221         if (!in)
1222                 return;
1223         navit_set_center(this, &pc, 0);
1224 }
1225
1226
1227 static void
1228 navit_cmd_set_position(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1229 {
1230         struct pcoord pc;
1231         in=navit_get_coord(this, in, &pc);
1232         if (!in)
1233                 return;
1234         navit_set_position(this, &pc);
1235 }
1236
1237
1238 static void
1239 navit_cmd_fmt_coordinates(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1240 {
1241         struct attr attr;
1242         attr.type=attr_type_string_begin;
1243         attr.u.str="Fix me";
1244         if (out) {
1245                 *out=attr_generic_add_attr(*out, &attr);
1246         }
1247 }
1248
1249 /**
1250  * Join several string attributes into one
1251  *
1252  * @param navit The navit instance
1253  * @param function unused (needed to match command function signiture)
1254  * @param in input attributes in[0] - separator, in[1..] - attributes to join
1255  * @param out output attribute joined attribute as string
1256  * @param valid unused 
1257  * @returns nothing
1258  */
1259 static void
1260 navit_cmd_strjoin(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1261 {
1262         struct attr attr;
1263         gchar *ret, *sep;
1264         int i;
1265         attr.type=attr_type_string_begin;
1266         attr.u.str=NULL;
1267         if(in[0] && in[1]) {
1268                 sep=attr_to_text(in[0],NULL,1);
1269                 ret=attr_to_text(in[1],NULL,1);
1270                 for(i=2;in[i];i++) {
1271                         gchar *in_i=attr_to_text(in[i],NULL,1);
1272                         gchar *r=g_strjoin(sep,ret,in_i,NULL);
1273                         g_free(in_i);
1274                         g_free(ret);
1275                         ret=r;
1276                 }
1277                 g_free(sep);
1278                 attr.u.str=ret;
1279                 if(out) {
1280                         *out=attr_generic_add_attr(*out, &attr);
1281                 }
1282                 g_free(ret);
1283         }
1284 }
1285
1286 /**
1287  * Call external program
1288  *
1289  * @param navit The navit instance
1290  * @param function unused (needed to match command function signiture)
1291  * @param in input attributes in[0] - name of executable, in[1..] - parameters
1292  * @param out output attribute unused
1293  * @param valid unused 
1294  * @returns nothing
1295  */
1296 static void
1297 navit_cmd_spawn(struct navit *this, char *function, struct attr **in, struct attr ***out, int *valid)
1298 {
1299         int i,j, nparms, nvalid;
1300         char ** argv=NULL;
1301         struct spawn_process_info *pi;
1302
1303         nparms=0;
1304         nvalid=0;
1305         if(in) {
1306                 while(in[nparms]) {
1307                         if (in[nparms]->type!=attr_none) 
1308                                 nvalid++;
1309                         nparms++;
1310                 }
1311         }
1312         
1313         if(nvalid>0) {
1314                 argv=g_new(char*,nvalid+1);
1315                 for(i=0,j=0;in[i];i++) {
1316                         if(in[i]->type!=attr_none ) {
1317                                 argv[j++]=attr_to_text(in[i],NULL,1);
1318                         } else {
1319                                 dbg(0,"Parameter #%i is attr_none - skipping\n",i);
1320                         }
1321                 }
1322                 argv[j]=NULL;
1323                 pi=spawn_process(argv);
1324                 
1325                 // spawn_process() testing suite - uncomment following code to test.
1326                 //sleep(3);
1327                 // example of non-blocking wait
1328                 //int st=spawn_process_check_status(pi,0);dbg(0,"status %i\n",st);
1329                 // example of blocking wait
1330                 //st=spawn_process_check_status(pi,1);dbg(0,"status %i\n",st);
1331                 // example of wait after process is finished and status is
1332                 // already tested
1333                 //st=spawn_process_check_status(pi,1);dbg(0,"status %i\n",st);
1334                 // example of wait after process is finished and status is
1335                 // already tested - unblocked
1336                 //st=spawn_process_check_status(pi,0);dbg(0,"status %i\n",st);
1337                 
1338                 // End testing suite
1339                 spawn_process_info_free(pi);
1340                 for(i=0;argv[i];i++)
1341                         g_free(argv[i]);
1342                 g_free(argv);
1343         }
1344 }
1345
1346
1347 static struct command_table commands[] = {
1348         {"zoom_in",command_cast(navit_cmd_zoom_in)},
1349         {"zoom_out",command_cast(navit_cmd_zoom_out)},
1350         {"zoom_to_route",command_cast(navit_cmd_zoom_to_route)},
1351         {"say",command_cast(navit_cmd_say)},
1352         {"set_center",command_cast(navit_cmd_set_center)},
1353         {"set_center_cursor",command_cast(navit_cmd_set_center_cursor)},
1354         {"set_destination",command_cast(navit_cmd_set_destination)},
1355         {"route_remove_next_waypoint",command_cast(navit_cmd_route_remove_next_waypoint)},
1356         {"route_remove_last_waypoint",command_cast(navit_cmd_route_remove_last_waypoint)},
1357         {"set_position",command_cast(navit_cmd_set_position)},
1358         {"announcer_toggle",command_cast(navit_cmd_announcer_toggle)},
1359         {"fmt_coordinates",command_cast(navit_cmd_fmt_coordinates)},
1360         {"set_int_var",command_cast(navit_cmd_set_int_var)},
1361         {"get_int_var",command_cast(navit_cmd_get_int_var)},
1362         {"push_int",command_cast(navit_cmd_push_int)},
1363         {"pop_int",command_cast(navit_cmd_pop_int)},
1364         {"int_stack_size",command_cast(navit_cmd_int_stack_size)},
1365         {"toggle_layer",command_cast(navit_cmd_toggle_layer)},
1366         {"strjoin",command_cast(navit_cmd_strjoin)},
1367         {"spawn",command_cast(navit_cmd_spawn)},
1368         {"map_add_curr_pos",command_cast(navit_cmd_map_add_curr_pos)},
1369         {"map_item_set_attr",command_cast(navit_cmd_map_item_set_attr)},
1370         {"set_attr_var",command_cast(navit_cmd_set_attr_var)},
1371         {"get_attr_var",command_cast(navit_cmd_get_attr_var)},
1372 };
1373         
1374 void 
1375 navit_command_add_table(struct navit*this_, struct command_table *commands, int count)
1376 {
1377   command_add_table(this_->attr_cbl, commands, count, this_);
1378 }
1379
1380 struct navit *
1381 navit_new(struct attr *parent, struct attr **attrs)
1382 {
1383         struct navit *this_=g_new0(struct navit, 1);
1384         struct pcoord center;
1385         struct coord co;
1386         struct coord_geo g;
1387         enum projection pro=projection_mg;
1388         int zoom = 256;
1389         g.lat=53.13;
1390         g.lng=11.70;
1391
1392         this_->func=&navit_func;
1393         this_->refcount=1;
1394         this_->attrs=attr_list_dup(attrs);
1395         this_->self.type=attr_navit;
1396         this_->self.u.navit=this_;
1397         this_->attr_cbl=callback_list_new();
1398
1399         this_->orientation=-1;
1400         this_->tracking_flag=1;
1401         this_->recentdest_count=10;
1402         this_->osd_configuration=-1;
1403
1404         this_->center_timeout = 10;
1405         this_->use_mousewheel = 1;
1406         this_->autozoom_secs = 10;
1407         this_->autozoom_min = 7;
1408         this_->autozoom_active = 0;
1409         this_->zoom_min = 1;
1410         this_->zoom_max = 2097152;
1411         this_->follow_cursor = 1;
1412         this_->radius = 30;
1413         this_->border = 16;
1414
1415         this_->trans = transform_new();
1416         this_->trans_cursor = transform_new();
1417         transform_set_projection(this_->trans_cursor, pro);
1418         transform_from_geo(pro, &g, &co);
1419         center.x=co.x;
1420         center.y=co.y;
1421         center.pro = pro;
1422         
1423         transform_setup(this_->trans, &center, zoom, (this_->orientation != -1) ? this_->orientation : 0);
1424
1425         this_->bookmarks=bookmarks_new(&this_->self, NULL, this_->trans);
1426
1427         this_->prevTs=0;
1428
1429         for (;*attrs; attrs++) {
1430                 navit_set_attr_do(this_, *attrs, 1);
1431         }
1432         this_->displaylist=graphics_displaylist_new();
1433         command_add_table(this_->attr_cbl, commands, sizeof(commands)/sizeof(struct command_table), this_);
1434
1435         this_->messages = messagelist_new(attrs);
1436
1437         dbg(1,"return %p\n",this_);
1438         
1439         return this_;
1440 }
1441
1442 static int
1443 navit_set_gui(struct navit *this_, struct gui *gui)
1444 {
1445         if (this_->gui)
1446                 return 0;
1447         this_->gui=gui;
1448         if (gui_has_main_loop(this_->gui)) {
1449                 if (! main_loop_gui) {
1450                         main_loop_gui=this_->gui;
1451                 } else {
1452                         dbg(0,"gui with main loop already active, ignoring this instance");
1453                         return 0;
1454                 }
1455         }
1456         return 1;
1457 }
1458
1459 void 
1460 navit_add_message(struct navit *this_, char *message)
1461 {
1462         message_new(this_->messages, message);
1463 }
1464
1465 struct message
1466 *navit_get_messages(struct navit *this_)
1467 {
1468         return message_get(this_->messages);
1469 }
1470
1471 static int
1472 navit_set_graphics(struct navit *this_, struct graphics *gra)
1473 {
1474         if (this_->gra)
1475                 return 0;
1476         this_->gra=gra;
1477         this_->resize_callback=callback_new_attr_1(callback_cast(navit_resize), attr_resize, this_);
1478         graphics_add_callback(gra, this_->resize_callback);
1479         this_->button_callback=callback_new_attr_1(callback_cast(navit_button), attr_button, this_);
1480         graphics_add_callback(gra, this_->button_callback);
1481         this_->motion_callback=callback_new_attr_1(callback_cast(navit_motion), attr_motion, this_);
1482         graphics_add_callback(gra, this_->motion_callback);
1483         this_->predraw_callback=callback_new_attr_1(callback_cast(navit_predraw), attr_predraw, this_);
1484         graphics_add_callback(gra, this_->predraw_callback);
1485         return 1;
1486 }
1487
1488 struct graphics *
1489 navit_get_graphics(struct navit *this_)
1490 {
1491         return this_->gra;
1492 }
1493
1494 struct vehicleprofile *
1495 navit_get_vehicleprofile(struct navit *this_)
1496 {
1497         return this_->vehicleprofile;
1498 }
1499
1500 GList *
1501 navit_get_vehicleprofiles(struct navit *this_)
1502 {
1503         return this_->vehicleprofiles;
1504 }
1505
1506 static void
1507 navit_projection_set(struct navit *this_, enum projection pro, int draw)
1508 {
1509         struct coord_geo g;
1510         struct coord *c;
1511
1512         c=transform_center(this_->trans);
1513         transform_to_geo(transform_get_projection(this_->trans), c, &g);
1514         transform_set_projection(this_->trans, pro);
1515         transform_from_geo(pro, &g, c);
1516         if (draw)
1517                 navit_draw(this_);
1518 }
1519
1520 static void
1521 navit_mark_navigation_stopped(char *former_destination_file){
1522         FILE *f;
1523         f=fopen(former_destination_file, "a");
1524         if (f) {
1525                 fprintf(f,"%s", TEXTFILE_COMMENT_NAVI_STOPPED);
1526                 fclose(f);
1527         }else{
1528                 dbg(0, "Error setting mark in destination file %s: %s\n", former_destination_file, strerror(errno));
1529         }
1530 }
1531
1532 /**
1533  * Start or add a given set of coordinates for route computing
1534  *
1535  * @param navit The navit instance
1536  * @param c The coordinate to start routing to
1537  * @param description A label which allows the user to later identify this destination in the former destinations selection
1538  * @returns nothing
1539  */
1540 void
1541 navit_set_destination(struct navit *this_, struct pcoord *c, const char *description, int async)
1542 {
1543         char *destination_file;
1544         destination_file = bookmarks_get_destination_file(TRUE);
1545         if (c) {
1546                 this_->destination=*c;
1547                 this_->destination_valid=1;
1548
1549                 dbg(1, "c=(%i,%i)\n", c->x,c->y);
1550                 bookmarks_append_coord(this_->former_destination, destination_file, c, type_former_destination, description, this_->recentdest_count);
1551         } else {
1552                 this_->destination_valid=0;
1553                 navit_mark_navigation_stopped(destination_file);
1554         }
1555         g_free(destination_file);
1556         callback_list_call_attr_0(this_->attr_cbl, attr_destination);
1557         if (this_->route) {
1558                 struct attr attr;
1559                 navit_get_attr(this_, attr_waypoints_flag, &attr, NULL);
1560                 if (this_->waypoints_flag==0 || route_get_destination_count(this_->route)==0){
1561                         route_set_destination(this_->route, c, async);
1562                 }else{
1563                         route_append_destination(this_->route, c, async);
1564                 }
1565
1566                 if (this_->ready == 3)
1567                         navit_draw(this_);
1568         }
1569 }
1570
1571 /**
1572  * Start the route computing to a given set of coordinates including waypoints
1573  *
1574  * @param navit The navit instance
1575  * @param c The coordinate to start routing to
1576  * @param description A label which allows the user to later identify this destination in the former destinations selection
1577  * @returns nothing
1578  */
1579 void
1580 navit_set_destinations(struct navit *this_, struct pcoord *c, int count, const char *description, int async)
1581 {
1582         char *destination_file;
1583         if (c && count) {
1584                 this_->destination=c[count-1];
1585                 this_->destination_valid=1;
1586
1587                 destination_file = bookmarks_get_destination_file(TRUE);
1588                 bookmarks_append_coord(this_->former_destination, destination_file, c, type_former_itinerary, description, this_->recentdest_count);
1589                 g_free(destination_file);
1590         } else
1591                 this_->destination_valid=0;
1592         callback_list_call_attr_0(this_->attr_cbl, attr_destination);
1593         if (this_->route) {
1594                 route_set_destinations(this_->route, c, count, async);
1595
1596                 if (this_->ready == 3)
1597                         navit_draw(this_);
1598         }
1599 }
1600
1601 int
1602 navit_get_destinations(struct navit *this_, struct pcoord *pc, int count)
1603 {
1604         if(!this_->route)
1605                 return 0;
1606         return route_get_destinations(this_->route, pc, count);
1607
1608 }
1609
1610 int
1611 navit_get_destination_count(struct navit *this_)
1612 {
1613         if(!this_->route)
1614                 return 0;
1615         return route_get_destination_count(this_->route);
1616 }
1617
1618 char*
1619 navit_get_destination_description(struct navit *this_, int n)
1620 {
1621         if(!this_->route)
1622                 return NULL;
1623         return route_get_destination_description(this_->route, n);
1624 }
1625
1626 void
1627 navit_remove_nth_waypoint(struct navit *this_, int n)
1628 {
1629         if(!this_->route)
1630                 return;
1631         if (route_get_destination_count(this_->route)>1){
1632                 route_remove_nth_waypoint(this_->route, n);
1633         }else{
1634                 navit_set_destination(this_, NULL, NULL, 0);
1635         }
1636 }
1637
1638 void
1639 navit_remove_waypoint(struct navit *this_)
1640 {
1641         if(!this_->route)
1642                 return;
1643         if (route_get_destination_count(this_->route)>1){
1644                 route_remove_waypoint(this_->route);
1645         }else{
1646                 navit_set_destination(this_, NULL, NULL, 0);
1647         }
1648 }
1649
1650 /**
1651  * @brief Checks if a route is calculated
1652  *
1653  * This function checks if a route is calculated.
1654  *
1655  * @param this_ The navit struct whose route should be checked.
1656  * @return True if the route is set, false otherwise.
1657  */
1658 int
1659 navit_check_route(struct navit *this_)
1660 {
1661         if (this_->route) {
1662                 return route_get_path_set(this_->route);
1663         }
1664
1665         return 0;
1666 }
1667
1668 static int
1669 navit_former_destinations_active(struct navit *this_)
1670 {
1671         char *destination_file_name = bookmarks_get_destination_file(FALSE);
1672         FILE *destination_file;
1673         int active=0;
1674         char lastline[100];
1675         destination_file=fopen(destination_file_name,"r");
1676         if (destination_file) {
1677                 while(fgets(lastline, sizeof(lastline), destination_file));
1678                 fclose(destination_file);
1679                 if ((lastline != NULL) && (strcmp(lastline, TEXTFILE_COMMENT_NAVI_STOPPED))){
1680                         active=1;
1681                 }
1682         }
1683         g_free(destination_file_name);
1684         return active;
1685 }
1686
1687 struct map* read_former_destinations_from_file(){
1688         struct attr type, data, no_warn, flags, *attrs[5];
1689         char *destination_file = bookmarks_get_destination_file(FALSE);
1690         struct map *m;
1691
1692         type.type=attr_type;
1693         type.u.str="textfile";
1694
1695         data.type=attr_data;
1696         data.u.str=destination_file;
1697
1698         no_warn.type=attr_no_warning_if_map_file_missing;
1699         no_warn.u.num=1;
1700
1701         flags.type=attr_flags;
1702         flags.u.num=1;
1703
1704         attrs[0]=&type; attrs[1]=&data; attrs[2]=&flags;
1705         attrs[3]=&no_warn; attrs[4]=NULL;
1706
1707         m=map_new(NULL, attrs);
1708         g_free(destination_file);
1709         return m;
1710 }
1711
1712 static void
1713 navit_add_former_destinations_from_file(struct navit *this_)
1714 {
1715         struct item *item;
1716         int i,valid=0,count=0;
1717         struct coord c[16];
1718         struct pcoord pc[16];
1719         struct map_rect *mr;
1720
1721         this_->former_destination=read_former_destinations_from_file();
1722         if (!this_->route || !navit_former_destinations_active(this_) || !this_->vehicle)
1723                 return; 
1724         mr=map_rect_new(this_->former_destination, NULL);
1725         while ((item=map_rect_get_item(mr))) {
1726                 if ((item->type == type_former_destination || item->type == type_former_itinerary || item->type == type_former_itinerary_part) && (count=item_coord_get(item, c, 16))) 
1727                         valid=1;
1728         }
1729         map_rect_destroy(mr);
1730         if (valid && count > 0) {
1731                 for (i = 0 ; i < count ; i++) {
1732                         pc[i].pro=map_projection(this_->former_destination);
1733                         pc[i].x=c[i].x;
1734                         pc[i].y=c[i].y;
1735                 }
1736                 if (count == 1)
1737                         route_set_destination(this_->route, &pc[0], 1);
1738                 else
1739                         route_set_destinations(this_->route, pc, count, 1);
1740                 this_->destination=pc[count-1];
1741                 this_->destination_valid=1;
1742         }
1743 }
1744
1745
1746 void
1747 navit_textfile_debug_log(struct navit *this_, const char *fmt, ...)
1748 {
1749         va_list ap;
1750         char *str1,*str2;
1751         va_start(ap, fmt);
1752         if (this_->textfile_debug_log && this_->vehicle) {
1753                 str1=g_strdup_vprintf(fmt, ap);
1754                 str2=g_strdup_printf("0x%x 0x%x%s%s\n", this_->vehicle->coord.x, this_->vehicle->coord.y, strlen(str1) ? " " : "", str1);
1755                 log_write(this_->textfile_debug_log, str2, strlen(str2), 0);
1756                 g_free(str2);
1757                 g_free(str1);
1758         }
1759         va_end(ap);
1760 }
1761
1762 void
1763 navit_textfile_debug_log_at(struct navit *this_, struct pcoord *pc, const char *fmt, ...)
1764 {
1765         va_list ap;
1766         char *str1,*str2;
1767         va_start(ap, fmt);
1768         if (this_->textfile_debug_log && this_->vehicle) {
1769                 str1=g_strdup_vprintf(fmt, ap);
1770                 str2=g_strdup_printf("0x%x 0x%x%s%s\n", pc->x, pc->y, strlen(str1) ? " " : "", str1);
1771                 log_write(this_->textfile_debug_log, str2, strlen(str2), 0);
1772                 g_free(str2);
1773                 g_free(str1);
1774         }
1775         va_end(ap);
1776 }
1777
1778 void
1779 navit_say(struct navit *this_, char *text)
1780 {
1781         struct attr attr;
1782         if(this_->speech) {
1783                 if (!speech_get_attr(this_->speech, attr_active, &attr, NULL))
1784                         attr.u.num = 1;
1785                 dbg(1, "this_.speech->active %i\n", attr.u.num);
1786                 if(attr.u.num)
1787                         speech_say(this_->speech, text);
1788         }
1789 }
1790
1791 /**
1792  * @brief Toggles the navigation announcer for navit
1793  * @param this_ The navit object
1794  */
1795 static void
1796 navit_cmd_announcer_toggle(struct navit *this_)
1797 {
1798     struct attr attr, speechattr;
1799
1800     // search for the speech attribute
1801     if(!navit_get_attr(this_, attr_speech, &speechattr, NULL))
1802         return;
1803     // find out if the corresponding attribute attr_active has been set
1804     if(speech_get_attr(speechattr.u.speech, attr_active, &attr, NULL)) {
1805         // flip it then...
1806         attr.u.num = !attr.u.num;
1807     } else {
1808         // otherwise disable it because voice is enabled by default
1809         attr.type = attr_active;
1810         attr.u.num = 0;
1811     }
1812
1813     // apply the new state
1814     if(!speech_set_attr(speechattr.u.speech, &attr))
1815         return;
1816
1817     // announce that the speech attribute has changed
1818     callback_list_call_attr_0(this_->attr_cbl, attr_speech);
1819 }
1820
1821 void
1822 navit_speak(struct navit *this_)
1823 {
1824         struct navigation *nav=this_->navigation;
1825         struct map *map=NULL;
1826         struct map_rect *mr=NULL;
1827         struct item *item;
1828         struct attr attr;
1829
1830     if (!speech_get_attr(this_->speech, attr_active, &attr, NULL))
1831         attr.u.num = 1;
1832     dbg(1, "this_.speech->active %i\n", attr.u.num);
1833     if(!attr.u.num)
1834         return;
1835
1836         if (nav)
1837                 map=navigation_get_map(nav);
1838         if (map)
1839                 mr=map_rect_new(map, NULL);
1840         if (mr) {
1841                 while ((item=map_rect_get_item(mr)) && (item->type == type_nav_position || item->type == type_nav_none));
1842                 if (item && item_attr_get(item, attr_navigation_speech, &attr)) {
1843                         speech_say(this_->speech, attr.u.str);
1844                         navit_add_message(this_, attr.u.str);
1845                         navit_textfile_debug_log(this_, "type=announcement label=\"%s\"", attr.u.str);
1846                 }
1847                 map_rect_destroy(mr);
1848         }
1849 }
1850
1851 static void
1852 navit_window_roadbook_update(struct navit *this_)
1853 {
1854         struct navigation *nav=this_->navigation;
1855         struct map *map=NULL;
1856         struct map_rect *mr=NULL;
1857         struct item *item;
1858         struct attr attr;
1859         struct param_list param[5];
1860         int secs;
1861
1862         dbg(1,"enter\n");
1863         datawindow_mode(this_->roadbook_window, 1);
1864         if (nav)
1865                 map=navigation_get_map(nav);
1866         if (map)
1867                 mr=map_rect_new(map, NULL);
1868         dbg(0,"nav=%p map=%p mr=%p\n", nav, map, mr);
1869         if (mr) {
1870                 dbg(0,"while loop\n");
1871                 while ((item=map_rect_get_item(mr))) {
1872                         dbg(0,"item=%p\n", item);
1873                         attr.u.str=NULL;
1874                         if (item->type != type_nav_position) {
1875                                 item_attr_get(item, attr_navigation_long, &attr);
1876                                 if (attr.u.str == NULL) {
1877                                         continue;
1878                                 }
1879                                 dbg(2, "Command='%s'\n", attr.u.str);
1880                                 param[0].value=g_strdup(attr.u.str);
1881                         } else
1882                                 param[0].value=_("Position");
1883                         param[0].name=_("Command");
1884
1885                         item_attr_get(item, attr_length, &attr);
1886                         dbg(2, "Length=%d\n", attr.u.num);
1887                         param[1].name=_("Length");
1888
1889                         if ( attr.u.num >= 2000 )
1890                         {
1891                                 param[1].value=g_strdup_printf("%5.1f %s",(float)attr.u.num / 1000, _("km") );
1892                         }
1893                         else
1894                         {
1895                                 param[1].value=g_strdup_printf("%7ld %s",attr.u.num, _("m"));
1896                         }
1897
1898                         item_attr_get(item, attr_time, &attr);
1899                         dbg(2, "Time=%d\n", attr.u.num);
1900                         secs=attr.u.num/10;
1901                         param[2].name=_("Time");
1902                         if ( secs >= 3600 )
1903                         {
1904                                 param[2].value=g_strdup_printf("%d:%02d:%02d",secs / 60, ( secs / 60 ) % 60 , secs % 60);
1905                         }
1906                         else
1907                         {
1908                                 param[2].value=g_strdup_printf("%d:%02d",secs / 60, secs % 60);
1909                         }
1910
1911                         item_attr_get(item, attr_destination_length, &attr);
1912                         dbg(2, "Destlength=%d\n", attr.u.num);
1913                         param[3].name=_("Destination Length");
1914                         if ( attr.u.num >= 2000 )
1915                         {
1916                                 param[3].value=g_strdup_printf("%5.1f %s",(float)attr.u.num / 1000, _("km") );
1917                         }
1918                         else
1919                         {
1920                                 param[3].value=g_strdup_printf("%ld %s",attr.u.num, _("m"));
1921                         }
1922
1923                         item_attr_get(item, attr_destination_time, &attr);
1924                         dbg(2, "Desttime=%d\n", attr.u.num);
1925                         secs=attr.u.num/10;
1926                         param[4].name=_("Destination Time");
1927                         if ( secs >= 3600 )
1928                         {
1929                                 param[4].value=g_strdup_printf("%d:%02d:%02d",secs / 3600, (secs / 60 ) % 60 , secs % 60);
1930                         }
1931                         else
1932                         {
1933                                 param[4].value=g_strdup_printf("%d:%02d",secs / 60, secs % 60);
1934                         }
1935                         datawindow_add(this_->roadbook_window, param, 5);
1936                 }
1937                 map_rect_destroy(mr);
1938         }
1939         datawindow_mode(this_->roadbook_window, 0);
1940 }
1941
1942 void
1943 navit_window_roadbook_destroy(struct navit *this_)
1944 {
1945         dbg(0, "enter\n");
1946         navigation_unregister_callback(this_->navigation, attr_navigation_long, this_->roadbook_callback);
1947         callback_destroy(this_->roadbook_callback);
1948         this_->roadbook_window=NULL;
1949         this_->roadbook_callback=NULL;
1950 }
1951 void
1952 navit_window_roadbook_new(struct navit *this_)
1953 {
1954         if (!this_->gui || this_->roadbook_callback || this_->roadbook_window) {
1955                 return;
1956         }
1957
1958         this_->roadbook_callback=callback_new_1(callback_cast(navit_window_roadbook_update), this_);
1959         navigation_register_callback(this_->navigation, attr_navigation_long, this_->roadbook_callback);
1960         this_->roadbook_window=gui_datawindow_new(this_->gui, _("Roadbook"), NULL, callback_new_1(callback_cast(navit_window_roadbook_destroy), this_));
1961         navit_window_roadbook_update(this_);
1962 }
1963
1964 void
1965 navit_init(struct navit *this_)
1966 {
1967         struct mapset *ms;
1968         struct map *map;
1969         int callback;
1970         char *center_file;
1971
1972         dbg(2,"enter gui %p graphics %p\n",this_->gui,this_->gra);
1973
1974         if (!this_->gui && !(this_->flags & 2)) {
1975                 dbg(0,"Warning: No GUI available.\n");
1976                 return;
1977         }
1978         if (!this_->gra && !(this_->flags & 1)) {
1979                 dbg(0,"Warning: No graphics subsystem available.\n");
1980                 return;
1981         }
1982         dbg(2,"Connecting gui to graphics\n");
1983         if (this_->gui && this_->gra && gui_set_graphics(this_->gui, this_->gra)) {
1984                 struct attr attr_type_gui, attr_type_graphics;
1985                 gui_get_attr(this_->gui, attr_type, &attr_type_gui, NULL);
1986                 graphics_get_attr(this_->gra, attr_type, &attr_type_graphics, NULL);
1987                 dbg(0,"failed to connect graphics '%s' to gui '%s'\n", attr_type_graphics.u.str, attr_type_gui.u.str);
1988                 dbg(0," Please see http://wiki.navit-project.org/index.php/Failed_to_connect_graphics_to_gui\n");
1989                 dbg(0," for explanations and solutions\n");
1990                 return;
1991         }
1992         if (this_->speech && this_->navigation) {
1993                 struct attr speech;
1994                 speech.type=attr_speech;
1995                 speech.u.speech=this_->speech;
1996                 navigation_set_attr(this_->navigation, &speech);
1997         }
1998         dbg(2,"Initializing graphics\n");
1999         dbg(2,"Setting Vehicle\n");
2000         navit_set_vehicle(this_, this_->vehicle);
2001         dbg(2,"Adding dynamic maps to mapset %p\n",this_->mapsets);
2002         if (this_->mapsets) {
2003                 struct mapset_handle *msh;
2004                 ms=this_->mapsets->data;
2005                 this_->progress_cb=callback_new_attr_1(callback_cast(navit_map_progress), attr_progress, this_);
2006                 msh=mapset_open(ms);
2007                 while (msh && (map=mapset_next(msh, 0))) {
2008                         //pass new callback instance for each map in the mapset to make map callback list destruction work correctly
2009                         struct callback *pcb = callback_new_attr_1(callback_cast(navit_map_progress), attr_progress, this_);
2010                         map_add_callback(map, pcb);
2011                 }
2012                 mapset_close(msh);
2013                 
2014                 if (this_->route) {
2015                         if ((map=route_get_map(this_->route))) {
2016                                 struct attr map_a;
2017                                 map_a.type=attr_map;
2018                                 map_a.u.map=map;
2019                                 mapset_add_attr(ms, &map_a);
2020                         }
2021                         if ((map=route_get_graph_map(this_->route))) {
2022                                 struct attr map_a,active;
2023                                 map_a.type=attr_map;
2024                                 map_a.u.map=map;
2025                                 active.type=attr_active;
2026                                 active.u.num=0;
2027                                 mapset_add_attr(ms, &map_a);
2028                                 map_set_attr(map, &active);
2029                         }
2030                         route_set_mapset(this_->route, ms);
2031                         route_set_projection(this_->route, transform_get_projection(this_->trans));
2032                 }
2033                 if (this_->tracking) {
2034                         tracking_set_mapset(this_->tracking, ms);
2035                         if (this_->route)
2036                                 tracking_set_route(this_->tracking, this_->route);
2037                 }
2038                 if (this_->navigation) {
2039                         if ((map=navigation_get_map(this_->navigation))) {
2040                                 struct attr map_a,active;
2041                                 map_a.type=attr_map;
2042                                 map_a.u.map=map;
2043                                 active.type=attr_active;
2044                                 active.u.num=0;
2045                                 mapset_add_attr(ms, &map_a);
2046                                 map_set_attr(map, &active);
2047                         }
2048                 }
2049                 if (this_->tracking) {
2050                         if ((map=tracking_get_map(this_->tracking))) {
2051                                 struct attr map_a,active;
2052                                 map_a.type=attr_map;
2053                                 map_a.u.map=map;
2054                                 active.type=attr_active;
2055                                 active.u.num=0;
2056                                 mapset_add_attr(ms, &map_a);
2057                                 map_set_attr(map, &active);
2058                         }
2059                 }
2060                 navit_add_former_destinations_from_file(this_);
2061         } else {
2062                 dbg(0, "FATAL: No mapset available. Please add a (valid) mapset to your configuration.\n");
2063                 exit(1);
2064         }
2065         if (this_->route) {
2066                 struct attr callback;
2067                 this_->route_cb=callback_new_attr_1(callback_cast(navit_redraw_route), attr_route_status, this_);
2068                 callback.type=attr_callback;
2069                 callback.u.callback=this_->route_cb;
2070                 route_add_attr(this_->route, &callback);
2071         }
2072         if (this_->navigation) {
2073                 if (this_->speech) {
2074                         this_->nav_speech_cb=callback_new_1(callback_cast(navit_speak), this_);
2075                         navigation_register_callback(this_->navigation, attr_navigation_speech, this_->nav_speech_cb);
2076                 }
2077                 if (this_->route)
2078                         navigation_set_route(this_->navigation, this_->route);
2079         }
2080         dbg(2,"Setting Center\n");
2081         center_file = bookmarks_get_center_file(FALSE);
2082         bookmarks_set_center_from_file(this_->bookmarks, center_file);
2083         g_free(center_file);
2084 #if 0
2085         if (this_->menubar) {
2086                 men=menu_add(this_->menubar, "Data", menu_type_submenu, NULL);
2087                 if (men) {
2088                         navit_add_menu_windows_items(this_, men);
2089                 }
2090         }
2091 #endif
2092         global_navit=this_;
2093 #if 0
2094         navit_window_roadbook_new(this_);
2095         navit_window_items_new(this_);
2096 #endif
2097
2098         messagelist_init(this_->messages);
2099
2100         navit_set_cursors(this_);
2101
2102         callback_list_call_attr_1(this_->attr_cbl, attr_navit, this_);
2103         callback=(this_->ready == 2);
2104         this_->ready|=1;
2105         dbg(2,"ready=%d\n",this_->ready);
2106         if (this_->ready == 3)
2107         {
2108                 //For some reasons, displaylist->busy in graphics_load_mapset is always 1 (busy) for long time, which keep the navit launch be slow (2 minutes) - TIVI-114
2109                 //change async to 0 for making it is not a block for launch.
2110                 navit_draw_async(this_, 0);
2111         }
2112         if (callback)
2113                 callback_list_call_attr_1(this_->attr_cbl, attr_graphics_ready, this_);
2114 #if 0
2115         routech_test(this_);
2116 #endif
2117 }
2118
2119 void
2120 navit_zoom_to_rect(struct navit *this_, struct coord_rect *r)
2121 {
2122         struct coord c;
2123         int w,h,scale=16;
2124
2125         c.x=(r->rl.x+r->lu.x)/2;
2126         c.y=(r->rl.y+r->lu.y)/2;
2127         transform_set_center(this_->trans, &c);
2128         transform_get_size(this_->trans, &w, &h);
2129         dbg(0,"center 0x%x,0x%x w %d h %d\n",c.x,c.y,w,h);
2130         dbg(0,"%x,%x-%x,%x\n", r->lu.x,r->lu.y,r->rl.x,r->rl.y);
2131         while (scale < 1<<20) {
2132                 struct point p1,p2;
2133                 transform_set_scale(this_->trans, scale);
2134                 transform_setup_source_rect(this_->trans);
2135                 transform(this_->trans, transform_get_projection(this_->trans), &r->lu, &p1, 1, 0, 0, NULL);
2136                 transform(this_->trans, transform_get_projection(this_->trans), &r->rl, &p2, 1, 0, 0, NULL);
2137                 dbg(0,"%d,%d-%d,%d\n",p1.x,p1.y,p2.x,p2.y);
2138                 if (p1.x < 0 || p2.x < 0 || p1.x > w || p2.x > w ||
2139                     p1.y < 0 || p2.y < 0 || p1.y > h || p2.y > h)
2140                         scale*=2;
2141                 else
2142                         break;
2143         
2144         }
2145         dbg(0,"scale=%d (0x%x) of %d (0x%x)\n",scale,scale,1<<20,1<<20);
2146         if (this_->ready == 3)
2147                 navit_draw_async(this_,0);
2148 }
2149
2150 void
2151 navit_zoom_to_route(struct navit *this_, int orientation)
2152 {
2153         struct map *map;
2154         struct map_rect *mr=NULL;
2155         struct item *item;
2156         struct coord c;
2157         struct coord_rect r;
2158         int count=0;
2159         if (! this_->route)
2160                 return;
2161         dbg(1,"enter\n");
2162         map=route_get_map(this_->route);
2163         dbg(1,"map=%p\n",map);
2164         if (map)
2165                 mr=map_rect_new(map, NULL);
2166         dbg(1,"mr=%p\n",mr);
2167         if (mr) {
2168                 while ((item=map_rect_get_item(mr))) {
2169                         dbg(1,"item=%s\n", item_to_name(item->type));
2170                         while (item_coord_get(item, &c, 1)) {
2171                                 dbg(1,"coord\n");
2172                                 if (!count) 
2173                                         r.lu=r.rl=c;
2174                                 else
2175                                         coord_rect_extend(&r, &c);      
2176                                 count++;
2177                         }
2178                 }
2179                 map_rect_destroy(mr);
2180         }
2181         if (! count)
2182                 return;
2183         if (orientation != -1)
2184                 transform_set_yaw(this_->trans, orientation);
2185         navit_zoom_to_rect(this_, &r);
2186 }
2187
2188 static void
2189 navit_cmd_zoom_to_route(struct navit *this)
2190 {
2191         navit_zoom_to_route(this, 0);
2192 }
2193
2194
2195 /**
2196  * Change the current zoom level
2197  *
2198  * @param navit The navit instance
2199  * @param center The point where to center the map, including its projection
2200  * @returns nothing
2201  */
2202 void
2203 navit_set_center(struct navit *this_, struct pcoord *center, int set_timeout)
2204 {
2205         struct coord *c=transform_center(this_->trans);
2206         struct coord c1,c2;
2207         enum projection pro = transform_get_projection(this_->trans);
2208         if (pro != center->pro) {
2209                 c1.x = center->x;
2210                 c1.y = center->y;
2211                 transform_from_to(&c1, center->pro, &c2, pro);
2212         } else {
2213                 c2.x = center->x;
2214                 c2.y = center->y;
2215         }
2216         *c=c2;
2217         if (set_timeout) 
2218                 navit_set_timeout(this_);
2219         if (this_->ready == 3)
2220                 navit_draw(this_);
2221 }
2222
2223 static void
2224 navit_set_center_coord_screen(struct navit *this_, struct coord *c, struct point *p, int set_timeout)
2225 {
2226         int width, height;
2227         struct point po;
2228         transform_set_center(this_->trans, c);
2229         transform_get_size(this_->trans, &width, &height);
2230         po.x=width/2;
2231         po.y=height/2;
2232         update_transformation(this_->trans, &po, p, NULL);
2233         if (set_timeout)
2234                 navit_set_timeout(this_);
2235 }
2236
2237 /**
2238  * Links all vehicles to a cursor depending on the current profile.
2239  *
2240  * @param this_ A navit instance
2241  * @author Ralph Sennhauser (10/2009)
2242  */
2243 static void
2244 navit_set_cursors(struct navit *this_)
2245 {
2246         struct attr name;
2247         struct navit_vehicle *nv;
2248         struct cursor *c;
2249         GList *v;
2250
2251         v=g_list_first(this_->vehicles); // GList of navit_vehicles
2252         while (v) {
2253                 nv=v->data;
2254                 if (vehicle_get_attr(nv->vehicle, attr_cursorname, &name, NULL)) {
2255                         if (!strcmp(name.u.str,"none"))
2256                                 c=NULL;
2257                         else
2258                                 c=layout_get_cursor(this_->layout_current, name.u.str);
2259                 } else
2260                         c=layout_get_cursor(this_->layout_current, "default");
2261                 vehicle_set_cursor(nv->vehicle, c, 0);
2262                 v=g_list_next(v);
2263         }
2264         return;
2265 }
2266
2267 static int
2268 navit_get_cursor_pnt(struct navit *this_, struct point *p, int keep_orientation, int *dir)
2269 {
2270         int width, height;
2271         struct navit_vehicle *nv=this_->vehicle;
2272
2273         float offset=this_->radius;      // Cursor offset from the center of the screen (percent).
2274 #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 */
2275         float min_offset = 0.;      // Percent offset at min_offset_speed.
2276         float max_offset = 30.;     // Percent offset at max_offset_speed.
2277         int min_offset_speed = 2;   // Speed in km/h
2278         int max_offset_speed = 50;  // Speed ini km/h
2279         // Calculate cursor offset from the center of the screen, upon speed.
2280         if (nv->speed <= min_offset_speed) {
2281             offset = min_offset;
2282         } else if (nv->speed > max_offset_speed) {
2283             offset = max_offset;
2284         } else {
2285             offset = (max_offset - min_offset) / (max_offset_speed - min_offset_speed) * (nv->speed - min_offset_speed);
2286         }
2287 #endif
2288
2289         transform_get_size(this_->trans, &width, &height);
2290         if (this_->orientation == -1 || keep_orientation) {
2291                 p->x=50*width/100;
2292                 p->y=(50 + offset)*height/100;
2293                 if (dir) 
2294                         *dir=keep_orientation?this_->orientation:nv->dir;
2295         } else {
2296                 int mdir;
2297                 if (this_->tracking && this_->tracking_flag) {
2298                         mdir = tracking_get_angle(this_->tracking) - this_->orientation;
2299                 } else {
2300                         mdir=nv->dir-this_->orientation;
2301                 }
2302
2303                 p->x=(50 - offset*sin(M_PI*mdir/180.))*width/100;
2304                 p->y=(50 + offset*cos(M_PI*mdir/180.))*height/100;
2305                 if (dir)
2306                         *dir=this_->orientation;
2307         }
2308         return 1;
2309 }
2310
2311 void
2312 navit_set_center_cursor(struct navit *this_, int autozoom, int keep_orientation)
2313 {
2314         int dir;
2315         struct point pn;
2316         struct navit_vehicle *nv=this_->vehicle;
2317         navit_get_cursor_pnt(this_, &pn, keep_orientation, &dir);
2318         transform_set_yaw(this_->trans, dir);
2319         navit_set_center_coord_screen(this_, &nv->coord, &pn, 0);
2320         if (autozoom)
2321                 navit_autozoom(this_, &nv->coord, nv->speed, 0);
2322 }
2323
2324 static void
2325 navit_set_center_cursor_draw(struct navit *this_)
2326 {
2327         navit_set_center_cursor(this_,1,0);
2328         if (this_->ready == 3)
2329                 navit_draw_async(this_, 1);
2330 }
2331
2332 static void
2333 navit_cmd_set_center_cursor(struct navit *this_)
2334 {
2335         navit_set_center_cursor_draw(this_);
2336 }
2337
2338 void
2339 navit_set_center_screen(struct navit *this_, struct point *p, int set_timeout)
2340 {
2341         struct coord c;
2342         struct pcoord pc;
2343         transform_reverse(this_->trans, p, &c);
2344         pc.x = c.x;
2345         pc.y = c.y;
2346         pc.pro = transform_get_projection(this_->trans);
2347         navit_set_center(this_, &pc, set_timeout);
2348 }
2349
2350 static int
2351 navit_set_attr_do(struct navit *this_, struct attr *attr, int init)
2352 {
2353         int dir=0, orient_old=0, attr_updated=0;
2354         struct coord co;
2355         long zoom;
2356         GList *l;
2357         struct navit_vehicle *nv;
2358         struct layout *lay;
2359         struct attr active;
2360         active.type=attr_active;
2361         active.u.num=0;
2362
2363         switch (attr->type) {
2364         case attr_autozoom:
2365                 attr_updated=(this_->autozoom_secs != attr->u.num);
2366                 this_->autozoom_secs = attr->u.num;
2367                 break;
2368         case attr_autozoom_active:
2369                 attr_updated=(this_->autozoom_active != attr->u.num);
2370                 this_->autozoom_active = attr->u.num;
2371                 break;
2372         case attr_center:
2373                 transform_from_geo(transform_get_projection(this_->trans), attr->u.coord_geo, &co);
2374                 dbg(1,"0x%x,0x%x\n",co.x,co.y);
2375                 transform_set_center(this_->trans, &co);
2376                 break;
2377         case attr_drag_bitmap:
2378                 attr_updated=(this_->drag_bitmap != !!attr->u.num);
2379                 this_->drag_bitmap=!!attr->u.num;
2380                 break;
2381         case attr_flags:
2382                 attr_updated=(this_->flags != attr->u.num);
2383                 this_->flags=attr->u.num;
2384                 break;
2385         case attr_flags_graphics:
2386                 attr_updated=(this_->graphics_flags != attr->u.num);
2387                 this_->graphics_flags=attr->u.num;
2388                 break;
2389         case attr_follow:
2390                 if (!this_->vehicle)
2391                         return 0;
2392                 attr_updated=(this_->vehicle->follow_curr != attr->u.num);
2393                 this_->vehicle->follow_curr = attr->u.num;
2394                 break;
2395         case attr_layout:
2396                 if(this_->layout_current!=attr->u.layout) {
2397                         this_->layout_current=attr->u.layout;
2398                         graphics_font_destroy_all(this_->gra);
2399                         navit_set_cursors(this_);
2400                         if (this_->ready == 3)
2401                                 navit_draw(this_);
2402                         attr_updated=1;
2403                 }
2404                 break;
2405         case attr_layout_name:
2406                 l=this_->layouts;
2407                 while (l) {
2408                         lay=l->data;
2409                         if (!strcmp(lay->name,attr->u.str)) {
2410                                 struct attr attr;
2411                                 attr.type=attr_layout;
2412                                 attr.u.layout=lay;
2413                                 return navit_set_attr_do(this_, &attr, init);
2414                         }
2415                         l=g_list_next(l);
2416                 }               
2417                 return 0;
2418         case attr_map_border:
2419                 if (this_->border != attr->u.num) {
2420                         this_->border=attr->u.num;
2421                         attr_updated=1;
2422                 }
2423                 break;
2424         case attr_orientation:
2425                 orient_old=this_->orientation;
2426                 this_->orientation=attr->u.num;
2427                 if (!init) {
2428                         if (this_->orientation != -1) {
2429                                 dir = this_->orientation;
2430                         } else {
2431                                 if (this_->vehicle) {
2432                                         dir = this_->vehicle->dir;
2433                                 }
2434                         }
2435                         transform_set_yaw(this_->trans, dir);
2436                         if (orient_old != this_->orientation) {
2437 #if 0
2438                                 if (this_->ready == 3)
2439                                         navit_draw(this_);
2440 #endif
2441                                 attr_updated=1;
2442                         }
2443                 }
2444                 break;
2445         case attr_osd_configuration:
2446                 dbg(0,"setting osd_configuration to %d (was %d)\n", attr->u.num, this_->osd_configuration);
2447                 attr_updated=(this_->osd_configuration != attr->u.num);
2448                 this_->osd_configuration=attr->u.num;
2449                 break;
2450         case attr_pitch:
2451                 attr_updated=(this_->pitch != attr->u.num);
2452                 this_->pitch=attr->u.num;
2453                 transform_set_pitch(this_->trans, this_->pitch);
2454                 if (!init && attr_updated && this_->ready == 3)
2455                         navit_draw(this_);
2456                 break;
2457         case attr_projection:
2458                 if(this_->trans && transform_get_projection(this_->trans) != attr->u.projection) {
2459                         navit_projection_set(this_, attr->u.projection, !init);
2460                         attr_updated=1;
2461                 }
2462                 break;
2463         case attr_radius:
2464                 attr_updated=(this_->radius != attr->u.num);
2465                 this_->radius=attr->u.num;
2466                 break;
2467         case attr_recent_dest:
2468                 attr_updated=(this_->recentdest_count != attr->u.num);
2469                 this_->recentdest_count=attr->u.num;
2470                 break;
2471         case attr_speech:
2472                 if(this_->speech && this_->speech != attr->u.speech) {
2473                         attr_updated=1;
2474                         this_->speech = attr->u.speech;
2475                 }
2476                 break;
2477         case attr_timeout:
2478                 attr_updated=(this_->center_timeout != attr->u.num);
2479                 this_->center_timeout = attr->u.num;
2480                 break;
2481         case attr_tracking:
2482                 attr_updated=(this_->tracking_flag != !!attr->u.num);
2483                 this_->tracking_flag=!!attr->u.num;
2484                 break;
2485         case attr_transformation:
2486                 this_->trans=attr->u.transformation;
2487                 break;
2488         case attr_use_mousewheel:
2489                 attr_updated=(this_->use_mousewheel != !!attr->u.num);
2490                 this_->use_mousewheel=!!attr->u.num;
2491                 break;
2492         case attr_vehicle:
2493                 if (!attr->u.vehicle) {
2494                         if (this_->vehicle) {
2495                                 vehicle_set_attr(this_->vehicle->vehicle, &active);
2496                                 navit_set_vehicle(this_, NULL);
2497                                 attr_updated=1;
2498                         }
2499                         break;
2500                 }
2501                 l=this_->vehicles;
2502                 while(l) {
2503                         nv=l->data;
2504                         if (nv->vehicle == attr->u.vehicle) {
2505                                 if (!this_->vehicle || this_->vehicle->vehicle != attr->u.vehicle) {
2506                                         if (this_->vehicle)
2507                                                 vehicle_set_attr(this_->vehicle->vehicle, &active);
2508                                         active.u.num=1;
2509                                         vehicle_set_attr(nv->vehicle, &active);
2510                                         attr_updated=1;
2511                                 }
2512                                 navit_set_vehicle(this_, nv);
2513                         }
2514                         l=g_list_next(l);
2515                 }
2516                 break;
2517         case attr_zoom:
2518                 zoom=transform_get_scale(this_->trans);
2519                 attr_updated=(zoom != attr->u.num);
2520                 transform_set_scale(this_->trans, attr->u.num);
2521                 if (attr_updated && !init) 
2522                         navit_draw(this_);
2523                 break;
2524         case attr_zoom_min:
2525                 attr_updated=(attr->u.num != this_->zoom_min);
2526                 this_->zoom_min=attr->u.num;
2527                 break;
2528         case attr_zoom_max:
2529                 attr_updated=(attr->u.num != this_->zoom_max);
2530                 this_->zoom_max=attr->u.num;
2531                 break;
2532         case attr_message:
2533                 navit_add_message(this_, attr->u.str);
2534                 break;
2535         case attr_follow_cursor:
2536                 attr_updated=(this_->follow_cursor != !!attr->u.num);
2537                 this_->follow_cursor=!!attr->u.num;
2538                 break;
2539         case attr_imperial:
2540                 attr_updated=(this_->imperial != attr->u.num);
2541                 this_->imperial=attr->u.num;
2542                 break;
2543         case attr_waypoints_flag:
2544                 attr_updated=(this_->waypoints_flag != !!attr->u.num);
2545                 this_->waypoints_flag=!!attr->u.num;
2546                 break;
2547         default:
2548                 return 0;
2549         }
2550         if (attr_updated && !init) {
2551                 callback_list_call_attr_2(this_->attr_cbl, attr->type, this_, attr);
2552                 if (attr->type == attr_osd_configuration)
2553                         graphics_draw_mode(this_->gra, draw_mode_end);
2554         }
2555         return 1;
2556 }
2557
2558 int
2559 navit_set_attr(struct navit *this_, struct attr *attr)
2560 {
2561         return navit_set_attr_do(this_, attr, 0);
2562 }
2563
2564 int
2565 navit_get_attr(struct navit *this_, enum attr_type type, struct attr *attr, struct attr_iter *iter)
2566 {
2567         struct message *msg;
2568         struct coord *c;
2569         int len,offset;
2570         int ret=1;
2571
2572         switch (type) {
2573         case attr_message:
2574                 msg = navit_get_messages(this_);
2575                 
2576                 if (!msg) {
2577                         return 0;
2578                 }
2579
2580                 len = 0;
2581                 while (msg) {
2582                         len += strlen(msg->text) + 1;
2583                         msg = msg->next;
2584                 }
2585                 attr->u.str = g_malloc(len + 1);
2586                 
2587                 msg = navit_get_messages(this_);
2588                 offset = 0;
2589                 while (msg) {
2590                         g_stpcpy((attr->u.str + offset), msg->text);
2591                         offset += strlen(msg->text);
2592                         attr->u.str[offset] = '\n';
2593                         offset++;
2594
2595                         msg = msg->next;
2596                 }
2597
2598                 attr->u.str[len] = '\0';
2599                 break;
2600         case attr_imperial: 
2601                 attr->u.num=this_->imperial; 
2602                 break; 
2603         case attr_bookmark_map:
2604                 attr->u.map=bookmarks_get_map(this_->bookmarks);
2605                 break;
2606         case attr_bookmarks:
2607                 attr->u.bookmarks=this_->bookmarks;
2608                 break;
2609         case attr_callback_list:
2610                 attr->u.callback_list=this_->attr_cbl;
2611                 break;
2612         case attr_center:
2613                 c=transform_get_center(this_->trans);
2614                 transform_to_geo(transform_get_projection(this_->trans), c, &this_->center);
2615                 attr->u.coord_geo=&this_->center;
2616                 break;
2617         case attr_destination:
2618                 if (! this_->destination_valid)
2619                         return 0;
2620                 attr->u.pcoord=&this_->destination;
2621                 break;
2622         case attr_displaylist:
2623                 attr->u.displaylist=this_->displaylist;
2624                 return (attr->u.displaylist != NULL);
2625         case attr_follow:
2626                 if (!this_->vehicle)
2627                         return 0;
2628                 attr->u.num=this_->vehicle->follow_curr;
2629                 break;
2630         case attr_former_destination_map:
2631                 attr->u.map=this_->former_destination;
2632                 break;
2633         case attr_graphics:
2634                 attr->u.graphics=this_->gra;
2635                 ret=(attr->u.graphics != NULL);
2636                 break;
2637         case attr_gui:
2638                 attr->u.gui=this_->gui;
2639                 ret=(attr->u.gui != NULL);
2640                 break;
2641         case attr_layout:
2642                 if (iter) {
2643                         if (iter->u.list) {
2644                                 iter->u.list=g_list_next(iter->u.list);
2645                         } else { 
2646                                 iter->u.list=this_->layouts;
2647                         }
2648                         if (!iter->u.list)
2649                                 return 0;
2650                         attr->u.layout=(struct layout *)iter->u.list->data;
2651                 } else {
2652                         attr->u.layout=this_->layout_current;
2653                 }
2654                 break;
2655         case attr_map:
2656                 if (iter && this_->mapsets) {
2657                         if (!iter->u.mapset_handle) {
2658                                 iter->u.mapset_handle=mapset_open((struct mapset *)this_->mapsets->data);
2659                         }
2660                         attr->u.map=mapset_next(iter->u.mapset_handle, 0);
2661                         if(!attr->u.map) {
2662                                 mapset_close(iter->u.mapset_handle);
2663                                 return 0;
2664                         }
2665                 } else {
2666                         return 0;
2667                 }
2668                 break;
2669         case attr_mapset:
2670                 attr->u.mapset=this_->mapsets->data;
2671                 ret=(attr->u.mapset != NULL);
2672                 break;
2673         case attr_navigation:
2674                 attr->u.navigation=this_->navigation;
2675                 break;
2676         case attr_orientation:
2677                 attr->u.num=this_->orientation;
2678                 break;
2679         case attr_osd:
2680                 ret=attr_generic_get_attr(this_->attr_list, NULL, type, attr, iter?(struct attr_iter *)&iter->iter:NULL);
2681                 break;
2682         case attr_osd_configuration:
2683                 attr->u.num=this_->osd_configuration;
2684                 break;
2685         case attr_pitch:
2686                 attr->u.num=transform_get_pitch(this_->trans);
2687                 break;
2688         case attr_projection:
2689                 if(this_->trans) {
2690                         attr->u.num=transform_get_projection(this_->trans);
2691                 } else {
2692                         return 0;
2693                 }
2694                 break;
2695         case attr_route:
2696                 attr->u.route=this_->route;
2697                 break;
2698         case attr_speech:
2699                 attr->u.speech=this_->speech;
2700                 break;
2701         case attr_tracking:
2702                 attr->u.num=this_->tracking_flag;
2703                 break;
2704         case attr_trackingo:
2705                 attr->u.tracking=this_->tracking;
2706                 break;
2707         case attr_transformation:
2708                 attr->u.transformation=this_->trans;
2709                 break;
2710         case attr_vehicle:
2711                 if(iter) {
2712                         if(iter->u.list) {
2713                                 iter->u.list=g_list_next(iter->u.list);
2714                         } else { 
2715                                 iter->u.list=this_->vehicles;
2716                         }
2717                         if(!iter->u.list)
2718                                 return 0;
2719                         attr->u.vehicle=((struct navit_vehicle*)iter->u.list->data)->vehicle;
2720                 } else {
2721                         if(this_->vehicle) {
2722                                 attr->u.vehicle=this_->vehicle->vehicle;
2723                         } else {
2724                                 return 0;
2725                         }
2726                 }
2727                 break;
2728         case attr_vehicleprofile:
2729                 attr->u.vehicleprofile=this_->vehicleprofile;
2730                 break;
2731         case attr_zoom:
2732                 attr->u.num=transform_get_scale(this_->trans);
2733                 break;
2734         case attr_autozoom_active:
2735                 attr->u.num=this_->autozoom_active;
2736                 break;
2737         case attr_follow_cursor:
2738                 attr->u.num=this_->follow_cursor;
2739                 break;
2740         case attr_waypoints_flag:
2741                 attr->u.num=this_->waypoints_flag;
2742                 break;
2743         default:
2744                 return 0;
2745         }
2746         attr->type=type;
2747         return ret;
2748 }
2749
2750 static int
2751 navit_add_log(struct navit *this_, struct log *log)
2752 {
2753         struct attr type_attr;
2754         if (!log_get_attr(log, attr_type, &type_attr, NULL))
2755                 return 0;
2756         if (!strcmp(type_attr.u.str, "textfile_debug")) {
2757                 char *header = "type=track_tracked\n";
2758                 if (this_->textfile_debug_log)
2759                         return 0;
2760                 log_set_header(log, header, strlen(header));
2761                 this_->textfile_debug_log=log;
2762                 return 1;
2763         }
2764         return 0;
2765 }
2766
2767 static int
2768 navit_add_layout(struct navit *this_, struct layout *layout)
2769 {
2770         struct attr active;
2771         this_->layouts = g_list_append(this_->layouts, layout);
2772         layout_get_attr(layout, attr_active, &active, NULL);
2773         if(active.u.num || !this_->layout_current) { 
2774                 this_->layout_current=layout;
2775                 return 1;
2776         }
2777         return 0;
2778 }
2779
2780 int
2781 navit_add_attr(struct navit *this_, struct attr *attr)
2782 {
2783         int ret=1;
2784         switch (attr->type) {
2785         case attr_callback:
2786                 navit_add_callback(this_, attr->u.callback);
2787                 break;
2788         case attr_log:
2789                 ret=navit_add_log(this_, attr->u.log);
2790                 break;
2791         case attr_gui:
2792                 ret=navit_set_gui(this_, attr->u.gui);
2793                 break;
2794         case attr_graphics:
2795                 ret=navit_set_graphics(this_, attr->u.graphics);
2796                 break;
2797         case attr_layout:
2798                 ret=navit_add_layout(this_, attr->u.layout);
2799                 break;
2800         case attr_route:
2801                 this_->route=attr->u.route;
2802                 break;
2803         case attr_mapset:
2804                 this_->mapsets = g_list_append(this_->mapsets, attr->u.mapset);
2805                 break;
2806         case attr_navigation:
2807                 this_->navigation=attr->u.navigation;
2808                 break;
2809         case attr_osd:
2810                 this_->attr_list=attr_generic_add_attr(this_->attr_list, attr);
2811                 break;
2812         case attr_recent_dest:
2813                 this_->recentdest_count = attr->u.num;
2814                 break;
2815         case attr_speech:
2816                 this_->speech=attr->u.speech;
2817                 break;
2818         case attr_trackingo:
2819                 this_->tracking=attr->u.tracking;
2820                 break;
2821         case attr_vehicle:
2822                 ret=navit_add_vehicle(this_, attr->u.vehicle);
2823                 break;
2824         case attr_vehicleprofile:
2825                 this_->vehicleprofiles=g_list_append(this_->vehicleprofiles, attr->u.vehicleprofile);
2826                 break;
2827         case attr_autozoom_min:
2828                 this_->autozoom_min = attr->u.num;
2829                 break;
2830         default:
2831                 return 0;
2832         }
2833         if (ret)
2834                 this_->attrs=attr_generic_add_attr(this_->attrs, attr);
2835         callback_list_call_attr_2(this_->attr_cbl, attr->type, this_, attr);
2836         return ret;
2837 }
2838
2839 int
2840 navit_remove_attr(struct navit *this_, struct attr *attr)
2841 {
2842         int ret=1;
2843         switch (attr->type) {
2844         case attr_callback:
2845                 navit_remove_callback(this_, attr->u.callback);
2846                 break;
2847         case attr_vehicle:
2848                 this_->attrs=attr_generic_remove_attr(this_->attrs, attr);
2849                 return 1;
2850         default:
2851                 return 0;
2852         }
2853         return ret;
2854 }
2855
2856 struct attr_iter *
2857 navit_attr_iter_new(void)
2858 {
2859         return g_new0(struct attr_iter, 1);
2860 }
2861
2862 void
2863 navit_attr_iter_destroy(struct attr_iter *iter)
2864 {
2865         g_free(iter);
2866 }
2867
2868 void
2869 navit_add_callback(struct navit *this_, struct callback *cb)
2870 {
2871         callback_list_add(this_->attr_cbl, cb);
2872 }
2873
2874 void
2875 navit_remove_callback(struct navit *this_, struct callback *cb)
2876 {
2877         callback_list_remove(this_->attr_cbl, cb);
2878 }
2879
2880 /**
2881  * Toggle the cursor update : refresh the map each time the cursor has moved (instead of only when it reaches a border)
2882  *
2883  * @param navit The navit instance
2884  * @returns nothing
2885  */
2886
2887 static void
2888 navit_vehicle_draw(struct navit *this_, struct navit_vehicle *nv, struct point *pnt)
2889 {
2890         struct point cursor_pnt;
2891         enum projection pro;
2892
2893         if (this_->blocked)
2894                 return;
2895         if (pnt)
2896                 cursor_pnt=*pnt;
2897         else {
2898                 pro=transform_get_projection(this_->trans_cursor);
2899                 if (!pro)
2900                         return;
2901                 transform(this_->trans_cursor, pro, &nv->coord, &cursor_pnt, 1, 0, 0, NULL);
2902         }
2903         vehicle_draw(nv->vehicle, this_->gra, &cursor_pnt, pnt ? 0:1, nv->dir-transform_get_yaw(this_->trans_cursor), nv->speed);
2904 #if 0   
2905         if (pnt)
2906                 pnt2=*pnt;
2907         else {
2908                 pro=transform_get_projection(this_->trans);
2909                 transform(this_->trans, pro, &nv->coord, &pnt2, 1);
2910         }
2911 #if 1
2912         cursor_draw(nv->cursor, &pnt2, nv->dir-transform_get_angle(this_->trans, 0), nv->speed > 2, pnt == NULL);
2913 #else
2914         cursor_draw(nv->cursor, &pnt2, nv->dir-transform_get_angle(this_->trans, 0), nv->speed > 2, 1);
2915 #endif
2916 #endif
2917 }
2918
2919 static void
2920 navit_vehicle_update(struct navit *this_, struct navit_vehicle *nv)
2921 {
2922         struct attr attr_valid, attr_dir, attr_speed, attr_pos;
2923         struct pcoord cursor_pc;
2924         struct point cursor_pnt, *pnt=&cursor_pnt;
2925         struct tracking *tracking=NULL;
2926         struct pcoord pc[16];
2927         enum projection pro=transform_get_projection(this_->trans_cursor);
2928         int count;
2929         int (*get_attr)(void *, enum attr_type, struct attr *, struct attr_iter *);
2930         void *attr_object;
2931         char *destination_file;
2932         char *description;
2933
2934         profile(0,NULL);
2935         if (this_->ready == 3)
2936                 navit_layout_switch(this_);
2937         if (this_->vehicle == nv && this_->tracking_flag)
2938                 tracking=this_->tracking;
2939         if (tracking) {
2940                 tracking_update(tracking, nv->vehicle, this_->vehicleprofile, pro);
2941                 attr_object=tracking;
2942                 get_attr=(int (*)(void *, enum attr_type, struct attr *, struct attr_iter *))tracking_get_attr;
2943         } else {
2944                 attr_object=nv->vehicle;
2945                 get_attr=(int (*)(void *, enum attr_type, struct attr *, struct attr_iter *))vehicle_get_attr;
2946         }
2947         if (get_attr(attr_object, attr_position_valid, &attr_valid, NULL))
2948                 if (!attr_valid.u.num != attr_position_valid_invalid)
2949                         return;
2950         if (! get_attr(attr_object, attr_position_direction, &attr_dir, NULL) ||
2951             ! get_attr(attr_object, attr_position_speed, &attr_speed, NULL) ||
2952             ! get_attr(attr_object, attr_position_coord_geo, &attr_pos, NULL)) {
2953                 profile(0,"return 2\n");
2954                 return;
2955         }
2956         nv->dir=*attr_dir.u.numd;
2957         nv->speed=*attr_speed.u.numd;
2958         transform_from_geo(pro, attr_pos.u.coord_geo, &nv->coord);
2959         if (nv != this_->vehicle) {
2960                 if (this_->ready == 3)
2961                         navit_vehicle_draw(this_, nv, NULL);
2962                 profile(0,"return 3\n");
2963                 return;
2964         }
2965         cursor_pc.x = nv->coord.x;
2966         cursor_pc.y = nv->coord.y;
2967         cursor_pc.pro = pro;
2968         if (this_->route) {
2969                 if (tracking)
2970                         route_set_position_from_tracking(this_->route, tracking, pro);
2971                 else
2972                         route_set_position(this_->route, &cursor_pc);
2973         }
2974         callback_list_call_attr_0(this_->attr_cbl, attr_position);
2975         navit_textfile_debug_log(this_, "type=trackpoint_tracked");
2976         if (this_->ready == 3) {
2977                 if (this_->gui && nv->speed > 2)
2978                         navit_disable_suspend();
2979
2980                 transform(this_->trans_cursor, pro, &nv->coord, &cursor_pnt, 1, 0, 0, NULL);
2981                 if (this_->button_pressed != 1 && this_->follow_cursor && nv->follow_curr <= nv->follow && 
2982                         (nv->follow_curr == 1 || !transform_within_border(this_->trans_cursor, &cursor_pnt, this_->border)))
2983                         navit_set_center_cursor_draw(this_);
2984                 else
2985                         navit_vehicle_draw(this_, nv, pnt);
2986
2987                 if (nv->follow_curr > 1)
2988                         nv->follow_curr--;
2989                 else
2990                         nv->follow_curr=nv->follow;
2991         }
2992         callback_list_call_attr_2(this_->attr_cbl, attr_position_coord_geo, this_, nv->vehicle);
2993
2994         /* Finally, if we reached our destination, stop navigation. */
2995         if (this_->route) {
2996                 switch(route_destination_reached(this_->route)) {
2997                 case 1:
2998                         description=route_get_destination_description(this_->route, 0);
2999                         route_remove_waypoint(this_->route);
3000                         count=route_get_destinations(this_->route, pc, 16);
3001                         destination_file = bookmarks_get_destination_file(TRUE);
3002                         bookmarks_append_coord(this_->former_destination, destination_file, pc, type_former_itinerary_part, description, this_->recentdest_count);
3003                         g_free(description);
3004                         break;  
3005                 case 2:
3006                         description=route_get_destination_description(this_->route, 0);
3007                         count=route_get_destinations(this_->route, pc, 1);
3008                         destination_file = bookmarks_get_destination_file(TRUE);
3009                         bookmarks_append_coord(this_->former_destination, destination_file, pc, type_former_itinerary_part, description, this_->recentdest_count);
3010                         g_free(description);
3011                         navit_set_destination(this_, NULL, NULL, 0);
3012                         break;
3013                 }
3014         }
3015         profile(0,"return 5\n");
3016 }
3017
3018 /**
3019  * Set the position of the vehicle
3020  *
3021  * @param navit The navit instance
3022  * @param c The coordinate to set as position
3023  * @returns nothing
3024  */
3025
3026 void
3027 navit_set_position(struct navit *this_, struct pcoord *c)
3028 {
3029         if (this_->route) {
3030                 route_set_position(this_->route, c);
3031                 callback_list_call_attr_0(this_->attr_cbl, attr_position);
3032         }
3033         if (this_->ready == 3)
3034                 navit_draw(this_);
3035 }
3036
3037 static int
3038 navit_set_vehicleprofile(struct navit *this_, char *name)
3039 {
3040         struct attr attr;
3041         GList *l;
3042         l=this_->vehicleprofiles;
3043         while (l) {
3044                 if (vehicleprofile_get_attr(l->data, attr_name, &attr, NULL)) {
3045                         if (!strcmp(attr.u.str, name)) {
3046                                 this_->vehicleprofile=l->data;
3047                                 if (this_->route)
3048                                         route_set_profile(this_->route, this_->vehicleprofile);
3049                                 return 1;
3050                         }
3051                 }
3052                 l=g_list_next(l);
3053         }
3054         return 0;
3055 }
3056
3057 static void
3058 navit_set_vehicle(struct navit *this_, struct navit_vehicle *nv)
3059 {
3060         struct attr attr;
3061         this_->vehicle=nv;
3062         if (!nv)
3063                 return;
3064         if (vehicle_get_attr(nv->vehicle, attr_profilename, &attr, NULL)) {
3065                 if (navit_set_vehicleprofile(this_, attr.u.str))
3066                         return;
3067         }
3068         if (!navit_set_vehicleprofile(this_,"car")) {
3069                 /* We do not have a fallback "car" profile
3070                 * so lets set any profile */
3071                 GList *l;
3072                 l=this_->vehicleprofiles;
3073                 if (l) {
3074                     this_->vehicleprofile=l->data;
3075                     if (this_->route)
3076                         route_set_profile(this_->route, this_->vehicleprofile);
3077                 }
3078         }
3079 }
3080
3081 /**
3082  * Register a new vehicle
3083  *
3084  * @param navit The navit instance
3085  * @param v The vehicle instance
3086  * @returns 1 for success
3087  */
3088 static int
3089 navit_add_vehicle(struct navit *this_, struct vehicle *v)
3090 {
3091         struct navit_vehicle *nv=g_new0(struct navit_vehicle, 1);
3092         struct attr follow, active, animate;
3093         nv->vehicle=v;
3094         nv->follow=0;
3095         nv->last.x = 0;
3096         nv->last.y = 0;
3097         nv->animate_cursor=0;
3098         if ((vehicle_get_attr(v, attr_follow, &follow, NULL)))
3099                 nv->follow=follow.u.num;
3100         nv->follow_curr=nv->follow;
3101         this_->vehicles=g_list_append(this_->vehicles, nv);
3102         if ((vehicle_get_attr(v, attr_active, &active, NULL)) && active.u.num)
3103                 navit_set_vehicle(this_, nv);
3104         if ((vehicle_get_attr(v, attr_animate, &animate, NULL)))
3105                 nv->animate_cursor=animate.u.num;
3106         nv->callback.type=attr_callback;
3107         nv->callback.u.callback=callback_new_attr_2(callback_cast(navit_vehicle_update), attr_position_coord_geo, this_, nv);
3108         vehicle_add_attr(nv->vehicle, &nv->callback);
3109         vehicle_set_attr(nv->vehicle, &this_->self);
3110         return 1;
3111 }
3112
3113
3114
3115
3116 struct gui *
3117 navit_get_gui(struct navit *this_)
3118 {
3119         return this_->gui;
3120 }
3121
3122 struct transformation *
3123 navit_get_trans(struct navit *this_)
3124 {
3125         return this_->trans;
3126 }
3127
3128 struct route *
3129 navit_get_route(struct navit *this_)
3130 {
3131         return this_->route;
3132 }
3133
3134 struct navigation *
3135 navit_get_navigation(struct navit *this_)
3136 {
3137         return this_->navigation;
3138 }
3139
3140 struct displaylist *
3141 navit_get_displaylist(struct navit *this_)
3142 {
3143         return this_->displaylist;
3144 }
3145
3146 void
3147 navit_layout_switch(struct navit *n) 
3148 {
3149
3150     int currTs=0;
3151     struct attr iso8601_attr,geo_attr,valid_attr,layout_attr;
3152     double trise,tset,trise_actual;
3153     struct layout *l;
3154     int year, month, day;
3155     
3156     if (navit_get_attr(n,attr_layout,&layout_attr,NULL)!=1) {
3157         return; //No layout - nothing to switch
3158     }
3159     if (!n->vehicle)
3160         return;
3161     l=layout_attr.u.layout;
3162     
3163     if (l->dayname || l->nightname) {
3164         //Ok, we know that we have profile to switch
3165         
3166         //Check that we aren't calculating too fast
3167         if (vehicle_get_attr(n->vehicle->vehicle, attr_position_time_iso8601,&iso8601_attr,NULL)==1) {
3168                 currTs=iso8601_to_secs(iso8601_attr.u.str);
3169                 dbg(1,"currTs: %u:%u\n",currTs%86400/3600,((currTs%86400)%3600)/60);
3170         }
3171         if (currTs-(n->prevTs)<60) {
3172             //We've have to wait a little
3173             return;
3174         }
3175         if (sscanf(iso8601_attr.u.str,"%d-%02d-%02dT",&year,&month,&day) != 3)
3176                 return;
3177         if (vehicle_get_attr(n->vehicle->vehicle, attr_position_valid, &valid_attr,NULL) && valid_attr.u.num==attr_position_valid_invalid) {
3178                 return; //No valid fix yet
3179         }
3180         if (vehicle_get_attr(n->vehicle->vehicle, attr_position_coord_geo,&geo_attr,NULL)!=1) {
3181                 //No position - no sun
3182                 return;
3183         }
3184         
3185         //We calculate sunrise anyway, cause it is needed both for day and for night
3186         if (__sunriset__(year,month,day,geo_attr.u.coord_geo->lng,geo_attr.u.coord_geo->lat,-5,1,&trise,&tset)!=0) {
3187                 //near the pole sun never rises/sets, so we should never switch profiles
3188                 dbg(1,"trise: %u:%u, sun never visible, never switch profile\n",HOURS(trise),MINUTES(trise));
3189                 n->prevTs=currTs;
3190                 return;
3191             }
3192         
3193         trise_actual=trise;
3194         dbg(1,"trise: %u:%u\n",HOURS(trise),MINUTES(trise));
3195         if (l->dayname) {
3196         
3197             if ((HOURS(trise)*60+MINUTES(trise)==(currTs%86400)/60) || 
3198                     (n->prevTs==0 && ((HOURS(trise)*60+MINUTES(trise)<(currTs%86400)/60)))) {
3199                 //The sun is rising now!
3200                 if (strcmp(l->name,l->dayname)) {
3201                     navit_set_layout_by_name(n,l->dayname);
3202                 }
3203             }
3204         }
3205         if (l->nightname) {
3206             if (__sunriset__(year,month,day,geo_attr.u.coord_geo->lng,geo_attr.u.coord_geo->lat,-5,1,&trise,&tset)!=0) {
3207                 //near the pole sun never rises/sets, so we should never switch profiles
3208                 dbg(1,"tset: %u:%u, sun always visible, never switch profile\n",HOURS(tset),MINUTES(tset));
3209                 n->prevTs=currTs;
3210                 return;
3211             }
3212             dbg(1,"tset: %u:%u\n",HOURS(tset),MINUTES(tset));
3213             if (HOURS(tset)*60+MINUTES(tset)==((currTs%86400)/60)
3214                 || (n->prevTs==0 && (((HOURS(tset)*60+MINUTES(tset)<(currTs%86400)/60)) || 
3215                         ((HOURS(trise_actual)*60+MINUTES(trise_actual)>(currTs%86400)/60))))) {
3216                 //Time to sleep
3217                 if (strcmp(l->name,l->nightname)) {
3218                     navit_set_layout_by_name(n,l->nightname);
3219                 }
3220             }   
3221         }
3222         
3223         n->prevTs=currTs;
3224     }
3225 }
3226
3227 int 
3228 navit_set_vehicle_by_name(struct navit *n,const char *name) 
3229 {
3230     struct vehicle *v;
3231     struct attr_iter *iter;
3232     struct attr vehicle_attr, name_attr;
3233
3234         iter=navit_attr_iter_new();
3235
3236     while (navit_get_attr(n,attr_vehicle,&vehicle_attr,iter)) {
3237                 v=vehicle_attr.u.vehicle;
3238                 vehicle_get_attr(v,attr_name,&name_attr,NULL);
3239                 if (name_attr.type==attr_name) {
3240                         if (!strcmp(name,name_attr.u.str)) {
3241                                 navit_set_attr(n,&vehicle_attr);                                
3242                                 navit_attr_iter_destroy(iter);
3243                                 return 1;
3244                         }
3245                 }
3246         }
3247     navit_attr_iter_destroy(iter);
3248     return 0;
3249 }
3250
3251 int 
3252 navit_set_layout_by_name(struct navit *n,const char *name) 
3253 {
3254     struct layout *l;
3255     struct attr_iter iter;
3256     struct attr layout_attr;
3257
3258     iter.u.list=0x00;
3259
3260     if (navit_get_attr(n,attr_layout,&layout_attr,&iter)!=1) {
3261         return 0; //No layouts - nothing to do
3262     }
3263     if (iter.u.list==NULL) {
3264         return 0;
3265     }
3266     
3267     iter.u.list=g_list_first(iter.u.list);
3268     
3269     while(iter.u.list) {
3270         l=(struct layout*)iter.u.list->data;
3271         if (!strcmp(name,l->name)) {
3272             layout_attr.u.layout=l;
3273             layout_attr.type=attr_layout;
3274             navit_set_attr(n,&layout_attr);
3275             iter.u.list=g_list_first(iter.u.list);
3276             return 1;
3277         }
3278         iter.u.list=g_list_next(iter.u.list);
3279     }
3280
3281     iter.u.list=g_list_first(iter.u.list);
3282     return 0;
3283 }
3284
3285 void
3286 navit_disable_suspend() {
3287         gui_disable_suspend(global_navit->gui);
3288         callback_list_call_attr_0(global_navit->attr_cbl,attr_unsuspend);
3289 }
3290
3291 int
3292 navit_block(struct navit *this_, int block)
3293 {
3294         if (block > 0) {
3295                 this_->blocked |= 1;
3296                 if (graphics_draw_cancel(this_->gra, this_->displaylist))
3297                         this_->blocked |= 2;
3298                 return 0;
3299         }
3300         if ((this_->blocked & 2) || block < 0) {
3301                 this_->blocked=0;
3302                 navit_draw(this_);
3303                 return 1;
3304         }
3305         this_->blocked=0;
3306         return 0;
3307 }
3308
3309 void
3310 navit_destroy(struct navit *this_)
3311 {
3312         dbg(0,"enter %p\n",this_);
3313         graphics_draw_cancel(this_->gra, this_->displaylist);
3314         callback_list_call_attr_1(this_->attr_cbl, attr_destroy, this_);
3315         attr_list_free(this_->attrs);
3316         if (this_->bookmarks) {
3317                 char *center_file = bookmarks_get_center_file(TRUE);
3318                 bookmarks_write_center_to_file(this_->bookmarks, center_file);
3319                 g_free(center_file);
3320                 bookmarks_destroy(this_->bookmarks);
3321         }
3322
3323         callback_destroy(this_->nav_speech_cb);
3324         callback_destroy(this_->roadbook_callback);
3325         callback_destroy(this_->popup_callback);
3326         callback_destroy(this_->motion_timeout_callback);
3327         callback_destroy(this_->progress_cb);
3328
3329         if(this_->gra) {
3330           graphics_remove_callback(this_->gra, this_->resize_callback);
3331           graphics_remove_callback(this_->gra, this_->button_callback);
3332           graphics_remove_callback(this_->gra, this_->motion_callback);
3333           graphics_remove_callback(this_->gra, this_->predraw_callback);
3334         }
3335
3336         callback_destroy(this_->resize_callback);
3337         callback_destroy(this_->motion_callback);
3338         callback_destroy(this_->predraw_callback);
3339
3340         callback_destroy(this_->route_cb);
3341         if (this_->route)
3342                 route_destroy(this_->route);
3343
3344         map_destroy(this_->former_destination);
3345
3346         graphics_displaylist_destroy(this_->displaylist);
3347
3348         graphics_free(this_->gra);
3349
3350         g_free(this_);
3351 }
3352
3353 struct navit *
3354 navit_ref(struct navit *this_)
3355 {
3356         this_->refcount++;
3357         dbg(1,"refcount %d\n",this_->refcount);
3358         return this_;
3359 }
3360
3361 void
3362 navit_unref(struct navit *this_)
3363 {
3364         this_->refcount--;
3365         dbg(1,"refcount %d\n",this_->refcount);
3366         if (this_->refcount <= 0)
3367                 navit_destroy(this_);
3368 }
3369
3370 struct object_func navit_func = {
3371         attr_navit,
3372         (object_func_new)navit_new,
3373         (object_func_get_attr)navit_get_attr,
3374         (object_func_iter_new)navit_attr_iter_new,
3375         (object_func_iter_destroy)navit_attr_iter_destroy,
3376         (object_func_set_attr)navit_set_attr,
3377         (object_func_add_attr)navit_add_attr,
3378         (object_func_remove_attr)navit_remove_attr,
3379         (object_func_init)navit_init,
3380         (object_func_destroy)navit_destroy,
3381         (object_func_dup)NULL,
3382         (object_func_ref)navit_ref,
3383         (object_func_unref)navit_unref,
3384 };
3385
3386 /** @} */