X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FMonster.cpp;h=dd653383a5151132777e1f6ef6ddb6fb568e680f;hb=46d158b25b842d2ec4b9734af09ca6006c934498;hp=ec179e488d3b5b0e19212204f0fff08a2585d9a1;hpb=9d5e525f2bd9035e9add815e287313d09c1bf0fd;p=l2e.git diff --git a/src/battle/Monster.cpp b/src/battle/Monster.cpp index ec179e4..dd65338 100644 --- a/src/battle/Monster.cpp +++ b/src/battle/Monster.cpp @@ -7,6 +7,11 @@ #include "Monster.h" +#include "../loader/TypeDescription.h" + +using loader::FieldDescription; +using loader::TypeDescription; + namespace battle { Monster::Monster() @@ -16,6 +21,10 @@ Monster::Monster() , attackScript(0) , defenseScript(0) +, meleeAnimation(0) +, attackAnimation(0) +, spellAnimation(0) + , maxHealth(0) , health(0) , maxMana(0) @@ -42,4 +51,32 @@ void Monster::SubtractHealth(int amount) { } } + +void Monster::CreateTypeDescription() { + Monster m; + + int animationId(TypeDescription::GetTypeId("Animation")); + int numberId(TypeDescription::GetTypeId("Number")); + int spriteId(TypeDescription::GetTypeId("Sprite")); + int statsId(TypeDescription::GetTypeId("Stats")); + int stringId(TypeDescription::GetTypeId("String")); + + TypeDescription &td(TypeDescription::CreateOrGet("Monster")); + td.SetSize(sizeof(Monster)); + + td.AddField("name", FieldDescription(((char *)&m.name) - ((char *)&m), stringId, true)); + td.AddField("sprite", FieldDescription(((char *)&m.sprite) - ((char *)&m), spriteId, true)); + td.AddField("level", FieldDescription(((char *)&m.level) - ((char *)&m), numberId, false)); + + td.AddField("maxHealth", FieldDescription(((char *)&m.maxHealth) - ((char *)&m), numberId, false)); + td.AddField("health", FieldDescription(((char *)&m.health) - ((char *)&m), numberId, false)); + td.AddField("maxMana", FieldDescription(((char *)&m.maxMana) - ((char *)&m), numberId, false)); + td.AddField("mana", FieldDescription(((char *)&m.mana) - ((char *)&m), numberId, false)); + td.AddField("stats", FieldDescription(((char *)&m.stats) - ((char *)&m), statsId, false)); + + td.AddField("attackAnimation", FieldDescription(((char *)&m.attackAnimation) - ((char *)&m), animationId, true)); + td.AddField("spellAnimation", FieldDescription(((char *)&m.spellAnimation) - ((char *)&m), animationId, true)); + td.AddField("meleeAnimation", FieldDescription(((char *)&m.meleeAnimation) - ((char *)&m), animationId, true)); +} + }