// EMERGENT GAME TECHNOLOGIES PROPRIETARY INFORMATION // // This software is supplied under the terms of a license agreement or // nondisclosure agreement with Emergent Game Technologies and may not // be copied or disclosed except in accordance with the terms of that // agreement. // // Copyright (c) 1996-2007 Emergent Game Technologies. // All Rights Reserved. // // Emergent Game Technologies, Chapel Hill, North Carolina 27517 // http://www.emergent.net #ifndef NITMAPBASE_H #define NITMAPBASE_H #include #include // The map class implements a hash table of TKEY to store values of TVAL. // It uses modular arithmetic for building the hash keys with a default // table size of 37. If you want a larger table size, the best bet is to // us a large prime number. Consult a standard text on hashing for the // basic theory. // // TKEY MUST BE THE SAME SIZE AS A POINTER! // // The template class assumes that type TKEY has the following: // 1. Default constructor, TKEY::TKEY(); // 2. Copy constructor, TKEY::TKEY(const TKEY&); // 3. Assignment, TKEY& operator=(const TKEY&); // 4. Comparison, bool TKEY::operator==(const TKEY&), or supply a // specialized equality testing class in your template. // 5. Implicit conversion, TKEY::operator long(), for building hash key, // or you must pass in your own hash function class in your template. // // The template class assumes that type TVAL has the following: // 1. Default constructor, TVAL::TVAL(); // 2. Copy constructor, TVAL::TVAL(const TVAL&); // 3. Assignment, TVAL& operator=(const TVAL&); // // In both cases, the compiler-generated default constructor, copy // constructor, and assignment operator are acceptable. // // Example of iteration over map // // NiTMap kMap; // NiTMapIterator pos = kMap.GetFirstPos(); // while (pos) // { // TKEY key; // TVAL val; // kMap.GetNext(pos,key,val); // ; // } typedef void* NiTMapIterator; // The NiTMapItem class used to be nested in NiTMap. It was made a separate // class because having it nested caused g++ to hit an internal error. template class NiTMapItem : public NiMemObject { public: NiTMapItem* m_pkNext; TKEY m_key; TVAL m_val; }; // The hash function class template class NiTMapHashFunctor : public NiMemObject { public: static unsigned int KeyToHashIndex(TKEY key, unsigned int uiTableSize); }; // The equality function class template class NiTMapEqualsFunctor : public NiMemObject { public: static bool IsKeysEqual(TKEY key1, TKEY key2); }; template , class TEQUALS = NiTMapEqualsFunctor > class NiTMapBase : public NiMemObject { public: // construction and destruction NiTMapBase(unsigned int uiHashSize = 37); virtual ~NiTMapBase(); // counting elements in map unsigned int GetCount() const; bool IsEmpty() const; // add or remove elements void SetAt(TKEY key, TVAL val); bool RemoveAt(TKEY key); void RemoveAll(); // element access bool GetAt(TKEY key, TVAL& val) const; // map traversal NiTMapIterator GetFirstPos() const; void GetNext(NiTMapIterator& pos, TKEY& key, TVAL& val) const; protected: // hash table stored as array of doubly-linked lists NiTMapItem* GetPtrToAssoc(TKEY key) const; virtual void SetValue(NiTMapItem* pkItem, TKEY key, TVAL val); virtual void ClearValue(NiTMapItem* pkItem); virtual NiTMapItem* NewItem() = 0; virtual void DeleteItem(NiTMapItem* pkItem) = 0; unsigned int m_uiHashSize; // maximum slots in hash table NiTMapItem** m_ppkHashTable;// hash table storage struct AntiBloatAllocator : public TheAllocator { // We reduce TheAllocator by 4 bytes by deriving // See http://www.cantrip.org/emptyopt.html unsigned int m_uiCount; // number of elements in list }; AntiBloatAllocator m_kAllocator; private: // To prevent an application from inadvertently causing the compiler to // generate the default copy constructor or default assignment operator, // these methods are declared as private. They are not defined anywhere, // so code that attempts to use them will not link. NiTMapBase(const NiTMapBase&); NiTMapBase& operator=(const NiTMapBase&); }; //--------------------------------------------------------------------------- // Inline include #include "NiTMapBase.inl" //--------------------------------------------------------------------------- #endif // NITMAPBASE_H