2016-03-08 22:28:50 +00:00
|
|
|
#ifndef __PTF_BALL_HPP__
|
|
|
|
#define __PTF_BALL_HPP__
|
2016-03-04 15:29:31 +00:00
|
|
|
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
#include <iostream>
|
2016-03-08 18:50:21 +00:00
|
|
|
#include "state.hpp"
|
|
|
|
#include "physics_object.hpp"
|
2016-03-04 15:29:31 +00:00
|
|
|
|
2016-03-08 18:50:21 +00:00
|
|
|
class Ball : public PhysicsObject {
|
2016-03-04 15:29:31 +00:00
|
|
|
protected:
|
2016-03-08 18:50:21 +00:00
|
|
|
/**
|
|
|
|
* Calcule les forces appliquées à l'objet
|
|
|
|
*/
|
|
|
|
void getForces(State state);
|
2016-03-04 15:29:31 +00:00
|
|
|
|
2016-03-08 20:15:08 +00:00
|
|
|
static constexpr float ATTRACTION = 10;
|
|
|
|
static constexpr float MOVE = 10;
|
|
|
|
|
2016-03-04 15:29:31 +00:00
|
|
|
public:
|
|
|
|
Ball();
|
|
|
|
|
2016-03-08 17:07:21 +00:00
|
|
|
/**
|
2016-03-08 18:50:21 +00:00
|
|
|
* Dessine la balle dans la fenêtre donnée
|
2016-03-08 17:07:21 +00:00
|
|
|
*/
|
2016-03-08 18:50:21 +00:00
|
|
|
void draw(sf::RenderWindow& window);
|
2016-03-04 15:29:31 +00:00
|
|
|
|
2016-03-08 17:07:21 +00:00
|
|
|
/**
|
2016-03-08 18:50:21 +00:00
|
|
|
* Détermine la couche d'affichage de l'objet
|
2016-03-08 17:07:21 +00:00
|
|
|
*/
|
2016-03-08 18:50:21 +00:00
|
|
|
unsigned int getLayer() {
|
|
|
|
return 1;
|
|
|
|
}
|
2016-03-04 15:29:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|