2021-06-09 14:08:58 -04:00
|
|
|
#pragma once
|
|
|
|
|
2021-08-05 14:59:48 -04:00
|
|
|
#include "tools/mathutils.h"
|
2021-09-14 15:02:23 -04:00
|
|
|
#include "sprite.h"
|
|
|
|
#include <SFML/Graphics/RectangleShape.hpp>
|
2021-06-09 14:08:58 -04:00
|
|
|
|
|
|
|
class ClassicSprite : public Sprite, public sf::Drawable
|
|
|
|
{
|
|
|
|
public:
|
2021-10-04 10:20:24 -04:00
|
|
|
explicit ClassicSprite(const sf::RectangleShape& shape);
|
2021-06-09 14:08:58 -04:00
|
|
|
virtual void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
|
2021-06-16 11:16:18 -04:00
|
|
|
virtual void reset() override;
|
2021-06-09 14:08:58 -04:00
|
|
|
|
2021-10-04 10:20:24 -04:00
|
|
|
void setCoordinates(const Coordinates &coordinates);
|
|
|
|
void setTrailCoordinates(const Coordinates &coordinates);
|
2021-06-24 14:04:09 -04:00
|
|
|
Coordinates coordinates() const;
|
2021-07-14 22:45:52 -04:00
|
|
|
Coordinates trailCoordinates() const;
|
2021-06-16 11:16:18 -04:00
|
|
|
|
2021-10-04 10:20:24 -04:00
|
|
|
void setColor(const sf::Color& color);
|
|
|
|
void setTrailColor(const sf::Color& color);
|
|
|
|
sf::Color color() const;
|
|
|
|
sf::Color trailColor() const;
|
2021-06-09 14:08:58 -04:00
|
|
|
|
|
|
|
private:
|
2021-06-16 13:11:00 -04:00
|
|
|
sf::RectangleShape _prototype;
|
|
|
|
|
2021-06-09 14:08:58 -04:00
|
|
|
sf::RectangleShape _shape;
|
2021-06-11 12:58:44 -04:00
|
|
|
sf::RectangleShape _trail;
|
2021-06-09 14:08:58 -04:00
|
|
|
};
|