tibia-client/src/otclient/core/localplayer.cpp

135 lines
4.3 KiB
C++
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
2012-01-02 17:58:37 +01:00
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
2011-08-28 15:17:58 +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.
*/
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;
2011-12-29 08:08:02 +01:00
m_nextWalkDirection = Otc::InvalidDirection;
2011-11-05 21:34:49 +01:00
}
void LocalPlayer::clientWalk(Otc::Direction direction)
{
2011-12-29 08:08:02 +01:00
// We're not walking, so start a client walk.
2011-11-05 21:34:49 +01:00
if(!m_walking) {
Position newPos = m_position + Position::getPosFromDirection(direction);
2011-11-05 21:34:49 +01:00
Creature::walk(newPos, false);
m_clientWalking = true;
}
}
void LocalPlayer::walk(const Position& position, bool inverse)
{
2011-12-29 08:08:02 +01:00
// This can only be received by protocol, so its always inverse.
// If we're already walking, just finish it.
2011-11-05 21:34:49 +01:00
if(m_clientWalking) {
2011-12-29 08:08:02 +01:00
m_clientWalking = false;
Position pos = Position::getPosFromDirection(m_direction);
2011-11-08 02:44:30 +01:00
Point walkOffset = Point(m_walkOffset.x - pos.x * 32,
m_walkOffset.y - pos.y * 32);
2011-11-05 21:34:49 +01:00
Creature::walk(position, inverse);
2011-12-29 08:08:02 +01:00
// Restore walk offset, because we were already walking.
2011-11-08 02:44:30 +01:00
m_walkOffset = walkOffset;
2011-11-05 21:34:49 +01:00
}
2011-12-29 08:08:02 +01:00
// If we're not client walking, we'll just walk like every NPC. Ie: When player is pushed.
else
2011-11-05 21:34:49 +01:00
Creature::walk(position, inverse);
}
2011-12-29 08:08:02 +01:00
void LocalPlayer::cancelWalk(Otc::Direction direction, bool force)
2011-11-05 21:34:49 +01:00
{
2011-12-29 08:08:02 +01:00
// Server said we cant walk. Ie: houses, vip areas.
if(force) {
m_clientWalking = false;
Creature::cancelWalk(direction);
}
else {
// Walk finished, and we already received the confirmation from server.
if(m_walking && !m_clientWalking) {
m_clientWalking = false;
Creature::cancelWalk(direction);
if(m_nextWalkDirection != Otc::InvalidDirection) {
g_game.walk(m_nextWalkDirection);
m_nextWalkDirection = Otc::InvalidDirection;
}
}
//else..
// Walk finished, however we havent received the confirmation from server. So wait for it.
}
2011-11-05 21:34:49 +01:00
}
bool LocalPlayer::canWalk(Otc::Direction direction)
{
2011-12-29 08:08:02 +01:00
if(m_walking) {
if(direction != m_direction && m_nextWalkDirection != direction)
m_nextWalkDirection = direction;
else if(direction == m_direction && m_nextWalkDirection != Otc::InvalidDirection)
m_nextWalkDirection = Otc::InvalidDirection;
return false;
2011-12-29 08:08:02 +01:00
}
Position newPos = m_position + Position::getPosFromDirection(direction);
2011-11-05 21:34:49 +01:00
TilePtr tile = g_map.getTile(newPos);
if(!tile->isWalkable()) {
g_game.processTextMessage("statusSmall", "Sorry, not possible.");
2011-11-05 21:34:49 +01:00
return false;
}
2011-08-30 16:37:48 +02:00
return true;
2011-08-30 16:37:48 +02:00
}
2012-01-07 23:24:29 +01:00
void LocalPlayer::setAttackingCreature(const CreaturePtr& creature)
{
if(m_attackingCreature) {
m_attackingCreature->hideStaticSquare();
m_attackingCreature = nullptr;
}
if(creature) {
creature->showStaticSquare(Fw::red);
m_attackingCreature = creature;
}
}
void LocalPlayer::setFollowingCreature(const CreaturePtr& creature)
{
if(m_followingCreature) {
m_followingCreature->hideStaticSquare();
m_followingCreature = nullptr;
}
if(creature) {
creature->showStaticSquare(Fw::green);
m_followingCreature = creature;
}
}