X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FSprite.h;h=f6f3b7b566d58cfa969d973767353c39cfea8b7e;hb=00dafa489224450ccc0321e238c176b9e8aa34bc;hp=202b96f3f5a05e2a2eb95ffc2f03b1f8d8c9a08d;hpb=cccda573516f3bce30efbaba3fc20e4148d3cdc8;p=l2e.git diff --git a/src/graphics/Sprite.h b/src/graphics/Sprite.h index 202b96f..f6f3b7b 100644 --- a/src/graphics/Sprite.h +++ b/src/graphics/Sprite.h @@ -8,7 +8,7 @@ #ifndef GRAPHICS_SPRITE_H_ #define GRAPHICS_SPRITE_H_ -#include "../geometry/Point.h" +#include "../geometry/Vector.h" #include @@ -18,25 +18,29 @@ class Sprite { public: Sprite(SDL_Surface *s, int width, int height, int xOffset = 0, int yOffset = 0) - : surface(s), width(width), height(height), xOffset(xOffset), yOffset(yOffset) { } + : surface(s), size(width, height), offset(xOffset, yOffset) { } public: - int Width() const { return width; } - int Height() const { return height; } - 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); + int Width() const { return size.X(); } + int Height() const { return size.Y(); } + const geometry::Vector &Size() const { return size; } + void Draw(SDL_Surface *dest, const geometry::Vector &position, int col = 0, int row = 0) const; + void DrawTopRight(SDL_Surface *dest, const geometry::Vector &position, int col = 0, int row = 0) const { + geometry::Vector offset(-Width(), 0); + Draw(dest, position + offset, col, row); + } + void DrawCenter(SDL_Surface *dest, const geometry::Vector &position, int col = 0, int row = 0) const { + Draw(dest, position - (Size() / 2), col, row); + } + void DrawCenterBottom(SDL_Surface *dest, const geometry::Vector &position, int col = 0, int row = 0) const { + geometry::Vector offset(-Width() / 2, -Height()); + Draw(dest, position + offset, col, row); } private: SDL_Surface *surface; - int width; - int height; - int xOffset; - int yOffset; + geometry::Vector size; + geometry::Vector offset; };