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/sprites/Player.cpp

93 lines
1.9 KiB
C++
Raw Normal View History

2012-10-14 16:14:06 +00:00
/*
* Player.cpp
*
* Created on: 21.07.2012
* Author: Felix
*/
#include "Player.h"
#include <Thor/Vectors.hpp>
#include "../util/Yaml.h"
const std::string Player::CONFIG = "player.yaml";
2012-10-14 16:14:06 +00:00
/**
* Initializes Sprite.
*/
2013-04-29 14:49:16 +00:00
Player::Player(World& world, Pathfinder& pathfinder,
const sf::Vector2f& position) :
Character(position, CATEGORY_ACTOR, MASK_ALL, Yaml(CONFIG), world,
pathfinder),
mDirection(0) {
2012-10-14 16:14:06 +00:00
}
/**
* Sets the point where to look and shoot at.
*
* @param Absolute world coordinates of the crosshair.
*/
void
2012-12-22 14:10:26 +00:00
Player::setCrosshairPosition(const sf::Vector2f& position) {
2012-10-14 16:14:06 +00:00
mCrosshairPosition = position - getPosition();
}
/**
2012-12-24 00:14:22 +00:00
* Pull the trigger on the attached weapon.
2012-10-14 16:14:06 +00:00
*/
void
2012-12-24 00:14:22 +00:00
Player::pullTrigger() {
Character::pullTrigger();
}
/**
* Release the trigger on the attached weapon.
*/
void
Player::releaseTrigger() {
Character::releaseTrigger();
2012-10-14 16:14:06 +00:00
}
/**
* Sets the movement direction. This is destined for input via keys (eg. WASD).
* Disables any previous commands via Player::move().
*
* @param direction The direction to move to.
* @param unset False to start movement into the direction, true to stop it.
*/
void
Player::setDirection(Direction direction, bool unset) {
2013-04-04 21:13:08 +00:00
if (unset)
mDirection = mDirection & ~direction;
2013-04-04 21:13:08 +00:00
else
mDirection = mDirection | direction;
2013-04-04 21:13:08 +00:00
2012-10-14 16:14:06 +00:00
// Convert directions into a vector.
2012-12-22 14:10:26 +00:00
sf::Vector2f dirVec(0, 0);
2013-04-04 21:54:17 +00:00
if (mDirection & Direction::RIGHT)
2012-10-14 16:14:06 +00:00
dirVec.x += 1.0f;
2013-04-04 21:13:08 +00:00
if (mDirection & Direction::LEFT)
2012-10-14 16:14:06 +00:00
dirVec.x += - 1.0f;
2013-04-04 21:13:08 +00:00
if (mDirection & Direction::DOWN)
2012-10-14 16:14:06 +00:00
dirVec.y += 1.0f;
2013-04-04 21:13:08 +00:00
if (mDirection & Direction::UP)
2012-10-14 16:14:06 +00:00
dirVec.y += - 1.0f;
setSpeed(dirVec, getMovementSpeed());
}
2013-04-18 10:45:37 +00:00
void
Player::setDestination(const sf::Vector2f& destination) {
mDirection = 0;
Character::setDestination(destination);
}
2012-10-14 16:14:06 +00:00
/**
* Check if we arrived at destination, turn towards cursor.
*/
void
2013-03-09 15:25:04 +00:00
Player::onThink(int elapsed) {
Character::onThink(elapsed);
Sprite::setDirection(mCrosshairPosition);
2012-10-14 16:14:06 +00:00
}