12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #include "Bouton.h"
- Bouton::Bouton(SDL_Surface *objetImg, SDL_Surface *screen, int const x, int const y)
- :m_x(x),m_y(y),m_selectImg(0)
- {
- m_objetImg = objetImg;
- m_screen = screen;
- m_blitImg = m_objetImg;
- }
- Bouton::~Bouton()
- {
- SDL_FreeSurface(m_objetImg);
- if (m_selectImg != 0)
- SDL_FreeSurface(m_selectImg);
- }
- void Bouton::attribuerImg(SDL_Surface *selectImg)
- {
- m_selectImg = selectImg;
- }
- bool Bouton::calculer(int const xSouris, int const ySouris)
- {
- if (m_selectImg != 0)
- {
- if (m_x < xSouris && xSouris < m_x+m_objetImg->w)
- {
- if (m_y < ySouris && ySouris < m_y+m_objetImg->h)
- {
- m_blitImg = m_selectImg;
- return true;
- }
- else
- {
- m_blitImg = m_objetImg;
- return false;
- }
- }
- else
- {
- m_blitImg = m_objetImg;
- return false;
- }
- }
- return false;
- }
- void Bouton::afficher()
- {
-
- SDL_Rect position;
- position.x=m_x;
- position.y=m_y;
-
- SDL_BlitSurface(m_blitImg, 0, m_screen, &position);
- }
- bool Bouton::estClique(int const xSouris, int const ySouris)
- {
- if (m_x < xSouris && xSouris < m_x+m_objetImg->w)
- if (m_y < ySouris && ySouris < m_y+m_objetImg->h)
- return true;
- return false;
- }
|