]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Animation.cpp
removed stupid file headers that eclipse put in
[l2e.git] / src / graphics / Animation.cpp
index c1ba63797ab7ac061163a600a7d50fd5104f144f..d4a17d950e127ed0f0316c37b0bd2ce8dba5bd58 100644 (file)
@@ -1,27 +1,25 @@
-/*
- * Animation.cpp
- *
- *  Created on: Sep 5, 2012
- *      Author: holy
- */
-
 #include "Animation.h"
 
+#include "Sprite.h"
+#include "../loader/Interpreter.h"
 #include "../loader/TypeDescription.h"
 
 using loader::FieldDescription;
+using loader::Interpreter;
 using loader::TypeDescription;
 
 namespace graphics {
 
-void Animation::AddFields(TypeDescription &td, const Animation &a, std::ptrdiff_t offset) {
-       int boolId(TypeDescription::GetTypeId("Boolean"));
-       int numberId(TypeDescription::GetTypeId("Number"));
-       int spriteId(TypeDescription::GetTypeId("Sprite"));
+void Animation::CreateTypeDescription() {
+       TypeDescription &td(TypeDescription::Create(TYPE_ID, "Animation"));
+       td.SetDescription("Abstract base type for animations.");
+       td.SetSize(sizeof(Animation));
+}
 
-       td.AddField("sprite", FieldDescription(((char *)&a.sprite) - ((char *)&a) - offset, spriteId, true));
-       td.AddField("frametime", FieldDescription(((char *)&a.frameTime) - ((char *)&a) - offset, numberId, false));
-       td.AddField("repeat", FieldDescription(((char *)&a.repeat) - ((char *)&a) - offset, boolId, false));
+void Animation::AddFields(TypeDescription &td, const Animation &a, std::ptrdiff_t offset) {
+       td.AddField("sprite", FieldDescription(((char *)&a.sprite) - ((char *)&a) - offset, Sprite::TYPE_ID).SetReferenced().SetDescription("the sprite used for cutting out frames"));
+       td.AddField("frametime", FieldDescription(((char *)&a.frameTime) - ((char *)&a) - offset, Interpreter::NUMBER_ID).SetDescription("duration of a frame in miliseconds"));
+       td.AddField("repeat", FieldDescription(((char *)&a.repeat) - ((char *)&a) - offset, Interpreter::BOOLEAN_ID).SetDescription("whether the animation should start over at the beginning after reaching the last frame"));
 }
 
 }