X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FSprite.cpp;h=28d3b5c215c33a0459ad0963fe3f6393a0d3f9cb;hb=46d158b25b842d2ec4b9734af09ca6006c934498;hp=2c092deb2c85f8ae6b807025d4704a5220e247d1;hpb=0542849dfccfec1ce1477265fa0fee2401a8fb23;p=l2e.git diff --git a/src/graphics/Sprite.cpp b/src/graphics/Sprite.cpp index 2c092de..28d3b5c 100644 --- a/src/graphics/Sprite.cpp +++ b/src/graphics/Sprite.cpp @@ -7,14 +7,18 @@ #include "Sprite.h" +#include "../loader/TypeDescription.h" + using geometry::Vector; +using loader::FieldDescription; +using loader::TypeDescription; namespace graphics { void Sprite::Draw(SDL_Surface *dest, const Vector &position, int col, int row) const { SDL_Rect srcRect, destRect; - srcRect.x = xOffset + col * Width(); - srcRect.y = yOffset + row * Height(); + srcRect.x = offset.X() + col * Width(); + srcRect.y = offset.Y() + row * Height(); srcRect.w = Width(); srcRect.h = Height(); destRect.x = position.X(); @@ -36,4 +40,19 @@ void Sprite::Draw(SDL_Surface *dest, const Vector &position, int col, int r } } + +void Sprite::CreateTypeDescription() { + Sprite s; + + int imageId(TypeDescription::GetTypeId("Image")); + int vectorId(TypeDescription::GetTypeId("Vector")); + + TypeDescription &td(TypeDescription::CreateOrGet("Sprite")); + td.SetSize(sizeof(Sprite)); + + td.AddField("image", FieldDescription(((char *)&s.surface) - ((char *)&s), imageId, true)); + td.AddField("size", FieldDescription(((char *)&s.size) - ((char *)&s), vectorId, false)); + td.AddField("offset", FieldDescription(((char *)&s.offset) - ((char *)&s), vectorId, false)); +} + }