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