X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FSprite.cpp;h=e83486e9fe2d4d17baa1b1d53c0f88be322e3d69;hb=ac3755adc509404528ef7de58695bf8e3bfb7dcd;hp=87ce8af1b366aaafd750fffd3e0e37e807c6928b;hpb=1162be37102b24df11f469495c0184f3f9a26ba0;p=l2e.git diff --git a/src/graphics/Sprite.cpp b/src/graphics/Sprite.cpp index 87ce8af..e83486e 100644 --- a/src/graphics/Sprite.cpp +++ b/src/graphics/Sprite.cpp @@ -7,14 +7,18 @@ #include "Sprite.h" -using geometry::Point; +#include "../loader/TypeDescription.h" + +using geometry::Vector; +using loader::FieldDescription; +using loader::TypeDescription; namespace graphics { -void Sprite::Draw(SDL_Surface *dest, const 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 = 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 Point &position, int col, int ro } } + +void Sprite::CreateTypeDescription() { + Sprite s; + TypeDescription &td(TypeDescription::CreateOrGet("Sprite")); + + td.SetSize(sizeof(Sprite)); + + int imageId(TypeDescription::GetTypeId("Image")); + int vectorId(TypeDescription::GetTypeId("Vector")); + + 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)); +} + }