-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEspace.cpp
70 lines (60 loc) · 2.14 KB
/
Espace.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include "Espace.h"
/*! \brief Permet de savoir si une valeur est entre un minimum et un maximum
\param point La valeur à tester
\param min Le minimum
\param max Le maximum
\return vrai si point est compris entre min inclu et max inclu, faux sinon
*/
bool Espace::estDans(float point, float min, float max)
{
return (point >= min && point <= max);
}
/*! \brief Permet de savoir si un point est entre un point minimum et un point maximum
\param point Le point à tester
\param min Le minimum
\param max Le maximum
\return vrai si point est compris entre min inclu et max inclu
*/
bool Espace::estDans(sf::Vector2f point, sf::Vector2f min, sf::Vector2f max)
{
return estDans(point.x, min.x, max.x) && estDans(point.y, min.y, max.y);
}
/*! \brief Permet de savoir si un point est dans une RectangleShape
\param point Le point à tester
\param rect Le rectangle
\return vrai si point est dans le rectangle
*/
bool Espace::estDans(sf::Vector2f point, sf::RectangleShape rect)
{
return estDans(point, rect.getPosition(), rect.getPosition() + rect.getSize());
}
/*! \brief Permet de savoir si une valeur est entre un minimum et un maximum
\param point La valeur à tester
\param min Le minimum
\param max Le maximum
\return vrai si point est compris entre min inclu et max inclu, faux sinon
*/
bool Espace::estDans(int point, int min, int max)
{
return (point >= min && point <= max);
}
/*! \brief Permet de savoir si un point est entre un point minimum et un point maximum
\param point Le point à tester
\param min Le minimum
\param max Le maximum
\return vrai si point est compris entre min inclu et max inclu
*/
bool Espace::estDans(sf::Vector2i point, sf::Vector2i min, sf::Vector2i max)
{
return estDans(point.x, min.x, max.x) && estDans(point.y, min.y, max.y);
}
/*! \brief Permet de savoir si un point est dans une RectangleShape
\param point Le point à tester
\param rect Le rectangle
\return vrai si point est dans le rectangle
*/
bool Espace::estDans(sf::Vector2i point, sf::RectangleShape rect)
{
sf::Vector2f pointf(point.x, point.y);
return estDans(pointf, rect.getPosition(), rect.getPosition() + rect.getSize());
}