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>
|
|
|
|
#include <otclient/core/game.h>
|
2011-11-03 10:59:11 +01:00
|
|
|
#include <framework/otml/otml.h>
|
|
|
|
#include <framework/graphics/graphics.h>
|
2011-11-03 21:54:53 +01:00
|
|
|
#include <framework/ui/uilineedit.h>
|
2011-08-29 05:04:23 +02:00
|
|
|
|
|
|
|
void UIMap::setup()
|
|
|
|
{
|
|
|
|
UIWidget::setup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIMap::render()
|
|
|
|
{
|
2011-11-03 10:59:11 +01:00
|
|
|
renderSelf();
|
2011-08-29 05:04:23 +02:00
|
|
|
|
2011-11-03 10:59:11 +01:00
|
|
|
if(g_game.isOnline()) {
|
|
|
|
g_graphics.bindColor(Fw::black);
|
|
|
|
g_graphics.drawBoundingRect(m_mapRect.expanded(1));
|
|
|
|
g_map.draw(m_mapRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderChildren();
|
2011-08-29 05:04:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool UIMap::onKeyPress(uchar keyCode, char keyChar, int keyboardModifiers)
|
|
|
|
{
|
2011-11-03 21:54:53 +01:00
|
|
|
UILineEditPtr chatLineEdit = std::dynamic_pointer_cast<UILineEdit>(getParent()->recursiveGetChildById("chatLineEdit"));
|
|
|
|
|
2011-08-29 05:04:23 +02:00
|
|
|
if(keyboardModifiers == Fw::KeyboardNoModifier) {
|
2011-08-29 05:44:02 +02:00
|
|
|
if(keyCode == Fw::KeyUp || keyCode == Fw::KeyNumpad8) {
|
2011-08-29 05:04:23 +02:00
|
|
|
g_game.walk(Otc::North);
|
|
|
|
return true;
|
2011-08-29 05:44:02 +02:00
|
|
|
} else if(keyCode == Fw::KeyRight || keyCode == Fw::KeyNumpad6) {
|
2011-08-29 05:04:23 +02:00
|
|
|
g_game.walk(Otc::East);
|
|
|
|
return true;
|
2011-08-29 05:44:02 +02:00
|
|
|
} else if(keyCode == Fw::KeyDown || keyCode == Fw::KeyNumpad2) {
|
2011-08-29 05:04:23 +02:00
|
|
|
g_game.walk(Otc::South);
|
|
|
|
return true;
|
2011-08-29 05:44:02 +02:00
|
|
|
} else if(keyCode == Fw::KeyLeft || keyCode == Fw::KeyNumpad4) {
|
2011-08-29 05:04:23 +02:00
|
|
|
g_game.walk(Otc::West);
|
|
|
|
return true;
|
2011-08-29 07:54:28 +02:00
|
|
|
} else if(keyCode == Fw::KeyNumpad9) {
|
|
|
|
g_game.walk(Otc::NorthEast);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyNumpad3) {
|
|
|
|
g_game.walk(Otc::SouthEast);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyNumpad1) {
|
|
|
|
g_game.walk(Otc::SouthWest);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyNumpad7) {
|
|
|
|
g_game.walk(Otc::NorthWest);
|
|
|
|
return true;
|
2011-11-03 21:54:53 +01:00
|
|
|
} else if(keyCode == Fw::KeyReturn || keyCode == Fw::KeyEnter) {
|
|
|
|
g_game.talkChannel(1, 0, chatLineEdit->getText());
|
|
|
|
chatLineEdit->clearText();
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyDelete) {
|
|
|
|
chatLineEdit->removeCharacter(true);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyBackspace) {
|
|
|
|
chatLineEdit->removeCharacter(false);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyRight) {
|
|
|
|
chatLineEdit->moveCursor(true);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyLeft) {
|
|
|
|
chatLineEdit->moveCursor(false);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyHome) {
|
|
|
|
chatLineEdit->setCursorPos(0);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyEnd) {
|
|
|
|
chatLineEdit->setCursorPos(chatLineEdit->getText().length());
|
|
|
|
return true;
|
2011-08-29 05:04:23 +02:00
|
|
|
}
|
|
|
|
} else if(keyboardModifiers == Fw::KeyboardCtrlModifier) {
|
2011-08-29 05:44:02 +02:00
|
|
|
if(keyCode == Fw::KeyUp || keyCode == Fw::KeyNumpad8) {
|
2011-08-29 05:04:23 +02:00
|
|
|
g_game.turn(Otc::North);
|
|
|
|
return true;
|
2011-08-29 05:44:02 +02:00
|
|
|
} else if(keyCode == Fw::KeyRight || keyCode == Fw::KeyNumpad6) {
|
2011-08-29 05:04:23 +02:00
|
|
|
g_game.turn(Otc::East);
|
|
|
|
return true;
|
2011-08-29 05:44:02 +02:00
|
|
|
} else if(keyCode == Fw::KeyDown || keyCode == Fw::KeyNumpad2) {
|
2011-08-29 05:04:23 +02:00
|
|
|
g_game.turn(Otc::South);
|
|
|
|
return true;
|
2011-08-29 05:44:02 +02:00
|
|
|
} else if(keyCode == Fw::KeyLeft || keyCode == Fw::KeyNumpad4) {
|
2011-08-29 05:04:23 +02:00
|
|
|
g_game.turn(Otc::West);
|
|
|
|
return true;
|
|
|
|
}
|
2011-11-03 21:54:53 +01:00
|
|
|
} else if(keyboardModifiers == Fw::KeyboardShiftModifier) {
|
|
|
|
if(keyCode == Fw::KeyRight || keyCode == Fw::KeyNumpad6) {
|
|
|
|
chatLineEdit->moveCursor(true);
|
|
|
|
return true;
|
|
|
|
} else if(keyCode == Fw::KeyLeft || keyCode == Fw::KeyNumpad4) {
|
|
|
|
chatLineEdit->moveCursor(false);
|
|
|
|
return true;
|
|
|
|
}
|
2011-08-29 05:04:23 +02:00
|
|
|
}
|
2011-11-03 21:54:53 +01:00
|
|
|
|
|
|
|
if(keyChar != 0) {
|
|
|
|
chatLineEdit->appendText(std::string(1, keyChar));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-08-29 05:04:23 +02:00
|
|
|
return UIWidget::onKeyPress(keyCode, keyChar, keyboardModifiers);
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
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-08-30 17:12:57 +02:00
|
|
|
Size mapSize(15*32, 11*32);
|
|
|
|
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
|
|
|
}
|