ca8c7aed3be611da49765e6c2a4ccb9f3f94e397
[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 << (MAX_MAP_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>(MIN_MAP_SCENE_NORMAL_LEVEL + currentZoomLevel
65                                      - (m_zoomLevel - currentZoomLevel)) + 0.5;
66         setZValue(z);
67     }
68     else
69         setZValue(static_cast<qreal>(MIN_MAP_SCENE_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::tileMaxValue(m_zoomLevel);
92     const int MIN_TILE_NUMBER_X = -(MAX_TILE_NUMBER + 1) / 2;
93     const int MAX_TULE_NUMBER_X = MAX_TILE_NUMBER * 1.5 + 1;
94
95     if ((m_zoomLevel >= MIN_MAP_ZOOM_LEVEL) && (m_zoomLevel <= MAX_MAP_ZOOM_LEVEL)
96         && (m_tileNumber.x() >= MIN_TILE_NUMBER_X) && (m_tileNumber.x() <= MAX_TULE_NUMBER_X)
97         && (m_tileNumber.y() >= 0) && (m_tileNumber.y() <= MAX_TILE_NUMBER))
98
99         setPos(MapEngine::convertTileNumberToSceneCoordinate(m_zoomLevel, m_tileNumber));
100     else
101         setPos(UNDEFINED, UNDEFINED);
102 }
103