/* * Copyright 2009-2010, Andrea Anzani. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef _KEY_MAP_H #define _KEY_MAP_H #include #include template class KeyMap { public: uint32 CountItems() const; void AddItem(KEY k, TYPE t); TYPE ValueFor(KEY, bool* found = NULL) const; void RemoveItemAt(int32 position); void RemoveItemFor(KEY); KEY KeyAt(uint32 position) const; TYPE ValueAt(uint32 position) const; List Values() const; private: std::map fMap; typedef typename std::map::iterator fIter; typedef typename std::map::const_iterator fConstIter; }; template inline uint32 KeyMap::CountItems() const { return fMap.size(); } template inline void KeyMap::AddItem(KEY k, TYPE t) { fMap[k] = t; } template inline TYPE KeyMap::ValueFor(KEY k, bool* found) const { fConstIter i = fMap.find(k); if (found) { if (i == fMap.end()) *found = false; else *found = true; } if (i == fMap.end()) return NULL; return i->second; } template inline void KeyMap::RemoveItemAt(int32 position) { fIter i = fMap.begin(); std::advance(i, position); fMap.erase(i->first); } template inline void KeyMap::RemoveItemFor(KEY k) { fMap.erase(k); } template inline KEY KeyMap::KeyAt(uint32 position) const { fIter i = fMap.begin(); std::advance(i, position); if (i == fMap.end()) return NULL; return i->first; } template inline TYPE KeyMap::ValueAt(uint32 position) const { fConstIter i = fMap.begin(); std::advance(i, position); if (i == fMap.end()) return NULL; return i->second; } template inline List KeyMap::Values() const { List list; for (fIter i = fMap.begin(); i != fMap.end(); ++i) list.AddItem(i->second); return list; } #endif // _KEY_MAP_H