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

182 lines
5.5 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>
2012-01-30 01:00:12 +01:00
#include <framework/graphics/graphics.h>
#include <framework/graphics/paintershaderprogram.h>
#include <framework/graphics/paintershadersources.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
{
m_count = 1;
2011-08-15 16:11:24 +02:00
}
2012-01-09 06:23:39 +01:00
ItemPtr Item::create(int id)
{
2012-02-01 04:47:00 +01:00
if(id < g_thingsType.getFirstItemId() || id > g_thingsType.getMaxItemid()) {
logTraceError("invalid item id ", id);
return nullptr;
}
2012-01-09 06:23:39 +01:00
ItemPtr item = ItemPtr(new Item);
item->setId(id);
return item;
}
2012-01-30 01:00:12 +01:00
PainterShaderProgramPtr itemProgram;
void Item::draw(const Point& dest, float scaleFactor)
2011-08-28 21:51:34 +02:00
{
2012-01-30 01:00:12 +01:00
if(getAnimationPhases() > 1)
m_animation = (g_clock.ticks() % (Otc::ITEM_TICKS_PER_FRAME * getAnimationPhases())) / Otc::ITEM_TICKS_PER_FRAME;
if(!itemProgram) {
itemProgram = PainterShaderProgramPtr(new PainterShaderProgram);
itemProgram->addShaderFromSourceCode(Shader::Vertex, glslMainWithTexCoordsVertexShader + glslPositionOnlyVertexShader);
itemProgram->addShaderFromSourceFile(Shader::Fragment, "/game_shaders/item.frag");
assert(itemProgram->link());
}
g_painter.setCustomProgram(itemProgram);
2011-08-28 21:51:34 +02:00
2012-01-30 01:00:12 +01:00
for(int layer = 0; layer < getLayers(); layer++)
internalDraw(dest, scaleFactor, layer);
g_painter.releaseCustomProgram();
2011-08-28 21:51:34 +02:00
}
2012-01-30 01:00:12 +01:00
void Item::setPosition(const Position& position)
2011-08-28 21:47:23 +02:00
{
2012-01-30 01:00:12 +01:00
if(isGround()) {
m_xPattern = position.x % getNumPatternsX();
m_yPattern = position.y % getNumPatternsY();
m_zPattern = position.z % getNumPatternsZ();
2011-08-25 15:30:46 +02:00
}
2011-11-13 09:46:19 +01:00
2012-01-30 01:00:12 +01:00
Thing::setPosition(position);
2011-08-28 21:47:23 +02:00
}
2011-08-15 16:11:24 +02:00
2012-02-02 15:07:02 +01:00
void Item::setCount(int count)
2011-08-28 21:47:23 +02:00
{
2012-02-02 15:07:02 +01:00
count = std::max(std::min(count, 255), 0);
2012-01-30 01:00:12 +01:00
if(isStackable() && getNumPatternsX() == 4 && getNumPatternsY() == 2) {
if(count < 5) {
m_xPattern = count-1;
2011-08-31 15:58:01 +02:00
m_yPattern = 0;
2011-08-24 05:58:23 +02:00
}
else if(count < 10) {
2011-08-31 15:58:01 +02:00
m_xPattern = 0;
m_yPattern = 1;
2011-08-24 05:58:23 +02:00
}
else if(count < 25) {
2011-08-31 15:58:01 +02:00
m_xPattern = 1;
m_yPattern = 1;
2011-08-24 05:58:23 +02:00
}
else if(count < 50) {
2011-08-31 15:58:01 +02:00
m_xPattern = 2;
m_yPattern = 1;
2011-08-24 05:58:23 +02:00
}
else if(count <= 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
}
2012-01-30 01:00:12 +01:00
else if(isHangable()) {
if(isHookSouth()) {
m_xPattern = getNumPatternsX() >= 2 ? 1 : 0;
2011-11-08 02:44:30 +01:00
}
2012-01-30 01:00:12 +01:00
else if(isHookEast()) {
m_xPattern = getNumPatternsX() >= 3 ? 2 : 0;
2011-11-08 02:44:30 +01:00
}
}
2012-01-30 01:00:12 +01:00
else if(isFluid() || isFluidContainer()) {
2012-01-25 01:00:09 +01:00
int color = Otc::FluidTransparent;
switch(count) {
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;
}
2012-01-30 01:00:12 +01:00
m_xPattern = (color % 4) % getNumPatternsX();
m_yPattern = (color / 4) % getNumPatternsY();
2011-11-08 02:44:30 +01:00
}
2011-11-13 09:46:19 +01:00
m_count = count;
2011-11-13 09:46:19 +01:00
}