From 311783bebbe2bed366dca5097697ce34c690292d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 4 Jan 2011 00:31:44 +0200 Subject: Add draw filter (incomplete) --- src/resources/itemdb.cpp | 7 ++++++- src/resources/itemdb.h | 3 ++- src/resources/iteminfo.h | 6 +++--- 3 files changed, 11 insertions(+), 5 deletions(-) (limited to 'src/resources') 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 &ItemDB::getTags() +const std::vector &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 &getTags(); + const std::vector &getTags(); bool exists(int id); @@ -63,6 +63,7 @@ namespace ItemDB const std::map &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 &getTags() + std::map 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 > mSounds; - std::set mTags; + std::map mTags; }; #endif -- cgit v1.2.3-70-g09d2