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

167 lines
5.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 "item.h"
2011-08-31 17:03:33 +02:00
#include "thingstype.h"
2011-08-15 21:15:49 +02:00
#include "spritemanager.h"
2011-08-15 16:11:24 +02:00
#include "thing.h"
#include <framework/core/clock.h>
2011-12-27 03:18:15 +01:00
#include <framework/core/eventdispatcher.h>
2011-08-15 16:11:24 +02:00
2011-08-31 22:22:57 +02:00
Item::Item() : Thing()
2011-08-15 16:11:24 +02:00
{
2012-01-23 14:47:15 +01:00
m_data = 1;
2011-08-15 16:11:24 +02:00
}
2012-01-09 06:23:39 +01:00
ItemPtr Item::create(int id)
{
ItemPtr item = ItemPtr(new Item);
item->setId(id);
return item;
}
2012-01-05 19:34:37 +01:00
void Item::draw(const Point& p, const Rect&)
2011-08-28 21:51:34 +02:00
{
2011-12-02 03:29:05 +01:00
if(m_type->dimensions[ThingType::AnimationPhases] > 1)
m_animation = (g_clock.ticks() % (TICKS_PER_FRAME * m_type->dimensions[ThingType::AnimationPhases])) / TICKS_PER_FRAME;
2011-08-28 21:51:34 +02:00
2012-01-10 01:36:18 +01:00
for(int l = 0; l < m_type->dimensions[ThingType::Layers]; l++)
internalDraw(p, l);
2011-08-28 21:51:34 +02:00
}
void Item::setPos(const Position& position)
2011-08-28 21:47:23 +02:00
{
2011-12-02 03:29:05 +01:00
if(m_type->properties[ThingType::IsGround]) {
m_xPattern = position.x % m_type->dimensions[ThingType::PatternX];
m_yPattern = position.y % m_type->dimensions[ThingType::PatternY];
m_zPattern = position.z % m_type->dimensions[ThingType::PatternZ];
2011-08-25 15:30:46 +02:00
}
2011-11-13 09:46:19 +01:00
Thing::setPos(position);
2011-08-28 21:47:23 +02:00
}
2011-08-15 16:11:24 +02:00
2011-11-13 09:46:19 +01:00
void Item::setData(int data)
2011-08-28 21:47:23 +02:00
{
2011-12-02 03:29:05 +01:00
if(m_type->properties[ThingType::IsStackable] && m_type->dimensions[ThingType::PatternX] == 4 && m_type->dimensions[ThingType::PatternY] == 2) {
2011-11-13 09:46:19 +01:00
if(data < 5) {
m_xPattern = data-1;
2011-08-31 15:58:01 +02:00
m_yPattern = 0;
2011-08-24 05:58:23 +02:00
}
2011-11-13 09:46:19 +01:00
else if(data < 10) {
2011-08-31 15:58:01 +02:00
m_xPattern = 0;
m_yPattern = 1;
2011-08-24 05:58:23 +02:00
}
2011-11-13 09:46:19 +01:00
else if(data < 25) {
2011-08-31 15:58:01 +02:00
m_xPattern = 1;
m_yPattern = 1;
2011-08-24 05:58:23 +02:00
}
2011-11-13 09:46:19 +01:00
else if(data < 50) {
2011-08-31 15:58:01 +02:00
m_xPattern = 2;
m_yPattern = 1;
2011-08-24 05:58:23 +02:00
}
2011-11-13 09:46:19 +01:00
else if(data <= 100) {
2011-08-31 15:58:01 +02:00
m_xPattern = 3;
m_yPattern = 1;
2011-08-24 05:58:23 +02:00
}
2011-08-15 16:11:24 +02:00
}
2011-12-02 03:29:05 +01:00
else if(m_type->properties[ThingType::IsHangable]) {
if(m_type->properties[ThingType::HookSouth]) {
m_xPattern = m_type->dimensions[ThingType::PatternX] >= 2 ? 1 : 0;
2011-11-08 02:44:30 +01:00
}
2011-12-02 03:29:05 +01:00
else if(m_type->properties[ThingType::HookEast]) {
m_xPattern = m_type->dimensions[ThingType::PatternX] >= 3 ? 2 : 0;
2011-11-08 02:44:30 +01:00
}
}
2011-12-02 03:29:05 +01:00
else if(m_type->properties[ThingType::IsFluid] || m_type->properties[ThingType::IsFluidContainer]) {
2012-01-25 01:00:09 +01:00
int color = Otc::FluidTransparent;
2011-11-13 09:46:19 +01:00
switch(data) {
2012-01-25 01:00:09 +01:00
case Otc::FluidNone:
color = Otc::FluidTransparent;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidWater:
color = Otc::FluidBlue;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidMana:
color = Otc::FluidPurple;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidBeer:
color = Otc::FluidBrown;
2011-11-08 02:44:30 +01:00
break;
2012-01-25 01:00:09 +01:00
case Otc::FluidOil:
color = Otc::FluidBrown;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidBlood:
color = Otc::FluidRed;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidSlime:
color = Otc::FluidGreen;
2011-11-08 02:44:30 +01:00
break;
2012-01-25 01:00:09 +01:00
case Otc::FluidMud:
color = Otc::FluidBrown;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidLemonade:
color = Otc::FluidYellow;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidMilk:
color = Otc::FluidWhite;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidWine:
color = Otc::FluidPurple;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidHealth:
color = Otc::FluidRed;
2011-11-08 02:44:30 +01:00
break;
2012-01-25 01:00:09 +01:00
case Otc::FluidUrine:
color = Otc::FluidYellow;
2011-11-08 02:44:30 +01:00
break;
2012-01-25 01:00:09 +01:00
case Otc::FluidRum:
color = Otc::FluidBrown;
2011-11-08 02:44:30 +01:00
break;
2012-01-25 01:00:09 +01:00
case Otc::FluidFruidJuice:
color = Otc::FluidYellow;
2011-11-08 02:44:30 +01:00
break;
case Otc::FluidCoconutMilk:
color = Otc::FluidWhite;
2011-11-08 02:44:30 +01:00
break;
2012-01-25 01:00:09 +01:00
case Otc::FluidTea:
color = Otc::FluidBrown;
2011-11-08 02:44:30 +01:00
break;
2012-01-25 01:00:09 +01:00
case Otc::FluidMead:
color = Otc::FluidBrown;
2011-11-08 02:44:30 +01:00
break;
default:
2012-01-25 01:00:09 +01:00
color = Otc::FluidTransparent;
2011-11-08 02:44:30 +01:00
break;
}
2011-12-02 03:29:05 +01:00
m_xPattern = (color % 4) % m_type->dimensions[ThingType::PatternX];
m_yPattern = (color / 4) % m_type->dimensions[ThingType::PatternY];
2011-11-08 02:44:30 +01:00
}
2011-11-13 09:46:19 +01:00
m_data = data;
}
2011-12-02 03:29:05 +01:00
ThingType *Item::getType()
2011-11-13 09:46:19 +01:00
{
return g_thingsType.getThingType(m_id, ThingsType::Item);
2011-08-28 21:47:23 +02:00
}