/* * Copyright (c) 2010-2011 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 #include #include #include UIMap::UIMap() { m_mapMargin = 0; } void UIMap::render() { renderSelf(); g_graphics.bindColor(Fw::black); g_graphics.drawBoundingRect(m_mapRect.expanded(1)); g_map.draw(m_mapRect); renderChildren(); } void UIMap::onStyleApply(const OTMLNodePtr& styleNode) { for(OTMLNodePtr node : styleNode->children()) { if(node->tag() == "map margin") m_mapMargin = node->value(); } UIWidget::onStyleApply(styleNode); } bool UIMap::onMousePress(const Point& mousePos, Fw::MouseButton button) { 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; Position tilePos = Position(1 + (int)tilePosF.x - Map::PLAYER_OFFSET_X, 1 + (int)tilePosF.y - Map::PLAYER_OFFSET_Y, 0) + g_map.getCentralPosition(); TilePtr tile = g_map.getTile(tilePos); tile->useItem(); } return UIWidget::onMousePress(mousePos, button); } void UIMap::onGeometryUpdate(const Rect& oldRect, const Rect& newRect) { Rect mapRect = newRect.expanded(-m_mapMargin-1); Size mapSize(Map::MAP_VISIBLE_WIDTH * Map::NUM_TILE_PIXELS, Map::MAP_VISIBLE_HEIGHT * Map::NUM_TILE_PIXELS); mapSize.scale(mapRect.size(), Fw::KeepAspectRatio); m_mapRect.setSize(mapSize); m_mapRect.moveCenter(newRect.center()); }