1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 05:49:56 +00:00
openmw-tes3mp/apps/openmw/mwmp/Cell.hpp

40 lines
976 B
C++

#ifndef OPENMW_CELL_HPP
#define OPENMW_CELL_HPP
#include "WorldEvent.hpp"
#include "LocalActor.hpp"
#include "DedicatedActor.hpp"
#include "../mwworld/cellstore.hpp"
namespace mwmp
{
class Cell
{
public:
Cell(MWWorld::CellStore* cellStore);
~Cell();
void updateLocal();
void updateDedicated(float dt);
void readCellFrame(mwmp::WorldEvent& worldEvent);
void initializeLocalActors();
void uninitializeLocalActors();
void uninitializeDedicatedActors();
virtual LocalActor *getLocalActor(std::string actorIndex);
virtual DedicatedActor *getDedicatedActor(std::string actorIndex);
MWWorld::CellStore* getCellStore();
std::string getDescription();
private:
MWWorld::CellStore* store;
std::map<std::string, mwmp::LocalActor *> localActors;
std::map<std::string, mwmp::DedicatedActor *> dedicatedActors;
};
}
#endif //OPENMW_CELL_HPP