This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-gunner/source/abstract/Character.h
2013-03-30 16:39:46 +01:00

60 lines
1.4 KiB
C++

/*
* Actor.h
*
* Created on: 02.09.2012
* Author: Felix
*/
#ifndef DG_ACTOR_H_
#define DG_ACTOR_H_
#include "Sprite.h"
class World;
class Weapon;
class Yaml;
/**
* Provides think function for AI, manages health, drops body on death.
*/
class Character : public Sprite {
// Public functions.
public:
explicit Character(World& world, const Data& data, const Yaml& config);
virtual ~Character() = 0;
void onDamage(int damage);
// Protected functions.
protected:
virtual void onThink(int elapsed);
virtual void onDeath();
float getMovementSpeed() const;
void pullTrigger();
void releaseTrigger();
bool setDestination(const sf::Vector2f& destination);
void move();
std::vector<std::shared_ptr<Character> > getCharacters(float maxDistance) const;
// Private variables.
private:
static const std::string KEY_HEALTH;
static const int DEFAULT_HEALTH;
static const std::string KEY_SPEED;
static const float DEFAULT_SPEED;
static const std::string KEY_WEAPON;
static const std::string DEFAULT_WEAPON;
/// The distance to a point where it is considered reached (in pixels).
static const float POINT_REACHED_DISTANCE;
friend class World;
World& mWorld;
const int mMaxHealth;
int mCurrentHealth; //< Current health. Between 0 and mMaxHealth.
const float mMovementSpeed;
std::unique_ptr<Weapon> mWeapon;
std::vector<sf::Vector2f> mPath; //< Contains nodes to reach a set destination.
};
#endif /* DG_ACTOR_H_ */