2012-10-14 16:14:06 +00:00
|
|
|
/*
|
|
|
|
* Player.h
|
|
|
|
*
|
|
|
|
* Created on: 21.07.2012
|
|
|
|
* Author: Felix
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DG_PLAYER_H_
|
|
|
|
#define DG_PLAYER_H_
|
|
|
|
|
|
|
|
#include "../abstract/Character.h"
|
|
|
|
|
2013-03-29 17:34:51 +00:00
|
|
|
class World;
|
2012-10-14 16:14:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Player object.
|
|
|
|
*/
|
|
|
|
class Player : public Character {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Movement directions that can be set via Player::setDirection().
|
|
|
|
*/
|
2012-12-22 00:14:30 +00:00
|
|
|
enum Direction : unsigned char {
|
2012-10-14 16:14:06 +00:00
|
|
|
RIGHT = 1 << 0,
|
|
|
|
LEFT = 1 << 1,
|
|
|
|
UP = 1 << 2,
|
|
|
|
DOWN = 1 << 3
|
|
|
|
};
|
|
|
|
|
2012-09-12 12:21:57 +00:00
|
|
|
public:
|
2013-04-29 14:49:16 +00:00
|
|
|
explicit Player(World& world, Pathfinder& pathfinder,
|
2013-05-02 11:31:26 +00:00
|
|
|
const sf::Vector2f& position);
|
2012-10-14 16:14:06 +00:00
|
|
|
|
2012-12-22 14:10:26 +00:00
|
|
|
void setCrosshairPosition(const sf::Vector2f& position);
|
2013-06-25 15:44:40 +00:00
|
|
|
using Character::pullTrigger;
|
|
|
|
using Character::releaseTrigger;
|
2012-10-14 16:14:06 +00:00
|
|
|
void setDirection(Direction direction, bool unset);
|
2013-04-18 10:45:37 +00:00
|
|
|
void setDestination(const sf::Vector2f& destination);
|
2013-06-25 15:44:40 +00:00
|
|
|
using Character::getMagazineAmmo;
|
|
|
|
using Character::getTotalAmmo;
|
2013-07-06 11:38:15 +00:00
|
|
|
using Character::getWeaponName;
|
2013-06-25 15:44:40 +00:00
|
|
|
using Character::reload;
|
2013-06-25 20:00:40 +00:00
|
|
|
using Character::toggleWeapon;
|
|
|
|
using Character::selectFirstWeapon;
|
|
|
|
using Character::selectSecondWeapon;
|
2013-07-06 19:21:25 +00:00
|
|
|
using Character::setLeftGadget;
|
|
|
|
using Character::setRightGadget;
|
|
|
|
using Character::useLeftGadget;
|
|
|
|
using Character::useRightGadget;
|
2013-07-06 12:37:16 +00:00
|
|
|
using Character::getHealth;
|
2012-10-14 16:14:06 +00:00
|
|
|
|
|
|
|
private:
|
2013-06-25 16:12:50 +00:00
|
|
|
void onThink(int elapsed) override;
|
2012-10-14 16:14:06 +00:00
|
|
|
|
|
|
|
private:
|
2012-12-22 14:10:26 +00:00
|
|
|
sf::Vector2f mCrosshairPosition; //< Relative position of the point to fire at (mouse cursor).
|
2012-12-22 00:14:30 +00:00
|
|
|
unsigned char mDirection; //< Current movement direction for direct control.
|
2012-10-14 16:14:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* DG_PLAYER_H_ */
|