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

77 lines
2.2 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 16:11:24 +02:00
#include "thing.h"
2011-08-15 21:15:49 +02:00
#include "spritemanager.h"
2011-12-02 04:01:56 +01:00
#include "thingstype.h"
2011-08-15 16:11:24 +02:00
#include <framework/graphics/graphics.h>
2012-01-30 01:00:12 +01:00
#include "map.h"
2012-02-02 21:10:14 +01:00
#include "tile.h"
#include "game.h"
2011-08-15 16:11:24 +02:00
2012-01-09 06:23:39 +01:00
Thing::Thing()
2011-08-16 02:30:31 +02:00
{
2012-01-30 01:00:12 +01:00
m_type = g_thingsType.getEmptyThingType();
2011-08-15 16:11:24 +02:00
}
2011-08-31 22:22:57 +02:00
int Thing::getStackPriority()
{
2012-01-30 01:00:12 +01:00
if(isGround())
2011-08-31 22:22:57 +02:00
return 0;
2012-01-30 01:00:12 +01:00
else if(isGroundBorder())
2011-08-31 22:22:57 +02:00
return 1;
2012-01-30 01:00:12 +01:00
else if(isOnBottom())
2011-08-31 22:22:57 +02:00
return 2;
2012-01-30 01:00:12 +01:00
else if(isOnTop())
2011-08-31 22:22:57 +02:00
return 3;
else if(asCreature())
return 4;
2012-01-30 01:00:12 +01:00
else // common items
return 5;
2011-08-31 22:22:57 +02:00
}
const TilePtr& Thing::getTile()
2011-12-26 12:53:16 +01:00
{
2012-01-30 01:00:12 +01:00
return g_map.getTile(m_position);
2011-12-26 12:53:16 +01:00
}
2012-01-03 00:08:04 +01:00
ContainerPtr Thing::getParentContainer()
{
if(m_position.x == 0xffff && m_position.y & 0x40) {
int containerId = m_position.y ^ 0x40;
return g_game.getContainer(containerId);
}
return nullptr;
}
2012-02-02 21:10:14 +01:00
int Thing::getStackpos()
2012-01-30 01:00:12 +01:00
{
2012-02-07 04:33:36 +01:00
if(m_position.x == 65535 && asItem()) // is inside a container
return 0;
else if(const TilePtr& tile = getTile())
2012-02-02 21:10:14 +01:00
return tile->getThingStackpos(asThing());
2012-02-07 04:33:36 +01:00
else {
logTraceError("got a thing with invalid stackpos");
return -1;
}
2012-02-02 21:10:14 +01:00
}