#ifndef _OBJECTMANAGER_H #define _OBJECTMANAGER_H #include #include #include "ps/Singleton.h" #include "ps/CStr.h" #include "ObjectBase.h" class CObjectEntry; class CEntityTemplate; class CMatrix3D; // access to sole CObjectManager object #define g_ObjMan CObjectManager::GetSingleton() /////////////////////////////////////////////////////////////////////////////////////////// // CObjectManager: manager class for all possible actor types class CObjectManager : public Singleton { public: struct ObjectKey { ObjectKey(const CStr& name, const std::vector& var) : ActorName(name), ActorVariation(var) {} CStr ActorName; std::vector ActorVariation; }; public: // constructor, destructor CObjectManager(); ~CObjectManager(); void UnloadObjects(); CObjectEntry* FindObject(const char* objname); void DeleteObject(CObjectEntry* entry); CObjectBase* FindObjectBase(const char* objname); CObjectEntry* FindObjectVariation(const char* objname, const std::vector >& selections); CObjectEntry* FindObjectVariation(CObjectBase* base, const std::vector >& selections); // Get all names, quite slowly. (Intended only for ScEd.) void GetAllObjectNames(std::vector& names); void GetPropObjectNames(std::vector& names); std::map m_Objects; std::map m_ObjectBases; }; // Global comparison operator bool operator< (const CObjectManager::ObjectKey& a, const CObjectManager::ObjectKey& b); #endif