]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/Interpreter.h
added Spell and TargetingMode interpretation
[l2e.git] / src / loader / Interpreter.h
index cf08009e2907618b042fd2ab72eafb964e5ced9f..93a6e36227b576cc95744a80b4eb9522885e8a10 100644 (file)
@@ -24,6 +24,11 @@ namespace battle {
        class Stats;
 }
 
+namespace common {
+       class Spell;
+       class TargetingMode;
+}
+
 namespace graphics {
        class Animation;
        class Font;
@@ -68,8 +73,10 @@ public:
        battle::Monster *GetMonster(const std::string &name);
        int GetNumber(const std::string &name) const;
        battle::PartyLayout *GetPartyLayout(const std::string &name);
+       common::Spell *GetSpell(const std::string &name);
        graphics::Sprite *GetSprite(const std::string &name);
        const char *GetString(const std::string &name) const;
+       common::TargetingMode *GetTargetingMode(const std::string &name);
        geometry::Vector<int> GetVector(const std::string &name) const;
 
 public:
@@ -84,8 +91,10 @@ public:
        const std::vector<int> &Numbers() const { return numbers; }
        const std::vector<battle::PartyLayout *> &PartyLayouts() const { return partyLayouts; }
        const std::vector<graphics::SimpleAnimation *> &SimpleAnimations() const { return simpleAnimations; }
+       const std::vector<common::Spell *> &Spells() const { return spells; }
        const std::vector<graphics::Sprite *> &Sprites() const { return sprites; }
        const std::vector<const char *> &Strings() const { return strings; }
+       const std::vector<common::TargetingMode *> &TargetingModes() const { return targetingModes; }
        const std::vector<geometry::Vector<int> > &Vectors() const { return vectors; }
 
 private:
@@ -103,8 +112,10 @@ private:
        battle::PartyLayout *GetPartyLayout(const Value &);
        const PropertyList *GetPropertyList(const Value &);
        const std::vector<PropertyList *> &GetPropertyListArray(const Value &);
+       common::Spell *GetSpell(const Value &);
        graphics::Sprite *GetSprite(const Value &);
        const char *GetString(const Value &);
+       common::TargetingMode *GetTargetingMode(const Value &);
        const std::vector<Value *> &GetValueArray(const Value &);
        geometry::Vector<int> GetVector(const Value &);
 
@@ -117,8 +128,10 @@ private:
        void ReadMonster(battle::Monster &, const PropertyList &);
        void ReadPartyLayout(battle::PartyLayout &, const PropertyList &);
        void ReadSimpleAnimation(graphics::SimpleAnimation &, const PropertyList &);
+       void ReadSpell(common::Spell &, const PropertyList &);
        void ReadSprite(graphics::Sprite &, const PropertyList &);
        void ReadStats(battle::Stats &, const PropertyList &);
+       void ReadTargetingMode(common::TargetingMode &, const PropertyList &);
 
 private:
        const ParsedSource &source;
@@ -135,8 +148,10 @@ private:
                PARTY_LAYOUT,
                PROPERTY_LIST_ARRAY,
                SIMPLE_ANIMATION,
+               SPELL,
                SPRITE,
                STRING,
+               TARGETING_MODE,
                VECTOR,
                VALUE_ARRAY,
        };
@@ -162,8 +177,10 @@ private:
        std::vector<PropertyList *> propertyLists;
        std::vector<std::vector<PropertyList *> > propertyListArrays;
        std::vector<graphics::SimpleAnimation *> simpleAnimations;
+       std::vector<common::Spell *> spells;
        std::vector<graphics::Sprite *> sprites;
        std::vector<const char *> strings;
+       std::vector<common::TargetingMode *> targetingModes;
        std::vector<std::vector<Value *> > valueArrays;
        std::vector<geometry::Vector<int> > vectors;