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"
|
2011-12-01 23:25:32 +01:00
|
|
|
#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
|
|
|
{
|
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-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-01-30 19:18:10 +01:00
|
|
|
void Item::setData(uint8 data)
|
2011-08-28 21:47:23 +02:00
|
|
|
{
|
2012-01-30 01:00:12 +01:00
|
|
|
if(isStackable() && getNumPatternsX() == 4 && getNumPatternsY() == 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
|
|
|
}
|
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;
|
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;
|
2011-11-30 19:59:36 +01:00
|
|
|
case Otc::FluidWater:
|
|
|
|
color = Otc::FluidBlue;
|
2011-11-08 02:44:30 +01:00
|
|
|
break;
|
2011-11-30 19:59:36 +01:00
|
|
|
case Otc::FluidMana:
|
|
|
|
color = Otc::FluidPurple;
|
2011-11-08 02:44:30 +01:00
|
|
|
break;
|
2011-11-30 19:59:36 +01:00
|
|
|
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;
|
2011-11-30 19:59:36 +01:00
|
|
|
case Otc::FluidBlood:
|
|
|
|
color = Otc::FluidRed;
|
2011-11-08 02:44:30 +01:00
|
|
|
break;
|
2011-11-30 19:59:36 +01:00
|
|
|
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;
|
2011-11-30 19:59:36 +01:00
|
|
|
case Otc::FluidLemonade:
|
|
|
|
color = Otc::FluidYellow;
|
2011-11-08 02:44:30 +01:00
|
|
|
break;
|
2011-11-30 19:59:36 +01:00
|
|
|
case Otc::FluidMilk:
|
|
|
|
color = Otc::FluidWhite;
|
2011-11-08 02:44:30 +01:00
|
|
|
break;
|
2011-11-30 19:59:36 +01:00
|
|
|
case Otc::FluidWine:
|
|
|
|
color = Otc::FluidPurple;
|
2011-11-08 02:44:30 +01:00
|
|
|
break;
|
2011-11-30 19:59:36 +01:00
|
|
|
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;
|
2011-11-30 19:59:36 +01:00
|
|
|
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_data = data;
|
|
|
|
}
|