2011-08-29 05:04:23 +02:00
|
|
|
/*
|
2012-01-02 17:58:37 +01:00
|
|
|
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
|
2011-08-29 05:04:23 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "uimap.h"
|
2011-12-30 19:14:50 +01:00
|
|
|
#include <otclient/core/game.h>
|
2011-08-29 05:04:23 +02:00
|
|
|
#include <otclient/core/map.h>
|
2011-11-03 10:59:11 +01:00
|
|
|
#include <framework/otml/otml.h>
|
|
|
|
#include <framework/graphics/graphics.h>
|
2012-01-07 23:24:29 +01:00
|
|
|
#include <otclient/core/localplayer.h>
|
2011-08-29 05:04:23 +02:00
|
|
|
|
2012-01-20 03:33:11 +01:00
|
|
|
UIMap::UIMap()
|
|
|
|
{
|
|
|
|
m_dragable = true;
|
|
|
|
}
|
|
|
|
|
2012-01-10 23:13:40 +01:00
|
|
|
void UIMap::draw()
|
2011-08-29 05:04:23 +02:00
|
|
|
{
|
2012-01-10 23:13:40 +01:00
|
|
|
drawSelf();
|
2011-08-29 05:04:23 +02:00
|
|
|
|
2011-12-07 01:31:55 +01:00
|
|
|
g_painter.setColor(Fw::black);
|
|
|
|
g_painter.drawBoundingRect(m_mapRect.expanded(1));
|
2011-11-20 21:38:35 +01:00
|
|
|
g_map.draw(m_mapRect);
|
2011-11-03 10:59:11 +01:00
|
|
|
|
2012-01-10 23:13:40 +01:00
|
|
|
drawChildren();
|
2011-08-29 05:04:23 +02:00
|
|
|
}
|
|
|
|
|
2012-01-21 02:01:11 +01:00
|
|
|
TilePtr UIMap::getTile(const Point& mousePos)
|
2011-08-29 05:04:23 +02:00
|
|
|
{
|
2012-01-02 20:01:48 +01:00
|
|
|
if(!m_mapRect.contains(mousePos))
|
2012-01-21 02:01:11 +01:00
|
|
|
return nullptr;
|
2012-01-02 20:01:48 +01:00
|
|
|
|
|
|
|
// Get tile position
|
|
|
|
Point relativeStretchMousePos = mousePos - m_mapRect.topLeft();
|
2012-01-09 19:06:16 +01:00
|
|
|
|
2012-01-07 23:24:29 +01:00
|
|
|
LocalPlayerPtr localPlayer = g_game.getLocalPlayer();
|
|
|
|
if(localPlayer)
|
|
|
|
relativeStretchMousePos += localPlayer->getWalkOffset();
|
2012-01-09 19:06:16 +01:00
|
|
|
|
2012-01-02 20:01:48 +01:00
|
|
|
Size mapSize(g_map.getVibibleSize().width() * Map::NUM_TILE_PIXELS, g_map.getVibibleSize().height() * Map::NUM_TILE_PIXELS);
|
|
|
|
|
|
|
|
PointF stretchFactor(m_mapRect.width() / (float)mapSize.width(), m_mapRect.height() / (float)mapSize.height());
|
|
|
|
PointF relativeMousePos = PointF(relativeStretchMousePos.x, relativeStretchMousePos.y) / stretchFactor;
|
|
|
|
|
|
|
|
PointF tilePosF = relativeMousePos / Map::NUM_TILE_PIXELS;
|
|
|
|
Position tilePos = Position(1 + (int)tilePosF.x - g_map.getCentralOffset().x, 1 + (int)tilePosF.y - g_map.getCentralOffset().y, 0) + g_map.getCentralPosition();
|
2012-01-20 02:12:26 +01:00
|
|
|
if(!tilePos.isValid())
|
|
|
|
return nullptr;
|
|
|
|
|
2012-01-02 20:01:48 +01:00
|
|
|
// Get tile
|
|
|
|
TilePtr tile = nullptr;
|
|
|
|
|
2012-01-04 15:30:28 +01:00
|
|
|
// We must check every floor, from top to bottom to check for a clickable tile
|
2012-01-02 20:01:48 +01:00
|
|
|
int firstFloor = g_map.getFirstVisibleFloor();
|
|
|
|
tilePos.perspectiveUp(tilePos.z - firstFloor);
|
|
|
|
for(int i = firstFloor; i <= Map::MAX_Z; i++) {
|
|
|
|
tile = g_map.getTile(tilePos);
|
2012-01-04 15:30:28 +01:00
|
|
|
if(tile && tile->isClickable())
|
2012-01-02 20:01:48 +01:00
|
|
|
break;
|
|
|
|
tilePos.coveredDown();
|
|
|
|
}
|
|
|
|
|
2012-01-04 15:30:28 +01:00
|
|
|
// todo: get creature, using walkOffset etc.
|
|
|
|
|
|
|
|
if(!tile || !tile->isClickable())
|
2012-01-09 19:06:16 +01:00
|
|
|
return nullptr;
|
2011-11-10 07:53:16 +01:00
|
|
|
|
2012-01-09 19:06:16 +01:00
|
|
|
return tile;
|
2011-08-29 05:04:23 +02:00
|
|
|
}
|
2011-08-30 17:12:57 +02:00
|
|
|
|
2012-01-05 03:42:17 +01:00
|
|
|
void UIMap::onGeometryChange(const Rect& oldRect, const Rect& newRect)
|
2011-08-30 17:12:57 +02:00
|
|
|
{
|
2012-01-10 23:13:40 +01:00
|
|
|
Rect mapRect = getChildrenRect().expanded(-1);
|
2011-11-23 05:27:58 +01:00
|
|
|
Size mapSize(g_map.getVibibleSize().width() * Map::NUM_TILE_PIXELS, g_map.getVibibleSize().height() * Map::NUM_TILE_PIXELS);
|
2011-08-30 17:12:57 +02:00
|
|
|
mapSize.scale(mapRect.size(), Fw::KeepAspectRatio);
|
2011-11-23 05:27:58 +01:00
|
|
|
|
2011-12-07 01:31:55 +01:00
|
|
|
m_mapRect.resize(mapSize);
|
2011-11-03 10:59:11 +01:00
|
|
|
m_mapRect.moveCenter(newRect.center());
|
2011-08-30 17:12:57 +02:00
|
|
|
}
|