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/sprite/Player.h

67 lines
1.6 KiB
C
Raw Normal View History

/*
* Player.h
*
* Created on: 21.07.2012
* Author: Felix
*/
#ifndef DG_PLAYER_H_
#define DG_PLAYER_H_
#include <SFML/System.hpp>
#include <SFML/Graphics.hpp>
#include "../abstract/Actor.h"
#include "../abstract/Sprite.h"
#include "../items/Weapon.h"
#include "../util/Vector.h"
class Actor;
class Sprite;
class Weapon;
/**
* Player object.
*/
class Player : public Sprite, public Actor {
2012-09-12 18:10:29 +00:00
// Public types.
public:
/**
* Movement directions that can be set via Player::setDirection().
*/
enum Direction {
DIRECTION_RIGHT = 1 << 0,
DIRECTION_LEFT = 1 << 1,
DIRECTION_UP = 1 << 2,
DIRECTION_DOWN = 1 << 3
};
// Public functions.
2012-09-12 12:21:57 +00:00
public:
Player(b2World& world, Collection& collection, const Vector2f& position);
void setCrosshairPosition(const Vector2f& position);
void fire();
void move(const Vector2f& destination);
2012-09-12 18:10:29 +00:00
void setDirection(Direction direction, bool unset);
2012-09-12 18:10:29 +00:00
// Private functions.
private:
void onCollide(Physical& other, uint16 category);
void onThink(float elapsedTime);
// Private variables.
private:
2012-09-12 12:21:57 +00:00
static const float SPEED;
2012-09-11 19:12:34 +00:00
static const Vector2i SIZE;
2012-09-12 12:21:57 +00:00
Weapon mWeapon; //< Weapon object used for Player::fire().
Vector2f mDestination; //< Absolute position of the movement destination.
Vector2f mCrosshairPosition; //< Relative position of the point to fire at (mouse cursor).
2012-09-12 18:10:29 +00:00
uint8 mDirection; //< Current movement direction for direct control.
bool mDirectInput; //< True when using keyboard input (directions), false when using
// destination point.
};
#endif /* DG_PLAYER_H_ */