Added fibration feedback feature.
[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 #ifdef Q_WS_MAEMO_5
31 #include "application.h"
32 #endif
33
34 #include "common.h"
35 #include "facebookservice/facebookauthentication.h"
36 #include "gps/gpsposition.h"
37 #include "map/mapengine.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();
65
66 #ifdef Q_WS_MAEMO_5
67     m_app = static_cast<Application *>(qApp);
68     m_app->registerWindow(m_ui->winId());
69
70     connect(m_app, SIGNAL(topmostChanged(bool)),
71             this, SLOT(enablePowerSave(bool)));
72 #endif
73
74     m_networkAccessManager = new NetworkAccessManager(this);
75
76     // build MapEngine
77     m_mapEngine = new MapEngine(this);
78     m_ui->setMapViewScene(m_mapEngine->scene());
79
80     // build GPS
81     m_gps = new GPSPosition(this);
82
83     // build SituareService
84     m_situareService = new SituareService(this);
85
86     // build FacebookAuthenticator
87     m_facebookAuthenticator = new FacebookAuthentication(this);
88
89     // build routing service
90     m_routingService = new RoutingService(this); // create this when needed, not in constructor!
91
92     // connect signals
93     signalsFromMapEngine();
94     signalsFromGPS();
95     signalsFromRoutingService();
96     signalsFromSituareService();
97     signalsFromMainWindow();
98     signalsFromFacebookAuthenticator();
99
100     connect(this, SIGNAL(userLocationReady(User*)),
101             m_ui, SIGNAL(userLocationReady(User*)));
102
103     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
104             m_ui, SIGNAL(friendsLocationsReady(QList<User*>&)));
105
106     connect(this, SIGNAL(userLocationReady(User*)),
107             m_mapEngine, SLOT(receiveOwnLocation(User*)));
108
109     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
110             m_mapEngine, SIGNAL(friendsLocationsReady(QList<User*>&)));
111
112     connect(this, SIGNAL(friendImageReady(User*)),
113             m_ui, SIGNAL(friendImageReady(User*)));
114
115     connect(this, SIGNAL(friendImageReady(User*)),
116             m_mapEngine, SIGNAL(friendImageReady(User*)));
117
118     m_automaticUpdateIntervalTimer = new QTimer(this);
119     connect(m_automaticUpdateIntervalTimer, SIGNAL(timeout()),
120             this, SLOT(startAutomaticUpdate()));
121
122     // signals connected, now it's time to show the main window
123     // but init the MapEngine before so starting location is set
124     m_mapEngine->init();
125     m_ui->show();
126
127     m_facebookAuthenticator->start();
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(enablePowerSave(bool)));
134 }
135
136 SituareEngine::~SituareEngine()
137 {
138     qDebug() << __PRETTY_FUNCTION__;
139
140     delete m_ui;
141
142     QSettings settings(DIRECTORY_NAME, FILE_NAME);
143     settings.setValue(SETTINGS_GPS_ENABLED, m_gps->isRunning());
144     settings.setValue(SETTINGS_AUTO_CENTERING_ENABLED, m_autoCenteringEnabled);
145 }
146
147 void SituareEngine::changeAutoCenteringSetting(bool enabled)
148 {
149     qDebug() << __PRETTY_FUNCTION__ << enabled;
150
151     m_autoCenteringEnabled = enabled;
152     setAutoCentering(enabled);
153 }
154
155 void SituareEngine::disableAutoCentering()
156 {
157     qDebug() << __PRETTY_FUNCTION__;
158
159     changeAutoCenteringSetting(false);
160 }
161
162 void SituareEngine::draggingModeTriggered()
163 {
164     if (m_mce)
165         m_mce->vibrationFeedback();
166 }
167
168 void SituareEngine::enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs)
169 {
170     qDebug() << __PRETTY_FUNCTION__;
171
172     //Show automatic update confirmation dialog
173     if (m_automaticUpdateFirstStart && m_gps->isRunning() && enabled) {
174         m_ui->showEnableAutomaticUpdateLocationDialog(
175                 tr("Do you want to enable automatic location update with %1 min update interval?")
176                 .arg(updateIntervalMsecs/1000/60));
177         m_automaticUpdateFirstStart = false;
178     } else {
179         if (enabled && m_gps->isRunning()) {
180             m_ui->buildInformationBox(tr("Automatic location update enabled"));
181             if (updateIntervalMsecs < MIN_UPDATE_INTERVAL_MSECS)
182                 m_automaticUpdateIntervalTimer->setInterval(MIN_UPDATE_INTERVAL_MSECS);
183             else
184                 m_automaticUpdateIntervalTimer->setInterval(updateIntervalMsecs);
185
186             connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
187                     this, SLOT(requestAutomaticUpdateIfMoved(GeoCoordinate)));
188
189             m_automaticUpdateIntervalTimer->start();
190
191         } else {
192             disconnect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
193                     this, SLOT(requestAutomaticUpdateIfMoved(GeoCoordinate)));
194
195             m_automaticUpdateIntervalTimer->stop();
196         }
197     }
198 }
199
200 void SituareEngine::enablePowerSave(bool enabled)
201 {
202     qDebug() << __PRETTY_FUNCTION__ << enabled;
203
204     m_gps->enablePowerSave(enabled);
205
206     if(m_autoCenteringEnabled)
207         m_mapEngine->setAutoCentering(!enabled);
208 }
209
210 void SituareEngine::error(const int context, const int error)
211 {
212     qDebug() << __PRETTY_FUNCTION__;
213
214     switch(error)
215     {
216     case SituareError::ERROR_GENERAL:
217         if(context == ErrorContext::SITUARE) {
218             m_ui->toggleProgressIndicator(false);
219             m_ui->buildInformationBox(tr("Unknown server error"), true);
220         }
221         break;
222     case 1: //errors: SituareError::ERROR_MISSING_ARGUMENT and QNetworkReply::ConnectionRefusedError
223         m_ui->toggleProgressIndicator(false);
224         if(context == ErrorContext::SITUARE) {
225             m_ui->buildInformationBox(tr("Missing parameter from request"), true);
226         } else if(context == ErrorContext::NETWORK) {
227             m_ui->buildInformationBox(tr("Connection refused by the server"), true);
228         }
229         break;
230     case QNetworkReply::RemoteHostClosedError:
231         if(context == ErrorContext::NETWORK) {
232             m_ui->toggleProgressIndicator(false);
233             m_ui->buildInformationBox(tr("Connection closed by the server"), true);
234         }
235         break;
236     case QNetworkReply::HostNotFoundError:
237         if(context == ErrorContext::NETWORK) {
238             m_ui->toggleProgressIndicator(false);
239             m_ui->buildInformationBox(tr("Remote server not found"), true);
240         }
241         break;
242     case QNetworkReply::TimeoutError:
243         if(context == ErrorContext::NETWORK) {
244             m_ui->toggleProgressIndicator(false);
245             m_ui->buildInformationBox(tr("Connection timed out"), true);
246         }
247         break;
248     case QNetworkReply::UnknownNetworkError:
249         if(context == ErrorContext::NETWORK) {
250             m_ui->toggleProgressIndicator(false);
251             m_ui->buildInformationBox(tr("No network connection"), true);
252         }
253         break;
254     case SituareError::SESSION_EXPIRED:
255         m_ui->buildInformationBox(tr("Session expired. Please login again"), true);
256         m_facebookAuthenticator->clearAccountInformation(true); // keep username = true
257         m_situareService->clearUserData();
258         m_ui->loggedIn(false);
259         m_ui->loginFailed();
260         break;
261     case SituareError::LOGIN_FAILED:
262         m_ui->toggleProgressIndicator(false);
263         m_ui->buildInformationBox(tr("Invalid E-mail address or password"), true);
264         m_ui->loginFailed();
265         break;
266     case SituareError::UPDATE_FAILED:
267         m_ui->toggleProgressIndicator(false);
268         m_ui->buildInformationBox(tr("Update failed, please try again"), true);
269         break;
270     case SituareError::DATA_RETRIEVAL_FAILED:
271         m_ui->toggleProgressIndicator(false);
272         m_ui->buildInformationBox(tr("Data retrieval failed, please try again"), true);
273         break;
274     case SituareError::ADDRESS_RETRIEVAL_FAILED:
275     case SituareError::ERROR_GEOLOCATION_REQUEST_FAIL:
276     case SituareError::ERROR_GEOLOCATION_LONLAT_INVALID:
277         m_ui->toggleProgressIndicator(false);
278         m_ui->buildInformationBox(tr("Address retrieval failed"), true);
279         break;
280     case SituareError::IMAGE_DOWNLOAD_FAILED:
281         m_ui->buildInformationBox(tr("Image download failed"), true);
282         break;
283     case SituareError::MAP_IMAGE_DOWNLOAD_FAILED:
284         m_ui->buildInformationBox(tr("Map image download failed"), true);
285         break;
286     case SituareError::GPS_INITIALIZATION_FAILED:
287         setGPS(false);
288         m_ui->buildInformationBox(tr("GPS initialization failed"), true);
289         break;
290     case SituareError::INVALID_JSON:
291         m_ui->buildInformationBox(tr("Malformatted reply from server"), true);
292         m_ui->loggedIn(false);
293         m_facebookAuthenticator->clearAccountInformation(false); // clean all
294         break;
295     case SituareError::ERROR_GEOLOCATION_SERVER_UNAVAILABLE:
296         m_ui->toggleProgressIndicator(false);
297         m_ui->buildInformationBox(tr("Address server not responding"), true);
298         break;
299     default:
300         m_ui->toggleProgressIndicator(false);
301         if(context == ErrorContext::NETWORK)
302             qCritical() << "QNetworkReply::NetworkError: " << error;
303         else
304             qCritical() << "Unknown error: " << error;
305
306         break;
307     }
308 }
309
310 void SituareEngine::fetchUsernameFromSettings()
311 {
312     qDebug() << __PRETTY_FUNCTION__;
313
314     m_ui->setUsername(m_facebookAuthenticator->loadUsername());
315 }
316
317 void SituareEngine::imageReady(User *user)
318 {
319     qDebug() << __PRETTY_FUNCTION__;
320
321     if(user->type())
322         emit userLocationReady(user);
323     else
324         emit friendImageReady(user);
325 }
326
327 void SituareEngine::initializeGpsAndAutocentering()
328 {
329     qDebug() << __PRETTY_FUNCTION__;
330
331     QSettings settings(DIRECTORY_NAME, FILE_NAME);
332     QVariant gpsEnabled = settings.value(SETTINGS_GPS_ENABLED);
333     QVariant autoCenteringEnabled = settings.value(SETTINGS_AUTO_CENTERING_ENABLED);
334
335     if (m_gps->isInitialized()) {
336
337         if (gpsEnabled.toString().isEmpty()) { // First start. Situare.conf file does not exists
338
339             connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
340                     this, SLOT(setFirstStartZoomLevel()));
341
342             changeAutoCenteringSetting(true);
343             setGPS(true);
344
345             m_ui->buildInformationBox(tr("GPS enabled"));
346
347         } else { // Normal start
348             changeAutoCenteringSetting(autoCenteringEnabled.toBool());
349             setGPS(gpsEnabled.toBool());
350
351             if (gpsEnabled.toBool())
352                 m_ui->buildInformationBox(tr("GPS enabled"));
353         }
354     } else {
355         setGPS(false);
356     }
357 }
358
359 void SituareEngine::locationDataReady(QList<Location> &result)
360 {
361     qDebug() << __PRETTY_FUNCTION__;
362
363     Q_UNUSED(result) /// @todo remove Q_UNUSED
364 }
365
366 void SituareEngine::locationSearch(QString location)
367 {
368     qDebug() << __PRETTY_FUNCTION__;
369
370     if(!location.isEmpty())
371         m_routingService->requestLocation(location);
372 }
373
374 void SituareEngine::loginActionPressed()
375 {
376     qDebug() << __PRETTY_FUNCTION__;
377
378     if (m_networkAccessManager->isConnected()) {
379         if(m_ui->loginState()) {
380             logout();
381             m_situareService->clearUserData();
382         } else {
383             m_facebookAuthenticator->start();
384         }
385     }
386     else {
387         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
388     }
389 }
390
391 void SituareEngine::loginOk()
392 {
393     qDebug() << __PRETTY_FUNCTION__;
394
395     m_ui->loggedIn(true);
396
397     m_ui->show();
398     m_situareService->fetchLocations(); // request user locations
399
400     if (m_gps->isRunning())
401         m_ui->readAutomaticLocationUpdateSettings();
402 }
403
404 void SituareEngine::loginProcessCancelled()
405 {
406     qDebug() << __PRETTY_FUNCTION__;
407
408     m_ui->toggleProgressIndicator(false);
409     m_ui->updateItemVisibility();
410 }
411
412 void SituareEngine::logout()
413 {
414     qDebug() << __PRETTY_FUNCTION__;
415
416     m_ui->loggedIn(false);
417
418     // signal to clear locationUpdateDialog's data
419     connect(this, SIGNAL(clearUpdateLocationDialogData()),
420             m_ui, SIGNAL(clearUpdateLocationDialogData()));
421     emit clearUpdateLocationDialogData();
422
423     m_facebookAuthenticator->clearAccountInformation(); // clear all
424     m_automaticUpdateFirstStart = true;
425 }
426
427 void SituareEngine::refreshUserData()
428 {
429     qDebug() << __PRETTY_FUNCTION__;
430
431     if (m_networkAccessManager->isConnected()) {
432         m_ui->toggleProgressIndicator(true);
433         m_situareService->fetchLocations();
434     }
435     else {
436         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
437     }
438 }
439
440 void SituareEngine::requestAddress()
441 {
442     qDebug() << __PRETTY_FUNCTION__;
443
444     if (m_networkAccessManager->isConnected()) {
445         if (m_gps->isRunning())
446             m_situareService->reverseGeo(m_gps->lastPosition());
447         else
448             m_situareService->reverseGeo(m_mapEngine->centerGeoCoordinate());
449     }
450     else {
451         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
452     }
453 }
454
455 void SituareEngine::requestUpdateLocation(const QString &status, bool publish)
456 {
457     qDebug() << __PRETTY_FUNCTION__;
458
459     if (m_networkAccessManager->isConnected()) {
460         m_ui->toggleProgressIndicator(true);
461
462         if (m_gps->isRunning())
463             m_situareService->updateLocation(m_gps->lastPosition(), status, publish);
464         else
465             m_situareService->updateLocation(m_mapEngine->centerGeoCoordinate(), status, publish);
466     }
467     else {
468         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
469     }
470 }
471
472 void SituareEngine::requestAutomaticUpdateIfMoved(GeoCoordinate position)
473 {
474     qDebug() << __PRETTY_FUNCTION__;
475
476     if ((fabs(m_lastUpdatedGPSPosition.longitude() - position.longitude()) >
477          USER_MOVEMENT_MINIMUM_LONGITUDE_DIFFERENCE) ||
478         (fabs(m_lastUpdatedGPSPosition.latitude() - position.latitude()) >
479          USER_MOVEMENT_MINIMUM_LATITUDE_DIFFERENCE)) {
480
481         m_lastUpdatedGPSPosition = position;
482         m_userMoved = true;
483     }
484
485     if (m_automaticUpdateRequest && m_userMoved) {
486         requestUpdateLocation(tr("Automatic location update"));
487         m_automaticUpdateRequest = false;
488         m_userMoved = false;
489     }
490 }
491
492 void SituareEngine::setAutoCentering(bool enabled)
493 {
494     qDebug() << __PRETTY_FUNCTION__ << enabled;
495
496     m_ui->setIndicatorButtonEnabled(enabled);
497     m_mapEngine->setAutoCentering(enabled);
498     m_ui->setOwnLocationCrosshairVisibility(!enabled);
499
500     if (enabled) {
501         setGPS(true);
502         m_gps->requestLastPosition();
503     }
504 }
505
506 void SituareEngine::setFirstStartZoomLevel()
507 {
508     qDebug() << __PRETTY_FUNCTION__;
509
510     if (m_autoCenteringEnabled) // autocentering is disabled when map is scrolled
511         m_mapEngine->setZoomLevel(DEFAULT_ZOOM_LEVEL_WHEN_GPS_IS_AVAILABLE);
512
513     disconnect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
514                this, SLOT(setFirstStartZoomLevel()));
515 }
516
517 void SituareEngine::setGPS(bool enabled)
518 {
519     qDebug() << __PRETTY_FUNCTION__ << enabled;
520
521     if (m_gps->isInitialized()) {
522         m_ui->setGPSButtonEnabled(enabled);
523         m_mapEngine->setGPSEnabled(enabled);
524
525         if (enabled && !m_gps->isRunning()) {
526             m_gps->start();
527             m_gps->requestLastPosition();
528
529             if(m_ui->loginState())
530                 m_ui->readAutomaticLocationUpdateSettings();
531         }
532         else if (!enabled && m_gps->isRunning()) {
533             m_gps->stop();
534             changeAutoCenteringSetting(false);
535             enableAutomaticLocationUpdate(false);
536         }
537     }
538     else {
539         if (enabled)
540             m_ui->buildInformationBox(tr("Unable to start GPS"));
541         m_ui->setGPSButtonEnabled(false);
542         m_mapEngine->setGPSEnabled(false);
543     }
544 }
545
546 void SituareEngine::signalsFromFacebookAuthenticator()
547 {
548     qDebug() << __PRETTY_FUNCTION__;
549
550     connect(m_facebookAuthenticator, SIGNAL(error(int, int)),
551             this, SLOT(error(int, int)));
552
553     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
554             m_situareService, SLOT(credentialsReady(FacebookCredentials)));
555
556     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
557             this, SLOT(loginOk()));
558
559     connect(m_facebookAuthenticator, SIGNAL(newLoginRequest()),
560             m_ui, SLOT(startLoginProcess()));
561
562     connect(m_facebookAuthenticator, SIGNAL(saveCookiesRequest()),
563             m_ui, SLOT(saveCookies()));
564
565     connect(m_facebookAuthenticator, SIGNAL(loginUsingCookies()),
566             m_ui, SLOT(loginUsingCookies()));
567 }
568
569 void SituareEngine::signalsFromGPS()
570 {
571     qDebug() << __PRETTY_FUNCTION__;
572
573     connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
574             m_mapEngine, SLOT(gpsPositionUpdate(GeoCoordinate, qreal)));
575
576     connect(m_gps, SIGNAL(timeout()),
577             m_ui, SLOT(gpsTimeout()));
578
579     connect(m_gps, SIGNAL(error(int, int)),
580             this, SLOT(error(int, int)));
581 }
582
583 void SituareEngine::signalsFromMainWindow()
584 {
585     qDebug() << __PRETTY_FUNCTION__;
586
587     connect(m_ui, SIGNAL(error(int, int)),
588             this, SLOT(error(int, int)));
589
590     connect(m_ui, SIGNAL(fetchUsernameFromSettings()),
591             this, SLOT(fetchUsernameFromSettings()));
592
593     connect(m_ui, SIGNAL(loginActionPressed()),
594             this, SLOT(loginActionPressed()));
595
596     connect(m_ui, SIGNAL(saveUsername(QString)),
597             m_facebookAuthenticator, SLOT(saveUsername(QString)));
598
599     connect(m_ui, SIGNAL(updateCredentials(QUrl)),
600             m_facebookAuthenticator, SLOT(updateCredentials(QUrl)));
601
602     // signals from map view
603     connect(m_ui, SIGNAL(mapViewScrolled(SceneCoordinate)),
604             m_mapEngine, SLOT(setCenterPosition(SceneCoordinate)));
605
606     connect(m_ui, SIGNAL(mapViewResized(QSize)),
607             m_mapEngine, SLOT(viewResized(QSize)));
608
609     connect(m_ui, SIGNAL(viewZoomFinished()),
610             m_mapEngine, SLOT(viewZoomFinished()));
611
612     // signals from zoom buttons (zoom panel and volume buttons)
613     connect(m_ui, SIGNAL(zoomIn()),
614             m_mapEngine, SLOT(zoomIn()));
615
616     connect(m_ui, SIGNAL(zoomOut()),
617             m_mapEngine, SLOT(zoomOut()));
618
619     // signals from menu buttons
620     connect(m_ui, SIGNAL(gpsTriggered(bool)),
621             this, SLOT(setGPS(bool)));
622
623     //signals from dialogs
624     connect(m_ui, SIGNAL(cancelLoginProcess()),
625             this, SLOT(loginProcessCancelled()));
626
627     connect(m_ui, SIGNAL(requestReverseGeo()),
628             this, SLOT(requestAddress()));
629
630     connect(m_ui, SIGNAL(statusUpdate(QString,bool)),
631             this, SLOT(requestUpdateLocation(QString,bool)));
632
633     connect(m_ui, SIGNAL(enableAutomaticLocationUpdate(bool, int)),
634             this, SLOT(enableAutomaticLocationUpdate(bool, int)));
635
636     // signals from user info tab
637     connect(m_ui, SIGNAL(refreshUserData()),
638             this, SLOT(refreshUserData()));
639
640     connect(m_ui, SIGNAL(findUser(GeoCoordinate)),
641             m_mapEngine, SLOT(centerToCoordinates(GeoCoordinate)));
642
643     // signals from friend list tab
644     connect(m_ui, SIGNAL(findFriend(GeoCoordinate)),
645             m_mapEngine, SLOT(centerToCoordinates(GeoCoordinate)));
646
647     // signals from distence indicator button
648     connect(m_ui, SIGNAL(autoCenteringTriggered(bool)),
649             this, SLOT(changeAutoCenteringSetting(bool)));
650
651     connect(m_ui, SIGNAL(searchForLocation(QString)),
652             this, SLOT(locationSearch(QString)));
653
654     connect(m_ui, SIGNAL(draggingModeTriggered()),
655             this, SLOT(draggingModeTriggered()));
656 }
657
658 void SituareEngine::signalsFromMapEngine()
659 {
660     qDebug() << __PRETTY_FUNCTION__;
661
662     connect(m_mapEngine, SIGNAL(error(int, int)),
663             this, SLOT(error(int, int)));
664
665     connect(m_mapEngine, SIGNAL(locationChanged(SceneCoordinate)),
666             m_ui, SIGNAL(centerToSceneCoordinates(SceneCoordinate)));
667
668     connect(m_mapEngine, SIGNAL(zoomLevelChanged(int)),
669             m_ui, SIGNAL(zoomLevelChanged(int)));
670
671     connect(m_mapEngine, SIGNAL(mapScrolledManually()),
672             this, SLOT(disableAutoCentering()));
673
674     connect(m_mapEngine, SIGNAL(maxZoomLevelReached()),
675             m_ui, SIGNAL(maxZoomLevelReached()));
676
677     connect(m_mapEngine, SIGNAL(minZoomLevelReached()),
678             m_ui, SIGNAL(minZoomLevelReached()));
679
680     connect(m_mapEngine, SIGNAL(locationItemClicked(QList<QString>)),
681             m_ui, SIGNAL(locationItemClicked(QList<QString>)));
682
683     connect(m_mapEngine, SIGNAL(newMapResolution(qreal)),
684             m_ui, SIGNAL(newMapResolution(qreal)));
685 }
686
687 void SituareEngine::signalsFromRoutingService()
688 {
689     qDebug() << __PRETTY_FUNCTION__;
690
691     connect(m_routingService, SIGNAL(locationDataParsed(QList<Location>&)),
692             this, SLOT(locationDataReady(QList<Location>&)));
693
694     connect(m_routingService, SIGNAL(routeParsed(Route&)),
695             m_mapEngine, SLOT(setRoute(Route&)));
696
697 }
698
699 void SituareEngine::signalsFromSituareService()
700 {
701     qDebug() << __PRETTY_FUNCTION__;
702
703     connect(m_situareService, SIGNAL(error(int, int)),
704             this, SLOT(error(int, int)));
705
706     connect(m_situareService, SIGNAL(imageReady(User*)),
707             this, SLOT(imageReady(User*)));
708
709     connect(m_situareService, SIGNAL(reverseGeoReady(QString)),
710             m_ui, SIGNAL(reverseGeoReady(QString)));
711
712     connect(m_situareService, SIGNAL(userDataChanged(User*, QList<User*>&)),
713             this, SLOT(userDataChanged(User*, QList<User*>&)));
714
715     connect(m_situareService, SIGNAL(updateWasSuccessful()),
716             this, SLOT(updateWasSuccessful()));
717
718     connect(m_situareService, SIGNAL(updateWasSuccessful()),
719             m_ui, SIGNAL(clearUpdateLocationDialogData()));
720 }
721
722 void SituareEngine::startAutomaticUpdate()
723 {
724     qDebug() << __PRETTY_FUNCTION__;
725
726     m_gps->requestUpdate();
727     m_automaticUpdateRequest = true;
728 }
729
730 void SituareEngine::updateWasSuccessful()
731 {
732     qDebug() << __PRETTY_FUNCTION__;
733
734     if (m_networkAccessManager->isConnected())
735         m_situareService->fetchLocations();
736     else
737         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
738 }
739
740 void SituareEngine::userDataChanged(User *user, QList<User *> &friendsList)
741 {
742     qDebug() << __PRETTY_FUNCTION__;
743
744     m_ui->toggleProgressIndicator(false);
745     m_ui->showPanels();
746
747     emit userLocationReady(user);
748     emit friendsLocationsReady(friendsList);
749 }