Moved location update logic to new class called UpdateLocation.
[situare] / src / engine / engine.cpp
1  /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Kaj Wallin - kaj.wallin@ixonos.com
6         Henri Lampela - henri.lampela@ixonos.com
7         Jussi Laitinen - jussi.laitinen@ixonos.com
8         Sami Rämö - sami.ramo@ixonos.com
9
10     Situare is free software; you can redistribute it and/or
11     modify it under the terms of the GNU General Public License
12     version 2 as published by the Free Software Foundation.
13
14     Situare is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19     You should have received a copy of the GNU General Public License
20     along with Situare; if not, write to the Free Software
21     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
22     USA.
23  */
24
25 #include <cmath>
26
27 #include <QMessageBox>
28 #include <QNetworkReply>
29
30 #include "application.h"
31 #include "common.h"
32 #include "contactmanager.h"
33 #include "../error.h"
34 #include "facebookservice/facebookauthentication.h"
35 #include "gps/gpsposition.h"
36 #include "map/mapengine.h"
37 #include "routing/geocodingservice.h"
38 #include "routing/routingservice.h"
39 #include "mce.h"
40 #include "network/networkaccessmanager.h"
41 #include "situareservice/situareservice.h"
42 #include "ui/mainwindow.h"
43
44 #include "engine.h"
45
46 const QString SETTINGS_GPS_ENABLED = "GPS_ENABLED"; ///< GPS setting
47 const QString SETTINGS_AUTO_CENTERING_ENABLED = "AUTO_CENTERING_ENABLED";///< Auto centering setting
48 const int DEFAULT_ZOOM_LEVEL_WHEN_GPS_IS_AVAILABLE = 12;  ///< Default zoom level when GPS available
49 const qreal USER_MOVEMENT_MINIMUM_LONGITUDE_DIFFERENCE = 0.003;///< Min value for user move latitude
50 const qreal USER_MOVEMENT_MINIMUM_LATITUDE_DIFFERENCE = 0.001;///< Min value for user move longitude
51 const int MIN_UPDATE_INTERVAL_MSECS = 5*60*1000;
52
53 SituareEngine::SituareEngine()
54     : m_autoCenteringEnabled(false),
55       m_automaticUpdateFirstStart(true),
56       m_automaticUpdateRequest(false),
57       m_userMoved(false),
58       m_automaticUpdateIntervalTimer(0),
59       m_lastUpdatedGPSPosition(GeoCoordinate())
60 {
61     qDebug() << __PRETTY_FUNCTION__;
62
63     m_ui = new MainWindow;
64     m_ui->updateItemVisibility(false);
65
66     Application *application = static_cast<Application *>(qApp);
67     application->registerWindow(m_ui->winId());
68
69     connect(application, SIGNAL(topmostWindowChanged(bool)),
70             this, SLOT(topmostWindowChanged(bool)));
71
72     m_networkAccessManager = new NetworkAccessManager(this);
73
74     // build MapEngine
75     m_mapEngine = new MapEngine(this);
76     m_ui->setMapViewScene(m_mapEngine->scene());
77
78     // build GPS
79     m_gps = new GPSPosition(this);
80
81     // build SituareService
82     m_situareService = new SituareService(this);
83
84     // build FacebookAuthenticator
85     m_facebookAuthenticator = new FacebookAuthentication(m_ui, this);
86
87     // build routing service
88     m_routingService = new RoutingService(this); // create this when needed, not in constructor!
89
90     // build geocoding service
91     m_geocodingService = new GeocodingService(this);
92
93     // connect signals
94     signalsFromMapEngine();
95     signalsFromGeocodingService();
96     signalsFromGPS();
97     signalsFromRoutingService();
98     signalsFromSituareService();
99     signalsFromMainWindow();
100     signalsFromFacebookAuthenticator();
101
102     connect(this, SIGNAL(userLocationReady(User*)),
103             m_ui, SIGNAL(userLocationReady(User*)));
104
105     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
106             m_ui, SIGNAL(friendsLocationsReady(QList<User*>&)));
107
108     connect(this, SIGNAL(userLocationReady(User*)),
109             m_mapEngine, SLOT(receiveOwnLocation(User*)));
110
111     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
112             m_mapEngine, SIGNAL(friendsLocationsReady(QList<User*>&)));
113
114     connect(this, SIGNAL(friendImageReady(User*)),
115             m_ui, SIGNAL(friendImageReady(User*)));
116
117     connect(this, SIGNAL(friendImageReady(User*)),
118             m_mapEngine, SIGNAL(friendImageReady(User*)));
119
120     m_automaticUpdateIntervalTimer = new QTimer(this);
121     connect(m_automaticUpdateIntervalTimer, SIGNAL(timeout()),
122             this, SLOT(startAutomaticUpdate()));
123
124     // signals connected, now it's time to show the main window
125     // but init the MapEngine before so starting location is set
126     m_mapEngine->init();
127     m_ui->show();
128
129     m_gps->setMode(GPSPosition::Default);
130     initializeGpsAndAutocentering();
131
132     m_mce = new MCE(this);
133     connect(m_mce, SIGNAL(displayOff(bool)), this, SLOT(setPowerSaving(bool)));
134
135     m_contactManager = new ContactManager(this);
136     m_contactManager->requestContactGuids();
137
138     m_facebookAuthenticator->login();
139 }
140
141 SituareEngine::~SituareEngine()
142 {
143     qDebug() << __PRETTY_FUNCTION__;
144
145     delete m_ui;
146
147     QSettings settings(SETTINGS_ORGANIZATION_NAME, SETTINGS_APPLICATION_NAME);
148     settings.setValue(SETTINGS_GPS_ENABLED, m_gps->isRunning());
149     settings.setValue(SETTINGS_AUTO_CENTERING_ENABLED, m_autoCenteringEnabled);
150 }
151
152 void SituareEngine::changeAutoCenteringSetting(bool enabled)
153 {
154     qDebug() << __PRETTY_FUNCTION__ << enabled;
155
156     m_autoCenteringEnabled = enabled;
157     setAutoCentering(enabled);
158 }
159
160 void SituareEngine::disableAutoCentering()
161 {
162     qDebug() << __PRETTY_FUNCTION__;
163
164     changeAutoCenteringSetting(false);
165 }
166
167 void SituareEngine::draggingModeTriggered()
168 {
169     qDebug() << __PRETTY_FUNCTION__;
170
171     if (m_mce)
172         m_mce->vibrationFeedback();
173 }
174
175 void SituareEngine::enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs)
176 {
177     qDebug() << __PRETTY_FUNCTION__;
178
179     //Show automatic update confirmation dialog
180     if (m_automaticUpdateFirstStart && m_gps->isRunning() && enabled) {
181         m_ui->showEnableAutomaticUpdateLocationDialog(
182                 tr("Do you want to enable automatic location update with %1 min update interval?")
183                 .arg(updateIntervalMsecs/1000/60));
184         m_automaticUpdateFirstStart = false;
185     } else {
186         if (enabled && m_gps->isRunning()) {
187             m_ui->buildInformationBox(tr("Automatic location update enabled"));
188             if (updateIntervalMsecs < MIN_UPDATE_INTERVAL_MSECS)
189                 m_automaticUpdateIntervalTimer->setInterval(MIN_UPDATE_INTERVAL_MSECS);
190             else
191                 m_automaticUpdateIntervalTimer->setInterval(updateIntervalMsecs);
192
193             connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
194                     this, SLOT(requestAutomaticUpdateIfMoved(GeoCoordinate)));
195
196             m_automaticUpdateIntervalTimer->start();
197
198         } else {
199             disconnect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
200                     this, SLOT(requestAutomaticUpdateIfMoved(GeoCoordinate)));
201
202             m_automaticUpdateIntervalTimer->stop();
203         }
204     }
205 }
206
207 void SituareEngine::error(const int context, const int error)
208 {
209     qDebug() << __PRETTY_FUNCTION__;
210
211     switch(error)
212     {
213     case SituareError::ERROR_GENERAL:
214         if(context == ErrorContext::SITUARE) {
215             m_ui->toggleProgressIndicator(false);
216             m_ui->buildInformationBox(tr("Unknown server error"), true);
217         }
218         break;
219     case 1: //errors: SituareError::ERROR_MISSING_ARGUMENT and QNetworkReply::ConnectionRefusedError
220         m_ui->toggleProgressIndicator(false);
221         if(context == ErrorContext::SITUARE) {
222             m_ui->buildInformationBox(tr("Missing parameter from request"), true);
223         } else if(context == ErrorContext::NETWORK) {
224             m_ui->buildInformationBox(tr("Connection refused by the server"), true);
225         }
226         break;
227     case QNetworkReply::RemoteHostClosedError:
228         if(context == ErrorContext::NETWORK) {
229             m_ui->toggleProgressIndicator(false);
230             m_ui->buildInformationBox(tr("Connection closed by the server"), true);
231         }
232         break;
233     case QNetworkReply::HostNotFoundError:
234         if(context == ErrorContext::NETWORK) {
235             m_ui->toggleProgressIndicator(false);
236             m_ui->buildInformationBox(tr("Remote server not found"), true);
237         }
238         break;
239     case QNetworkReply::TimeoutError:
240         if(context == ErrorContext::NETWORK) {
241             m_ui->toggleProgressIndicator(false);
242             m_ui->buildInformationBox(tr("Connection timed out"), true);
243         }
244         break;
245     case QNetworkReply::UnknownNetworkError:
246         if(context == ErrorContext::NETWORK) {
247             m_ui->toggleProgressIndicator(false);
248             m_ui->buildInformationBox(tr("No network connection"), true);
249         }
250         break;
251     case SituareError::SESSION_EXPIRED:
252         m_ui->buildInformationBox(tr("Session expired. Please login again"), true);
253         m_facebookAuthenticator->logOut();
254         m_facebookAuthenticator->login();
255         break;
256     case SituareError::UPDATE_FAILED:
257         m_ui->toggleProgressIndicator(false);
258         m_ui->buildInformationBox(tr("Update failed, please try again"), true);
259         break;
260     case SituareError::DATA_RETRIEVAL_FAILED:
261         m_ui->toggleProgressIndicator(false);
262         m_ui->buildInformationBox(tr("Data retrieval failed, please try again"), true);
263         break;
264     case SituareError::ADDRESS_RETRIEVAL_FAILED:
265         m_ui->toggleProgressIndicator(false);
266         m_ui->buildInformationBox(tr("Address retrieval failed"), true);
267         break;
268     case SituareError::IMAGE_DOWNLOAD_FAILED:
269         m_ui->buildInformationBox(tr("Image download failed"), true);
270         break;
271     case SituareError::MAP_IMAGE_DOWNLOAD_FAILED:
272         m_ui->buildInformationBox(tr("Map image download failed"), true);
273         break;
274     case SituareError::GPS_INITIALIZATION_FAILED:
275         setGPS(false);
276         m_ui->buildInformationBox(tr("GPS initialization failed"), true);
277         break;
278     case SituareError::INVALID_JSON:
279         m_ui->buildInformationBox(tr("Malformatted reply from server"), true);
280         m_ui->loggedIn(false);
281         m_facebookAuthenticator->clearAccountInformation(false); // clean all
282         break;
283     case SituareError::ERROR_ROUTING_FAILED:
284         m_ui->toggleProgressIndicator(false);
285         m_ui->buildInformationBox(tr("Routing failed"), true);
286         break;
287     case SituareError::ERROR_LOCATION_SEARCH_FAILED:
288         m_ui->buildInformationBox(tr("No results found"), true);
289         break;
290     default:
291         m_ui->toggleProgressIndicator(false);
292         if(context == ErrorContext::NETWORK)
293             qCritical() << __PRETTY_FUNCTION__ << "QNetworkReply::NetworkError: " << error;
294         else
295             qCritical() << __PRETTY_FUNCTION__ << "Unknown error: " << error;
296         break;
297     }
298 }
299
300 void SituareEngine::imageReady(User *user)
301 {
302     qDebug() << __PRETTY_FUNCTION__;
303
304     if(user->type())
305         emit userLocationReady(user);
306     else
307         emit friendImageReady(user);
308 }
309
310 void SituareEngine::initializeGpsAndAutocentering()
311 {
312     qDebug() << __PRETTY_FUNCTION__;
313
314     QSettings settings(SETTINGS_ORGANIZATION_NAME, SETTINGS_APPLICATION_NAME);
315     QVariant gpsEnabled = settings.value(SETTINGS_GPS_ENABLED);
316     QVariant autoCenteringEnabled = settings.value(SETTINGS_AUTO_CENTERING_ENABLED);
317
318     if (m_gps->isInitialized()) {
319
320         if (gpsEnabled.toString().isEmpty()) { // First start. Situare.conf file does not exists
321
322             connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
323                     this, SLOT(setFirstStartZoomLevel()));
324
325             changeAutoCenteringSetting(true);
326             setGPS(true);
327
328             m_ui->buildInformationBox(tr("GPS enabled"));
329
330         } else { // Normal start
331             changeAutoCenteringSetting(autoCenteringEnabled.toBool());
332             setGPS(gpsEnabled.toBool());
333
334             if (gpsEnabled.toBool())
335                 m_ui->buildInformationBox(tr("GPS enabled"));
336         }
337     } else {
338         setGPS(false);
339     }
340 }
341
342 void SituareEngine::locationSearch(QString location)
343 {
344     qDebug() << __PRETTY_FUNCTION__;
345
346     if(!location.isEmpty())
347         m_geocodingService->requestLocation(location);
348 }
349
350 void SituareEngine::loginActionPressed()
351 {
352     qDebug() << __PRETTY_FUNCTION__;
353
354     if (m_facebookAuthenticator->isLoggedIn())
355         m_facebookAuthenticator->logOut(true);
356     else if (m_networkAccessManager->isConnected())
357         m_facebookAuthenticator->login();
358     else
359         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
360 }
361
362 void SituareEngine::onLogin()
363 {
364     qDebug() << __PRETTY_FUNCTION__;
365
366     m_ui->loggedIn(true);
367
368     m_situareService->fetchLocations();
369
370     if (m_gps->isRunning())
371         m_ui->readAutomaticLocationUpdateSettings();
372 }
373
374 void SituareEngine::onLogout()
375 {
376     qDebug() << __PRETTY_FUNCTION__;
377
378     m_ui->loggedIn(false);
379     m_situareService->updateSession(""); // empty session string means logged out
380     m_automaticUpdateFirstStart = true;
381 }
382
383 void SituareEngine::refreshUserData()
384 {
385     qDebug() << __PRETTY_FUNCTION__;
386
387     if (m_networkAccessManager->isConnected()) {
388         m_ui->toggleProgressIndicator(true);
389         m_situareService->fetchLocations();
390     }
391     else {
392         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
393     }
394 }
395
396 void SituareEngine::requestAddress()
397 {
398     qDebug() << __PRETTY_FUNCTION__;
399
400     if (m_networkAccessManager->isConnected()) {
401         if (m_gps->isRunning())
402             m_situareService->reverseGeo(m_gps->lastPosition());
403         else
404             m_situareService->reverseGeo(m_mapEngine->centerGeoCoordinate());
405     }
406     else {
407         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
408     }
409 }
410
411 void SituareEngine::requestUpdateLocation(const QString &status, bool publish)
412 {
413     qDebug() << __PRETTY_FUNCTION__;
414
415     if (m_networkAccessManager->isConnected()) {
416         m_ui->toggleProgressIndicator(true);
417
418         if (m_gps->isRunning())
419             m_situareService->updateLocation(m_gps->lastPosition(), status, publish);
420         else
421             m_situareService->updateLocation(m_mapEngine->centerGeoCoordinate(), status, publish);
422     }
423     else {
424         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
425     }
426 }
427
428 void SituareEngine::requestAutomaticUpdateIfMoved(GeoCoordinate position)
429 {
430     qDebug() << __PRETTY_FUNCTION__;
431
432     if ((fabs(m_lastUpdatedGPSPosition.longitude() - position.longitude()) >
433          USER_MOVEMENT_MINIMUM_LONGITUDE_DIFFERENCE) ||
434         (fabs(m_lastUpdatedGPSPosition.latitude() - position.latitude()) >
435          USER_MOVEMENT_MINIMUM_LATITUDE_DIFFERENCE)) {
436
437         m_lastUpdatedGPSPosition = position;
438         m_userMoved = true;
439     }
440
441     if (m_automaticUpdateRequest && m_userMoved) {
442         requestUpdateLocation(tr("Automatic location update"));
443         m_automaticUpdateRequest = false;
444         m_userMoved = false;
445     }
446 }
447
448 void SituareEngine::routeParsed(Route &route)
449 {
450     qDebug() << __PRETTY_FUNCTION__;
451
452     Q_UNUSED(route);
453
454     m_ui->toggleProgressIndicator(false);
455 }
456
457 void SituareEngine::routeTo(const GeoCoordinate &endPointCoordinates)
458 {
459     qDebug() << __PRETTY_FUNCTION__;
460
461     m_ui->toggleProgressIndicator(true);
462
463     if (m_gps->isRunning())
464         m_routingService->requestRoute(m_gps->lastPosition(), endPointCoordinates);
465     else
466         m_routingService->requestRoute(m_mapEngine->centerGeoCoordinate(), endPointCoordinates);
467 }
468
469 void SituareEngine::routeToCursor()
470 {
471     qDebug() << __PRETTY_FUNCTION__;
472
473     routeTo(m_mapEngine->centerGeoCoordinate());
474 }
475
476 void SituareEngine::setAutoCentering(bool enabled)
477 {
478     qDebug() << __PRETTY_FUNCTION__ << enabled;
479
480     m_ui->setIndicatorButtonEnabled(enabled);
481     m_mapEngine->setAutoCentering(enabled);
482     m_ui->setCrosshairVisibility(!enabled);
483
484     if (enabled) {
485         setGPS(true);
486         m_gps->requestLastPosition();
487     }
488 }
489
490 void SituareEngine::setFirstStartZoomLevel()
491 {
492     qDebug() << __PRETTY_FUNCTION__;
493
494     if (m_autoCenteringEnabled) // autocentering is disabled when map is scrolled
495         m_mapEngine->setZoomLevel(DEFAULT_ZOOM_LEVEL_WHEN_GPS_IS_AVAILABLE);
496
497     disconnect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
498                this, SLOT(setFirstStartZoomLevel()));
499 }
500
501 void SituareEngine::setGPS(bool enabled)
502 {
503     qDebug() << __PRETTY_FUNCTION__ << enabled;
504
505     if (m_gps->isInitialized()) {
506         m_ui->setGPSButtonEnabled(enabled);
507         m_mapEngine->setGPSEnabled(enabled);
508
509         if (enabled && !m_gps->isRunning()) {
510             m_gps->start();
511             m_gps->requestLastPosition();
512
513             if(m_facebookAuthenticator->isLoggedIn())
514                 m_ui->readAutomaticLocationUpdateSettings();
515         }
516         else if (!enabled && m_gps->isRunning()) {
517             m_gps->stop();
518             changeAutoCenteringSetting(false);
519             enableAutomaticLocationUpdate(false);
520         }
521     }
522     else {
523         if (enabled)
524             m_ui->buildInformationBox(tr("Unable to start GPS"));
525         m_ui->setGPSButtonEnabled(false);
526         m_mapEngine->setGPSEnabled(false);
527     }
528 }
529
530 void SituareEngine::setPowerSaving(bool enabled)
531 {
532     qDebug() << __PRETTY_FUNCTION__ << enabled;
533
534     m_gps->enablePowerSave(enabled);
535
536     if(m_autoCenteringEnabled)
537         m_mapEngine->setAutoCentering(!enabled);
538 }
539
540 void SituareEngine::showContactDialog(const QString &facebookId)
541 {
542     qDebug() << __PRETTY_FUNCTION__;
543
544     QString guid = m_contactManager->contactGuid(facebookId);
545
546     if (!guid.isEmpty())
547         m_ui->showContactDialog(guid);
548     else
549         m_ui->buildInformationBox(tr("Unable to find contact.\nAdd Facebook IM "
550                                      "account from Conversations to use this feature."), true);
551 }
552
553 void SituareEngine::signalsFromFacebookAuthenticator()
554 {
555     qDebug() << __PRETTY_FUNCTION__;
556
557     connect(m_facebookAuthenticator, SIGNAL(error(int, int)),
558             this, SLOT(error(int, int)));
559
560     connect(m_facebookAuthenticator, SIGNAL(loggedIn(QString, bool)),
561             m_situareService, SLOT(updateSession(QString)));
562
563     connect(m_facebookAuthenticator, SIGNAL(loggedIn(QString, bool)),
564             this, SLOT(onLogin()));
565
566     connect(m_facebookAuthenticator, SIGNAL(loggedOut()), this, SLOT(onLogout()));
567 }
568
569 void SituareEngine::signalsFromGeocodingService()
570 {
571     qDebug() << __PRETTY_FUNCTION__;
572
573     connect(m_geocodingService, SIGNAL(locationDataParsed(const QList<Location>&)),
574             m_ui, SIGNAL(locationDataParsed(const QList<Location>&)));
575
576     connect(m_geocodingService, SIGNAL(error(int, int)),
577             this, SLOT(error(int, int)));
578 }
579
580 void SituareEngine::signalsFromGPS()
581 {
582     qDebug() << __PRETTY_FUNCTION__;
583
584     connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
585             m_mapEngine, SLOT(gpsPositionUpdate(GeoCoordinate, qreal)));
586
587     connect(m_gps, SIGNAL(timeout()),
588             m_ui, SLOT(gpsTimeout()));
589
590     connect(m_gps, SIGNAL(error(int, int)),
591             this, SLOT(error(int, int)));
592 }
593
594 void SituareEngine::signalsFromMainWindow()
595 {
596     qDebug() << __PRETTY_FUNCTION__;
597
598     connect(m_ui, SIGNAL(error(int, int)),
599             this, SLOT(error(int, int)));
600
601     connect(m_ui, SIGNAL(loginActionPressed()),
602             this, SLOT(loginActionPressed()));
603
604     // signals from map view
605     connect(m_ui, SIGNAL(mapViewScrolled(SceneCoordinate)),
606             m_mapEngine, SLOT(setCenterPosition(SceneCoordinate)));
607
608     connect(m_ui, SIGNAL(mapViewResized(QSize)),
609             m_mapEngine, SLOT(viewResized(QSize)));
610
611     connect(m_ui, SIGNAL(viewZoomFinished()),
612             m_mapEngine, SLOT(viewZoomFinished()));
613
614     // signals from zoom buttons (zoom panel and volume buttons)
615     connect(m_ui, SIGNAL(zoomIn()),
616             m_mapEngine, SLOT(zoomIn()));
617
618     connect(m_ui, SIGNAL(zoomOut()),
619             m_mapEngine, SLOT(zoomOut()));
620
621     // signals from menu buttons
622     connect(m_ui, SIGNAL(gpsTriggered(bool)),
623             this, SLOT(setGPS(bool)));
624
625     connect(m_ui, SIGNAL(requestReverseGeo()),
626             this, SLOT(requestAddress()));
627
628     connect(m_ui, SIGNAL(locationUpdate(QString,bool)),
629             this, SLOT(requestUpdateLocation(QString,bool)));
630
631     connect(m_ui, SIGNAL(enableAutomaticLocationUpdate(bool, int)),
632             this, SLOT(enableAutomaticLocationUpdate(bool, int)));
633
634     // signals from user info tab
635     connect(m_ui, SIGNAL(refreshUserData()),
636             this, SLOT(refreshUserData()));
637
638     connect(m_ui, SIGNAL(centerToCoordinates(GeoCoordinate)),
639             m_mapEngine, SLOT(centerToCoordinates(GeoCoordinate)));
640
641     // routing signal from friend list tab & search location tab
642     connect(m_ui, SIGNAL(routeTo(const GeoCoordinate&)),
643             this, SLOT(routeTo(const GeoCoordinate&)));
644
645     // signals from location search panel
646     connect(m_ui,
647             SIGNAL(locationItemClicked(const GeoCoordinate&, const GeoCoordinate&)),
648             m_mapEngine,
649             SLOT(showMapArea(const GeoCoordinate&, const GeoCoordinate&)));
650
651     connect(m_ui, SIGNAL(searchHistoryItemClicked(QString)),
652             this, SLOT(locationSearch(QString)));
653
654     // signals from routing tab
655     connect(m_ui, SIGNAL(clearRoute()),
656             m_mapEngine, SLOT(clearRoute()));
657
658     connect(m_ui, SIGNAL(routeToCursor()),
659             this, SLOT(routeToCursor()));
660
661     // signals from distance indicator button
662     connect(m_ui, SIGNAL(autoCenteringTriggered(bool)),
663             this, SLOT(changeAutoCenteringSetting(bool)));
664
665     connect(m_ui, SIGNAL(draggingModeTriggered()),
666             this, SLOT(draggingModeTriggered()));
667
668     // signal from search location dialog
669     connect(m_ui, SIGNAL(searchForLocation(QString)),
670             this, SLOT(locationSearch(QString)));
671
672     // signal from friend list panel
673     connect(m_ui, SIGNAL(requestContactDialog(const QString &)),
674             this, SLOT(showContactDialog(const QString &)));
675 }
676
677 void SituareEngine::signalsFromMapEngine()
678 {
679     qDebug() << __PRETTY_FUNCTION__;
680
681     connect(m_mapEngine, SIGNAL(error(int, int)),
682             this, SLOT(error(int, int)));
683
684     connect(m_mapEngine, SIGNAL(locationChanged(SceneCoordinate)),
685             m_ui, SIGNAL(centerToSceneCoordinates(SceneCoordinate)));
686
687     connect(m_mapEngine, SIGNAL(zoomLevelChanged(int)),
688             m_ui, SIGNAL(zoomLevelChanged(int)));
689
690     connect(m_mapEngine, SIGNAL(mapScrolledManually()),
691             this, SLOT(disableAutoCentering()));
692
693     connect(m_mapEngine, SIGNAL(maxZoomLevelReached()),
694             m_ui, SIGNAL(maxZoomLevelReached()));
695
696     connect(m_mapEngine, SIGNAL(minZoomLevelReached()),
697             m_ui, SIGNAL(minZoomLevelReached()));
698
699     connect(m_mapEngine, SIGNAL(locationItemClicked(QList<QString>)),
700             m_ui, SIGNAL(locationItemClicked(QList<QString>)));
701
702     connect(m_mapEngine, SIGNAL(newMapResolution(qreal)),
703             m_ui, SIGNAL(newMapResolution(qreal)));
704
705     connect(m_mapEngine, SIGNAL(directionIndicatorValuesUpdate(qreal, qreal, bool)),
706             m_ui, SIGNAL(directionIndicatorValuesUpdate(qreal, qreal, bool)));
707 }
708
709 void SituareEngine::signalsFromRoutingService()
710 {
711     qDebug() << __PRETTY_FUNCTION__;
712
713     connect(m_routingService, SIGNAL(routeParsed(Route&)),
714             this, SLOT(routeParsed(Route&)));
715
716     connect(m_routingService, SIGNAL(routeParsed(Route&)),
717             m_mapEngine, SLOT(setRoute(Route&)));
718
719     connect(m_routingService, SIGNAL(routeParsed(Route&)),
720             m_ui, SIGNAL(routeParsed(Route&)));
721
722     connect(m_routingService, SIGNAL(error(int, int)),
723             this, SLOT(error(int, int)));
724 }
725
726 void SituareEngine::signalsFromSituareService()
727 {
728     qDebug() << __PRETTY_FUNCTION__;
729
730     connect(m_situareService, SIGNAL(error(int, int)),
731             this, SLOT(error(int, int)));
732
733     connect(m_situareService, SIGNAL(imageReady(User*)),
734             this, SLOT(imageReady(User*)));
735
736     connect(m_situareService, SIGNAL(reverseGeoReady(QString)),
737             m_ui, SIGNAL(reverseGeoReady(QString)));
738
739     connect(m_situareService, SIGNAL(userDataChanged(User*, QList<User*>&)),
740             this, SLOT(userDataChanged(User*, QList<User*>&)));
741
742     connect(m_situareService, SIGNAL(updateWasSuccessful()),
743             this, SLOT(updateWasSuccessful()));
744
745     connect(m_situareService, SIGNAL(updateWasSuccessful()),
746             m_ui, SIGNAL(updateWasSuccessful()));
747 }
748
749 void SituareEngine::startAutomaticUpdate()
750 {
751     qDebug() << __PRETTY_FUNCTION__;
752
753     m_gps->requestUpdate();
754     m_automaticUpdateRequest = true;
755 }
756
757 void SituareEngine::topmostWindowChanged(bool isMainWindow)
758 {
759     qDebug() << __PRETTY_FUNCTION__;
760
761     setPowerSaving(!isMainWindow);
762 }
763
764 void SituareEngine::updateWasSuccessful()
765 {
766     qDebug() << __PRETTY_FUNCTION__;
767
768     if (m_networkAccessManager->isConnected())
769         m_situareService->fetchLocations();
770     else
771         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
772 }
773
774 void SituareEngine::userDataChanged(User *user, QList<User *> &friendsList)
775 {
776     qDebug() << __PRETTY_FUNCTION__;
777
778     m_ui->toggleProgressIndicator(false);
779
780     emit userLocationReady(user);
781     emit friendsLocationsReady(friendsList);
782 }