mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 23:19:56 +00:00
32 lines
1,021 B
C++
32 lines
1,021 B
C++
#ifndef OPENMW_PROCESSORCONTAINER_HPP
|
|
#define OPENMW_PROCESSORCONTAINER_HPP
|
|
|
|
#include "../WorldProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorContainer : public WorldProcessor
|
|
{
|
|
public:
|
|
ProcessorContainer()
|
|
{
|
|
BPP_INIT(ID_CONTAINER)
|
|
}
|
|
|
|
void Do(WorldPacket &packet, Player &player, BaseEvent &event) override
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Received %s from %s", strPacketID.c_str(), player.npc.mName.c_str());
|
|
LOG_APPEND(Log::LOG_INFO, "- action: %i", event.action);
|
|
|
|
// Don't have any hardcoded sync, and instead expect Lua scripts to forward
|
|
// container packets to ensure their integrity based on what exists in the
|
|
// server data
|
|
|
|
Script::Call<Script::CallbackIdentity("OnContainer")>(player.getId(), event.cell.getDescription().c_str());
|
|
|
|
LOG_APPEND(Log::LOG_INFO, "- Finished processing ID_CONTAINER");
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORCONTAINER_HPP
|