X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FSprite.h;h=d56c69199cd7aa3f3cea49fc7a0ccb99b8606b64;hb=4356621a6440ac915dd0d2dfc70d2c17c3ff321a;hp=202b96f3f5a05e2a2eb95ffc2f03b1f8d8c9a08d;hpb=cccda573516f3bce30efbaba3fc20e4148d3cdc8;p=l2e.git diff --git a/src/graphics/Sprite.h b/src/graphics/Sprite.h index 202b96f..d56c691 100644 --- a/src/graphics/Sprite.h +++ b/src/graphics/Sprite.h @@ -8,7 +8,9 @@ #ifndef GRAPHICS_SPRITE_H_ #define GRAPHICS_SPRITE_H_ +#include "../geometry/operators.h" #include "../geometry/Point.h" +#include "../geometry/Vector.h" #include @@ -24,11 +26,17 @@ 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 DrawTopRight(SDL_Surface *dest, geometry::Point position, int col = 0, int row = 0) const { + geometry::Vector offset(-Width(), 0); + Draw(dest, position + offset, col, row); + } + void DrawCenter(SDL_Surface *dest, geometry::Point position, int col = 0, int row = 0) const { + geometry::Vector offset(-Width() / 2, -Height() / 2); + Draw(dest, position + offset, col, row); + } 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); + geometry::Vector offset(-Width() / 2, -Height()); + Draw(dest, position + offset, col, row); } private: