2011-08-28 15:17:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2011 OTClient <https://github.com/edubart/otclient>
|
|
|
|
*
|
|
|
|
* 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-24 05:58:23 +02:00
|
|
|
#include "creature.h"
|
2011-08-31 17:03:33 +02:00
|
|
|
#include "thingstype.h"
|
2011-08-26 07:07:23 +02:00
|
|
|
#include "localplayer.h"
|
|
|
|
#include "map.h"
|
2011-08-31 22:22:57 +02:00
|
|
|
#include "tile.h"
|
|
|
|
#include "item.h"
|
|
|
|
|
2011-08-26 07:07:23 +02:00
|
|
|
#include <framework/platform/platform.h>
|
2011-08-15 16:11:24 +02:00
|
|
|
#include <framework/graphics/graphics.h>
|
2011-11-05 22:37:36 +01:00
|
|
|
#include <framework/core/eventdispatcher.h>
|
2011-08-29 05:05:57 +02:00
|
|
|
|
2011-08-15 16:11:24 +02:00
|
|
|
|
2011-08-31 22:22:57 +02:00
|
|
|
Creature::Creature() : Thing()
|
2011-08-15 16:11:24 +02:00
|
|
|
{
|
2011-08-15 23:02:52 +02:00
|
|
|
m_healthPercent = 0;
|
2011-08-28 18:02:26 +02:00
|
|
|
m_direction = Otc::South;
|
2011-08-26 07:07:23 +02:00
|
|
|
|
|
|
|
m_walking = false;
|
|
|
|
m_walkOffsetX = 0;
|
|
|
|
m_walkOffsetY = 0;
|
2011-08-29 02:38:26 +02:00
|
|
|
|
2011-11-01 03:35:50 +01:00
|
|
|
m_informationFont = g_fonts.getFont("verdana-11px-rounded");
|
2011-08-15 16:11:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Creature::draw(int x, int y)
|
|
|
|
{
|
2011-11-05 22:37:36 +01:00
|
|
|
if(m_walking) {
|
|
|
|
x += m_walkOffsetX;
|
|
|
|
y += m_walkOffsetY;
|
|
|
|
}
|
2011-08-26 07:07:23 +02:00
|
|
|
|
2011-08-31 17:03:33 +02:00
|
|
|
const ThingType& type = getType();
|
2011-08-29 02:38:26 +02:00
|
|
|
|
|
|
|
// Render creature
|
2011-08-31 17:03:33 +02:00
|
|
|
for(m_yPattern = 0; m_yPattern < type.yPattern; m_yPattern++) {
|
2011-08-24 05:58:23 +02:00
|
|
|
|
|
|
|
// continue if we dont have this addon.
|
2011-08-31 15:58:01 +02:00
|
|
|
if(m_yPattern > 0 && !(m_outfit.addons & (1 << (m_yPattern-1))))
|
2011-08-24 05:58:23 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// draw white item
|
2011-08-28 21:47:23 +02:00
|
|
|
internalDraw(x, y, 0);
|
2011-08-24 05:58:23 +02:00
|
|
|
|
|
|
|
// draw mask if exists
|
2011-08-31 17:03:33 +02:00
|
|
|
if(type.layers > 1) {
|
2011-08-28 20:06:47 +02:00
|
|
|
// switch to blend color mode
|
2011-08-28 18:02:26 +02:00
|
|
|
g_graphics.bindBlendFunc(Fw::BlendColorzing);
|
2011-08-19 14:26:26 +02:00
|
|
|
|
2011-08-28 20:06:47 +02:00
|
|
|
// head
|
|
|
|
g_graphics.bindColor(Otc::OutfitColors[m_outfit.head]);
|
2011-08-28 21:47:23 +02:00
|
|
|
internalDraw(x, y, 1, Otc::SpriteYellowMask);
|
2011-08-24 05:58:23 +02:00
|
|
|
|
2011-08-28 20:06:47 +02:00
|
|
|
// body
|
|
|
|
g_graphics.bindColor(Otc::OutfitColors[m_outfit.body]);
|
2011-08-28 21:47:23 +02:00
|
|
|
internalDraw(x, y, 1, Otc::SpriteRedMask);
|
2011-08-24 05:58:23 +02:00
|
|
|
|
2011-08-28 20:06:47 +02:00
|
|
|
// legs
|
|
|
|
g_graphics.bindColor(Otc::OutfitColors[m_outfit.legs]);
|
2011-08-28 21:47:23 +02:00
|
|
|
internalDraw(x, y, 1, Otc::SpriteGreenMask);
|
2011-08-24 05:58:23 +02:00
|
|
|
|
2011-08-28 20:06:47 +02:00
|
|
|
// feet
|
|
|
|
g_graphics.bindColor(Otc::OutfitColors[m_outfit.feet]);
|
2011-08-28 21:47:23 +02:00
|
|
|
internalDraw(x, y, 1, Otc::SpriteBlueMask);
|
2011-08-28 20:06:47 +02:00
|
|
|
|
|
|
|
// restore default blend func
|
|
|
|
g_graphics.bindBlendFunc(Fw::BlendDefault);
|
2011-08-28 18:02:26 +02:00
|
|
|
g_graphics.bindColor(Fw::white);
|
2011-08-24 05:58:23 +02:00
|
|
|
}
|
2011-08-19 14:26:26 +02:00
|
|
|
}
|
2011-08-21 05:21:35 +02:00
|
|
|
}
|
2011-08-19 15:23:35 +02:00
|
|
|
|
2011-11-04 05:53:00 +01:00
|
|
|
void Creature::drawInformation(int x, int y, bool useGray, const Rect& rect)
|
2011-08-21 05:21:35 +02:00
|
|
|
{
|
2011-08-21 21:09:23 +02:00
|
|
|
Color fillColor = Color(96, 96, 96);
|
|
|
|
|
2011-08-29 05:05:57 +02:00
|
|
|
if(!useGray)
|
|
|
|
fillColor = m_informationColor;
|
2011-08-19 15:23:35 +02:00
|
|
|
|
2011-11-04 05:53:00 +01:00
|
|
|
// calculate main rects
|
|
|
|
Rect backgroundRect = Rect(x-(13.5), y, 27, 4);
|
2011-11-06 05:12:13 +01:00
|
|
|
backgroundRect.bound(rect);
|
2011-11-04 05:53:00 +01:00
|
|
|
|
|
|
|
Size textSize = m_informationFont->calculateTextRectSize(m_name);
|
|
|
|
Rect textRect = Rect(x - textSize.width() / 2.0, y-15, textSize);
|
2011-11-06 05:12:13 +01:00
|
|
|
textRect.bound(rect);
|
2011-11-04 05:53:00 +01:00
|
|
|
|
|
|
|
// distance them
|
|
|
|
if(textRect.top() == rect.top())
|
|
|
|
backgroundRect.moveTop(textRect.top() + 15);
|
|
|
|
if(backgroundRect.bottom() == rect.bottom())
|
|
|
|
textRect.moveTop(backgroundRect.top() - 15);
|
|
|
|
|
|
|
|
// health rect is based on background rect, so no worries
|
2011-08-21 21:09:23 +02:00
|
|
|
Rect healthRect = backgroundRect.expanded(-1);
|
2011-11-04 05:53:00 +01:00
|
|
|
healthRect.setWidth((m_healthPercent / 100.0) * 25);
|
2011-08-20 22:30:41 +02:00
|
|
|
|
2011-11-04 05:53:00 +01:00
|
|
|
// draw
|
2011-08-28 18:02:26 +02:00
|
|
|
g_graphics.bindColor(Fw::black);
|
2011-08-21 21:09:23 +02:00
|
|
|
g_graphics.drawFilledRect(backgroundRect);
|
2011-08-20 22:30:41 +02:00
|
|
|
|
2011-08-21 21:09:23 +02:00
|
|
|
g_graphics.bindColor(fillColor);
|
|
|
|
g_graphics.drawFilledRect(healthRect);
|
2011-08-20 22:30:41 +02:00
|
|
|
|
2011-11-04 05:53:00 +01:00
|
|
|
m_informationFont->renderText(m_name, textRect, Fw::AlignTopCenter, fillColor);
|
2011-08-15 16:11:24 +02:00
|
|
|
}
|
2011-08-15 23:02:52 +02:00
|
|
|
|
2011-11-05 21:34:49 +01:00
|
|
|
void Creature::walk(const Position& position, bool inverse)
|
2011-08-26 07:07:23 +02:00
|
|
|
{
|
2011-08-26 17:44:29 +02:00
|
|
|
// set walking state
|
2011-11-05 22:01:41 +01:00
|
|
|
bool sameWalk = m_walking && !m_inverseWalking && inverse;
|
2011-08-26 07:07:23 +02:00
|
|
|
m_walking = true;
|
2011-11-05 21:34:49 +01:00
|
|
|
m_inverseWalking = inverse;
|
2011-08-29 07:54:28 +02:00
|
|
|
int walkTimeFactor = 1;
|
2011-08-26 17:44:29 +02:00
|
|
|
|
|
|
|
// set new direction
|
2011-08-30 16:37:48 +02:00
|
|
|
if(m_position + Position(0, -1, 0) == position) {
|
2011-11-06 22:45:42 +01:00
|
|
|
setDirection(Otc::North);
|
2011-08-26 17:44:29 +02:00
|
|
|
m_walkOffsetY = 32;
|
|
|
|
}
|
2011-08-30 16:37:48 +02:00
|
|
|
else if(m_position + Position(1, 0, 0) == position) {
|
2011-11-06 22:45:42 +01:00
|
|
|
setDirection(Otc::East);
|
2011-08-26 17:44:29 +02:00
|
|
|
m_walkOffsetX = -32;
|
|
|
|
}
|
2011-08-30 16:37:48 +02:00
|
|
|
else if(m_position + Position(0, 1, 0) == position) {
|
2011-11-06 22:45:42 +01:00
|
|
|
setDirection(Otc::South);
|
2011-08-26 17:44:29 +02:00
|
|
|
m_walkOffsetY = -32;
|
|
|
|
}
|
2011-08-30 16:37:48 +02:00
|
|
|
else if(m_position + Position(-1, 0, 0) == position) {
|
2011-11-06 22:45:42 +01:00
|
|
|
setDirection(Otc::West);
|
2011-08-26 17:44:29 +02:00
|
|
|
m_walkOffsetX = 32;
|
|
|
|
}
|
2011-08-30 16:37:48 +02:00
|
|
|
else if(m_position + Position(1, -1, 0) == position) {
|
2011-11-06 22:45:42 +01:00
|
|
|
setDirection(Otc::NorthEast);
|
2011-08-29 07:54:28 +02:00
|
|
|
m_walkOffsetX = -32;
|
|
|
|
m_walkOffsetY = 32;
|
|
|
|
walkTimeFactor = 2;
|
|
|
|
}
|
2011-08-30 16:37:48 +02:00
|
|
|
else if(m_position + Position(1, 1, 0) == position) {
|
2011-11-06 22:45:42 +01:00
|
|
|
setDirection(Otc::SouthEast);
|
2011-08-29 07:54:28 +02:00
|
|
|
m_walkOffsetX = -32;
|
|
|
|
m_walkOffsetY = -32;
|
|
|
|
walkTimeFactor = 2;
|
|
|
|
}
|
2011-08-30 16:37:48 +02:00
|
|
|
else if(m_position + Position(-1, 1, 0) == position) {
|
2011-11-06 22:45:42 +01:00
|
|
|
setDirection(Otc::SouthWest);
|
2011-08-29 07:54:28 +02:00
|
|
|
m_walkOffsetX = 32;
|
|
|
|
m_walkOffsetY = -32;
|
|
|
|
walkTimeFactor = 2;
|
|
|
|
}
|
2011-08-30 16:37:48 +02:00
|
|
|
else if(m_position + Position(-1, -1, 0) == position) {
|
2011-11-06 22:45:42 +01:00
|
|
|
setDirection(Otc::NorthWest);
|
2011-08-29 07:54:28 +02:00
|
|
|
m_walkOffsetX = 32;
|
|
|
|
m_walkOffsetY = 32;
|
|
|
|
walkTimeFactor = 2;
|
|
|
|
}
|
2011-08-26 07:07:23 +02:00
|
|
|
else { // Teleport
|
2011-08-26 17:44:29 +02:00
|
|
|
// we teleported, dont walk or change direction
|
2011-08-26 07:07:23 +02:00
|
|
|
m_walking = false;
|
2011-11-05 22:37:36 +01:00
|
|
|
m_walkOffsetX = 0;
|
|
|
|
m_walkOffsetY = 0;
|
|
|
|
m_animation = 0;
|
2011-08-26 07:07:23 +02:00
|
|
|
}
|
2011-08-26 17:44:29 +02:00
|
|
|
|
2011-11-05 21:34:49 +01:00
|
|
|
if(!m_inverseWalking) {
|
|
|
|
m_walkOffsetX = 0;
|
|
|
|
m_walkOffsetY = 0;
|
|
|
|
}
|
2011-08-29 07:54:28 +02:00
|
|
|
|
2011-08-30 16:37:48 +02:00
|
|
|
if(m_walking) {
|
|
|
|
// get walk speed
|
2011-11-05 22:01:41 +01:00
|
|
|
int groundSpeed = 100;
|
2011-08-26 17:44:29 +02:00
|
|
|
|
2011-09-01 00:08:55 +02:00
|
|
|
ItemPtr ground = g_map.getTile(position)->getGround();
|
2011-08-30 16:37:48 +02:00
|
|
|
if(ground)
|
2011-08-31 17:03:33 +02:00
|
|
|
groundSpeed = ground->getType().groundSpeed;
|
2011-08-26 17:44:29 +02:00
|
|
|
|
2011-08-30 16:37:48 +02:00
|
|
|
float walkTime = walkTimeFactor * 1000.0 * (float)groundSpeed / m_speed;
|
2011-11-05 22:01:41 +01:00
|
|
|
walkTime = (walkTime == 0) ? 1000 : walkTime;
|
2011-08-29 02:38:26 +02:00
|
|
|
|
2011-08-30 16:37:48 +02:00
|
|
|
m_walkTimePerPixel = walkTime / 32.0;
|
2011-11-05 22:01:41 +01:00
|
|
|
if(!sameWalk)
|
|
|
|
m_walkStartTicks = g_platform.getTicks();
|
2011-11-05 22:43:13 +01:00
|
|
|
updateWalk();
|
2011-11-05 22:37:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Creature::updateWalk()
|
|
|
|
{
|
|
|
|
const ThingType& type = getType();
|
|
|
|
if(m_walking) {
|
|
|
|
int elapsedTicks = g_platform.getTicks() - m_walkStartTicks;
|
|
|
|
int totalPixelsWalked = std::min((int)std::round(elapsedTicks / m_walkTimePerPixel), 32);
|
|
|
|
|
|
|
|
if(m_inverseWalking) {
|
|
|
|
if(m_direction == Otc::North || m_direction == Otc::NorthEast || m_direction == Otc::NorthWest)
|
|
|
|
m_walkOffsetY = 32 - totalPixelsWalked;
|
|
|
|
else if(m_direction == Otc::South || m_direction == Otc::SouthEast || m_direction == Otc::SouthWest)
|
|
|
|
m_walkOffsetY = totalPixelsWalked - 32;
|
|
|
|
|
|
|
|
if(m_direction == Otc::East || m_direction == Otc::NorthEast || m_direction == Otc::SouthEast)
|
|
|
|
m_walkOffsetX = totalPixelsWalked - 32;
|
|
|
|
else if(m_direction == Otc::West || m_direction == Otc::NorthWest || m_direction == Otc::SouthWest)
|
|
|
|
m_walkOffsetX = 32 - totalPixelsWalked;
|
|
|
|
|
|
|
|
if(m_walkOffsetX == 0 && m_walkOffsetY == 0)
|
|
|
|
cancelWalk(m_direction);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(m_direction == Otc::North || m_direction == Otc::NorthEast || m_direction == Otc::NorthWest)
|
|
|
|
m_walkOffsetY = -totalPixelsWalked;
|
|
|
|
else if(m_direction == Otc::South || m_direction == Otc::SouthEast || m_direction == Otc::SouthWest)
|
|
|
|
m_walkOffsetY = totalPixelsWalked;
|
|
|
|
|
|
|
|
if(m_direction == Otc::East || m_direction == Otc::NorthEast || m_direction == Otc::SouthEast)
|
|
|
|
m_walkOffsetX = totalPixelsWalked;
|
|
|
|
else if(m_direction == Otc::West || m_direction == Otc::NorthWest || m_direction == Otc::SouthWest)
|
|
|
|
m_walkOffsetX = -totalPixelsWalked;
|
|
|
|
}
|
|
|
|
|
2011-11-06 05:12:13 +01:00
|
|
|
int totalWalkTileTicks = (int)m_walkTimePerPixel*32 * 0.5;
|
2011-11-05 22:37:36 +01:00
|
|
|
m_animation = (g_platform.getTicks() % totalWalkTileTicks) / (totalWalkTileTicks / (type.animationPhases - 1)) + 1;
|
|
|
|
g_dispatcher.scheduleEvent(std::bind(&Creature::updateWalk, asCreature()), m_walkTimePerPixel);
|
|
|
|
|
|
|
|
if(totalPixelsWalked == 32)
|
|
|
|
cancelWalk(m_direction);
|
2011-08-30 16:37:48 +02:00
|
|
|
}
|
|
|
|
}
|
2011-08-29 02:38:26 +02:00
|
|
|
|
2011-08-30 16:37:48 +02:00
|
|
|
void Creature::cancelWalk(Otc::Direction direction)
|
|
|
|
{
|
|
|
|
m_walking = false;
|
2011-11-05 22:37:36 +01:00
|
|
|
m_walkStartTicks = 0;
|
2011-08-30 16:37:48 +02:00
|
|
|
m_walkOffsetX = 0;
|
|
|
|
m_walkOffsetY = 0;
|
|
|
|
m_direction = direction;
|
2011-11-05 22:43:13 +01:00
|
|
|
|
|
|
|
auto self = asCreature();
|
|
|
|
g_dispatcher.scheduleEvent([=]() {
|
|
|
|
if(!self->m_walking)
|
|
|
|
self->m_animation = 0;
|
2011-11-06 05:12:13 +01:00
|
|
|
}, m_walkTimePerPixel * 2);
|
2011-08-26 07:07:23 +02:00
|
|
|
}
|
|
|
|
|
2011-08-29 05:05:57 +02:00
|
|
|
void Creature::setHealthPercent(uint8 healthPercent)
|
|
|
|
{
|
|
|
|
int oldHealthPercent = m_healthPercent;
|
|
|
|
m_healthPercent = healthPercent;
|
|
|
|
onHealthPercentChange(oldHealthPercent);
|
|
|
|
}
|
|
|
|
|
2011-11-06 22:45:42 +01:00
|
|
|
void Creature::setDirection(Otc::Direction direction)
|
|
|
|
{
|
|
|
|
Otc::Direction oldDirection = m_direction;
|
|
|
|
m_direction = direction;
|
|
|
|
onDirectionChange(oldDirection);
|
|
|
|
}
|
|
|
|
|
2011-08-31 17:03:33 +02:00
|
|
|
const ThingType& Creature::getType()
|
2011-08-15 23:02:52 +02:00
|
|
|
{
|
2011-08-31 17:03:33 +02:00
|
|
|
return g_thingsType.getCreatureType(m_outfit.type);
|
2011-08-15 23:02:52 +02:00
|
|
|
}
|
2011-08-29 05:05:57 +02:00
|
|
|
|
|
|
|
void Creature::onHealthPercentChange(int)
|
|
|
|
{
|
|
|
|
m_informationColor = Fw::black;
|
|
|
|
|
|
|
|
if(m_healthPercent > 92) {
|
|
|
|
m_informationColor.setGreen(188);
|
|
|
|
}
|
|
|
|
else if(m_healthPercent > 60) {
|
|
|
|
m_informationColor.setRed(80);
|
|
|
|
m_informationColor.setGreen(161);
|
|
|
|
m_informationColor.setBlue(80);
|
|
|
|
}
|
|
|
|
else if(m_healthPercent > 30) {
|
|
|
|
m_informationColor.setRed(161);
|
|
|
|
m_informationColor.setGreen(161);
|
|
|
|
}
|
|
|
|
else if(m_healthPercent > 8) {
|
|
|
|
m_informationColor.setRed(160);
|
|
|
|
m_informationColor.setGreen(39);
|
|
|
|
m_informationColor.setBlue(39);
|
|
|
|
}
|
|
|
|
else if(m_healthPercent > 3) {
|
|
|
|
m_informationColor.setRed(160);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_informationColor.setRed(79);
|
|
|
|
}
|
|
|
|
}
|
2011-11-06 22:45:42 +01:00
|
|
|
|
|
|
|
void Creature::onDirectionChange(Otc::Direction)
|
|
|
|
{
|
|
|
|
if(m_direction >= 4) {
|
|
|
|
if(m_direction == Otc::NorthEast || m_direction == Otc::SouthEast)
|
|
|
|
m_xPattern = Otc::East;
|
|
|
|
else if(m_direction == Otc::NorthWest || m_direction == Otc::SouthWest)
|
|
|
|
m_xPattern = Otc::West;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_xPattern = m_direction;
|
|
|
|
}
|
|
|
|
}
|