X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FSprite.cpp;h=67bde8d09ba60f35e9ed85ea1e742d55ed9459e9;hb=908e0b6a2a9c3266da902eccd668f54ee0b94895;hp=afd6209546c3a6bdcb8f359f43e89dd8c75ec8c5;hpb=4e886547268583ef1d8a415d9f7f959ce76ffcbc;p=l2e.git diff --git a/src/graphics/Sprite.cpp b/src/graphics/Sprite.cpp index afd6209..67bde8d 100644 --- a/src/graphics/Sprite.cpp +++ b/src/graphics/Sprite.cpp @@ -7,21 +7,33 @@ #include "Sprite.h" -using geometry::Point; +using geometry::Vector; namespace graphics { -void Sprite::Draw(SDL_Surface *dest, Point position, int col, int row) const { +void Sprite::Draw(SDL_Surface *dest, const Vector &position, int col, int row) const { SDL_Rect srcRect, destRect; - srcRect.x = col * Width(); - srcRect.y = row * Height(); + srcRect.x = offset.X() + col * Width(); + srcRect.y = offset.Y() + row * Height(); srcRect.w = Width(); srcRect.h = Height(); destRect.x = position.X(); destRect.y = position.Y(); - destRect.w = Width(); - destRect.h = Height(); - SDL_BlitSurface(surface, &srcRect, dest, &destRect); + if (surface) { + SDL_BlitSurface(surface, &srcRect, dest, &destRect); + } else { + destRect.w = Width(); + destRect.h = Height(); + bool red(true); + while (destRect.w > 1 && destRect.h > 1) { + SDL_FillRect(dest, &destRect, SDL_MapRGB(dest->format, red ? 0xFF : 0, 0, 0)); + ++destRect.x; + ++destRect.y; + destRect.w -= 2; + destRect.h -= 2; + red = !red; + } + } } }