]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Sprite.cpp
added frames for status menu
[l2e.git] / src / graphics / Sprite.cpp
index 67bde8d09ba60f35e9ed85ea1e742d55ed9459e9..5b50096696c4afb6b46105379cd983b9cbe9c306 100644 (file)
@@ -7,7 +7,13 @@
 
 #include "Sprite.h"
 
+#include "../loader/Interpreter.h"
+#include "../loader/TypeDescription.h"
+
 using geometry::Vector;
+using loader::FieldDescription;
+using loader::Interpreter;
+using loader::TypeDescription;
 
 namespace graphics {
 
@@ -36,4 +42,24 @@ void Sprite::Draw(SDL_Surface *dest, const Vector<int> &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;
+}
+
 }