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
|
|
|
|
2012-01-15 22:19:52 +01:00
|
|
|
void LocalPlayer::preWalk(Otc::Direction direction)
|
2011-08-30 16:37:48 +02:00
|
|
|
{
|
2012-01-15 22:19:52 +01:00
|
|
|
// we're not walking, so start a client walk.
|
|
|
|
Position newPos = m_pos + Position::getPosFromDirection(direction);
|
|
|
|
walk(m_pos, newPos, true);
|
2011-11-05 21:34:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool LocalPlayer::canWalk(Otc::Direction direction)
|
|
|
|
{
|
2012-01-15 22:19:52 +01:00
|
|
|
if(m_walking || (m_preWalking && g_clock.ticksElapsed(m_walkEnd) < 1000))
|
2011-11-06 22:08:36 +01:00
|
|
|
return false;
|
|
|
|
|
2012-01-15 22:19:52 +01:00
|
|
|
// check for blockable tiles in the walk direction
|
|
|
|
TilePtr tile = g_map.getTile(m_pos + Position::getPosFromDirection(direction));
|
2012-01-17 06:36:25 +01:00
|
|
|
if(!tile)
|
|
|
|
return false;
|
|
|
|
|
2011-11-05 21:34:49 +01:00
|
|
|
if(!tile->isWalkable()) {
|
2012-01-08 19:29:41 +01:00
|
|
|
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
|
|
|
|
2011-11-06 22:08:36 +01: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)
|
|
|
|
{
|
2012-01-15 22:19:52 +01:00
|
|
|
// clear current attacking creature
|
2012-01-07 23:24:29 +01:00
|
|
|
if(m_attackingCreature) {
|
|
|
|
m_attackingCreature->hideStaticSquare();
|
|
|
|
m_attackingCreature = nullptr;
|
|
|
|
}
|
|
|
|
|
2012-01-15 22:19:52 +01:00
|
|
|
// set the new attacking creature
|
2012-01-07 23:24:29 +01:00
|
|
|
if(creature) {
|
|
|
|
creature->showStaticSquare(Fw::red);
|
|
|
|
m_attackingCreature = creature;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalPlayer::setFollowingCreature(const CreaturePtr& creature)
|
|
|
|
{
|
2012-01-15 22:19:52 +01:00
|
|
|
// clear current following creature
|
2012-01-07 23:24:29 +01:00
|
|
|
if(m_followingCreature) {
|
|
|
|
m_followingCreature->hideStaticSquare();
|
|
|
|
m_followingCreature = nullptr;
|
|
|
|
}
|
|
|
|
|
2012-01-15 22:19:52 +01:00
|
|
|
// set the new attacking creature
|
2012-01-07 23:24:29 +01:00
|
|
|
if(creature) {
|
|
|
|
creature->showStaticSquare(Fw::green);
|
|
|
|
m_followingCreature = creature;
|
|
|
|
}
|
|
|
|
}
|