Re-factored the source to use the new coordinate classes
[situare] / src / map / maptile.cpp
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Sami Rämö - sami.ramo@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #include <QDebug>
23 #include <QTransform>
24
25 #include "mapcommon.h"
26 #include "mapengine.h"
27 #include "maptile.h"
28
29 MapTile::MapTile()
30     : m_tileNumber(QPoint(UNDEFINED, UNDEFINED))
31     , m_zoomLevel(UNDEFINED)
32 {
33     qDebug() << __PRETTY_FUNCTION__;
34
35     setPos(UNDEFINED, UNDEFINED);
36     setShapeMode(QGraphicsPixmapItem::BoundingRectShape);
37 }
38
39 int MapTile::zoomLevel()
40 {
41     qDebug() << __PRETTY_FUNCTION__;
42
43     return m_zoomLevel;
44 }
45
46 void MapTile::setZoomLevel(int tileZoomLevel, int currentViewZoomLevel)
47 {
48     qDebug() << __PRETTY_FUNCTION__;
49
50     m_zoomLevel = tileZoomLevel;
51     setPosition();
52
53     setSceneLevel(currentViewZoomLevel);
54
55     qreal zoomFactor = static_cast<qreal>(1 << (OSM_MAX_ZOOM_LEVEL - m_zoomLevel));
56     setScale(zoomFactor);
57 }
58
59 void MapTile::setSceneLevel(int currentZoomLevel)
60 {
61     qDebug() << __PRETTY_FUNCTION__;
62
63     if (currentZoomLevel < m_zoomLevel) {
64         qreal z = static_cast<qreal>(MAP_SCENE_MIN_NORMAL_LEVEL + currentZoomLevel
65                                      - (m_zoomLevel - currentZoomLevel)) + 0.5;
66         setZValue(z);
67     }
68     else
69         setZValue(static_cast<qreal>(MAP_SCENE_MIN_NORMAL_LEVEL + m_zoomLevel));
70 }
71
72 QPoint MapTile::tileNumber()
73 {
74     qDebug() << __PRETTY_FUNCTION__;
75
76     return m_tileNumber;
77 }
78
79 void MapTile::setTileNumber(QPoint tileNumber)
80 {
81     qDebug() << __PRETTY_FUNCTION__;
82
83     m_tileNumber = tileNumber;
84     setPosition();
85 }
86
87 void MapTile::setPosition()
88 {
89     qDebug() << __PRETTY_FUNCTION__;
90
91     const int MAX_TILE_NUMBER = MapEngine::tileMaxIndex(m_zoomLevel);
92
93     // calculate min & max horizontal tile index numbers
94     const int INDEX_0_TILE = 1;
95     const int MIN_TILE_NUMBER_X = -MapEngine::tilesPerSide(m_zoomLevel)
96                                   * MAP_SCENE_VERTICAL_OVERSIZE_FACTOR;
97     const int MAX_TILE_NUMBER_X = MapEngine::tilesPerSide(m_zoomLevel)
98                                   * (1 + MAP_SCENE_VERTICAL_OVERSIZE_FACTOR)
99                                   - INDEX_0_TILE;
100
101     if ((m_zoomLevel >= OSM_MIN_ZOOM_LEVEL) && (m_zoomLevel <= OSM_MAX_ZOOM_LEVEL)
102         && (m_tileNumber.x() >= MIN_TILE_NUMBER_X) && (m_tileNumber.x() <= MAX_TILE_NUMBER_X)
103         && (m_tileNumber.y() >= 0) && (m_tileNumber.y() <= MAX_TILE_NUMBER)) {
104             setPos(MapEngine::convertTileNumberToSceneCoordinate(m_zoomLevel, m_tileNumber).toPointF());
105     } else {
106         setPos(UNDEFINED, UNDEFINED);
107     }
108 }
109