40 lines
1 KiB
C++
40 lines
1 KiB
C++
/*
|
|
* Rectangle.cpp
|
|
*
|
|
* Created on: 04.05.2013
|
|
* Author: Felix
|
|
*/
|
|
|
|
#include "Rectangle.h"
|
|
|
|
#include "Circle.h"
|
|
#include "../util/Yaml.h"
|
|
|
|
Rectangle::Rectangle(const sf::Vector2f& position, Category category,
|
|
unsigned short mask, const Yaml& config,
|
|
const sf::Vector2f& direction) :
|
|
Sprite(position, category, mask, config.get("size", sf::Vector2f()),
|
|
config.get("texture", std::string()), direction) {
|
|
}
|
|
|
|
/**
|
|
* Returns true if a collision between this and other occured. It does not
|
|
* matter which object is this or other.
|
|
*/
|
|
bool
|
|
Rectangle::testCollision(std::shared_ptr<Sprite> other,
|
|
sf::Vector2f& offsetFirst, const sf::Vector2f& offsetSecond) {
|
|
Rectangle* rect = dynamic_cast<Rectangle*>(other.get());
|
|
Circle* circle = dynamic_cast<Circle*>(other.get());
|
|
if (circle != nullptr)
|
|
return CollisionModel::testCollision(*circle, *this,
|
|
offsetFirst, offsetSecond);
|
|
else if (rect != nullptr)
|
|
return CollisionModel::testCollision(*rect, *this,
|
|
offsetFirst, offsetSecond);
|
|
else {
|
|
assert(false);
|
|
return false;
|
|
}
|
|
}
|
|
|