X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FSprite.cpp;h=1b858308b46d0f47f3c536a3f0baa5aea7734b49;hb=ce1e9a11c89c83356d797c8225369b711513a4da;hp=67bde8d09ba60f35e9ed85ea1e742d55ed9459e9;hpb=d20fa78a0dcbc95a69bb6077d2081d42b74a2d1a;p=l2e.git diff --git a/src/graphics/Sprite.cpp b/src/graphics/Sprite.cpp index 67bde8d..1b85830 100644 --- a/src/graphics/Sprite.cpp +++ b/src/graphics/Sprite.cpp @@ -1,13 +1,12 @@ -/* - * Sprite.cpp - * - * Created on: Aug 5, 2012 - * Author: holy - */ - #include "Sprite.h" -using geometry::Vector; +#include "../loader/Interpreter.h" +#include "../loader/TypeDescription.h" + +using math::Vector; +using loader::FieldDescription; +using loader::Interpreter; +using loader::TypeDescription; namespace graphics { @@ -36,4 +35,24 @@ void Sprite::Draw(SDL_Surface *dest, const Vector &position, int col, int r } } + +void Sprite::CreateTypeDescription() { + Sprite s; + + TypeDescription &td(TypeDescription::Create(TYPE_ID, "Sprite")); + td.SetDescription( + "An image + a size and offset.\n" + "The resulting section or a section offset by a multiple of its size can be drawn."); + td.SetConstructor(&Construct); + td.SetSize(sizeof(Sprite)); + + td.AddField("image", FieldDescription(((char *)&s.surface) - ((char *)&s), Interpreter::IMAGE_ID).SetReferenced().SetDescription("the image to cut this sprite from")); + td.AddField("size", FieldDescription(((char *)&s.size) - ((char *)&s), Interpreter::VECTOR_ID).SetDescription("dimensions of the sprite")); + td.AddField("offset", FieldDescription(((char *)&s.offset) - ((char *)&s), Interpreter::VECTOR_ID).SetDescription("offset into the image, top-left corner of the sprite's (0,0) clip")); +} + +void Sprite::Construct(void *data) { + new (data) Sprite; +} + }