lab.cpp/SDL#1/Sprite.h

61 lines
1.1 KiB
C
Raw Normal View History

2016-03-10 20:38:15 +00:00
#ifndef DEF_SPRITE_H
#define DEF_SPRITE_H
/* [LIBS] Internes
=========================================================*/
#include "SDL.h"
#include "SDL_image.h"
#include <vector>
/* [LIBS] Externes
=========================================================*/
/* [NS] Namespaces
=========================================================*/
using namespace std;
class Sprite{
public:
Sprite(int x, int y, int w, int h);
Sprite(int c[], int x, int y, int w, int h);
Sprite(const char url[], int x, int y, int w, int h);
// ~Sprite();
void appendTo(SDL_Surface *dest);
// GETTERS
SDL_Surface *surface();
private:
SDL_Surface *_surface;
SDL_Rect _rect;
};
/* [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);
private:
vector<Sprite*> _sprites;
};
/* [BODY] Inclusion du corps
=========================================================*/
#include "Sprite.cpp"
#endif