X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FSprite.h;h=202b96f3f5a05e2a2eb95ffc2f03b1f8d8c9a08d;hb=185c6c79f8ba30981aad4e1d66f98143a344b95e;hp=5710ee58639b3eebf439dd975794968c03e39620;hpb=5421c812b9fc64371c7f8ce3886b0b091eef458f;p=l2e.git diff --git a/src/graphics/Sprite.h b/src/graphics/Sprite.h index 5710ee5..202b96f 100644 --- a/src/graphics/Sprite.h +++ b/src/graphics/Sprite.h @@ -8,6 +8,8 @@ #ifndef GRAPHICS_SPRITE_H_ #define GRAPHICS_SPRITE_H_ +#include "../geometry/Point.h" + #include namespace graphics { @@ -15,18 +17,26 @@ namespace graphics { class Sprite { public: - Sprite(SDL_Surface *s, int width, int height) - : surface(s), width(width), height(height) { } + Sprite(SDL_Surface *s, int width, int height, int xOffset = 0, int yOffset = 0) + : surface(s), width(width), height(height), xOffset(xOffset), yOffset(yOffset) { } public: int Width() const { return width; } int Height() const { return height; } - void Draw(SDL_Surface *dest, int x, int y, int col = 0, int row = 0) const; + void Draw(SDL_Surface *dest, geometry::Point position, int col = 0, int row = 0) const; + void DrawCenterBottom(SDL_Surface *dest, geometry::Point position, int col = 0, int row = 0) const { + geometry::Point translated( + position.X() - (Width() / 2), + position.Y() - Height()); + Draw(dest, translated, col, row); + } private: SDL_Surface *surface; int width; int height; + int xOffset; + int yOffset; };