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

61 lines
1.4 KiB
C
Raw Normal View History

2012-10-01 09:02:44 +00:00
/*
* Actor.h
*
* Created on: 02.09.2012
* Author: Felix
*/
#ifndef DG_ACTOR_H_
#define DG_ACTOR_H_
2012-10-01 09:13:26 +00:00
#include "Sprite.h"
2012-12-22 00:44:36 +00:00
class World;
2012-10-13 16:57:12 +00:00
class Weapon;
class Yaml;
2012-10-01 09:13:26 +00:00
2012-10-01 09:02:44 +00:00
/**
* Provides think function for AI, manages health, drops body on death.
2012-10-01 09:02:44 +00:00
*/
2012-10-01 09:13:26 +00:00
class Character : public Sprite {
2012-10-01 09:02:44 +00:00
// Public functions.
2012-09-12 12:21:57 +00:00
public:
2013-03-19 19:43:27 +00:00
Character(World& world, const Data& data, const Yaml& config);
2012-10-01 09:02:44 +00:00
virtual ~Character() = 0;
void onDamage(int damage);
// Protected functions.
protected:
2013-03-09 15:25:04 +00:00
virtual void onThink(int elapsed);
2012-10-01 09:02:44 +00:00
virtual void onDeath();
float getMovementSpeed() const;
2012-12-24 00:14:22 +00:00
void pullTrigger();
void releaseTrigger();
2012-12-22 14:10:26 +00:00
bool setDestination(const sf::Vector2f& destination);
void move();
std::vector<std::shared_ptr<Character> > getCharacters(float maxDistance) const;
2012-10-01 09:02:44 +00:00
// Private variables.
private:
2012-12-22 14:10:26 +00:00
static const std::string KEY_HEALTH;
static const int DEFAULT_HEALTH;
2012-12-22 14:10:26 +00:00
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;
2012-12-22 00:44:36 +00:00
World& mWorld;
2012-10-01 09:02:44 +00:00
const int mMaxHealth;
2012-09-12 12:21:57 +00:00
int mCurrentHealth; //< Current health. Between 0 and mMaxHealth.
const float mMovementSpeed;
std::unique_ptr<Weapon> mWeapon;
2012-12-22 14:10:26 +00:00
std::vector<sf::Vector2f> mPath; //< Contains nodes to reach a set destination.
2012-10-01 09:02:44 +00:00
};
#endif /* DG_ACTOR_H_ */