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-15 16:11:24 +02:00
|
|
|
#ifndef CREATURE_H
|
|
|
|
#define CREATURE_H
|
|
|
|
|
|
|
|
#include "thing.h"
|
2011-08-29 05:05:57 +02:00
|
|
|
#include <framework/graphics/fontmanager.h>
|
2011-08-15 16:11:24 +02:00
|
|
|
|
2011-08-29 16:14:21 +02:00
|
|
|
//TODO: create Outfit class and move to a separate file
|
2011-08-15 23:02:52 +02:00
|
|
|
struct Outfit {
|
2011-08-15 16:11:24 +02:00
|
|
|
uint16 type;
|
|
|
|
uint8 head;
|
|
|
|
uint8 body;
|
|
|
|
uint8 legs;
|
|
|
|
uint8 feet;
|
|
|
|
uint8 addons;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Creature : public Thing
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Creature();
|
2011-08-15 23:02:52 +02:00
|
|
|
virtual ~Creature() { }
|
2011-08-15 16:11:24 +02:00
|
|
|
|
2011-08-15 23:02:52 +02:00
|
|
|
virtual void draw(int x, int y);
|
2011-08-21 21:09:23 +02:00
|
|
|
void drawInformation(int x, int y, bool useGray);
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
void setName(const std::string& name) { m_name = name; }
|
2011-08-29 05:05:57 +02:00
|
|
|
void setHealthPercent(uint8 healthPercent);
|
2011-08-28 18:02:26 +02:00
|
|
|
void setDirection(Otc::Direction direction) { m_direction = direction; }
|
2011-08-15 23:02:52 +02:00
|
|
|
void setOutfit(const Outfit& outfit) { m_outfit = outfit; }
|
2011-08-17 06:45:55 +02:00
|
|
|
void setLight(const Light& light) { m_light = light; }
|
|
|
|
void setSpeed(uint16 speed) { m_speed = speed; }
|
|
|
|
void setSkull(uint8 skull) { m_skull = skull; }
|
|
|
|
void setShield(uint8 shield) { m_shield = shield; }
|
|
|
|
void setEmblem(uint8 emblem) { m_emblem = emblem; }
|
|
|
|
void setImpassable(bool impassable) { m_impassable = impassable; }
|
2011-08-15 16:11:24 +02:00
|
|
|
|
2011-08-15 23:02:52 +02:00
|
|
|
std::string getName() { return m_name; }
|
|
|
|
uint8 getHealthPercent() { return m_healthPercent; }
|
2011-08-28 18:02:26 +02:00
|
|
|
Otc::Direction getDirection() { return m_direction; }
|
2011-08-17 06:45:55 +02:00
|
|
|
Outfit getOutfit() { return m_outfit; }
|
|
|
|
Light getLight() { return m_light; }
|
|
|
|
uint16 getSpeed() { return m_speed; }
|
|
|
|
uint8 getSkull() { return m_skull; }
|
|
|
|
uint8 getShield() { return m_shield; }
|
|
|
|
uint8 getEmblem() { return m_emblem; }
|
|
|
|
bool getImpassable() { return m_impassable; }
|
2011-08-29 05:05:57 +02:00
|
|
|
const ThingAttributes& getAttributes();
|
|
|
|
|
|
|
|
void onHealthPercentChange(int);
|
2011-08-17 06:45:55 +02:00
|
|
|
|
2011-08-26 07:07:23 +02:00
|
|
|
void walk(const Position& position);
|
2011-08-29 02:38:26 +02:00
|
|
|
int getWalkOffsetX() { return m_walkOffsetX; }
|
|
|
|
int getWalkOffsetY() { return m_walkOffsetY; }
|
2011-08-26 07:07:23 +02:00
|
|
|
|
2011-08-15 23:02:52 +02:00
|
|
|
CreaturePtr asCreature() { return std::static_pointer_cast<Creature>(shared_from_this()); }
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string m_name;
|
|
|
|
uint8 m_healthPercent;
|
2011-08-28 18:02:26 +02:00
|
|
|
Otc::Direction m_direction;
|
2011-08-15 16:11:24 +02:00
|
|
|
Outfit m_outfit;
|
2011-08-17 06:45:55 +02:00
|
|
|
Light m_light;
|
|
|
|
uint16 m_speed;
|
|
|
|
uint8 m_skull;
|
|
|
|
uint8 m_shield;
|
|
|
|
uint8 m_emblem;
|
|
|
|
bool m_impassable;
|
2011-08-26 07:07:23 +02:00
|
|
|
|
2011-08-29 05:05:57 +02:00
|
|
|
FontPtr m_informationFont;
|
|
|
|
Color m_informationColor;
|
|
|
|
|
2011-08-26 07:07:23 +02:00
|
|
|
int m_lastTicks;
|
|
|
|
bool m_walking;
|
2011-08-29 02:38:26 +02:00
|
|
|
float m_walkTimePerPixel;
|
2011-08-26 17:44:29 +02:00
|
|
|
Position m_walkingFromPosition;
|
2011-08-29 02:38:26 +02:00
|
|
|
int m_walkOffsetX, m_walkOffsetY;
|
2011-08-15 16:11:24 +02:00
|
|
|
};
|
|
|
|
|
2011-08-15 23:02:52 +02:00
|
|
|
#endif
|