2011-08-28 15:17:58 +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.
|
|
|
|
*/
|
|
|
|
|
2011-08-15 23:02:52 +02:00
|
|
|
#include "localplayer.h"
|
2011-11-05 21:34:49 +01:00
|
|
|
#include "map.h"
|
|
|
|
#include "game.h"
|
|
|
|
#include "tile.h"
|
2011-08-15 23:02:52 +02:00
|
|
|
|
2011-11-05 21:34:49 +01:00
|
|
|
LocalPlayer::LocalPlayer()
|
2011-08-30 16:37:48 +02:00
|
|
|
{
|
2011-11-05 21:34:49 +01:00
|
|
|
m_clientWalking = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalPlayer::clientWalk(Otc::Direction direction)
|
|
|
|
{
|
|
|
|
if(!m_walking) {
|
|
|
|
Position newPos = m_position + Position::getPositionFromDirection(direction);
|
|
|
|
Creature::walk(newPos, false);
|
|
|
|
m_clientWalking = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalPlayer::walk(const Position& position, bool inverse)
|
|
|
|
{
|
|
|
|
if(m_clientWalking) {
|
|
|
|
Position pos = Position::getPositionFromDirection(m_direction);
|
|
|
|
int walkOffsetX = m_walkOffsetX - pos.x * 32;
|
|
|
|
int walkOffsetY = m_walkOffsetY - pos.y * 32;
|
|
|
|
|
|
|
|
Creature::walk(position, inverse);
|
|
|
|
|
|
|
|
m_walkOffsetX = walkOffsetX;
|
|
|
|
m_walkOffsetY = walkOffsetY;
|
|
|
|
m_clientWalking = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_walkOffsetX = 0;
|
|
|
|
m_walkOffsetY = 0;
|
|
|
|
Creature::walk(position, inverse);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalPlayer::cancelWalk(Otc::Direction direction)
|
|
|
|
{
|
|
|
|
m_clientWalking = false;
|
|
|
|
Creature::cancelWalk(direction);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LocalPlayer::canWalk(Otc::Direction direction)
|
|
|
|
{
|
|
|
|
Position newPos = m_position + Position::getPositionFromDirection(direction);
|
|
|
|
TilePtr tile = g_map.getTile(newPos);
|
|
|
|
if(!tile->isWalkable()) {
|
|
|
|
// TODO: create enum for 17, white message on screen bottom and console.
|
|
|
|
g_game.processTextMessage(17, "Sorry, not possible.");
|
|
|
|
return false;
|
|
|
|
}
|
2011-08-30 16:37:48 +02:00
|
|
|
|
2011-11-05 21:34:49 +01:00
|
|
|
return !m_clientWalking;
|
2011-08-30 16:37:48 +02:00
|
|
|
}
|