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"
|
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-09 06:23:39 +01:00
|
|
|
m_id = 0;
|
2011-08-31 15:58:01 +02:00
|
|
|
m_xPattern = 0;
|
|
|
|
m_yPattern = 0;
|
|
|
|
m_zPattern = 0;
|
2011-08-28 21:47:23 +02:00
|
|
|
m_animation = 0;
|
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
|
|
|
|
2012-01-09 06:23:39 +01:00
|
|
|
void Thing::setId(uint32 id)
|
2011-12-02 03:29:05 +01:00
|
|
|
{
|
|
|
|
m_id = id;
|
2012-01-30 01:00:12 +01:00
|
|
|
updateType();
|
2011-12-02 03:29:05 +01: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
|
|
|
}
|
|
|
|
|
2012-01-30 01:00:12 +01:00
|
|
|
const TilePtr& Thing::getCurrentTile()
|
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
|
|
|
|
2012-01-30 01:00:12 +01:00
|
|
|
void Thing::internalDraw(const Point& dest, float scaleFactor, int layer)
|
|
|
|
{
|
|
|
|
int scaledSize = Otc::TILE_PIXELS * scaleFactor;
|
2012-01-04 14:02:35 +01:00
|
|
|
|
2012-01-30 01:00:12 +01:00
|
|
|
for(int h = 0; h < getDimensionHeight(); h++) {
|
|
|
|
for(int w = 0; w < getDimensionWidth(); w++) {
|
|
|
|
int spriteId = getSpriteId(w, h, layer, m_xPattern, m_yPattern, m_zPattern, m_animation);
|
|
|
|
if(!spriteId)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
TexturePtr spriteTex = g_sprites.getSpriteTexture(spriteId);
|
|
|
|
Rect drawRect((dest.x - w*scaledSize) - getDisplacementX()*scaleFactor,
|
|
|
|
(dest.y - h*scaledSize) - getDisplacementY()*scaleFactor,
|
|
|
|
scaledSize, scaledSize);
|
2012-01-30 22:28:08 +01:00
|
|
|
|
|
|
|
g_painter.setColor(Fw::white);
|
2012-01-30 01:00:12 +01:00
|
|
|
g_painter.drawTexturedRect(drawRect, spriteTex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Thing::updateType()
|
|
|
|
{
|
|
|
|
if(CreaturePtr creature = asCreature())
|
|
|
|
m_type = g_thingsType.getThingType(creature->getOutfit().getId(), creature->getOutfit().getCategory());
|
|
|
|
else if(asItem())
|
|
|
|
m_type = g_thingsType.getThingType(m_id, ThingsType::Item);
|
|
|
|
else if(asMissile())
|
|
|
|
m_type = g_thingsType.getThingType(m_id, ThingsType::Missile);
|
|
|
|
else if(asEffect())
|
|
|
|
m_type = g_thingsType.getThingType(m_id, ThingsType::Effect);
|
|
|
|
else
|
|
|
|
m_type = g_thingsType.getEmptyThingType();
|
|
|
|
}
|