diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-01-04 00:31:44 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-01-04 00:31:44 +0200 |
commit | 311783bebbe2bed366dca5097697ce34c690292d (patch) | |
tree | 0533581ca605f773a67739efccf75472a4d35dd7 /src/resources | |
parent | 76bc1a5c994b46d8a4486a1226f681f7a4982f1c (diff) | |
download | plus-311783bebbe2bed366dca5097697ce34c690292d.tar.gz plus-311783bebbe2bed366dca5097697ce34c690292d.tar.bz2 plus-311783bebbe2bed366dca5097697ce34c690292d.tar.xz plus-311783bebbe2bed366dca5097697ce34c690292d.zip |
Add draw filter (incomplete)
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/itemdb.cpp | 7 | ||||
-rw-r--r-- | src/resources/itemdb.h | 3 | ||||
-rw-r--r-- | src/resources/iteminfo.h | 6 |
3 files changed, 11 insertions, 5 deletions
diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp index 385f32ee6..71b88d192 100644 --- a/src/resources/itemdb.cpp +++ b/src/resources/itemdb.cpp @@ -343,11 +343,16 @@ void ItemDB::load() mLoaded = true; } -std::vector<std::string> &ItemDB::getTags() +const std::vector<std::string> &ItemDB::getTags() { return mTagNames; } +int ItemDB::getTagId(std::string tagName) +{ + return mTags[tagName]; +} + void ItemDB::unload() { logger->log1("Unloading item database..."); diff --git a/src/resources/itemdb.h b/src/resources/itemdb.h index 54e8ceb33..19e36889e 100644 --- a/src/resources/itemdb.h +++ b/src/resources/itemdb.h @@ -50,7 +50,7 @@ namespace ItemDB */ void unload(); - std::vector<std::string> &getTags(); + const std::vector<std::string> &getTags(); bool exists(int id); @@ -63,6 +63,7 @@ namespace ItemDB const std::map<int, ItemInfo*> &getItemInfos(); + int getTagId(std::string tagName); struct Stat { Stat(const std::string &tag, diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 3ccbf01ec..19bba335d 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -207,11 +207,11 @@ class ItemInfo void setDrawPriority(int n) { mDrawPriority = n; } - std::set<int> &getTags() + std::map<int, int> getTags() { return mTags; } void addTag(int tag) - { mTags.insert(tag); } + { mTags[tag] = 1; } protected: SpriteDisplay mDisplay; /**< Display info (like icon) */ @@ -243,7 +243,7 @@ class ItemInfo /** Stores the names of sounds to be played at certain event. */ std::map < EquipmentSoundEvent, std::vector<std::string> > mSounds; - std::set <int> mTags; + std::map <int,int> mTags; }; #endif |