2012-09-09 20:50:15 +00:00
|
|
|
/*
|
|
|
|
* Sprite.cpp
|
|
|
|
*
|
2012-12-23 14:50:49 +00:00
|
|
|
* Created on: 11.08.2012
|
2012-09-09 20:50:15 +00:00
|
|
|
* Author: Felix
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Sprite.h"
|
|
|
|
|
2012-12-23 14:50:49 +00:00
|
|
|
#include <Thor/Vectors.hpp>
|
|
|
|
|
2012-09-09 20:50:15 +00:00
|
|
|
#include "../util/Loader.h"
|
2012-12-20 13:59:05 +00:00
|
|
|
#include "../util/Log.h"
|
2012-12-23 14:50:49 +00:00
|
|
|
#include "../util/ResourceManager.h"
|
2013-03-29 16:59:35 +00:00
|
|
|
#include "../util/Yaml.h"
|
2012-09-09 20:50:15 +00:00
|
|
|
|
|
|
|
/**
|
2012-12-23 14:50:49 +00:00
|
|
|
* Initializes sprite data.
|
2012-09-09 20:50:15 +00:00
|
|
|
*
|
2012-12-23 14:50:49 +00:00
|
|
|
* @param data Container holding construction parameters.
|
|
|
|
* @param config Additional construction parameters
|
2012-09-09 20:50:15 +00:00
|
|
|
*/
|
2012-12-23 14:50:49 +00:00
|
|
|
Sprite::Sprite(const Data& data, const Yaml& config) :
|
|
|
|
mCategory(data.category),
|
|
|
|
mMask(data.mask),
|
|
|
|
mDelete(false) {
|
2013-04-04 19:50:52 +00:00
|
|
|
// Init shape
|
2013-04-27 16:54:04 +00:00
|
|
|
float radius = config.get(YAML_KEY::RADIUS, 0.0f);
|
|
|
|
sf::Vector2f size = config.get(YAML_KEY::SIZE, sf::Vector2f());
|
2012-12-23 14:50:49 +00:00
|
|
|
if (radius != 0.0f) {
|
2013-03-03 20:27:40 +00:00
|
|
|
mShape.type = Shape::Type::CIRCLE;
|
|
|
|
mShape.shape = std::unique_ptr<sf::Shape>(new sf::CircleShape(radius));
|
|
|
|
mShape.shape->setOrigin(radius, radius);
|
2013-03-30 12:38:25 +00:00
|
|
|
mShape.shape->setTextureRect(sf::IntRect(sf::Vector2i(0, 0),
|
|
|
|
sf::Vector2i(radius * 2, radius * 2)));
|
|
|
|
}
|
|
|
|
else if (size == sf::Vector2f()) {
|
|
|
|
LOG_E("Failed to read size or radius from " << config.getFilename() <<
|
|
|
|
", using texture size.");
|
|
|
|
size = sf::Vector2f(mTexture->getSize());
|
2012-12-23 14:50:49 +00:00
|
|
|
}
|
|
|
|
else if (size != sf::Vector2f()) {
|
2013-03-03 20:27:40 +00:00
|
|
|
mShape.type = Shape::Type::RECTANGLE;
|
|
|
|
mShape.shape = std::unique_ptr<sf::Shape>(new sf::RectangleShape(size));
|
|
|
|
mShape.shape->setOrigin(size / 2.0f);
|
|
|
|
mShape.shape->setTextureRect(sf::IntRect(sf::Vector2i(0, 0), sf::Vector2i(size)));
|
2012-12-23 14:50:49 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 19:50:52 +00:00
|
|
|
// Init texture
|
2013-04-27 16:54:04 +00:00
|
|
|
std::string texture = config.get<std::string>(YAML_KEY::TEXTURE, "");
|
2013-04-04 19:50:52 +00:00
|
|
|
if (texture != "") {
|
|
|
|
try {
|
|
|
|
mTexture = ResourceManager::i().acquire(Loader::i()
|
|
|
|
.fromFile<sf::Texture>(texture));
|
|
|
|
mShape.shape->setTexture(&*mTexture, false);
|
|
|
|
}
|
|
|
|
catch (thor::ResourceLoadingException&) {
|
|
|
|
LOG_W("Failed to load texture " << texture << ", coloring red.");
|
|
|
|
mShape.shape->setFillColor(sf::Color(255, 0, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG_W("Failed to read texture file name from YAML file " <<
|
|
|
|
config.getFilename() << ", coloring red.");
|
|
|
|
mShape.shape->setFillColor(sf::Color(255, 0, 0));
|
|
|
|
}
|
|
|
|
|
2012-12-23 14:50:49 +00:00
|
|
|
setPosition(data.position);
|
2013-03-30 01:30:11 +00:00
|
|
|
setDirection(data.direction);
|
2012-09-09 20:50:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-12-22 00:14:30 +00:00
|
|
|
* Used to make this class pure virtual without any pure virtual function.
|
2012-09-09 20:50:15 +00:00
|
|
|
*/
|
|
|
|
Sprite::~Sprite() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-12-23 14:50:49 +00:00
|
|
|
* Initializes container.
|
|
|
|
*/
|
2013-03-30 01:36:06 +00:00
|
|
|
Sprite::Data::Data(const sf::Vector2f& position, Category category,
|
|
|
|
unsigned short mask, const sf::Vector2f& direction) :
|
2012-12-23 14:50:49 +00:00
|
|
|
position(position),
|
2013-03-30 01:30:11 +00:00
|
|
|
direction(direction),
|
2012-12-23 14:50:49 +00:00
|
|
|
category(category),
|
2013-03-03 20:27:40 +00:00
|
|
|
mask(mask) {
|
2012-12-23 14:50:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the position of the sprite (center).
|
2012-09-09 20:50:15 +00:00
|
|
|
*/
|
2012-12-23 14:50:49 +00:00
|
|
|
sf::Vector2f
|
|
|
|
Sprite::getPosition() const {
|
2013-03-03 20:27:40 +00:00
|
|
|
return mShape.shape->getPosition();
|
2012-12-23 14:50:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the movement speed of the sprite.
|
|
|
|
*/
|
|
|
|
sf::Vector2f
|
|
|
|
Sprite::getSpeed() const {
|
|
|
|
return mSpeed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the angle of the sprite.
|
|
|
|
*/
|
2013-03-30 01:30:11 +00:00
|
|
|
sf::Vector2f
|
|
|
|
Sprite::getDirection() const {
|
|
|
|
return thor::rotatedVector(sf::Vector2f(1, 0), mShape.shape->getRotation());
|
2012-12-23 14:50:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if this object should be deleted.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
Sprite::getDelete() const {
|
|
|
|
return mDelete;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the Category of this object.
|
|
|
|
*/
|
|
|
|
Sprite::Category
|
|
|
|
Sprite::getCategory() const {
|
|
|
|
return mCategory;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the size of the sprite as a vector (bottom left to top right),
|
|
|
|
* does not consider rotation.
|
|
|
|
*/
|
|
|
|
sf::Vector2f
|
|
|
|
Sprite::getSize() const {
|
2013-03-03 20:27:40 +00:00
|
|
|
sf::FloatRect bounds = mShape.shape->getLocalBounds();
|
2012-12-23 14:50:49 +00:00
|
|
|
return sf::Vector2f(bounds.width, bounds.height);
|
|
|
|
}
|
|
|
|
|
2012-09-09 20:50:15 +00:00
|
|
|
void
|
|
|
|
Sprite::draw(sf::RenderTarget& target, sf::RenderStates states) const {
|
2013-03-03 20:27:40 +00:00
|
|
|
target.draw(*mShape.shape, states);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if collisions with that category are enabled through mask.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
Sprite::collisionEnabled(Category category) const {
|
|
|
|
return (category & mMask) != 0;
|
2012-12-23 14:50:49 +00:00
|
|
|
}
|
|
|
|
|
2013-04-27 19:29:05 +00:00
|
|
|
bool
|
|
|
|
Sprite::isInside(const sf::FloatRect& rect) const {
|
|
|
|
return rect.intersects(mShape.shape->getGlobalBounds());
|
|
|
|
}
|
2012-12-23 14:50:49 +00:00
|
|
|
/**
|
|
|
|
* Called when a collision with another Sprite occured. Override this method
|
|
|
|
* to manage collision events.
|
|
|
|
*
|
|
|
|
* @param other The other Sprite in the collision.
|
|
|
|
*/
|
|
|
|
void
|
2013-03-03 20:27:40 +00:00
|
|
|
Sprite::onCollide(std::shared_ptr<Sprite> other) {
|
2012-12-23 14:50:49 +00:00
|
|
|
}
|
2012-09-09 20:50:15 +00:00
|
|
|
|
2012-12-23 14:50:49 +00:00
|
|
|
/**
|
|
|
|
* Set to true to mark this object for deletion from the world.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Sprite::setDelete(bool value) {
|
|
|
|
mDelete = value;
|
|
|
|
}
|
2012-09-09 20:50:15 +00:00
|
|
|
|
2012-12-23 14:50:49 +00:00
|
|
|
/**
|
|
|
|
* Sets movement speed and direction of the Sprite. Set either value to zero to stop movement.
|
|
|
|
*
|
|
|
|
* @param direction The direction the Sprite moves in, does not have to be normalized.
|
|
|
|
* @param speed Movement speed in pixels per second.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Sprite::setSpeed(sf::Vector2f direction, float speed) {
|
2013-04-04 21:13:08 +00:00
|
|
|
if (direction != sf::Vector2f())
|
2012-12-23 14:50:49 +00:00
|
|
|
thor::setLength(direction, speed);
|
|
|
|
mSpeed = direction;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-03-30 01:30:11 +00:00
|
|
|
Sprite::setDirection(const sf::Vector2f& direction) {
|
2013-04-04 21:13:08 +00:00
|
|
|
if (direction != sf::Vector2f())
|
2013-03-30 01:30:11 +00:00
|
|
|
mShape.shape->setRotation(thor::polarAngle(direction) + 90);
|
2012-12-23 14:50:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the position of thr Sprite.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Sprite::setPosition(const sf::Vector2f& position) {
|
2013-03-03 20:27:40 +00:00
|
|
|
mShape.shape->setPosition(position);
|
2012-09-09 20:50:15 +00:00
|
|
|
}
|
2013-03-19 19:51:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the radius of this sprite. Will fail if this is not a circle.
|
|
|
|
*
|
|
|
|
* @return The radius of this sprite.
|
|
|
|
*/
|
|
|
|
float
|
|
|
|
Sprite::getRadius() const {
|
|
|
|
std::shared_ptr<sf::CircleShape> circleShape =
|
|
|
|
std::dynamic_pointer_cast<sf::CircleShape>(mShape.shape);
|
|
|
|
assert(circleShape);
|
|
|
|
return circleShape->getRadius();
|
|
|
|
}
|