Moved URL builder and parser to MapFetcher
[situare] / src / map / mapengine.cpp
index e8d9905..1cddef3 100644 (file)
@@ -4,6 +4,7 @@
 
        Sami Rämö - sami.ramo@ixonos.com
        Jussi Laitinen - jussi.laitinen@ixonos.com
+       Pekka Nissinen - pekka.nissinen@ixonos.com
 
    Situare is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
@@ -20,8 +21,6 @@
    USA.
 */
 
-#include <QtCore>
-#include <QtGlobal>
 #include <QDebug>
 #include <QString>
 #include <QStringList>
 
 MapEngine::MapEngine(QObject *parent)
     : QObject(parent)
-    , m_zoomLevel(DEFAULT_ZOOM_LEVEL)
-    , m_viewSize(QSize(DEFAULT_SCREEN_WIDTH, DEFAULT_SCREEN_HEIGHT))
     , m_centerTile(QPoint(UNDEFINED, UNDEFINED))
+    , m_viewSize(QSize(DEFAULT_SCREEN_WIDTH, DEFAULT_SCREEN_HEIGHT))
+    , m_zoomedIn(false)
+    , m_zoomLevel(DEFAULT_ZOOM_LEVEL)
 {
     m_mapScene = new MapScene(this);
 
     m_mapFetcher = new MapFetcher(new QNetworkAccessManager(this), this);
-    connect(this, SIGNAL(fetchImage(QUrl)), m_mapFetcher, SLOT(fetchMapImage(QUrl)));
-    connect(m_mapFetcher, SIGNAL(mapImageReceived(QUrl,QPixmap)), this,
-            SLOT(mapImageReceived(QUrl, QPixmap)));
+    connect(this, SIGNAL(fetchImage(int,int,int)), m_mapFetcher, SLOT(enqueueFetchMapImage(int,int,int)));
+    connect(m_mapFetcher, SIGNAL(mapImageReceived(int,int,int,QPixmap)), this,
+            SLOT(mapImageReceived(int,int,int,QPixmap)));
+
+    m_mapZoomPanel = new MapZoomPanel(NULL, MAP_ZOOM_PANEL_POSITION_X, MAP_ZOOM_PANEL_POSITION_Y);
+    m_mapScene->addItem(m_mapZoomPanel);
+    connect(m_mapZoomPanel, SIGNAL(zoomInPressed()), this, SLOT(zoomIn()));
+    connect(m_mapZoomPanel, SIGNAL(zoomOutPressed()), this, SLOT(zoomOut()));
+
+    m_ownLocation = new OwnLocationItem();
+    m_mapScene->addItem(m_ownLocation);
 }
 
 void MapEngine::init()
@@ -59,51 +67,21 @@ void MapEngine::setViewLocation(QPointF latLonCoordinate)
     setLocation(convertLatLonToSceneCoordinate(latLonCoordinate));
 }
 
-QUrl MapEngine::buildURL(int zoomLevel, QPoint tileNumbers)
-{
-    QString url = QString("http://tile.openstreetmap.org/mapnik/%1/%2/%3.png")
-                  .arg(zoomLevel).arg(tileNumbers.x()).arg(tileNumbers.y());
-
-    return QUrl(url);
-}
-
-void MapEngine::parseURL(const QUrl &url, int &zoom, int &x, int &y)
-{
-    QString path = url.path();
-    QStringList pathParts = path.split("/", QString::SkipEmptyParts);
-
-    int size = pathParts.size();
-
-    if (size < 3)
-        return;
-
-    zoom = (pathParts.at(size-3)).toInt();
-    x = (pathParts.at(size-2)).toInt();
-    QString yString = pathParts.at(size-1);
-    yString.chop(4);
-    y = yString.toInt();
-}
-
-void MapEngine::mapImageReceived(const QUrl &url, const QPixmap &pixmap)
+void MapEngine::mapImageReceived(int zoomLevel, int x, int y, const QPixmap &image)
 {
-    //qDebug() << __PRETTY_FUNCTION__;
-
-    if (!mapTilesInScene.contains(url.toString())) {
-        int zoom = UNDEFINED;
-        int x = UNDEFINED;
-        int y = UNDEFINED;
+    qDebug() << __PRETTY_FUNCTION__;
 
-        parseURL(url, zoom, x, y);
+    QString hashKey = tilePath(zoomLevel, x, y);
+    if (!m_mapScene->isTileInScene(hashKey)) {
 
         MapTile *mapTile = new MapTile();
-        mapTile->setZoomLevel(zoom);
+        mapTile->setZoomLevel(zoomLevel, m_zoomLevel);
         mapTile->setTileNumber(QPoint(x, y));
-        mapTile->setPixmap(pixmap);
+        mapTile->setPixmap(image);
 
-        mapTilesInScene.insert(tilePath(zoom, x, y), mapTile);
-        m_mapScene->addMapTile(mapTile);
+        m_mapScene->addTile(mapTile, hashKey);
 
-//        removeStackedTiles(mapTile);
+        m_mapScene->enqueueRemoveStackedTiles(mapTile);
    }
 }
 
@@ -117,7 +95,7 @@ int MapEngine::tileMaxValue(int zoomLevel)
     return (1 << zoomLevel) - 1;
 }
 
-QRect MapEngine::calculateGrid(QPoint sceneCoordinate)
+QRect MapEngine::calculateTileGrid(QPoint sceneCoordinate)
 {
     QPoint tileCoordinate = convertSceneCoordinateToTileNumber(m_zoomLevel, sceneCoordinate);
     int gridWidth = (m_viewSize.width()/TILE_SIZE_X + 1) + (GRID_PADDING*2);
@@ -125,23 +103,32 @@ QRect MapEngine::calculateGrid(QPoint sceneCoordinate)
     int topLeftX = tileCoordinate.x() - (gridWidth/2);
     int topLeftY = tileCoordinate.y() - (gridHeight/2);
 
+    m_mapFetcher->setDownloadQueueSize(gridWidth * gridHeight);
+
     return QRect(topLeftX, topLeftY, gridWidth, gridHeight);
 }
 
+void MapEngine::alignImmovableItems(QPoint viewTopLeft)
+{
+    m_mapZoomPanel->setPos(viewTopLeft);
+
+    qDebug() << __PRETTY_FUNCTION__ << "viewTopLeft:" << viewTopLeft;
+}
+
 void MapEngine::setLocation(QPoint sceneCoordinate)
 {
-    //qDebug() << __PRETTY_FUNCTION__;
+    qDebug() << __PRETTY_FUNCTION__;
 
     m_sceneCoordinate = sceneCoordinate;
     emit locationChanged(m_sceneCoordinate);
 
-    if (centerTileChanged(sceneCoordinate)) {
-        calculateNewTiles(sceneCoordinate);
-        removeOldTiles();
+    if (isCenterTileChanged(sceneCoordinate)) {
+        getTiles(sceneCoordinate);
+        m_mapScene->removeOutOfViewTiles();
     }
 }
 
-bool MapEngine::centerTileChanged(QPoint sceneCoordinate)
+bool MapEngine::isCenterTileChanged(QPoint sceneCoordinate)
 {
     QPoint centerTile = convertSceneCoordinateToTileNumber(m_zoomLevel, sceneCoordinate);
     QPoint temp = m_centerTile;
@@ -150,16 +137,17 @@ bool MapEngine::centerTileChanged(QPoint sceneCoordinate)
     return (centerTile != temp);
 }
 
-void MapEngine::calculateNewTiles(QPoint sceneCoordinate)
+void MapEngine::getTiles(QPoint sceneCoordinate)
 {
-    //qDebug() << __PRETTY_FUNCTION__;
+    qDebug() << __PRETTY_FUNCTION__;
 
-    viewGrid = calculateGrid(sceneCoordinate);
+    m_viewTilesGrid = calculateTileGrid(sceneCoordinate);
+    updateViewTilesSceneRect();
 
-    int topLeftX = viewGrid.topLeft().x();
-    int topLeftY = viewGrid.topLeft().y();
-    int bottomRightX = viewGrid.bottomRight().x();
-    int bottomRightY = viewGrid.bottomRight().y();
+    int topLeftX = m_viewTilesGrid.topLeft().x();
+    int topLeftY = m_viewTilesGrid.topLeft().y();
+    int bottomRightX = m_viewTilesGrid.bottomRight().x();
+    int bottomRightY = m_viewTilesGrid.bottomRight().y();
 
     int tileMaxVal = tileMaxValue(m_zoomLevel);
 
@@ -179,115 +167,66 @@ void MapEngine::calculateNewTiles(QPoint sceneCoordinate)
             else if (tileY > tileMaxVal)
                 tileY -= tileMaxVal;
 
-            QUrl url = buildURL(m_zoomLevel, QPoint(tileX, tileY));
-
-            if (!mapTilesInScene.contains(tilePath(m_zoomLevel, tileX, tileY)))
-                emit fetchImage(url);
+            if (!m_mapScene->isTileInScene(tilePath(m_zoomLevel, tileX, tileY)))
+                emit fetchImage(m_zoomLevel, tileX, tileY);
         }
     }
 }
 
-void MapEngine::removeOldTiles()
+void MapEngine::updateViewTilesSceneRect()
 {
-    //qDebug() << __PRETTY_FUNCTION__;
-
-    QPointF topLeft = convertTileNumberToSceneCoordinate(m_zoomLevel, viewGrid.topLeft());
-    QPointF bottomRight = convertTileNumberToSceneCoordinate(m_zoomLevel, viewGrid.bottomRight() + QPoint(1, 1));
-    qreal width = bottomRight.x() - topLeft.x();
-    qreal height = bottomRight.y() - topLeft.y();
-
-    QList<QGraphicsItem *> viewTiles = m_mapScene->items(topLeft.x(), topLeft.y(), width, height, Qt::IntersectsItemShape);
-    QList<QGraphicsItem *> allTiles = m_mapScene->items();
-
-    foreach (QGraphicsItem *tile, viewTiles)
-        allTiles.removeOne(tile);
-
-    QHashIterator<QString, MapTile *> i(mapTilesInScene);
-
-     while (i.hasNext()) {
-         i.next();
-         if (allTiles.contains(i.value()) && mapTilesInScene.contains(i.key())) {
-             MapTile *tile = i.value();
-             if (tile) {
-                 mapTilesInScene.remove(i.key());
-                 m_mapScene->removeItem(tile);
-                 delete tile;
-             }
-         }
-     }
-}
-
-void MapEngine::removeStackedTiles(MapTile *tile)
-{
-    QList<QGraphicsItem *> collidingItems = tile->collidingItems(Qt::IntersectsItemBoundingRect);
-
-    foreach (QGraphicsItem *item, collidingItems) {
-
-        QRectF itemSceneRect = item->mapRectToScene(item->boundingRect());
-        QList<QGraphicsItem *> stackedItems = m_mapScene->items(itemSceneRect, Qt::IntersectsItemBoundingRect);
+    QPoint topLeft = convertTileNumberToSceneCoordinate(m_zoomLevel, m_viewTilesGrid.topLeft());
+    QPoint bottomRight = convertTileNumberToSceneCoordinate(m_zoomLevel,
+                                                            m_viewTilesGrid.bottomRight()
+                                                             + QPoint(1, 1)) - QPoint(1, 1);
 
-        foreach(QGraphicsItem *stackedItem, stackedItems) {
-            if (item != stackedItem) {
-                MapTile *tmp = dynamic_cast<MapTile *>(item);
-                if (tmp) {
-                    m_mapScene->removeItem(tmp);
-                    mapTilesInScene.remove(tilePath(tmp->zoomLevel(), tmp->x(), tmp->y()));
-                }
-            }
-        }
-    }
+    m_mapScene->viewRectUpdated(QRect(topLeft, bottomRight));
 }
 
 void MapEngine::viewResized(const QSize &size)
 {
     m_viewSize = size;
-    calculateNewTiles(m_sceneCoordinate);
-    removeOldTiles();
+    getTiles(m_sceneCoordinate);
+    m_mapScene->removeOutOfViewTiles();
 }
 
-void MapEngine::zoomIn()
+void MapEngine::viewZoomFinished()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    if (m_zoomLevel >= MAX_MAP_ZOOM_LEVEL)
-        return;
-
-    m_zoomLevel++;
-    emit zoomLevelChanged(m_zoomLevel);
-
-    setTilesDrawingLevels();
-
-    calculateNewTiles(m_sceneCoordinate);
-    removeOldTiles();
+    if (m_zoomedIn) {
+        m_zoomedIn = false;
+        m_mapScene->removeOutOfViewTiles();
+    }
 }
 
-void MapEngine::zoomOut()
+void MapEngine::zoomIn()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    if (m_zoomLevel <= MIN_MAP_ZOOM_LEVEL)
-        return;
-
-    m_zoomLevel--;
-    emit zoomLevelChanged(m_zoomLevel);
+    if (m_zoomLevel < MAX_MAP_ZOOM_LEVEL) {
+        m_zoomLevel++;
+        m_zoomedIn = true;
+        emit zoomLevelChanged(m_zoomLevel);
 
-    setTilesDrawingLevels();
+        m_mapScene->setTilesDrawingLevels(m_zoomLevel);
 
-    calculateNewTiles(m_sceneCoordinate);
+        getTiles(m_sceneCoordinate);
+    }
 }
 
-void MapEngine::setTilesDrawingLevels()
+void MapEngine::zoomOut()
 {
-    //qDebug() << __PRETTY_FUNCTION__ << "m_zoomLevel:" << m_zoomLevel;
+    qDebug() << __PRETTY_FUNCTION__;
 
-    QList<QGraphicsItem *> items = m_mapScene->items();
+    if (m_zoomLevel > MIN_VIEW_ZOOM_LEVEL) {
+        m_zoomLevel--;
+        emit zoomLevelChanged(m_zoomLevel);
 
-    for (int i = 0; i < items.size(); ++i) {
-        MapTile *item = dynamic_cast<MapTile *>(items.at(i));
-        if (item)
-            item->setSceneLevel(m_zoomLevel);
-    }
+        m_mapScene->setTilesDrawingLevels(m_zoomLevel);
 
+        getTiles(m_sceneCoordinate);
+    }
 }
 
 QString MapEngine::tilePath(int zoomLevel, int x, int y)
@@ -299,7 +238,41 @@ QString MapEngine::tilePath(int zoomLevel, int x, int y)
     return tilePathString;
 }
 
-void MapEngine::scalingFactorChanged(qreal scaleFactor)
+QPoint MapEngine::convertSceneCoordinateToTileNumber(int zoomLevel, QPoint sceneCoordinate)
+{
+    int pow = 1 << (MAX_MAP_ZOOM_LEVEL - zoomLevel);
+    int x = static_cast<int>(sceneCoordinate.x() / (TILE_SIZE_X*pow));
+    int y = static_cast<int>(sceneCoordinate.y() / (TILE_SIZE_Y*pow));
+
+    return QPoint(x, y);
+}
+
+QPoint MapEngine::convertTileNumberToSceneCoordinate(int zoomLevel, QPoint tileNumber)
+{
+    int pow = 1 << (MAX_MAP_ZOOM_LEVEL - zoomLevel);
+    int x = tileNumber.x() * TILE_SIZE_X * pow;
+    int y = tileNumber.y() * TILE_SIZE_Y * pow;
+
+    return QPoint(x, y);
+}
+
+QPoint MapEngine::convertLatLonToSceneCoordinate(QPointF latLonCoordinate)
 {
     qDebug() << __PRETTY_FUNCTION__;
+
+    qreal longitude = latLonCoordinate.x();
+    qreal latitude = latLonCoordinate.y();
+
+    if ((longitude > MAX_LONGITUDE) || (longitude < MIN_LONGITUDE))
+        return QPoint(UNDEFINED, UNDEFINED);
+    if ((latitude > MAX_LATITUDE) || (latitude < MIN_LATITUDE))
+        return QPoint(UNDEFINED, UNDEFINED);
+
+    qreal z = static_cast<qreal>(1 << MAX_MAP_ZOOM_LEVEL);
+
+    qreal x = static_cast<qreal>((longitude + 180.0) / 360.0);
+    qreal y = static_cast<qreal>((1.0 - log(tan(latitude * M_PI / 180.0) + 1.0
+                                / cos(latitude * M_PI / 180.0)) / M_PI) / 2.0);
+
+    return QPointF(x*z*TILE_SIZE_X, y*z*TILE_SIZE_Y).toPoint();
 }