2011-08-29 05:04:23 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2011 OTClient <https://github.com/edubart/otclient>
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
#include <otclient/core/map.h>
|
2011-11-03 10:59:11 +01:00
|
|
|
#include <framework/otml/otml.h>
|
|
|
|
#include <framework/graphics/graphics.h>
|
2011-11-10 07:53:16 +01:00
|
|
|
#include <otclient/core/tile.h>
|
2011-08-29 05:04:23 +02:00
|
|
|
|
2011-11-17 18:43:41 +01:00
|
|
|
UIMap::UIMap()
|
2011-08-29 05:04:23 +02:00
|
|
|
{
|
2011-11-17 18:43:41 +01:00
|
|
|
m_mapMargin = 0;
|
2011-08-29 05:04:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIMap::render()
|
|
|
|
{
|
2011-11-03 10:59:11 +01:00
|
|
|
renderSelf();
|
2011-08-29 05:04:23 +02:00
|
|
|
|
2011-11-20 21:38:35 +01:00
|
|
|
g_graphics.bindColor(Fw::black);
|
|
|
|
g_graphics.drawBoundingRect(m_mapRect.expanded(1));
|
|
|
|
g_map.draw(m_mapRect);
|
2011-11-03 10:59:11 +01:00
|
|
|
|
|
|
|
renderChildren();
|
2011-08-29 05:04:23 +02:00
|
|
|
}
|
|
|
|
|
2011-11-03 10:59:11 +01:00
|
|
|
void UIMap::onStyleApply(const OTMLNodePtr& styleNode)
|
|
|
|
{
|
|
|
|
for(OTMLNodePtr node : styleNode->children()) {
|
|
|
|
if(node->tag() == "map margin")
|
|
|
|
m_mapMargin = node->value<int>();
|
|
|
|
}
|
|
|
|
|
|
|
|
UIWidget::onStyleApply(styleNode);
|
|
|
|
}
|
|
|
|
|
2011-08-29 05:04:23 +02:00
|
|
|
bool UIMap::onMousePress(const Point& mousePos, Fw::MouseButton button)
|
|
|
|
{
|
2011-11-10 07:53:16 +01:00
|
|
|
if(m_mapRect.contains(mousePos)) {
|
|
|
|
Point relativeStretchMousePos = mousePos - m_mapRect.topLeft();
|
|
|
|
Size mapSize(Map::MAP_VISIBLE_WIDTH * Map::NUM_TILE_PIXELS, Map::MAP_VISIBLE_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;
|
2011-11-20 21:38:35 +01:00
|
|
|
Position tilePos = Position(1 + (int)tilePosF.x - Map::PLAYER_OFFSET_X, 1 + (int)tilePosF.y - Map::PLAYER_OFFSET_Y, 0) + g_map.getCentralPosition();
|
2011-11-10 07:53:16 +01:00
|
|
|
|
|
|
|
TilePtr tile = g_map.getTile(tilePos);
|
2011-11-21 17:29:21 +01:00
|
|
|
if(tile)
|
|
|
|
tile->useItem();
|
2011-11-10 07:53:16 +01:00
|
|
|
}
|
|
|
|
|
2011-08-29 05:04:23 +02:00
|
|
|
return UIWidget::onMousePress(mousePos, button);
|
|
|
|
}
|
2011-08-30 17:12:57 +02:00
|
|
|
|
|
|
|
void UIMap::onGeometryUpdate(const Rect& oldRect, const Rect& newRect)
|
|
|
|
{
|
2011-11-03 10:59:11 +01:00
|
|
|
Rect mapRect = newRect.expanded(-m_mapMargin-1);
|
2011-11-10 07:53:16 +01:00
|
|
|
Size mapSize(Map::MAP_VISIBLE_WIDTH * Map::NUM_TILE_PIXELS, Map::MAP_VISIBLE_HEIGHT * Map::NUM_TILE_PIXELS);
|
2011-08-30 17:12:57 +02:00
|
|
|
mapSize.scale(mapRect.size(), Fw::KeepAspectRatio);
|
2011-11-03 10:59:11 +01:00
|
|
|
m_mapRect.setSize(mapSize);
|
|
|
|
m_mapRect.moveCenter(newRect.center());
|
2011-08-30 17:12:57 +02:00
|
|
|
}
|