#ifndef GAME_MWWORLD_CELLSTORE_H #define GAME_MWWORLD_CELLSTORE_H #include #include #include #include #include #include #include "livecellref.hpp" #include "cellreflist.hpp" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../mwmechanics/pathgrid.hpp" // TODO: maybe belongs in mwworld #include "timestamp.hpp" namespace ESM { struct CellState; struct FogState; } namespace MWWorld { class Ptr; class ESMStore; /// \brief Mutable state of a cell class CellStore { public: enum State { State_Unloaded, State_Preloaded, State_Loaded }; private: // Even though fog actually belongs to the player and not cells, // it makes sense to store it here since we need it once for each cell. // Note this is NULL until the cell is explored to save some memory boost::shared_ptr mFogState; const ESM::Cell *mCell; State mState; bool mHasState; std::vector mIds; float mWaterLevel; MWWorld::TimeStamp mLastRespawn; // List of refs owned by this cell CellRefList mActivators; CellRefList mPotions; CellRefList mAppas; CellRefList mArmors; CellRefList mBooks; CellRefList mClothes; CellRefList mContainers; CellRefList mCreatures; CellRefList mDoors; CellRefList mIngreds; CellRefList mCreatureLists; CellRefList mItemLists; CellRefList mLights; CellRefList mLockpicks; CellRefList mMiscItems; CellRefList mNpcs; CellRefList mProbes; CellRefList mRepairs; CellRefList mStatics; CellRefList mWeapons; typedef std::map MovedRefTracker; // References owned by a different cell that have been moved here. // MovedRefTracker mMovedHere; // References owned by this cell that have been moved to another cell. // MovedRefTracker mMovedToAnotherCell; // Merged list of ref's currently in this cell - i.e. with added refs from mMovedHere, removed refs from mMovedToAnotherCell std::vector mMergedRefs; /// Moves object from the given cell to this cell. void moveFrom(const MWWorld::Ptr& object, MWWorld::CellStore* from); /// Repopulate mMergedRefs. void updateMergedRefs(); public: /// Moves object from this cell to the given cell. /// @note automatically updates given cell by calling cellToMoveTo->moveFrom(...) void moveTo(const MWWorld::Ptr& object, MWWorld::CellStore* cellToMoveTo); /// Make a copy of the given object and insert it into this cell. /// @note If you get a linker error here, this means the given type can not be inserted into a cell. /// The supported types are defined at the bottom of this file. template LiveCellRefBase* insert(const LiveCellRef* ref); CellStore (const ESM::Cell *cell_); const ESM::Cell *getCell() const; State getState() const; bool hasState() const; ///< Does this cell have state that needs to be stored in a saved game file? bool hasId (const std::string& id) const; ///< May return true for deleted IDs when in preload state. Will return false, if cell is /// unloaded. Ptr search (const std::string& id); ///< Will return an empty Ptr if cell is not loaded. Does not check references in /// containers. Ptr searchViaActorId (int id); ///< Will return an empty Ptr if cell is not loaded. float getWaterLevel() const; void setWaterLevel (float level); void setFog (ESM::FogState* fog); ///< \note Takes ownership of the pointer ESM::FogState* getFog () const; int count() const; ///< Return total number of references, including deleted ones. void load (const MWWorld::ESMStore &store, std::vector &esm); ///< Load references from content file. void preload (const MWWorld::ESMStore &store, std::vector &esm); ///< Build ID list from content file. /// Call functor (ref) for each reference. functor must return a bool. Returning /// false will abort the iteration. /// \attention This function also lists deleted (count 0) objects! /// \return Iteration completed? /// /// \note Creatures and NPCs are handled last. template bool forEach (Functor& functor) { mHasState = true; return forEachImp (functor, mActivators) && forEachImp (functor, mPotions) && forEachImp (functor, mAppas) && forEachImp (functor, mArmors) && forEachImp (functor, mBooks) && forEachImp (functor, mClothes) && forEachImp (functor, mContainers) && forEachImp (functor, mDoors) && forEachImp (functor, mIngreds) && forEachImp (functor, mItemLists) && forEachImp (functor, mLights) && forEachImp (functor, mLockpicks) && forEachImp (functor, mMiscItems) && forEachImp (functor, mProbes) && forEachImp (functor, mRepairs) && forEachImp (functor, mStatics) && forEachImp (functor, mWeapons) && forEachImp (functor, mCreatures) && forEachImp (functor, mNpcs) && forEachImp (functor, mCreatureLists); } template bool forEachContainer (Functor& functor) { mHasState = true; return forEachImp (functor, mContainers) && forEachImp (functor, mCreatures) && forEachImp (functor, mNpcs); } /// \todo add const version of forEach bool isExterior() const; Ptr searchInContainer (const std::string& id); void loadState (const ESM::CellState& state); void saveState (ESM::CellState& state) const; void writeFog (ESM::ESMWriter& writer) const; void readFog (ESM::ESMReader& reader); void writeReferences (ESM::ESMWriter& writer) const; void readReferences (ESM::ESMReader& reader, const std::map& contentFileMap); void respawn (); ///< Check mLastRespawn and respawn references if necessary. This is a no-op if the cell is not loaded. bool isPointConnected(const int start, const int end) const; std::list aStarSearch(const int start, const int end) const; private: template bool forEachImp (Functor& functor, List& list) { for (typename List::List::iterator iter (list.mList.begin()); iter!=list.mList.end(); ++iter) { if (iter->mData.isDeletedByContentFile()) continue; if (!functor (MWWorld::Ptr(&*iter, this))) return false; } return true; } /// Run through references and store IDs void listRefs(const MWWorld::ESMStore &store, std::vector &esm); void loadRefs(const MWWorld::ESMStore &store, std::vector &esm); void loadRef (ESM::CellRef& ref, bool deleted, const ESMStore& store); ///< Make case-adjustments to \a ref and insert it into the respective container. /// /// Invalid \a ref objects are silently dropped. MWMechanics::PathgridGraph mPathgridGraph; }; template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mActivators.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mPotions.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mAppas.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mArmors.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mBooks.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mClothes.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mContainers.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mCreatures.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mDoors.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mIngreds.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mCreatureLists.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mItemLists.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mLights.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mLockpicks.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mMiscItems.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mNpcs.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mProbes.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mRepairs.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mStatics.insert(*ref); } template<> inline LiveCellRefBase* CellStore::insert(const LiveCellRef* ref) { mHasState = true; return &mWeapons.insert(*ref); } bool operator== (const CellStore& left, const CellStore& right); bool operator!= (const CellStore& left, const CellStore& right); } #endif