summaryrefslogtreecommitdiff
path: root/navit/gui/qt5_qml/backend.cpp
blob: ac1eb21a5653087697fcd998342701bb3d7f1b4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
#include <glib.h>

#include "item.h"
#include "attr.h"
#include "navit.h"
#include "xmlconfig.h" // for NAVIT_OBJECT
#include "layout.h"
#include "map.h"
#include "transform.h"
#include "backend.h"

#include "qml_map.h"
#include "qml_poi.h"
#include "qml_search.h"

#include "mapset.h"

#include <QQmlContext>

#include "search.h"

extern "C" {
#include "proxy.h"
}

Backend::Backend(QObject * parent):QObject(parent)
{
}

/**
 * @brief Set some variables and display the main menu
 * @param struct point *p the point coordinate where we clicked on the screen
 * @returns nothing
 */
void Backend::showMenu(struct point *p)
{
        struct coord co;

        transform_reverse(navit_get_trans(nav), p, &co);
        dbg(lvl_debug, "Point 0x%x 0x%x\n", co.x, co.y);
        dbg(lvl_debug, "Screen coord : %d %d\n", p->x, p->y);
        transform_to_geo(transform_get_projection(navit_get_trans(nav)), &co, &(this->g));
        dbg(lvl_debug, "%f %f\n", this->g.lat, this->g.lng);
        dbg(lvl_debug, "%p %p\n", nav, &c);
        this->c.pro = transform_get_projection(navit_get_trans(nav));
        this->c.x = co.x;
        this->c.y = co.y;
        dbg(lvl_debug, "c : %x %x\n", this->c.x, this->c.y);

        // As a test, set the Demo vehicle position to wherever we just clicked
        navit_set_position(this->nav, &c);
        navit_block(this->nav, 1);
        emit displayMenu("MainMenu.qml");
}

/**
 * @brief update the private m_maps list. Expected to be called from QML
 * @param none
 * @returns nothing
 */ 
void Backend::get_maps()
{
        struct attr attr, on, off, description, type, data, active;
        char * label;
        bool is_active;
        struct attr_iter * iter;
        _maps.clear();

        iter = navit_attr_iter_new();
        on.type = off.type = attr_active;
        on.u.num = 1;
        off.u.num = 0;
        while (navit_get_attr(this->nav, attr_map, &attr, iter)) {
                if (map_get_attr(attr.u.map, attr_description, &description, NULL)) {
                        label = g_strdup(description.u.str);
                } else {
                        if (!map_get_attr(attr.u.map, attr_type, &type, NULL))
                                type.u.str = "";
                        if (!map_get_attr(attr.u.map, attr_data, &data, NULL))
                                data.u.str = "";
                        label = g_strdup_printf("%s:%s", type.u.str, data.u.str);
                }
                is_active = false;
                if (map_get_attr(attr.u.map, attr_active, &active, NULL)) {
                        if (active.u.num == 1) {
                                is_active = true;
                        }
                }
                _maps.append(new MapObject(label, is_active));
        }
        emit mapsChanged();
}

/**
 * @brief set a pointer to the struct navit * for local use
 * @param none
 * @returns nothing
 */ 
void Backend::set_navit(struct navit *nav)
{
        this->nav = nav;
}

/**
 * @brief set a pointer to the QQmlApplicationEngine * for local use
 * @param none
 * @returns nothing
 */ 
void Backend::set_engine(QQmlApplicationEngine * engine)
{
        this->engine = engine;
}

/**
 * @brief apply search filters on one specific item
 * @param struct item * the item to filter
 * @returns 0 if the item should be discarded, 1 otherwise
 */ 
int Backend::filter_pois(struct item *item)
{
        enum item_type *types;
        enum item_type type=item->type;
        if (type >= type_line)
                return 0;
        return 1;
}

/**
 * @brief update the private m_pois list. Expected to be called from QML
 * @param none
 * @returns nothing
 */ 
void Backend::get_pois()
{
        struct map_selection * sel, * selm;
        struct coord c, center;
        struct mapset_handle * h;
        struct map * m;
        struct map_rect * mr;
        struct item * item;
        enum projection pro = this->c.pro;
        int idist, dist;
        _pois.clear();
        dist = 10000;
        sel = map_selection_rect_new(&(this->c), dist * transform_scale(abs(this->c.y) + dist * 1.5), 18);
        center.x = this->c.x;
        center.y = this->c.y;

        dbg(lvl_debug, "center is at %x, %x\n", center.x, center.y);

        h = mapset_open(navit_get_mapset(this->nav));
        while ((m = mapset_next(h, 1))) {
                selm = map_selection_dup_pro(sel, pro, map_projection(m));
                mr = map_rect_new(m, selm);
                dbg(lvl_debug, "mr=%p\n", mr);
                if (mr) {
                        while ((item = map_rect_get_item(mr))) {
                                if ( filter_pois(item) &&
                                                item_coord_get_pro(item, &c, 1, pro) &&
                                                coord_rect_contains(&sel->u.c_rect, &c)  &&
                                                (idist=transform_distance(pro, &center, &c)) < dist) {

                                        struct attr attr;
                                        char * label;
                                        char * icon = get_icon(this->nav, item);
                                        struct pcoord item_coord;
                                        item_coord.pro = transform_get_projection(navit_get_trans(nav));
                                        item_coord.x = c.x;
                                        item_coord.y = c.y;

                                        idist = transform_distance(pro, &center, &c);
                                        if (item_attr_get(item, attr_label, &attr)) {
                                                label = map_convert_string(item->map, attr.u.str);
                                                if (icon) {
                                                        _pois.append(new PoiObject(label, item_to_name(item->type), idist, icon, item_coord));
                                                }
                                        }
                                }
                        }
                        map_rect_destroy(mr);
                }
                map_selection_destroy(selm);
        }
        map_selection_destroy(sel);
        mapset_close(h);
        emit poisChanged();
}

/**
 * @brief get the POIs as a QList
 * @param none
 * @returns the pois QList
 */ 
QQmlListProperty<QObject> Backend::getPois(){
        return QQmlListProperty<QObject>(this, _pois);
}

/**
 * @brief get the maps as a QList
 * @param none
 * @returns the maps QList
 */ 
QQmlListProperty<QObject> Backend::getMaps(){
        return QQmlListProperty<QObject>(this, _maps);
}

/**
 * @brief get the search results as a QList
 * @param none
 * @returns the search results QList
 */ 
QQmlListProperty<QObject> Backend::getSearchResults(){
        return QQmlListProperty<QObject>(this, _search_results);
}

/**
 * @brief get the active POI. Used when displaying the relevant menu
 * @param none
 * @returns the active POI
 */ 
PoiObject * Backend::activePoi() {
        dbg(lvl_debug, "name : %s\n", m_activePoi->name().toUtf8().data());
        dbg(lvl_debug, "type : %s\n", m_activePoi->type().toLatin1().data());
        return m_activePoi;
}

void Backend::block_draw(){
        navit_block(this->nav, 1);
        dbg(lvl_debug, "Draw operations blocked per UI request\n");
}

/**
 * @brief set the canvas size to use when drawing the map
 * @param int width
 * @param int height
 * @returns nothing
 */ 
void Backend::resize(int width, int height){
        // If we need to resize the canvas, it means that something (the main map,
        // or a menu item) wants to display a map. Ensure that draw operations
        // are not blocked then.
        navit_block(this->nav, -1);
        navit_handle_resize(nav, width, height);
}

/**
 * @brief set the active POI. Used when clicking on a POI list to display one single POI
 * @param int index the index of the POI in the m_pois list
 * @returns nothing
 */ 
void Backend::setActivePoi(int index) {
        struct pcoord c;
        m_activePoi = (PoiObject *)_pois.at(index);
        c = m_activePoi->coords();
        resize(320, 240);
        navit_set_center(this->nav, &c, 1);
        emit activePoiChanged();
}

/**
 * @brief returns the icon (icons) absolute path
 * @param none
 * @returns the icon (icons) absolute path as a QString
 */ 
QString Backend::get_icon_path(){
        return QString(g_strjoin(NULL,"file://",getenv("NAVIT_SHAREDIR"),"/icons/",NULL));
}

/**
 * @brief set the destination using the currently active POI's coordinates
 * @param none
 * @returns nothing
 */ 
void Backend::setActivePoiAsDestination(){
        struct pcoord c;
        c = m_activePoi->coords();
        dbg(lvl_debug, "Destination : %s c=%d:0x%x,0x%x\n",
                        m_activePoi->name().toUtf8().data(),
                        c.pro, c.x, c.y);
        navit_set_destination(this->nav, &c,  m_activePoi->name().toUtf8().data(), 1);
        emit hideMenu();
}

/**
 * @brief save the search result for the next search step
 * @param int index the index of the result in the m_search_results list
 * @returns nothing
 */ 
void Backend::searchValidateResult(int index){
        SearchObject * r = (SearchObject *)_search_results.at(index);
        dbg(lvl_debug, "Saving %s [%i] %x %x\n", 
                        r->name().toUtf8().data(),
                        index, r->getCoords()->x, r->getCoords()->y);
        if (_search_context == attr_country_all) {
                _current_country = g_strdup(r->name().toUtf8().data());
                _current_town = NULL;
                _current_street = NULL;
        } else if (_search_context == attr_town_name) {
                _current_town = g_strdup(r->name().toUtf8().data());
                _current_street = NULL;
        } else if (_search_context == attr_street_name) {
                _current_street = g_strdup(r->name().toUtf8().data());
        } else {
                dbg(lvl_error, "Unknown search context for '%s'\n", r->name().toUtf8().data());
        }
        // navit_set_center(this->nav, r->getCoords(), 1);
        emit displayMenu("destination_address.qml");
}

/**
 * @brief get the icon that matches the country currently used for searches
 * @param none
 * @returns an absolute path for the country icon
 */ 
QString Backend::get_country_icon(char * country_iso_code){
//        if ( country_iso_code == "" ) {
//                country_iso_code = _country_iso2;
//        }
        return QString(g_strjoin(NULL,"file://",getenv("NAVIT_SHAREDIR"),"/icons/",country_iso_code,".svg",NULL));
}


static struct search_param {
        struct navit *nav;
        struct mapset *ms;
        struct search_list *sl;
        struct attr attr;
        int partial;
        void *entry_country, *entry_postal, *entry_city, *entry_district;
        void *entry_street, *entry_number;
} search_param;

/**
  * @brief set the default country
  * @param none
  * returns nothing
  */
void Backend::set_default_country(){
        _current_country = "Germany";
        _country_iso2 = "DE";
}


/**
 * @brief update the current search results according to new inputs. Currently only works to search for towns
 * @param QString text the text to search for
 * @returns nothing
 */ 
void Backend::updateSearch(QString text){
        struct search_list_result *res;
        struct attr search_attr;

        if (search == NULL){
                search=&search_param;
                dbg(lvl_debug, "search = %p\n", search);
                search->nav=this->nav;
                search->ms=navit_get_mapset(this->nav);
                search->sl=search_list_new(search->ms);
                search->partial = 1;
                if ( _country_iso2 == NULL ){
                        set_default_country();
                }
                dbg(lvl_debug,"attempting to use country '%s'\n", _country_iso2);
                search_attr.type=attr_country_iso2;
                search_attr.u.str=_country_iso2;
                search_list_search(search->sl, &search_attr, 0);

                while((res=search_list_get_result(search->sl)));
        }

        _search_results.clear();
        //  search->attr.type=attr_country_all;
        //  search->attr.type=attr_town_postal;
        //  search->attr.type=attr_town_name;
        //  search->attr.type=attr_street_name;

//        search->attr.type=attr_town_name;
//        search->attr.u.str="Oberhaching";
//        search_list_search(search->sl, &search->attr, search->partial);
//        while((res=search_list_get_result(search->sl)));

        search->attr.u.str = text.toUtf8().data();
        dbg(lvl_error, "searching for %s partial %d\n", search->attr.u.str, search->partial);

        search->attr.type = _search_context;
        search_list_search(search->sl, &search->attr, search->partial);
        int count = 0;
        while((res=search_list_get_result(search->sl))) {
                if ( _search_context == attr_country_all && res->country) {
                        char * label;
                        label = g_strdup(res->country->name);
                        dbg(lvl_debug, "country result %s\n", label);
                        _search_results.append(
                                        new SearchObject(label, get_country_icon(res->country->flag) , res->c)
                                        );
                }
                if ( _search_context == attr_town_name && res->town) {
                        char * label;
                        label = g_strdup(res->town->common.town_name);
                        dbg(lvl_debug, "town result %s\n", label);
                        _search_results.append(
                                        new SearchObject(label, "icons/bigcity.png", res->c)
                                        );
                }
                if (res->street) {
                        char * label;
                        label = g_strdup(res->street->name);
                        dbg(lvl_debug, "street result %s\n", label);
                        _search_results.append(
                                        new SearchObject(label, "icons/smallcity.png", res->c)
                                        );
                }
                if (count ++ > 50) {
                        break;
                }
        }
        emit searchResultsChanged();
}

void Backend::setSearchContext(QString text){
        if (text == "country") {
                _search_context = attr_country_all;
        } else if (text == "town") {
                _search_context = attr_town_name;
        } else if (text == "street") {
                _search_context = attr_street_name;
        } else {
                dbg(lvl_error, "Unhandled search context '%s'\n", text.toUtf8().data());
        }
               
}

QString Backend::currentCountry() {
        if (_current_country == NULL) {
                set_default_country();
        }
        dbg(lvl_debug, "Current country : %s/%s\n", _country_iso2, _current_country);
        return QString(_current_country);
}

QString Backend::currentCountryIso2() {
        if (_country_iso2 == NULL) {
                set_default_country();
        }
        dbg(lvl_debug, "Current country : %s/%s\n", _country_iso2, _current_country);
        return QString(_country_iso2);
}

QString Backend::currentTown() {
        if (_current_town == NULL) {
                _current_town = "Enter City";
        }
        dbg(lvl_debug, "Current town : %s\n", _current_town);
        return QString(_current_town);
}

QString Backend::currentStreet() {
        if (_current_street == NULL) {
                _current_street = "Enter Street";
        }
        dbg(lvl_debug, "Current street : %s\n", _current_street);
        return QString(_current_street);
}