You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/apps/openmw/mwmp/CellController.hpp

34 lines
856 B
C++

#ifndef OPENMW_CELLCONTROLLER_HPP
#define OPENMW_CELLCONTROLLER_HPP
#include "LocalActor.hpp"
#include "DedicatedActor.hpp"
#include "../mwworld/cellstore.hpp"
namespace mwmp
{
class CellController
{
public:
CellController();
~CellController();
void update();
void initializeLocalActors(const ESM::Cell& cell);
std::string generateMapIndex(MWWorld::Ptr ptr);
int getCellSize() const;
virtual MWWorld::CellStore *getCell(const ESM::Cell& cell);
void openContainer(const MWWorld::Ptr& container, bool loot);
void closeContainer(const MWWorld::Ptr& container);
private:
static std::map<std::string, mwmp::LocalActor *> localActors;
static std::map<std::string, mwmp::DedicatedActor *> dedicatedActors;
};
}
#endif //OPENMW_CELLCONTROLLER_HPP