2017-04-02 21:46:46 +00:00
|
|
|
#ifndef OPENMW_PROCESSOROBJECTPLACE_HPP
|
|
|
|
#define OPENMW_PROCESSOROBJECTPLACE_HPP
|
|
|
|
|
2018-05-15 19:07:06 +00:00
|
|
|
#include "../ObjectProcessor.hpp"
|
2017-04-04 06:23:34 +00:00
|
|
|
#include <apps/openmw-mp/Networking.hpp>
|
2017-04-02 21:46:46 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-05-15 19:07:06 +00:00
|
|
|
class ProcessorObjectPlace : public ObjectProcessor
|
2017-04-02 21:46:46 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorObjectPlace()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_OBJECT_PLACE)
|
|
|
|
}
|
|
|
|
|
2018-05-12 21:42:24 +00:00
|
|
|
void Do(ObjectPacket &packet, Player &player, BaseObjectList &objectList) override
|
2017-04-02 21:46:46 +00:00
|
|
|
{
|
2017-04-08 09:00:07 +00:00
|
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Received %s from %s", strPacketID.c_str(), player.npc.mName.c_str());
|
|
|
|
|
2018-05-12 21:42:24 +00:00
|
|
|
for (unsigned int i = 0; i < objectList.baseObjectCount; i++)
|
2017-04-04 06:23:34 +00:00
|
|
|
{
|
2018-05-12 21:42:24 +00:00
|
|
|
objectList.baseObjects.at(i).mpNum = mwmp::Networking::getPtr()->incrementMpNum();
|
2017-04-04 06:23:34 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 21:42:24 +00:00
|
|
|
Script::Call<Script::CallbackIdentity("OnObjectPlace")>(player.getId(), objectList.cell.getDescription().c_str());
|
2017-04-02 21:46:46 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTPLACE_HPP
|