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

86 lines
1.7 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>
/**
* Initializes Sprite.
*/
Player::Player(World& world, const sf::Vector2f& position,
const Yaml& config) :
Character(world, Data(position, CATEGORY_ACTOR, MASK_ALL), config),
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) {
if (unset) {
mDirection = mDirection & ~direction;
2012-10-14 16:14:06 +00:00
} else {
mDirection = mDirection | direction;
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);
if (mDirection & Direction::RIGHT) {
2012-10-14 16:14:06 +00:00
dirVec.x += 1.0f;
}
if (mDirection & Direction::LEFT) {
2012-10-14 16:14:06 +00:00
dirVec.x += - 1.0f;
}
if (mDirection & Direction::DOWN) {
2012-10-14 16:14:06 +00:00
dirVec.y += 1.0f;
}
if (mDirection & Direction::UP) {
2012-10-14 16:14:06 +00:00
dirVec.y += - 1.0f;
}
setSpeed(dirVec, getMovementSpeed());
}
/**
* 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
}