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.
31 lines
690 B
C++
31 lines
690 B
C++
#ifndef OPENMW_PROCESSOROBJECTPLACE_HPP
|
|
#define OPENMW_PROCESSOROBJECTPLACE_HPP
|
|
|
|
#include "BaseObjectProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorObjectPlace final: public BaseObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorObjectPlace()
|
|
{
|
|
BPP_INIT(ID_OBJECT_PLACE)
|
|
}
|
|
|
|
virtual void Do(ObjectPacket &packet, ObjectList &objectList)
|
|
{
|
|
BaseObjectProcessor::Do(packet, objectList);
|
|
|
|
ptrCellStore = Main::get().getCellController()->getCellStore(objectList.cell);
|
|
|
|
if (!ptrCellStore) return;
|
|
|
|
objectList.placeObjects(ptrCellStore);
|
|
}
|
|
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTPLACE_HPP
|