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.
|
|
|
|
*/
|
2013-03-30 01:36:06 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Moves the player to a destination point.
|
|
|
|
* Disables any previous calls to Player::setDirection().
|
|
|
|
*
|
|
|
|
* @param destination Absolute world coordinate of the destination point.
|
2012-09-12 12:21:57 +00:00
|
|
|
*/
|
2012-09-09 20:50:15 +00:00
|
|
|
void
|
2012-12-22 14:10:26 +00:00
|
|
|
Player::move(const sf::Vector2f& destination) {
|
2012-10-13 17:36:33 +00:00
|
|
|
setDestination(destination);
|
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) {
|
2012-12-22 00:14:30 +00:00
|
|
|
mDirection = mDirection & ~direction;
|
2012-10-14 16:14:06 +00:00
|
|
|
} else {
|
2012-12-22 00:14:30 +00:00
|
|
|
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);
|
2012-12-22 00:14:30 +00:00
|
|
|
if (mDirection & Direction::RIGHT) {
|
2012-10-14 16:14:06 +00:00
|
|
|
dirVec.x += 1.0f;
|
|
|
|
}
|
2012-12-22 00:14:30 +00:00
|
|
|
if (mDirection & Direction::LEFT) {
|
2012-10-14 16:14:06 +00:00
|
|
|
dirVec.x += - 1.0f;
|
|
|
|
}
|
2012-12-22 00:14:30 +00:00
|
|
|
if (mDirection & Direction::DOWN) {
|
2012-10-14 16:14:06 +00:00
|
|
|
dirVec.y += 1.0f;
|
|
|
|
}
|
2012-12-22 00:14:30 +00:00
|
|
|
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);
|
2012-10-14 16:14:06 +00:00
|
|
|
if (!mDirection) {
|
|
|
|
// Only use path finding movement if no direct input movement active.
|
|
|
|
Character::move();
|
|
|
|
}
|
|
|
|
// Look towards crosshair.
|
2013-03-30 01:30:11 +00:00
|
|
|
Sprite::setDirection(mCrosshairPosition);
|
2012-10-14 16:14:06 +00:00
|
|
|
}
|