lab.cpp/SDL#2/Sprite.h

71 lines
1.3 KiB
C
Raw Normal View History

2016-03-10 23:00:26 +00:00
#ifndef DEF_SPRITE_H
#define DEF_SPRITE_H
/* [LIBS] Internes
=========================================================*/
#include "SDL.h"
#include "SDL_image.h"
#include <vector>
#include <thread>
2016-03-10 23:00:26 +00:00
/* [LIBS] Externes
=========================================================*/
/* [NS] Namespaces
=========================================================*/
using namespace std;
class Sprite{
public:
Sprite(SDL_Rect r);
Sprite(const int rgb[], SDL_Rect r);
Sprite(const char url[], SDL_Rect r, SDL_Rect clip);
void setImage(const char url[], int ox=0, int oy=0);
2016-03-10 23:00:26 +00:00
// ~Sprite();
void appendTo(SDL_Surface *dest);
// GETTERS
SDL_Surface *surface();
private:
SDL_Surface *_surface;
SDL_Rect _rect;
SDL_Rect _origin;
2016-03-10 23:00:26 +00:00
};
/* [AGGR] Groupement de Sprite
=========================================================*/
class SpriteGroup{
public:
SpriteGroup();
void add(Sprite *s);
void remove(Sprite *s);
Sprite* get(int i);
void appendTo(SDL_Surface *dest);
thread *animate(SDL_Window *win, int t);
2016-03-10 23:00:26 +00:00
private:
vector<Sprite*> _sprites;
thread *_animation;
friend void SpriteGroupAnimation(SDL_Window *win, SpriteGroup *sg, int t);
2016-03-10 23:00:26 +00:00
};
/* [BODY] Inclusion du corps
=========================================================*/
#include "Sprite.cpp"
#endif