Merge branch 'list_panel'
[situare] / src / engine / engine.cpp
index 6905077..4f69067 100644 (file)
     USA.
  */
 
+#include "situarecommon.h"
 #include "engine.h"
 #include "ui/mainwindow.h"
+#include "gps/gpspositioninterface.h"
+
+#ifdef Q_WS_MAEMO_5
 #include "gps/gpsposition.h"
+#else
+#include "gps/gpspositionmockup.h"
+#endif
 
 SituareEngine::SituareEngine(QMainWindow *parent)
     : QObject(parent)
@@ -33,29 +40,66 @@ SituareEngine::SituareEngine(QMainWindow *parent)
 
     m_situareService = new SituareService(this);
 
-    m_facebookAuthenticator = new FacebookAuthentication();
+    m_facebookAuthenticator = new FacebookAuthentication(this);
 
+#ifdef Q_WS_MAEMO_5
     m_gps = new GPSPosition(this);
+#else
+    m_gps = new GPSPositionMockup(this);
+#endif
+    m_gps->setMode(GPSPositionInterface::Default);
 
     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
             m_situareService, SLOT(credentialsReady(FacebookCredentials)));
     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
             this, SLOT(loginOk()));
-
-    connect(m_ui, SIGNAL(requestReverseGeo()), this, SLOT(requestAddress()));
-    connect(m_situareService, SIGNAL(reverseGeoReady(QString)), m_ui, SIGNAL(reverseGeoReady(QString)));
-    connect(m_ui, SIGNAL(statusUpdate(QString,bool)), this, SLOT(requestUpdateLocation(QString,bool)));
+    connect(m_ui, SIGNAL(cancelLoginProcess()),
+            this, SLOT(loginProcessCancelled()));
+
+    connect(m_ui, SIGNAL(requestReverseGeo()),
+            this, SLOT(requestAddress()));
+    connect(m_situareService, SIGNAL(reverseGeoReady(QString)),
+            m_ui, SIGNAL(reverseGeoReady(QString)));
+    connect(m_ui, SIGNAL(statusUpdate(QString,bool)),
+            this, SLOT(requestUpdateLocation(QString,bool)));
     connect(m_situareService, SIGNAL(userDataChanged(User*,QList<User*>&)),
             this, SLOT(userDataChanged(User*,QList<User*>&)));
-    connect(this, SIGNAL(userLocationReady(User*)), m_ui, SIGNAL(userLocationReady(User*)));
-    connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)), m_ui, SIGNAL(friendsLocationsReady(QList<User*>&)));
-       connect(m_situareService, SIGNAL(error(QString)), this, SLOT(error(QString)));
-    connect(m_situareService, SIGNAL(updateWasSuccessful()), this, SLOT(updateWasSuccessful()));
-
-    connect(m_ui, SIGNAL(refreshUserData()), this, SLOT(refreshUserData()));
-
-    connect(m_gps, SIGNAL(position(QPointF)),
-            m_ui, SIGNAL(positionReceived(QPointF)));
+    connect(this, SIGNAL(userLocationReady(User*)),
+            m_ui, SIGNAL(userLocationReady(User*)));
+    connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
+            m_ui, SIGNAL(friendsLocationsReady(QList<User*>&)));
+    connect(m_situareService, SIGNAL(error(QString)),
+            this, SLOT(error(QString)));
+    connect(m_situareService, SIGNAL(updateWasSuccessful()),
+            this, SLOT(updateWasSuccessful()));
+
+    connect(m_ui, SIGNAL(refreshUserData()),
+            this, SLOT(refreshUserData()));
+
+    connect(m_gps, SIGNAL(timeout()),
+            m_ui, SLOT(gpsTimeout()));
+    connect(m_gps, SIGNAL(error(QString)),
+            m_ui, SLOT(gpsError(QString)));
+    connect(m_ui, SIGNAL(enableGPS(bool)),
+            this, SLOT(enableGPS(bool)));
+    connect(m_gps, SIGNAL(position(QPointF, qreal)),
+            m_ui, SIGNAL(positionReceived(QPointF, qreal)));
+    connect(m_ui, SIGNAL(enableAutoCentering(bool)),
+            this, SLOT(enableAutoCentering(bool)));
+
+    connect(m_facebookAuthenticator, SIGNAL(newLoginRequest(QUrl)),
+            m_ui, SLOT(startLoginProcess(QUrl)));
+    connect(m_ui, SIGNAL(updateCredentials(QUrl)),
+            m_facebookAuthenticator, SLOT(updateCredentials(QUrl)));
+    connect(m_facebookAuthenticator, SIGNAL(loginFailure()),
+            m_ui, SLOT(loginFailed()));
+
+    QSettings settings(DIRECTORY_NAME, FILE_NAME);
+    QVariant gpsEnabled = settings.value(GPS_ENABLED);
+    QVariant autoCenteringEnabled = settings.value(AUTO_CENTERING_ENABLED);
+
+    enableGPS(gpsEnabled.toBool());
+    enableAutoCentering(autoCenteringEnabled.toBool());
 
      m_facebookAuthenticator->start();
 }
@@ -63,8 +107,16 @@ SituareEngine::SituareEngine(QMainWindow *parent)
 SituareEngine::~SituareEngine()
 {
     qDebug() << __PRETTY_FUNCTION__;
+
     delete m_ui;
-    delete m_facebookAuthenticator;
+}
+
+void SituareEngine::loginProcessCancelled()
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    m_ui->toggleProgressIndicator(false);
+    //ToDo: do something
 }
 
 void SituareEngine::error(const QString &error)
@@ -77,10 +129,9 @@ void SituareEngine::error(const QString &error)
 void SituareEngine::loginOk()
 {
     qDebug() << __PRETTY_FUNCTION__;
-    m_facebookAuthenticator->hide();
+
     m_ui->show();
     m_situareService->fetchLocations(); // request user locations
-    m_gps->start();
 }
 
 void SituareEngine::requestAddress()
@@ -126,3 +177,33 @@ void SituareEngine::userDataChanged(User *user, QList<User *> &friendsList)
     emit userLocationReady(user);
     emit friendsLocationsReady(friendsList);
 }
+
+void SituareEngine::enableGPS(bool enabled)
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    if (enabled) {
+        m_gps->lastPosition();
+        m_gps->start();
+        m_ui->setGPSButton(true);
+    }
+    else {
+        m_gps->stop();
+        m_ui->setGPSButton(false);
+    }
+}
+
+void SituareEngine::enableAutoCentering(bool enabled)
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    if (enabled) {
+        m_ui->setAutoCenteringButton(true);
+        m_ui->autoCenteringEnabled(true);
+        m_gps->lastPosition();
+    }
+    else {
+        m_ui->setAutoCenteringButton(false);
+        m_ui->autoCenteringEnabled(false);
+    }
+}